diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 327959fe7a3c..5d99147051f1 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,17 +1,13 @@ -## Basic info +## Issue description -To make sure that we are on the same page: -* Kernel: (run `uname -a`) -* System: (NixOS: `nixos-version`, Ubuntu/Fedora: `lsb_release -a`, ...) -* Nix version: (run `nix-env --version`) -* Nixpkgs version: (run `nix-instantiate --eval '' -A lib.nixpkgsVersion`) - -## Describe your issue here - -### Expected result - -### Actual result ### Steps to reproduce + + +## Technical details + +* System: (NixOS: `nixos-version`, Ubuntu/Fedora: `lsb_release -a`, ...) +* Nix version: (run `nix-env --version`) +* Nixpkgs version: (run `nix-instantiate --eval '' -A lib.nixpkgsVersion`) diff --git a/README.md b/README.md index 9bd2e9b95c9f..c3187f204624 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,12 @@ build daemon as so-called channels. To get channel information via git, add ``` For stability and maximum binary package support, it is recommended to maintain -custom changes on top of one of the channels, e.g. `nixos-15.09` for the latest +custom changes on top of one of the channels, e.g. `nixos-16.03` for the latest release and `nixos-unstable` for the latest successful build of master: ``` % git remote update channels -% git rebase channels/nixos-15.09 +% git rebase channels/nixos-16.03 ``` For pull-requests, please rebase onto nixpkgs `master`. @@ -33,9 +33,9 @@ For pull-requests, please rebase onto nixpkgs `master`. * [Manual (NixOS)](https://nixos.org/nixos/manual/) * [Nix Wiki](https://nixos.org/wiki/) * [Continuous package builds for unstable/master](https://hydra.nixos.org/jobset/nixos/trunk-combined) -* [Continuous package builds for 15.09 release](https://hydra.nixos.org/jobset/nixos/release-15.09) +* [Continuous package builds for 16.03 release](https://hydra.nixos.org/jobset/nixos/release-16.03) * [Tests for unstable/master](https://hydra.nixos.org/job/nixos/trunk-combined/tested#tabs-constituents) -* [Tests for 15.09 release](https://hydra.nixos.org/job/nixos/release-15.09/tested#tabs-constituents) +* [Tests for 16.03 release](https://hydra.nixos.org/job/nixos/release-16.03/tested#tabs-constituents) Communication: diff --git a/doc/introduction.md b/doc/introduction.md index 618251a6e156..96a5571b4266 100644 --- a/doc/introduction.md +++ b/doc/introduction.md @@ -6,13 +6,14 @@ date: 2015-11-25 # Introduction -The Nix Packages collection (Nixpkgs) is a set of over 30,000 packages for the -[Nix package manager](http://nixos.org/nix/), released under a [permissive MIT/X11 license](https://github.com/NixOS/nixpkgs/blob/master/COPYING). -Packages are available for several architectures, and can be used with the Nix package manager -on most GNU/Linux distributions as well as NixOS. +The Nix Packages collection (Nixpkgs) is a set of thousands of packages for the +[Nix package manager](http://nixos.org/nix/), released under a +[permissive MIT/X11 license](https://github.com/NixOS/nixpkgs/blob/master/COPYING). +Packages are available for several platforms, and can be used with the Nix +package manager on most GNU/Linux distributions as well as NixOS. -This manual describes how to write packages for the Nix Packages collection -(Nixpkgs). Thus it’s for packagers and developers who want to add packages to +This manual primarily describes how to write packages for the Nix Packages collection +(Nixpkgs). Thus it’s mainly for packagers and developers who want to add packages to Nixpkgs. If you like to learn more about the Nix package manager and the Nix expression language, then you are kindly referred to the [Nix manual](http://nixos.org/nix/manual/). @@ -20,29 +21,33 @@ expression language, then you are kindly referred to the [Nix manual](http://nix Nix expressions describe how to build packages from source and are collected in the [nixpkgs repository](https://github.com/NixOS/nixpkgs). Also included in the -collection are Nix expressions for [NixOS modules](http://nixos.org/nixos/manual/index.html#sec-writing-modules). With -these expressions the Nix package manager can build binary packages. +collection are Nix expressions for +[NixOS modules](http://nixos.org/nixos/manual/index.html#sec-writing-modules). +With these expressions the Nix package manager can build binary packages. Packages, including the Nix packages collection, are distributed through [channels](http://nixos.org/nix/manual/#sec-channels). The collection is distributed for users of Nix on non-NixOS distributions through the channel `nixpkgs`. Users of NixOS generally use one of the `nixos-*` channels, e.g. -`nixos-15.09`, which includes all packages and modules for the stable NixOS -15.09. The channels of the stable NixOS releases are generally only given +`nixos-16.03`, which includes all packages and modules for the stable NixOS +16.03. The purpose of stable NixOS releases are generally only given security updates. More up to date packages and modules are available via the `nixos-unstable` channel. Both `nixos-unstable` and `nixpkgs` follow the `master` branch of the Nixpkgs -repository, although both do lag the `master` branch by generally [a couple of days](http://howoldis.herokuapp.com/). Updates to a channel are distributed as -soon as all tests for that channel pass, e.g. [this table](http://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents) +repository, although both do lag the `master` branch by generally +[a couple of days](http://howoldis.herokuapp.com/). Updates to a channel are +distributed as soon as all tests for that channel pass, e.g. +[this table](http://hydra.nixos.org/job/nixpkgs/trunk/unstable#tabs-constituents) shows the status of tests for the `nixpkgs` channel. The tests are conducted by a cluster called [Hydra](http://nixos.org/hydra/), -which also builds binary packages from the Nix expressions in Nixpkgs. As soon -as a channel is updated, the binaries are made available via a [binary cache](https://cache.nixos.org). Until the channel updates, binaries that have -already been built, are available via [Hydra's binary cache](https://hydra.nixos.org). +which also builds binary packages from the Nix expressions in Nixpkgs for +`x86_64-linux`, `i686-linux` and `x86_64-darwin`. +The binaries are made available via a [binary cache](https://cache.nixos.org). The current Nix expressions of the channels are available in the [`nixpkgs-channels`](https://github.com/NixOS/nixpkgs-channels) repository, which has branches corresponding to the available channels. There is also the -Nixpkgs Monitor which keeps track of updates and security vulnerabilities. +[Nixpkgs Monitor](http://monitor.nixos.org) which keeps track of updates +and security vulnerabilities. diff --git a/doc/manual.xml b/doc/manual.xml index 2b4f47aff1c8..de663fcd5b64 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -12,6 +12,7 @@ + diff --git a/doc/multiple-output.xml b/doc/multiple-output.xml new file mode 100644 index 000000000000..1821861adf71 --- /dev/null +++ b/doc/multiple-output.xml @@ -0,0 +1,91 @@ + + +]> + + +Multiple-output packages + +
Introduction + The Nix language allows a derivation to produce multiple outputs, which is similar to what is utilized by other Linux distribution packaging systems. The outputs reside in separate nix store paths, so they can be mostly handled independently of each other, including passing to build inputs, garbage collection or binary substitution. The exception is that building from source always produces all the outputs. + The main motivation is to save disk space by reducing runtime closure sizes; consequently also sizes of substituted binaries get reduced. Splitting can be used to have more granular runtime dependencies, for example the typical reduction is to split away development-only files, as those are typically not needed during runtime. As a result, closure sizes of many packages can get reduced to a half or even much less. + The reduction effects could be instead achieved by building the parts in completely separate derivations. That would often additionally reduce build-time closures, but it tends to be much harder to write such derivations, as build systems typically assume all parts are being built at once. This compromise approach of single source package producing multiple binary packages is also utilized often by rpm and deb. +
+ +
Installing a split package + When installing a package via systemPackages or nix-env you have several options: + Currently nix-env almost always installs all outputs until https://github.com/NixOS/nix/pull/815 gets merged. + + You can install particular outputs explicitly, as each is available in the Nix language as an attribute of the package. The outputs attribute contains a list of output names. + You can let it use the default outputs. These are handled by meta.outputsToInstall attribute that contains a list of output names. + TODO: more about tweaking the attribute, etc. + NixOS provides configuration option environment.extraOutputsToInstall that allows adding extra outputs of environment.systemPackages atop the default ones. It's mainly meant for documentation and debug symbols, and it's also modified by specific options. + At this moment there is no similar configurability for packages installed by nix-env. You can still use approach from to override meta.outputsToInstall attributes, but that's a rather inconvenient way. + + +
+ +
Using a split package + In the Nix language the individual outputs can be reached explicitly as attributes, e.g. coreutils.info, but the typical case is just using packages as build inputs. + When a multiple-output derivation gets into a build input of another derivation, the first output is added (.dev by convention) and also propagatedBuildOutputs of that package which by default contain $outputBin and $outputLib. (See .) +
+ + +
Writing a split derivation + Here you find how to write a derivation that produces multiple outputs. + In nixpkgs there is a framework supporting multiple-output derivations. It tries to cover most cases by default behavior. You can find the source separated in <nixpkgs/pkgs/build-support/setup-hooks/multiple-outputs.sh>; it's relatively well-readable. The whole machinery is triggered by defining the outputs attribute to contain the list of desired output names (strings). + outputs = [ "dev" "out" "bin" "doc" ]; + Often such a single line is enough. For each output an equally named environment variable is passed to the builder and contains the path in nix store for that output. By convention, the first output should usually be dev; typically you also want to have the main out output, as it catches any files that didn't get elsewhere. + + There is a special handling of the debug output, described at . + +
+ File type groups + The support code currently recognizes some particular kinds of outputs and either instructs the build system of the package to put files into their desired outputs or it moves the files during the fixup phase. Each group of file types has an outputFoo variable specifying the output name where they should go. If that variable isn't defined by the derivation writer, it is guessed – a default output name is defined, falling back to other possibilities if the output isn't defined. + + + $outputDev + is for development-only files. These include C(++) headers, pkg-config, cmake and aclocal files. They go to dev or out by default. + + + $outputBin + is meant for user-facing binaries, typically residing in bin/. They go to bin or out by default. + + + $outputLib + is meant for libraries, typically residing in lib/ and libexec/. They go to lib or out by default. + + + $outputDoc + is for user documentation, typically residing in share/doc/. It goes to doc or out by default. + + + $outputDocdev + is for developer documentation. Currently we count gtk-doc and man3 pages in there. It goes to docdev or is removed (!) by default. This is because e.g. gtk-doc tends to be rather large and completely unused by nixpkgs users. + + + $outputMan + is for man pages (except for section 3). They go to man or doc or $outputBin by default. + + + $outputInfo + is for info pages. They go to info or doc or $outputMan by default. + + +
+ +
Common caveats + + Some configure scripts don't like some of the parameters passed by default by the framework, e.g. --docdir=/foo/bar. You can disable this by setting setOutputFlags = false;. + The outputs of a single derivation can retain references to each other, but note that circular references are not allowed. (And each strongly-connected component would act as a single output anyway.) + Most of split packages contain their core functionality in libraries. These libraries tend to refer to various kind of data that typically gets into out, e.g. locale strings, so there is often no advantage in separating the libraries into lib, as keeping them in out is easier. + Some packages have hidden assumptions on install paths, which complicates splitting. + +
+ +
+ +
+ diff --git a/doc/stdenv.xml b/doc/stdenv.xml index f8d9acb2fb0c..136e83ee0cda 100644 --- a/doc/stdenv.xml +++ b/doc/stdenv.xml @@ -956,7 +956,7 @@ following: phase. - + separateDebugInfo If set to true, the standard environment will enable debug information in C/C++ builds. After diff --git a/lib/customisation.nix b/lib/customisation.nix index 585495469b24..efe82d786600 100644 --- a/lib/customisation.nix +++ b/lib/customisation.nix @@ -129,7 +129,7 @@ rec { }; outputsList = map outputToAttrListElement outputs; - in commonAttrs.${drv.outputName}; + in commonAttrs // { outputUnspecified = true; }; /* Strip a derivation of all non-essential attributes, returning diff --git a/lib/maintainers.nix b/lib/maintainers.nix index ae97005c6550..9937912ec3e5 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -81,6 +81,7 @@ copumpkin = "Dan Peebles "; coroa = "Jonas Hörsch "; couchemar = "Andrey Pavlov "; + CrystalGamma = "Jona Stubbe "; cstrahan = "Charles Strahan "; cwoac = "Oliver Matthews "; DamienCassou = "Damien Cassou "; @@ -117,6 +118,7 @@ ertes = "Ertugrul Söylemez "; exi = "Reno Reckling "; exlevan = "Alexey Levan "; + expipiplus1 = "Joe Hermaszewski "; fadenb = "Tristan Helmich "; falsifian = "James Cook "; flosse = "Markus Kohlhase "; @@ -186,6 +188,7 @@ ktosiek = "Tomasz Kontusz "; lassulus = "Lassulus "; layus = "Guillaume Maudoux "; + ldesgoui = "Lucas Desgouilles "; lebastr = "Alexander Lebedev "; leenaars = "Michiel Leenaars "; leonardoce = "Leonardo Cecchi "; diff --git a/lib/strings.nix b/lib/strings.nix index a2a4be11e1b8..f9145f34832e 100644 --- a/lib/strings.nix +++ b/lib/strings.nix @@ -98,7 +98,9 @@ rec { makeLibraryPath [ pkgs.openssl pkgs.zlib ] => "/nix/store/9rz8gxhzf8sw4kf2j2f1grr49w8zx5vj-openssl-1.0.1r/lib:/nix/store/wwh7mhwh269sfjkm6k5665b5kgp7jrk2-zlib-1.2.8/lib" */ - makeLibraryPath = makeSearchPath "lib"; + makeLibraryPath = pkgs: makeSearchPath "lib" + # try to guess the right output of each pkg + (map (pkg: pkg.lib or (pkg.out or pkg)) pkgs); /* Construct a binary search path (such as $PATH) containing the binaries for a set of packages. @@ -258,7 +260,7 @@ rec { /* Cut a string with a separator and produces a list of strings which were separated by this separator. - NOTE: this function is not performant and should be avoided + NOTE: this function is not performant and should never be used. Example: splitString "." "foo.bar.baz" diff --git a/maintainers/scripts/find-tarballs.nix b/maintainers/scripts/find-tarballs.nix index 006594596602..ad79af90901e 100644 --- a/maintainers/scripts/find-tarballs.nix +++ b/maintainers/scripts/find-tarballs.nix @@ -14,12 +14,12 @@ let operator = const [ ]; }); - urls = map (drv: { url = head drv.urls; hash = drv.outputHash; type = drv.outputHashAlgo; }) fetchurlDependencies; + urls = map (drv: { url = head (drv.urls or [ drv.url ]); hash = drv.outputHash; type = drv.outputHashAlgo; }) fetchurlDependencies; fetchurlDependencies = filter (drv: drv.outputHash or "" != "" && drv.outputHashMode or "flat" == "flat" - && drv.postFetch or "" == "" && drv ? urls) + && drv.postFetch or "" == "" && (drv ? url || drv ? urls)) dependencies; dependencies = map (x: x.value) (genericClosure { diff --git a/nixos/doc/manual/default.nix b/nixos/doc/manual/default.nix index 746ddc071b6a..b118c79985e5 100644 --- a/nixos/doc/manual/default.nix +++ b/nixos/doc/manual/default.nix @@ -44,7 +44,7 @@ let echo "for hints about the offending path)." exit 1 fi - ${libxslt}/bin/xsltproc \ + ${libxslt.bin}/bin/xsltproc \ --stringparam revision '${revision}' \ -o $out ${./options-to-docbook.xsl} $optionsXML ''; diff --git a/nixos/doc/manual/installation/installing-usb.xml b/nixos/doc/manual/installation/installing-usb.xml index 5def6e8753fe..a4b5dafbed16 100644 --- a/nixos/doc/manual/installation/installing-usb.xml +++ b/nixos/doc/manual/installation/installing-usb.xml @@ -7,10 +7,18 @@ Booting from a USB Drive For systems without CD drive, the NixOS live CD can be booted from -a USB stick. For non-UEFI installations, -unetbootin -will work. For UEFI installations, you should mount the ISO, copy its contents -verbatim to your drive, then either: +a USB stick. You can use the dd utility to write the image: +dd if=path-to-image +of=/dev/sdb. Be careful about specifying the +correct drive; you can use the lsblk command to get a list of +block devices. + +The dd utility will write the image verbatim to the drive, +making it the recommended option for both UEFI and non-UEFI installations. For +non-UEFI installations, you can alternatively use +unetbootin. If you +cannot use dd for a UEFI installation, you can also mount the +ISO, copy its contents verbatim to your drive, then either: diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 7e71df28cdb3..4a0b3fee7c18 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -157,10 +157,6 @@ $ nano /mnt/etc/nixos/configuration.nix nixos-generate-config will figure out the required modules. - Examples of real-world NixOS configuration files can be - found at . - Do the installation: diff --git a/nixos/doc/manual/release-notes/rl-1603.xml b/nixos/doc/manual/release-notes/rl-1603.xml index 8119470385f6..1528c8a72463 100644 --- a/nixos/doc/manual/release-notes/rl-1603.xml +++ b/nixos/doc/manual/release-notes/rl-1603.xml @@ -4,7 +4,7 @@ version="5.0" xml:id="sec-release-16.03"> -Release 16.03 (“Emu”, 2016/03/??) +Release 16.03 (“Emu”, 2016/03/31) In addition to numerous new and upgraded packages, this release has the following highlights: @@ -33,6 +33,10 @@ has the following highlights: Glibc 2.23 (was 2.21). + + Binutils 2.26 (was 2.23.1). See #909 + + Improved support for ensuring bitwise reproducible @@ -58,10 +62,57 @@ has the following highlights: services/monitoring/longview.nix - services/networking/pdnsd.nix - services/web-apps/pump.io.nix - services/security/haka.nix + hardware/video/webcam/facetimehd.nix i18n/inputMethod/default.nix + i18n/inputMethod/fcitx.nix + i18n/inputMethod/ibus.nix + i18n/inputMethod/nabi.nix + i18n/inputMethod/uim.nix + programs/fish.nix + security/acme.nix + security/audit.nix + security/oath.nix + services/hardware/irqbalance.nix + services/mail/dspam.nix + services/mail/opendkim.nix + services/mail/postsrsd.nix + services/mail/rspamd.nix + services/mail/rmilter.nix + services/misc/autofs.nix + services/misc/bepasty.nix + services/misc/calibre-server.nix + services/misc/cfdyndns.nix + services/misc/gammu-smsd.nix + services/misc/mathics.nix + services/misc/matrix-synapse.nix + services/misc/octoprint.nix + services/monitoring/hdaps.nix + services/monitoring/heapster.nix + services/monitoring/longview.nix + services/network-filesystems/netatalk.nix + services/network-filesystems/xtreemfs.nix + services/networking/autossh.nix + services/networking/dnschain.nix + services/networking/gale.nix + services/networking/miniupnpd.nix + services/networking/namecoind.nix + services/networking/ostinato.nix + services/networking/pdnsd.nix + services/networking/shairport-sync.nix + services/networking/supplicant.nix + services/search/kibana.nix + services/security/haka.nix + services/security/physlock.nix + services/web-apps/pump.io.nix + services/x11/hardware/libinput.nix + services/x11/window-managers/windowlab.nix + system/boot/initrd-network.nix + system/boot/initrd-ssh.nix + system/boot/loader/loader.nix + system/boot/networkd.nix + system/boot/resolved.nix + virtualisation/lxd.nix + virtualisation/rkt.nix @@ -114,7 +165,7 @@ following incompatible changes: ]; + imports = [ ]; } ]]> @@ -297,7 +348,7 @@ $TTL 1800 service.syncthing.dataDir options now has to point to exact folder where syncthing is writing to. Example configuration should - loook something like: + look something like: services.syncthing = { diff --git a/nixos/maintainers/scripts/ec2/create-amis.sh b/nixos/maintainers/scripts/ec2/create-amis.sh index 8604091dbcdb..1bf2a9c5830b 100755 --- a/nixos/maintainers/scripts/ec2/create-amis.sh +++ b/nixos/maintainers/scripts/ec2/create-amis.sh @@ -8,14 +8,15 @@ echo "keeping state in $stateDir" mkdir -p $stateDir version=$(nix-instantiate --eval --strict '' -A lib.nixpkgsVersion | sed s/'"'//g) -echo "NixOS version is $version" +major=${version:0:5} +echo "NixOS version is $version ($major)" rm -f ec2-amis.nix for type in hvm pv; do link=$stateDir/$type - imageFile=$link/nixos.img + imageFile=$link/nixos.qcow2 system=x86_64-linux arch=x86_64 @@ -61,12 +62,19 @@ for type in hvm pv; do # Bundle the image. imageDir=$stateDir/$type-bundled + # Convert the image to raw format. + rawFile=$stateDir/$type.raw + if ! [ -e $rawFile ]; then + qemu-img convert -f qcow2 -O raw $imageFile $rawFile.tmp + mv $rawFile.tmp $rawFile + fi + if ! [ -d $imageDir ]; then rm -rf $imageDir.tmp mkdir -p $imageDir.tmp ec2-bundle-image \ -d $imageDir.tmp \ - -i $imageFile --arch $arch \ + -i $rawFile --arch $arch \ --user "$AWS_ACCOUNT" -c "$EC2_CERT" -k "$EC2_PRIVATE_KEY" mv $imageDir.tmp $imageDir fi @@ -75,14 +83,14 @@ for type in hvm pv; do if ! [ -e $imageDir/uploaded ]; then echo "uploading bundle to S3..." ec2-upload-bundle \ - -m $imageDir/nixos.img.manifest.xml \ + -m $imageDir/$type.raw.manifest.xml \ -b "$bucket/$bucketDir" \ -a "$EC2_ACCESS_KEY" -s "$EC2_SECRET_KEY" \ --location EU touch $imageDir/uploaded fi - extraFlags="$bucket/$bucketDir/nixos.img.manifest.xml" + extraFlags="$bucket/$bucketDir/$type.raw.manifest.xml" else @@ -90,7 +98,7 @@ for type in hvm pv; do # to upload a huge raw image. vhdFile=$stateDir/$type.vhd if ! [ -e $vhdFile ]; then - qemu-img convert -O vpc $imageFile $vhdFile.tmp + qemu-img convert -f qcow2 -O vpc $imageFile $vhdFile.tmp mv $vhdFile.tmp $vhdFile fi @@ -209,7 +217,7 @@ for type in hvm pv; do prevRegion="$region" fi - echo " \"15.09\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix + echo " \"$major\".$region.$type-$store = \"$ami\";" >> ec2-amis.nix done done diff --git a/nixos/modules/config/debug-info.nix b/nixos/modules/config/debug-info.nix index a096a9809cee..17cb862d2916 100644 --- a/nixos/modules/config/debug-info.nix +++ b/nixos/modules/config/debug-info.nix @@ -38,7 +38,7 @@ with lib; # environment.pathsToLink, and we can't have both. #environment.pathsToLink = [ "/lib/debug/.build-id" ]; - environment.outputsToLink = + environment.extraOutputsToInstall = optional config.environment.enableDebugInfo "debug"; }; diff --git a/nixos/modules/config/fonts/fontconfig.nix b/nixos/modules/config/fonts/fontconfig.nix index e078a75b295c..1eaebe4b2bbd 100644 --- a/nixos/modules/config/fonts/fontconfig.nix +++ b/nixos/modules/config/fonts/fontconfig.nix @@ -236,7 +236,7 @@ with lib; # Versioned fontconfig > 2.10. Take shared fonts.conf from fontconfig. # Otherwise specify only font directories. environment.etc."fonts/${pkgs.fontconfig.configVersion}/fonts.conf".source = - "${pkgs.fontconfig}/etc/fonts/fonts.conf"; + "${pkgs.fontconfig.out}/etc/fonts/fonts.conf"; environment.etc."fonts/${pkgs.fontconfig.configVersion}/conf.d/00-nixos.conf".text = let diff --git a/nixos/modules/config/networking.nix b/nixos/modules/config/networking.nix index ca498ca499eb..0c4f4cbfa5c6 100644 --- a/nixos/modules/config/networking.nix +++ b/nixos/modules/config/networking.nix @@ -148,7 +148,7 @@ in "protocols".source = pkgs.iana_etc + "/etc/protocols"; # /etc/rpc: RPC program numbers. - "rpc".source = pkgs.glibc + "/etc/rpc"; + "rpc".source = pkgs.glibc.out + "/etc/rpc"; # /etc/hosts: Hostname-to-IP mappings. "hosts".text = diff --git a/nixos/modules/config/pulseaudio.nix b/nixos/modules/config/pulseaudio.nix index 179e826ba059..642aedc3f242 100644 --- a/nixos/modules/config/pulseaudio.nix +++ b/nixos/modules/config/pulseaudio.nix @@ -26,7 +26,7 @@ let # are built with PulseAudio support (like KDE). clientConf = writeText "client.conf" '' autospawn=${if nonSystemWide then "yes" else "no"} - ${optionalString nonSystemWide "daemon-binary=${cfg.package}/bin/pulseaudio"} + ${optionalString nonSystemWide "daemon-binary=${cfg.package.out}/bin/pulseaudio"} ''; # Write an /etc/asound.conf that causes all ALSA applications to @@ -130,11 +130,11 @@ in { source = clientConf; }; - hardware.pulseaudio.configFile = mkDefault "${cfg.package}/etc/pulse/default.pa"; + hardware.pulseaudio.configFile = mkDefault "${cfg.package.out}/etc/pulse/default.pa"; } (mkIf cfg.enable { - environment.systemPackages = [ cfg.package ]; + environment.systemPackages = [ cfg.package.out ]; environment.etc = singleton { target = "asound.conf"; @@ -150,6 +150,29 @@ in { target = "pulse/default.pa"; source = cfg.configFile; }; + + systemd.user = { + services.pulseaudio = { + description = "PulseAudio Server"; + # NixOS doesn't support "Also" so we bring it in manually + wantedBy = [ "default.target" ]; + serviceConfig = { + Type = "notify"; + ExecStart = "${cfg.package}/bin/pulseaudio --daemonize=no"; + Restart = "on-failure"; + }; + }; + + sockets.pulseaudio = { + description = "PulseAudio Socket"; + wantedBy = [ "sockets.target" ]; + socketConfig = { + Priority = 6; + Backlog = 5; + ListenStream = "%t/pulse/native"; + }; + }; + }; }) (mkIf systemWide { @@ -171,8 +194,9 @@ in { before = [ "sound.target" ]; environment.PULSE_RUNTIME_PATH = stateDir; serviceConfig = { - ExecStart = "${cfg.package}/bin/pulseaudio -D --log-level=${cfg.daemon.logLevel} --system --use-pid-file -n --file=${cfg.configFile}"; - PIDFile = "${stateDir}/pid"; + Type = "notify"; + ExecStart = "${cfg.package.out}/bin/pulseaudio --daemonize=no --log-level=${cfg.daemon.logLevel} --system -n --file=${cfg.configFile}"; + Restart = "on-failure"; }; }; }) diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix index f510b58842e4..d7815324c4c4 100644 --- a/nixos/modules/config/system-path.nix +++ b/nixos/modules/config/system-path.nix @@ -73,11 +73,11 @@ in description = "List of directories to be symlinked in /run/current-system/sw."; }; - outputsToLink = mkOption { + extraOutputsToInstall = mkOption { type = types.listOf types.str; - default = []; - example = [ "doc" ]; - description = "List of package outputs to be symlinked into /run/current-system/sw."; + default = [ ]; + example = [ "doc" "info" "docdev" ]; + description = "List of additional package outputs to be symlinked into /run/current-system/sw."; }; }; @@ -123,9 +123,10 @@ in system.path = pkgs.buildEnv { name = "system-path"; paths = config.environment.systemPackages; - inherit (config.environment) pathsToLink outputsToLink; + inherit (config.environment) pathsToLink extraOutputsToInstall; ignoreCollisions = true; # !!! Hacky, should modularise. + # outputs TODO: note that the tools will often not be linked by default postBuild = '' if [ -x $out/bin/update-mime-database -a -w $out/share/mime ]; then diff --git a/nixos/modules/installer/tools/auto-upgrade.nix b/nixos/modules/installer/tools/auto-upgrade.nix index 2da330f9b571..79ccb5c3d18a 100644 --- a/nixos/modules/installer/tools/auto-upgrade.nix +++ b/nixos/modules/installer/tools/auto-upgrade.nix @@ -78,7 +78,7 @@ let cfg = config.system.autoUpgrade; in HOME = "/root"; }; - path = [ pkgs.gnutar pkgs.xz config.nix.package ]; + path = [ pkgs.gnutar pkgs.xz.bin config.nix.package ]; script = '' ${config.system.build.nixos-rebuild}/bin/nixos-rebuild switch ${toString cfg.flags} diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index ec880e084726..d3005cdfd6f7 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -165,7 +165,7 @@ sub pciCheck { ) ) { # we need e.g. brcmfmac43602-pcie.bin - push @imports, ""; + push @imports, ""; } # Can't rely on $module here, since the module may not be loaded diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix index f71d1e3fe200..1e14fe655fc0 100644 --- a/nixos/modules/misc/ids.nix +++ b/nixos/modules/misc/ids.nix @@ -257,6 +257,8 @@ radicale = 234; hydra-queue-runner = 235; hydra-www = 236; + syncthing = 237; + mfi = 238; # When adding a uid, make sure it doesn't match an existing gid. And don't use uids above 399! @@ -485,6 +487,8 @@ pdnsd = 229; octoprint = 230; radicale = 234; + syncthing = 237; + #mfi = 238; # unused # When adding a gid, make sure it doesn't match an existing # uid. Users and groups with the same name should have equal diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 9462d72996fc..7bcc5b849417 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -283,6 +283,7 @@ ./services/network-filesystems/openafs-client/default.nix ./services/network-filesystems/rsyncd.nix ./services/network-filesystems/samba.nix + ./services/network-filesystems/tahoe.nix ./services/network-filesystems/diod.nix ./services/network-filesystems/u9fs.nix ./services/network-filesystems/yandex-disk.nix @@ -327,12 +328,13 @@ ./services/networking/hostapd.nix ./services/networking/i2pd.nix ./services/networking/i2p.nix - ./services/networking/iodined.nix + ./services/networking/iodine.nix ./services/networking/ircd-hybrid/default.nix ./services/networking/kippo.nix ./services/networking/lambdabot.nix ./services/networking/libreswan.nix ./services/networking/mailpile.nix + ./services/networking/mfi.nix ./services/networking/mjpg-streamer.nix ./services/networking/minidlna.nix ./services/networking/miniupnpd.nix diff --git a/nixos/modules/profiles/base.nix b/nixos/modules/profiles/base.nix index b8057cadce25..20a1f7f1ed8c 100644 --- a/nixos/modules/profiles/base.nix +++ b/nixos/modules/profiles/base.nix @@ -35,7 +35,7 @@ # Tools to create / manipulate filesystems. pkgs.ntfsprogs # for resizing NTFS partitions pkgs.dosfstools - pkgs.xfsprogs + pkgs.xfsprogs.bin pkgs.jfsutils pkgs.f2fs-tools diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix index b4259f7ec87d..7a4b78118ce6 100644 --- a/nixos/modules/programs/fish.nix +++ b/nixos/modules/programs/fish.nix @@ -101,6 +101,9 @@ in end ''; + # include programs that bring their own completions + environment.pathsToLink = [ "/share/fish/vendor_completions.d" ]; + environment.systemPackages = [ pkgs.fish ]; environment.shells = [ diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix index b28506538049..201144ccb451 100644 --- a/nixos/modules/programs/man.nix +++ b/nixos/modules/programs/man.nix @@ -23,7 +23,7 @@ with lib; environment.pathsToLink = [ "/share/man" ]; - environment.outputsToLink = [ "man" ]; + environment.extraOutputsToInstall = [ "man" ]; }; diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix index 1ad45f468030..cc835081c9f9 100644 --- a/nixos/modules/programs/ssh.nix +++ b/nixos/modules/programs/ssh.nix @@ -189,6 +189,7 @@ in # Allow DSA keys for now. (These were deprecated in OpenSSH 7.0.) PubkeyAcceptedKeyTypes +ssh-dss + HostKeyAlgorithms +ssh-dss ${cfg.extraConfig} ''; diff --git a/nixos/modules/programs/xfs_quota.nix b/nixos/modules/programs/xfs_quota.nix index 90b6304fa999..648fd9a8a94f 100644 --- a/nixos/modules/programs/xfs_quota.nix +++ b/nixos/modules/programs/xfs_quota.nix @@ -89,8 +89,8 @@ in nameValuePair "xfs_quota-${name}" { description = "Setup xfs_quota for project ${name}"; script = '' - ${pkgs.xfsprogs}/bin/xfs_quota -x -c 'project -s ${name}' ${opts.fileSystem} - ${pkgs.xfsprogs}/bin/xfs_quota -x -c 'limit -p ${limitOptions opts} ${name}' ${opts.fileSystem} + ${pkgs.xfsprogs.bin}/bin/xfs_quota -x -c 'project -s ${name}' ${opts.fileSystem} + ${pkgs.xfsprogs.bin}/bin/xfs_quota -x -c 'limit -p ${limitOptions opts} ${name}' ${opts.fileSystem} ''; wantedBy = [ "multi-user.target" ]; diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index c6a781b6f00f..84eccfd51292 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -101,6 +101,13 @@ with lib; # Enlightenment (mkRenamedOptionModule [ "services" "xserver" "desktopManager" "e19" "enable" ] [ "services" "xserver" "desktopManager" "enlightenment" "enable" ]) + # Iodine + (mkRenamedOptionModule [ "services" "iodined" "enable" ] [ "services" "iodine" "server" "enable" ]) + (mkRenamedOptionModule [ "services" "iodined" "domain" ] [ "services" "iodine" "server" "domain" ]) + (mkRenamedOptionModule [ "services" "iodined" "ip" ] [ "services" "iodine" "server" "ip" ]) + (mkRenamedOptionModule [ "services" "iodined" "extraConfig" ] [ "services" "iodine" "server" "extraConfig" ]) + (mkRemovedOptionModule [ "services" "iodined" "client" ]) + # Options that are obsolete and have no replacement. (mkRemovedOptionModule [ "boot" "initrd" "luks" "enable" ]) (mkRemovedOptionModule [ "programs" "bash" "enable" ]) diff --git a/nixos/modules/security/apparmor-suid.nix b/nixos/modules/security/apparmor-suid.nix index b89b379ae666..d766f6badfc7 100644 --- a/nixos/modules/security/apparmor-suid.nix +++ b/nixos/modules/security/apparmor-suid.nix @@ -28,9 +28,9 @@ with lib; capability setuid, network inet raw, - ${pkgs.glibc}/lib/*.so mr, - ${pkgs.libcap}/lib/libcap.so* mr, - ${pkgs.attr}/lib/libattr.so* mr, + ${pkgs.glibc.out}/lib/*.so mr, + ${pkgs.libcap.out}/lib/libcap.so* mr, + ${pkgs.attr.out}/lib/libattr.so* mr, ${pkgs.iputils}/bin/ping mixr, /var/setuid-wrappers/ping.real r, diff --git a/nixos/modules/security/polkit.nix b/nixos/modules/security/polkit.nix index 95b659d96f0f..507f81bbf073 100644 --- a/nixos/modules/security/polkit.nix +++ b/nixos/modules/security/polkit.nix @@ -59,9 +59,9 @@ in config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.polkit ]; + environment.systemPackages = [ pkgs.polkit.bin pkgs.polkit.out ]; - systemd.packages = [ pkgs.polkit ]; + systemd.packages = [ pkgs.polkit.out ]; systemd.services.polkit.restartTriggers = [ config.system.path ]; systemd.services.polkit.unitConfig.X-StopIfChanged = false; @@ -79,7 +79,7 @@ in ${cfg.extraConfig} ''; #TODO: validation on compilation (at least against typos) - services.dbus.packages = [ pkgs.polkit ]; + services.dbus.packages = [ pkgs.polkit.out ]; security.pam.services.polkit-1 = {}; @@ -90,7 +90,7 @@ in owner = "root"; group = "root"; setuid = true; - source = "${pkgs.polkit}/lib/polkit-1/polkit-agent-helper-1"; + source = "${pkgs.polkit.out}/lib/polkit-1/polkit-agent-helper-1"; } ]; diff --git a/nixos/modules/security/setuid-wrappers.nix b/nixos/modules/security/setuid-wrappers.nix index 2a289dc402ce..7d69f9b1183d 100644 --- a/nixos/modules/security/setuid-wrappers.nix +++ b/nixos/modules/security/setuid-wrappers.nix @@ -8,12 +8,12 @@ let setuidWrapper = pkgs.stdenv.mkDerivation { name = "setuid-wrapper"; - buildCommand = '' + unpackPhase = "true"; + installPhase = '' mkdir -p $out/bin cp ${./setuid-wrapper.c} setuid-wrapper.c gcc -Wall -O2 -DWRAPPER_DIR=\"${wrapperDir}\" \ setuid-wrapper.c -o $out/bin/setuid-wrapper - strip -S $out/bin/setuid-wrapper ''; }; diff --git a/nixos/modules/services/backup/crashplan.nix b/nixos/modules/services/backup/crashplan.nix index 46d4c5192d9e..94aa3b17b663 100644 --- a/nixos/modules/services/backup/crashplan.nix +++ b/nixos/modules/services/backup/crashplan.nix @@ -50,7 +50,7 @@ with lib; ensureDir ${crashplan.vardir}/log 777 cp -avn ${crashplan}/conf.template/* ${crashplan.vardir}/conf for x in app.asar bin EULA.txt install.vars lang lib libjniwrap64.so libjniwrap.so libjtux64.so libjtux.so libmd564.so libmd5.so share skin upgrade; do - if [ -e $x ]; then + if [ -e ${crashplan.vardir}/$x ]; then true; else ln -s ${crashplan}/$x ${crashplan.vardir}/$x; diff --git a/nixos/modules/services/continuous-integration/jenkins/default.nix b/nixos/modules/services/continuous-integration/jenkins/default.nix index cfb1cd773c7f..6fd39e68b1d9 100644 --- a/nixos/modules/services/continuous-integration/jenkins/default.nix +++ b/nixos/modules/services/continuous-integration/jenkins/default.nix @@ -161,11 +161,11 @@ in { ''; postStart = '' - until ${pkgs.curl}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} ; do + until ${pkgs.curl.bin}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix} ; do sleep 10 done while true ; do - index=`${pkgs.curl}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix}` + index=`${pkgs.curl.bin}/bin/curl -s -L ${cfg.listenAddress}:${toString cfg.port}${cfg.prefix}` if [[ !("$index" =~ 'Please wait while Jenkins is restarting' || "$index" =~ 'Please wait while Jenkins is getting ready to work') ]]; then exit 0 diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index 6fd901a00559..9e86559dda04 100644 --- a/nixos/modules/services/databases/openldap.nix +++ b/nixos/modules/services/databases/openldap.nix @@ -87,7 +87,7 @@ in mkdir -p ${cfg.dataDir} chown -R ${cfg.user}:${cfg.group} ${cfg.dataDir} ''; - serviceConfig.ExecStart = "${openldap}/libexec/slapd -u ${cfg.user} -g ${cfg.group} -d 0 -f ${configFile}"; + serviceConfig.ExecStart = "${openldap.out}/libexec/slapd -u ${cfg.user} -g ${cfg.group} -d 0 -f ${configFile}"; }; users.extraUsers.openldap = diff --git a/nixos/modules/services/desktops/gnome3/gvfs.nix b/nixos/modules/services/desktops/gnome3/gvfs.nix index c4f41a6125c7..a07cdadbb12b 100644 --- a/nixos/modules/services/desktops/gnome3/gvfs.nix +++ b/nixos/modules/services/desktops/gnome3/gvfs.nix @@ -37,7 +37,7 @@ in services.dbus.packages = [ gnome3.gvfs ]; - services.udev.packages = [ pkgs.libmtp ]; + services.udev.packages = [ pkgs.libmtp.bin ]; }; diff --git a/nixos/modules/services/hardware/udev.nix b/nixos/modules/services/hardware/udev.nix index e267aeee030c..8e883ed7775f 100644 --- a/nixos/modules/services/hardware/udev.nix +++ b/nixos/modules/services/hardware/udev.nix @@ -72,7 +72,7 @@ let run_progs=$(grep -v '^[[:space:]]*#' $out/* | grep 'RUN+="[^/$]' | sed -e 's/.*RUN+="\([^ "]*\)[ "].*/\1/' | uniq) for i in $import_progs $run_progs; do - if [[ ! -x ${pkgs.udev}/lib/udev/$i && ! $i =~ socket:.* ]]; then + if [[ ! -x ${udev}/lib/udev/$i && ! $i =~ socket:.* ]]; then echo "FAIL" echo "$i is called in udev rules but not installed by udev" exit 1 diff --git a/nixos/modules/services/hardware/upower.nix b/nixos/modules/services/hardware/upower.nix index 739d76fbf1f5..2198842a4511 100644 --- a/nixos/modules/services/hardware/upower.nix +++ b/nixos/modules/services/hardware/upower.nix @@ -51,7 +51,7 @@ in systemd.services.upower = { description = "Power Management Daemon"; - path = [ pkgs.glib ]; # needed for gdbus + path = [ pkgs.glib.out ]; # needed for gdbus serviceConfig = { Type = "dbus"; BusName = "org.freedesktop.UPower"; diff --git a/nixos/modules/services/misc/docker-registry.nix b/nixos/modules/services/misc/docker-registry.nix index 0a0e160a7cc3..add339f9bdfe 100644 --- a/nixos/modules/services/misc/docker-registry.nix +++ b/nixos/modules/services/misc/docker-registry.nix @@ -65,7 +65,7 @@ in { }; postStart = '' - until ${pkgs.curl}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/'; do + until ${pkgs.curl.bin}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/'; do sleep 1; done ''; diff --git a/nixos/modules/services/misc/nix-daemon.nix b/nixos/modules/services/misc/nix-daemon.nix index e079a5d80d4c..911f79e5756a 100644 --- a/nixos/modules/services/misc/nix-daemon.nix +++ b/nixos/modules/services/misc/nix-daemon.nix @@ -358,7 +358,7 @@ in systemd.sockets.nix-daemon.wantedBy = [ "sockets.target" ]; systemd.services.nix-daemon = - { path = [ nix pkgs.openssl pkgs.utillinux config.programs.ssh.package ] + { path = [ nix pkgs.openssl.bin pkgs.utillinux config.programs.ssh.package ] ++ optionals cfg.distributedBuilds [ pkgs.gzip ]; environment = cfg.envVars diff --git a/nixos/modules/services/misc/plex.nix b/nixos/modules/services/misc/plex.nix index 875771dfa37f..92b352db416c 100644 --- a/nixos/modules/services/misc/plex.nix +++ b/nixos/modules/services/misc/plex.nix @@ -128,6 +128,7 @@ in Group = cfg.group; PermissionsStartOnly = "true"; ExecStart = "/bin/sh -c '${cfg.package}/usr/lib/plexmediaserver/Plex\\ Media\\ Server'"; + Restart = "on-failure"; }; environment = { PLEX_MEDIA_SERVER_APPLICATION_SUPPORT_DIR=cfg.dataDir; diff --git a/nixos/modules/services/misc/subsonic.nix b/nixos/modules/services/misc/subsonic.nix index 020d53a481de..c1ebe418f727 100644 --- a/nixos/modules/services/misc/subsonic.nix +++ b/nixos/modules/services/misc/subsonic.nix @@ -97,7 +97,7 @@ in transcoders = mkOption { type = types.listOf types.path; - default = [ "${pkgs.ffmpeg}/bin/ffmpeg" ]; + default = [ "${pkgs.ffmpeg.bin}/bin/ffmpeg" ]; description = '' List of paths to transcoder executables that should be accessible from Subsonic. Symlinks will be created to each executable inside diff --git a/nixos/modules/services/misc/svnserve.nix b/nixos/modules/services/misc/svnserve.nix index 37dd133e137d..c74befac749d 100644 --- a/nixos/modules/services/misc/svnserve.nix +++ b/nixos/modules/services/misc/svnserve.nix @@ -38,7 +38,7 @@ in after = [ "network-interfaces.target" ]; wantedBy = [ "multi-user.target" ]; preStart = "mkdir -p ${cfg.svnBaseDir}"; - script = "${pkgs.subversion}/bin/svnserve -r ${cfg.svnBaseDir} -d --foreground --pid-file=/var/run/svnserve.pid"; + script = "${pkgs.subversion.out}/bin/svnserve -r ${cfg.svnBaseDir} -d --foreground --pid-file=/var/run/svnserve.pid"; }; }; } diff --git a/nixos/modules/services/monitoring/cadvisor.nix b/nixos/modules/services/monitoring/cadvisor.nix index 425e0ee9230f..a67df158be47 100644 --- a/nixos/modules/services/monitoring/cadvisor.nix +++ b/nixos/modules/services/monitoring/cadvisor.nix @@ -71,7 +71,7 @@ in { after = [ "network.target" "docker.service" "influxdb.service" ]; postStart = mkBefore '' - until ${pkgs.curl}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/containers/'; do + until ${pkgs.curl.bin}/bin/curl -s -o /dev/null 'http://${cfg.listenAddress}:${toString cfg.port}/containers/'; do sleep 1; done ''; diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix index 7104a5796f76..e50728aff8f8 100644 --- a/nixos/modules/services/monitoring/graphite.nix +++ b/nixos/modules/services/monitoring/graphite.nix @@ -509,7 +509,7 @@ in { }; in "${aenv}/${pkgs.python.sitePackages}"; GRAPHITE_API_CONFIG = graphiteApiConfig; - LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; + LD_LIBRARY_PATH = "${pkgs.cairo.out}/lib"; }; serviceConfig = { ExecStart = '' diff --git a/nixos/modules/services/network-filesystems/tahoe.nix b/nixos/modules/services/network-filesystems/tahoe.nix new file mode 100644 index 000000000000..ab441339a560 --- /dev/null +++ b/nixos/modules/services/network-filesystems/tahoe.nix @@ -0,0 +1,286 @@ +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.services.tahoe; +in + { + options.services.tahoe = { + introducers = mkOption { + default = {}; + type = types.loaOf types.optionSet; + description = '' + The Tahoe introducers. + ''; + options = { + nickname = mkOption { + type = types.str; + description = '' + The nickname of this Tahoe introducer. + ''; + }; + tub.port = mkOption { + default = 3458; + type = types.int; + description = '' + The port on which the introducer will listen. + ''; + }; + package = mkOption { + default = pkgs.tahoelafs; + defaultText = "pkgs.tahoelafs"; + type = types.package; + example = literalExample "pkgs.tahoelafs"; + description = '' + The package to use for the Tahoe LAFS daemon. + ''; + }; + }; + }; + nodes = mkOption { + default = {}; + type = types.loaOf types.optionSet; + description = '' + The Tahoe nodes. + ''; + options = { + nickname = mkOption { + type = types.str; + description = '' + The nickname of this Tahoe node. + ''; + }; + tub.port = mkOption { + default = 3457; + type = types.int; + description = '' + The port on which the tub will listen. + + This is the correct setting to tweak if you want Tahoe's storage + system to listen on a different port. + ''; + }; + web.port = mkOption { + default = 3456; + type = types.int; + description = '' + The port on which the Web server will listen. + + This is the correct setting to tweak if you want Tahoe's WUI to + listen on a different port. + ''; + }; + client.introducer = mkOption { + default = null; + type = types.nullOr types.str; + description = '' + The furl for a Tahoe introducer node. + + Like all furls, keep this safe and don't share it. + ''; + }; + client.helper = mkOption { + default = null; + type = types.nullOr types.str; + description = '' + The furl for a Tahoe helper node. + + Like all furls, keep this safe and don't share it. + ''; + }; + client.shares.needed = mkOption { + default = 3; + type = types.int; + description = '' + The number of shares required to reconstitute a file. + ''; + }; + client.shares.happy = mkOption { + default = 7; + type = types.int; + description = '' + The number of distinct storage nodes required to store + a file. + ''; + }; + client.shares.total = mkOption { + default = 10; + type = types.int; + description = '' + The number of shares required to store a file. + ''; + }; + storage.enable = mkEnableOption "storage service"; + storage.reservedSpace = mkOption { + default = "1G"; + type = types.str; + description = '' + The amount of filesystem space to not use for storage. + ''; + }; + helper.enable = mkEnableOption "helper service"; + package = mkOption { + default = pkgs.tahoelafs; + defaultText = "pkgs.tahoelafs"; + type = types.package; + example = literalExample "pkgs.tahoelafs"; + description = '' + The package to use for the Tahoe LAFS daemon. + ''; + }; + }; + }; + }; + config = mkMerge [ + (mkIf (cfg.introducers != {}) { + environment = { + etc = flip mapAttrs' cfg.introducers (node: settings: + nameValuePair "tahoe-lafs/introducer-${node}.cfg" { + mode = "0444"; + text = '' + # This configuration is generated by Nix. Edit at your own + # peril; here be dragons. + + [node] + nickname = ${settings.nickname} + tub.port = ${toString settings.tub.port} + ''; + }); + # Actually require Tahoe, so that we will have it installed. + systemPackages = flip mapAttrsToList cfg.introducers (node: settings: + settings.package + ); + }; + # Open up the firewall. + # networking.firewall.allowedTCPPorts = flip mapAttrsToList cfg.introducers + # (node: settings: settings.tub.port); + systemd.services = flip mapAttrs' cfg.introducers (node: settings: + let + pidfile = "/run/tahoe.introducer-${node}.pid"; + # This is a directory, but it has no trailing slash. Tahoe commands + # get antsy when there's a trailing slash. + nodedir = "/var/db/tahoe-lafs/introducer-${node}"; + in nameValuePair "tahoe.introducer-${node}" { + description = "Tahoe LAFS node ${node}"; + wantedBy = [ "multi-user.target" ]; + path = [ settings.package ]; + restartTriggers = [ + config.environment.etc."tahoe-lafs/introducer-${node}.cfg".source ]; + serviceConfig = { + Type = "simple"; + PIDFile = pidfile; + }; + preStart = '' + if [ \! -d ${nodedir} ]; then + mkdir -p /var/db/tahoe-lafs + tahoe create-introducer ${nodedir} + fi + + # Tahoe has created a predefined tahoe.cfg which we must now + # scribble over. + # XXX I thought that a symlink would work here, but it doesn't, so + # we must do this on every prestart. Fixes welcome. + # rm ${nodedir}/tahoe.cfg + # ln -s /etc/tahoe-lafs/introducer-${node}.cfg ${nodedir}/tahoe.cfg + cp /etc/tahoe-lafs/introducer-${node}.cfg ${nodedir}/tahoe.cfg + ''; + # Believe it or not, Tahoe is very brittle about the order of + # arguments to $(tahoe start). The node directory must come first, + # and arguments which alter Twisted's behavior come afterwards. + script = '' + tahoe start ${nodedir} -n -l- --pidfile=${pidfile} + ''; + }); + users.extraUsers = flip mapAttrs' cfg.introducers (node: _: + nameValuePair "tahoe.introducer-${node}" { + description = "Tahoe node user for introducer ${node}"; + isSystemUser = true; + }); + }) + (mkIf (cfg.nodes != {}) { + environment = { + etc = flip mapAttrs' cfg.nodes (node: settings: + nameValuePair "tahoe-lafs/${node}.cfg" { + mode = "0444"; + text = '' + # This configuration is generated by Nix. Edit at your own + # peril; here be dragons. + + [node] + nickname = ${settings.nickname} + tub.port = ${toString settings.tub.port} + # This is a Twisted endpoint. Twisted Web doesn't work on + # non-TCP. ~ C. + web.port = tcp:${toString settings.web.port} + + [client] + ${optionalString (settings.client.introducer != null) + "introducer.furl = ${settings.client.introducer}"} + ${optionalString (settings.client.helper != null) + "helper.furl = ${settings.client.helper}"} + + shares.needed = ${toString settings.client.shares.needed} + shares.happy = ${toString settings.client.shares.happy} + shares.total = ${toString settings.client.shares.total} + + [storage] + enabled = ${if settings.storage.enable then "true" else "false"} + reserved_space = ${settings.storage.reservedSpace} + + [helper] + enabled = ${if settings.helper.enable then "true" else "false"} + ''; + }); + # Actually require Tahoe, so that we will have it installed. + systemPackages = flip mapAttrsToList cfg.nodes (node: settings: + settings.package + ); + }; + # Open up the firewall. + # networking.firewall.allowedTCPPorts = flip mapAttrsToList cfg.nodes + # (node: settings: settings.tub.port); + systemd.services = flip mapAttrs' cfg.nodes (node: settings: + let + pidfile = "/run/tahoe.${node}.pid"; + # This is a directory, but it has no trailing slash. Tahoe commands + # get antsy when there's a trailing slash. + nodedir = "/var/db/tahoe-lafs/${node}"; + in nameValuePair "tahoe.${node}" { + description = "Tahoe LAFS node ${node}"; + wantedBy = [ "multi-user.target" ]; + path = [ settings.package ]; + restartTriggers = [ + config.environment.etc."tahoe-lafs/${node}.cfg".source ]; + serviceConfig = { + Type = "simple"; + PIDFile = pidfile; + }; + preStart = '' + if [ \! -d ${nodedir} ]; then + mkdir -p /var/db/tahoe-lafs + tahoe create-node ${nodedir} + fi + + # Tahoe has created a predefined tahoe.cfg which we must now + # scribble over. + # XXX I thought that a symlink would work here, but it doesn't, so + # we must do this on every prestart. Fixes welcome. + # rm ${nodedir}/tahoe.cfg + # ln -s /etc/tahoe-lafs/${node}.cfg ${nodedir}/tahoe.cfg + cp /etc/tahoe-lafs/${node}.cfg ${nodedir}/tahoe.cfg + ''; + # Believe it or not, Tahoe is very brittle about the order of + # arguments to $(tahoe start). The node directory must come first, + # and arguments which alter Twisted's behavior come afterwards. + script = '' + tahoe start ${nodedir} -n -l- --pidfile=${pidfile} + ''; + }); + users.extraUsers = flip mapAttrs' cfg.nodes (node: _: + nameValuePair "tahoe.${node}" { + description = "Tahoe node user for node ${node}"; + isSystemUser = true; + }); + }) + ]; + } diff --git a/nixos/modules/services/network-filesystems/u9fs.nix b/nixos/modules/services/network-filesystems/u9fs.nix index 648097274641..8bc37f0f62c3 100644 --- a/nixos/modules/services/network-filesystems/u9fs.nix +++ b/nixos/modules/services/network-filesystems/u9fs.nix @@ -27,10 +27,17 @@ in ''; }; + user = mkOption { + type = types.str; + default = "nobody"; + description = + "User to run u9fs under."; + }; + extraArgs = mkOption { type = types.str; default = ""; - example = "-a none -u nobody"; + example = "-a none"; description = '' Extra arguments to pass on invocation, @@ -38,13 +45,6 @@ in ''; }; - fsroot = mkOption { - type = types.path; - default = "/"; - example = "/srv"; - description = "File system root to serve to clients."; - }; - }; }; @@ -63,9 +63,10 @@ in reloadIfChanged = true; requires = [ "u9fs.socket" ]; serviceConfig = - { ExecStart = "-${pkgs.u9fs}/bin/u9fs ${cfg.extraArgs} ${cfg.fsroot}"; + { ExecStart = "-${pkgs.u9fs}/bin/u9fs ${cfg.extraArgs}"; StandardInput = "socket"; StandardError = "journal"; + User = cfg.user; }; }; }; diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 886bfc30468e..61305f5a755e 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -151,7 +151,7 @@ in /etc/group r, ${config.environment.etc."nsswitch.conf".source} r, - ${pkgs.glibc}/lib/*.so mr, + ${pkgs.glibc.out}/lib/*.so mr, ${pkgs.tzdata}/share/zoneinfo/** r, network inet stream, @@ -159,12 +159,12 @@ in network inet dgram, network inet6 dgram, - ${pkgs.gcc.cc}/lib/libssp.so.* mr, - ${pkgs.libsodium}/lib/libsodium.so.* mr, + ${pkgs.gcc.cc.lib}/lib/libssp.so.* mr, + ${pkgs.libsodium.out}/lib/libsodium.so.* mr, ${pkgs.systemd}/lib/libsystemd.so.* mr, - ${pkgs.xz}/lib/liblzma.so.* mr, - ${pkgs.libgcrypt}/lib/libgcrypt.so.* mr, - ${pkgs.libgpgerror}/lib/libgpg-error.so.* mr, + ${pkgs.xz.out}/lib/liblzma.so.* mr, + ${pkgs.libgcrypt.out}/lib/libgcrypt.so.* mr, + ${pkgs.libgpgerror.out}/lib/libgpg-error.so.* mr, ${pkgs.libcap}/lib/libcap.so.* mr, ${pkgs.lz4}/lib/liblz4.so.* mr, ${pkgs.attr}/lib/libattr.so.* mr, diff --git a/nixos/modules/services/networking/i2pd.nix b/nixos/modules/services/networking/i2pd.nix index 15ec9be80121..0cbf57314c4b 100644 --- a/nixos/modules/services/networking/i2pd.nix +++ b/nixos/modules/services/networking/i2pd.nix @@ -8,7 +8,7 @@ let homeDir = "/var/lib/i2pd"; - extip = "EXTIP=\$(${pkgs.curl}/bin/curl -sf \"http://jsonip.com\" | ${pkgs.gawk}/bin/awk -F'\"' '{print $4}')"; + extip = "EXTIP=\$(${pkgs.curl.bin}/bin/curl -sf \"http://jsonip.com\" | ${pkgs.gawk}/bin/awk -F'\"' '{print $4}')"; toYesNo = b: if b then "yes" else "no"; diff --git a/nixos/modules/services/networking/iodine.nix b/nixos/modules/services/networking/iodine.nix new file mode 100644 index 000000000000..1b0d2d9a517c --- /dev/null +++ b/nixos/modules/services/networking/iodine.nix @@ -0,0 +1,136 @@ +# NixOS module for iodine, ip over dns daemon + +{ config, lib, pkgs, ... }: + +with lib; + +let + cfg = config.services.iodine; + + iodinedUser = "iodined"; + +in +{ + + ### configuration + + options = { + + services.iodine = { + clients = mkOption { + default = {}; + description = '' + Each attribute of this option defines a systemd service that + runs iodine. Many or none may be defined. + The name of each service is + iodine-name + where name is the name of the + corresponding attribute name. + ''; + example = literalExample '' + { + foo = { + server = "tunnel.mdomain.com"; + relay = "8.8.8.8"; + extraConfig = "-P mysecurepassword"; + } + } + ''; + type = types.attrsOf (types.submodule ( + { + options = { + server = mkOption { + type = types.str; + default = ""; + description = "Domain or Subdomain of server running iodined"; + example = "tunnel.mydomain.com"; + }; + + relay = mkOption { + type = types.str; + default = ""; + description = "DNS server to use as a intermediate relay to the iodined server"; + example = "8.8.8.8"; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Additional command line parameters"; + example = "-P mysecurepassword -l 192.168.1.10 -p 23"; + }; + }; + })); + }; + + server = { + enable = mkOption { + type = types.bool; + default = false; + description = "enable iodined server"; + }; + + ip = mkOption { + type = types.str; + default = ""; + description = "The assigned ip address or ip range"; + example = "172.16.10.1/24"; + }; + + domain = mkOption { + type = types.str; + default = ""; + description = "Domain or subdomain of which nameservers point to us"; + example = "tunnel.mydomain.com"; + }; + + extraConfig = mkOption { + type = types.str; + default = ""; + description = "Additional command line parameters"; + example = "-P mysecurepassword -l 192.168.1.10 -p 23"; + }; + }; + + }; + }; + + ### implementation + + config = mkIf (cfg.server.enable || cfg.clients != {}) { + environment.systemPackages = [ pkgs.iodine ]; + boot.kernelModules = [ "tun" ]; + + systemd.services = + let + createIodineClientService = name: cfg: + { + description = "iodine client - ${name}"; + wantedBy = [ "ip-up.target" ]; + serviceConfig = { + RestartSec = "30s"; + Restart = "always"; + ExecStart = "${pkgs.iodine}/bin/iodine -f -u ${iodinedUser} ${cfg.extraConfig} ${cfg.relay} ${cfg.server}"; + }; + }; + in + listToAttrs ( + mapAttrsToList + (name: value: nameValuePair "iodine-${name}" (createIodineClientService name value)) + cfg.clients + ) // { + iodined = mkIf (cfg.server.enable) { + description = "iodine, ip over dns server daemon"; + wantedBy = [ "ip-up.target" ]; + serviceConfig.ExecStart = "${pkgs.iodine}/bin/iodined -f -u ${iodinedUser} ${cfg.server.extraConfig} ${cfg.server.ip} ${cfg.server.domain}"; + }; + }; + + users.extraUsers = singleton { + name = iodinedUser; + uid = config.ids.uids.iodined; + description = "Iodine daemon user"; + }; + users.extraGroups.iodined.gid = config.ids.gids.iodined; + }; +} diff --git a/nixos/modules/services/networking/iodined.nix b/nixos/modules/services/networking/iodined.nix deleted file mode 100644 index 20d371c4e2d1..000000000000 --- a/nixos/modules/services/networking/iodined.nix +++ /dev/null @@ -1,86 +0,0 @@ -# NixOS module for iodine, ip over dns daemon - -{ config, lib, pkgs, ... }: - -with lib; - -let - cfg = config.services.iodined; - - iodinedUser = "iodined"; - -in - -{ - - ### configuration - - options = { - - services.iodined = { - - enable = mkOption { - type = types.bool; - default = false; - description = "Enable iodine, ip over dns daemon"; - }; - - client = mkOption { - type = types.bool; - default = false; - description = "Start iodine in client mode"; - }; - - ip = mkOption { - type = types.str; - default = ""; - description = "Assigned ip address or ip range"; - example = "172.16.10.1/24"; - }; - - domain = mkOption { - type = types.str; - default = ""; - description = "Domain or subdomain of which nameservers point to us"; - example = "tunnel.mydomain.com"; - }; - - extraConfig = mkOption { - type = types.str; - default = ""; - description = "Additional command line parameters"; - example = "-P mysecurepassword -l 192.168.1.10 -p 23"; - }; - - }; - - }; - - ### implementation - - config = mkIf cfg.enable { - environment.systemPackages = [ pkgs.iodine ]; - boot.kernelModules = [ "tun" ]; - - systemd.services.iodined = { - description = "iodine, ip over dns daemon"; - wantedBy = [ "ip-up.target" ]; - serviceConfig.ExecStart = "${pkgs.iodine}/sbin/iodined -f -u ${iodinedUser} ${cfg.extraConfig} ${cfg.ip} ${cfg.domain}"; - }; - - - users.extraUsers = singleton { - name = iodinedUser; - uid = config.ids.uids.iodined; - description = "Iodine daemon user"; - }; - users.extraGroups.iodined.gid = config.ids.gids.iodined; - - assertions = [{ assertion = if !cfg.client then cfg.ip != "" else true; - message = "cannot start iodined without ip set";} - { assertion = cfg.domain != ""; - message = "cannot start iodined without domain name set";}]; - - }; - -} diff --git a/nixos/modules/services/networking/mfi.nix b/nixos/modules/services/networking/mfi.nix new file mode 100644 index 000000000000..5afb83ed022f --- /dev/null +++ b/nixos/modules/services/networking/mfi.nix @@ -0,0 +1,90 @@ +{ config, lib, pkgs, utils, ... }: +with lib; +let + name = "Ubiquiti mFi Controller"; + cfg = config.services.mfi; + stateDir = "/var/lib/mfi"; + # XXX 2 runtime exceptions using jre8: JSPException on GET / ; can't initialize ./data/keystore on first run. + cmd = "@${pkgs.jre7}/bin/java java -jar ${stateDir}/lib/ace.jar"; + mountPoints = [ + { what = "${pkgs.mfi}/dl"; where = "${stateDir}/dl"; } + { what = "${pkgs.mfi}/lib"; where = "${stateDir}/lib"; } + { what = "${pkgs.mongodb248}/bin"; where = "${stateDir}/bin"; } + ]; + systemdMountPoints = map (m: "${utils.escapeSystemdPath m.where}.mount") mountPoints; + ports = [ 6080 6880 6443 6843 ]; +in +{ + options = { + services.mfi = { + enable = mkEnableOption name; + openPorts = mkOption { + type = types.bool; + default = true; + description = "Whether to open TCP ports ${concatMapStrings (a: "${toString a} ") ports}for the services."; + }; + }; + }; + + config = mkIf cfg.enable { + + networking.firewall.allowedTCPPorts = mkIf config.services.mfi.openPorts ports; + + users.users.mfi = { + uid = config.ids.uids.mfi; + description = "mFi controller daemon user"; + home = "${stateDir}"; + }; + + # We must create the binary directories as bind mounts instead of symlinks + # This is because the controller resolves all symlinks to absolute paths + # to be used as the working directory. + systemd.mounts = map ({ what, where }: { + bindsTo = [ "mfi.service" ]; + partOf = [ "mfi.service" ]; + unitConfig.RequiresMountsFor = stateDir; + options = "bind"; + what = what; + where = where; + }) mountPoints; + + systemd.services.mfi = { + description = "mFi controller daemon"; + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ] ++ systemdMountPoints; + partOf = systemdMountPoints; + bindsTo = systemdMountPoints; + unitConfig.RequiresMountsFor = stateDir; + + preStart = '' + # Clear ./webapps each run. + rm -rf "${stateDir}/webapps" + mkdir -p "${stateDir}/webapps" + ln -s "${pkgs.mfi}/webapps/ROOT.war" "${stateDir}/webapps" + + # Copy initial config only once. + test -e "${stateDir}/conf" || cp -ar "${pkgs.mfi}/conf" "${stateDir}/conf" + test -e "${stateDir}/data" || cp -ar "${pkgs.mfi}/data" "${stateDir}/data" + + # Fix Permissions. + # (Bind-mounts cause errors; ignore exit codes) + chown -fR mfi: "${stateDir}" || true + chmod -fR u=rwX,go= "${stateDir}" || true + ''; + + postStop = '' + rm -rf "${stateDir}/webapps" + ''; + + serviceConfig = { + Type = "simple"; + ExecStart = "${cmd} start"; + ExecStop = "${cmd} stop"; + User = "mfi"; + PermissionsStartOnly = true; + UMask = "0077"; + WorkingDirectory = "${stateDir}"; + }; + }; + }; +} diff --git a/nixos/modules/services/networking/minidlna.nix b/nixos/modules/services/networking/minidlna.nix index aa28502a12c4..61d063dbfe0e 100644 --- a/nixos/modules/services/networking/minidlna.nix +++ b/nixos/modules/services/networking/minidlna.nix @@ -58,9 +58,9 @@ in services.minidlna.config = '' port=${toString port} - friendly_name=NixOS Media Server + friendly_name=${config.networking.hostName} MiniDLNA db_dir=/var/cache/minidlna - log_dir=/var/log/minidlna + log_level=warn inotify=yes ${concatMapStrings (dir: '' media_dir=${dir} @@ -83,21 +83,18 @@ in preStart = '' - mkdir -p /var/cache/minidlna /var/log/minidlna /run/minidlna - chown minidlna /var/cache/minidlna /var/log/minidlna /run/minidlna + mkdir -p /var/cache/minidlna + chown -R minidlna:minidlna /var/cache/minidlna ''; - # FIXME: log through the journal rather than - # /var/log/minidlna. The -d flag does that, but also raises - # the log level to debug... serviceConfig = { User = "minidlna"; - Group = "nogroup"; + Group = "minidlna"; PermissionsStartOnly = true; - Type = "forking"; + RuntimeDirectory = "minidlna"; PIDFile = "/run/minidlna/pid"; ExecStart = - "@${pkgs.minidlna}/sbin/minidlnad minidlnad -P /run/minidlna/pid" + + "${pkgs.minidlna}/sbin/minidlnad -S -P /run/minidlna/pid" + " -f ${pkgs.writeText "minidlna.conf" cfg.config}"; }; }; diff --git a/nixos/modules/services/networking/nix-serve.nix b/nixos/modules/services/networking/nix-serve.nix index 880a1d361dfe..8f6881441cf7 100644 --- a/nixos/modules/services/networking/nix-serve.nix +++ b/nixos/modules/services/networking/nix-serve.nix @@ -50,7 +50,7 @@ in after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; - path = [ config.nix.package pkgs.bzip2 ]; + path = [ config.nix.package pkgs.bzip2.bin ]; environment.NIX_REMOTE = "daemon"; environment.NIX_SECRET_KEY_FILE = cfg.secretKeyFile; diff --git a/nixos/modules/services/networking/syncthing.nix b/nixos/modules/services/networking/syncthing.nix index 67b90516b996..da9a270f30b6 100644 --- a/nixos/modules/services/networking/syncthing.nix +++ b/nixos/modules/services/networking/syncthing.nix @@ -5,6 +5,7 @@ with lib; let cfg = config.services.syncthing; + defaultUser = "syncthing"; in @@ -17,6 +18,7 @@ in services.syncthing = { enable = mkOption { + type = types.bool; default = false; description = '' Whether to enable the Syncthing, self-hosted open-source alternative @@ -26,7 +28,8 @@ in }; user = mkOption { - default = "syncthing"; + type = types.string; + default = defaultUser; description = '' Syncthing will be run under this user (user must exist, this can be your user name). @@ -34,8 +37,8 @@ in }; all_proxy = mkOption { - type = types.string; - default = ""; + type = types.nullOr types.string; + default = null; example = "socks5://address.com:1234"; description = '' Overwrites all_proxy environment variable for the syncthing process to @@ -45,6 +48,7 @@ in }; dataDir = mkOption { + type = types.path; default = "/var/lib/syncthing"; description = '' Path where the settings and keys will exist. @@ -71,20 +75,33 @@ in config = mkIf cfg.enable { + users = mkIf (cfg.user == defaultUser) { + extraUsers."${defaultUser}" = + { group = defaultUser; + home = cfg.dataDir; + createHome = true; + uid = config.ids.uids.syncthing; + description = "Syncthing daemon user"; + }; + + extraGroups."${defaultUser}".gid = + config.ids.gids.syncthing; + }; + systemd.services.syncthing = { description = "Syncthing service"; - after = [ "network.target" ]; + after = [ "network.target" ]; wantedBy = [ "multi-user.target" ]; environment = { STNORESTART = "yes"; # do not self-restart STNOUPGRADE = "yes"; - } // - (config.networking.proxy.envVars) // - (if cfg.all_proxy != "" then { all_proxy = cfg.all_proxy; } else {}); + inherit (cfg) all_proxy; + } // config.networking.proxy.envVars; serviceConfig = { - User = "${cfg.user}"; + User = cfg.user; + Group = optionalString (cfg.user == defaultUser) defaultUser; PermissionsStartOnly = true; Restart = "on-failure"; ExecStart = "${pkgs.syncthing}/bin/syncthing -no-browser -home=${cfg.dataDir}"; diff --git a/nixos/modules/services/printing/cupsd.nix b/nixos/modules/services/printing/cupsd.nix index 9e122dc7beac..29166be2399b 100644 --- a/nixos/modules/services/printing/cupsd.nix +++ b/nixos/modules/services/printing/cupsd.nix @@ -14,21 +14,21 @@ let additionalBackends = pkgs.runCommand "additional-cups-backends" { } '' mkdir -p $out - if [ ! -e ${cups}/lib/cups/backend/smb ]; then + if [ ! -e ${cups.out}/lib/cups/backend/smb ]; then mkdir -p $out/lib/cups/backend ln -sv ${pkgs.samba}/bin/smbspool $out/lib/cups/backend/smb fi # Provide support for printing via HTTPS. - if [ ! -e ${cups}/lib/cups/backend/https ]; then + if [ ! -e ${cups.out}/lib/cups/backend/https ]; then mkdir -p $out/lib/cups/backend - ln -sv ${cups}/lib/cups/backend/ipp $out/lib/cups/backend/https + ln -sv ${cups.out}/lib/cups/backend/ipp $out/lib/cups/backend/https fi ''; # Here we can enable additional backends, filters, etc. that are not # part of CUPS itself, e.g. the SMB backend is part of Samba. Since - # we can't update ${cups}/lib/cups itself, we create a symlink tree + # we can't update ${cups.out}/lib/cups itself, we create a symlink tree # here and add the additional programs. The ServerBin directive in # cupsd.conf tells cupsd to use this tree. bindir = pkgs.buildEnv { diff --git a/nixos/modules/services/search/elasticsearch.nix b/nixos/modules/services/search/elasticsearch.nix index 31332489a784..c51a42b8e9c1 100644 --- a/nixos/modules/services/search/elasticsearch.nix +++ b/nixos/modules/services/search/elasticsearch.nix @@ -148,7 +148,7 @@ in { if [ "$(id -u)" = 0 ]; then chown -R elasticsearch ${cfg.dataDir}; fi ''; postStart = mkBefore '' - until ${pkgs.curl}/bin/curl -s -o /dev/null ${cfg.listenAddress}:${toString cfg.port}; do + until ${pkgs.curl.bin}/bin/curl -s -o /dev/null ${cfg.listenAddress}:${toString cfg.port}; do sleep 1 done ''; diff --git a/nixos/modules/services/system/dbus.nix b/nixos/modules/services/system/dbus.nix index 77427ce9606e..327993443048 100644 --- a/nixos/modules/services/system/dbus.nix +++ b/nixos/modules/services/system/dbus.nix @@ -121,7 +121,7 @@ in security.setuidOwners = singleton { program = "dbus-daemon-launch-helper"; - source = "${pkgs.dbus_daemon}/libexec/dbus-daemon-launch-helper"; + source = "${pkgs.dbus_daemon.lib}/libexec/dbus-daemon-launch-helper"; owner = "root"; group = "messagebus"; setuid = true; @@ -139,6 +139,30 @@ in systemd.services.dbus.restartTriggers = [ configDir ]; + systemd.user = { + services.dbus = { + description = "D-Bus User Message Bus"; + requires = [ "dbus.socket" ]; + # NixOS doesn't support "Also" so we pull it in manually + # As the .service is supposed to come up at the same time as + # the .socket, we use basic.target instead of default.target + wantedBy = [ "basic.target" ]; + serviceConfig = { + ExecStart = "${pkgs.dbus_daemon}/bin/dbus-daemon --session --address=systemd: --nofork --nopidfile --systemd-activation"; + ExecReload = "${pkgs.dbus_daemon}/bin/dbus-send --print-reply --session --type=method_call --dest=org.freedesktop.DBus / org.freedesktop.DBus.ReloadConfig"; + }; + }; + + sockets.dbus = { + description = "D-Bus User Message Bus Socket"; + socketConfig = { + ListenStream = "%t/bus"; + ExecStartPost = "-${config.systemd.package}/bin/systemctl --user set-environment DBUS_SESSION_BUS_ADDRESS=unix:path=%t/bus"; + }; + wantedBy = [ "sockets.target" ]; + }; + }; + environment.pathsToLink = [ "/etc/dbus-1" "/share/dbus-1" ]; }; diff --git a/nixos/modules/services/system/nscd.nix b/nixos/modules/services/system/nscd.nix index 3c0d2043ed5d..d98ef8a306d5 100644 --- a/nixos/modules/services/system/nscd.nix +++ b/nixos/modules/services/system/nscd.nix @@ -64,14 +64,14 @@ in restartTriggers = [ config.environment.etc.hosts.source config.environment.etc."nsswitch.conf".source ]; serviceConfig = - { ExecStart = "@${pkgs.glibc}/sbin/nscd nscd -f ${cfgFile}"; + { ExecStart = "@${pkgs.glibc.bin}/sbin/nscd nscd -f ${cfgFile}"; Type = "forking"; PIDFile = "/run/nscd/nscd.pid"; Restart = "always"; ExecReload = - [ "${pkgs.glibc}/sbin/nscd --invalidate passwd" - "${pkgs.glibc}/sbin/nscd --invalidate group" - "${pkgs.glibc}/sbin/nscd --invalidate hosts" + [ "${pkgs.glibc.bin}/sbin/nscd --invalidate passwd" + "${pkgs.glibc.bin}/sbin/nscd --invalidate group" + "${pkgs.glibc.bin}/sbin/nscd --invalidate hosts" ]; }; @@ -79,7 +79,7 @@ in # its pid. So wait until it's ready. postStart = '' - while ! ${pkgs.glibc}/sbin/nscd -g -f ${cfgFile} > /dev/null; do + while ! ${pkgs.glibc.bin}/sbin/nscd -g -f ${cfgFile} > /dev/null; do sleep 0.2 done ''; diff --git a/nixos/modules/services/torrent/transmission.nix b/nixos/modules/services/torrent/transmission.nix index 7718a721763c..c2220cb0cff7 100644 --- a/nixos/modules/services/torrent/transmission.nix +++ b/nixos/modules/services/torrent/transmission.nix @@ -113,21 +113,21 @@ in #include #include - ${pkgs.glibc}/lib/*.so mr, - ${pkgs.libevent}/lib/libevent*.so* mr, - ${pkgs.curl}/lib/libcurl*.so* mr, - ${pkgs.openssl}/lib/libssl*.so* mr, - ${pkgs.openssl}/lib/libcrypto*.so* mr, - ${pkgs.zlib}/lib/libz*.so* mr, - ${pkgs.libssh2}/lib/libssh2*.so* mr, + ${pkgs.glibc.out}/lib/*.so mr, + ${pkgs.libevent.out}/lib/libevent*.so* mr, + ${pkgs.curl.out}/lib/libcurl*.so* mr, + ${pkgs.openssl.out}/lib/libssl*.so* mr, + ${pkgs.openssl.out}/lib/libcrypto*.so* mr, + ${pkgs.zlib.out}/lib/libz*.so* mr, + ${pkgs.libssh2.out}/lib/libssh2*.so* mr, ${pkgs.systemd}/lib/libsystemd*.so* mr, - ${pkgs.xz}/lib/liblzma*.so* mr, - ${pkgs.libgcrypt}/lib/libgcrypt*.so* mr, - ${pkgs.libgpgerror}/lib/libgpg-error*.so* mr, - ${pkgs.libnghttp2}/lib/libnghttp2*.so* mr, - ${pkgs.c-ares}/lib/libcares*.so* mr, - ${pkgs.libcap}/lib/libcap*.so* mr, - ${pkgs.attr}/lib/libattr*.so* mr, + ${pkgs.xz.out}/lib/liblzma*.so* mr, + ${pkgs.libgcrypt.out}/lib/libgcrypt*.so* mr, + ${pkgs.libgpgerror.out}/lib/libgpg-error*.so* mr, + ${pkgs.libnghttp2.out}/lib/libnghttp2*.so* mr, + ${pkgs.c-ares.out}/lib/libcares*.so* mr, + ${pkgs.libcap.out}/lib/libcap*.so* mr, + ${pkgs.attr.out}/lib/libattr*.so* mr, ${pkgs.lz4}/lib/liblz4*.so* mr, @{PROC}/sys/kernel/random/uuid r, diff --git a/nixos/modules/services/web-servers/apache-httpd/default.nix b/nixos/modules/services/web-servers/apache-httpd/default.nix index 60ec49c9e66e..7953729c00cd 100644 --- a/nixos/modules/services/web-servers/apache-httpd/default.nix +++ b/nixos/modules/services/web-servers/apache-httpd/default.nix @@ -6,13 +6,13 @@ let mainCfg = config.services.httpd; - httpd = mainCfg.package; + httpd = mainCfg.package.out; version24 = !versionOlder httpd.version "2.4"; httpdConf = mainCfg.configFile; - php = pkgs.php.override { apacheHttpd = httpd; }; + php = pkgs.php.override { apacheHttpd = httpd.dev; /* otherwise it only gets .out */ }; getPort = cfg: if cfg.port != 0 then cfg.port else if cfg.enableSSL then 443 else 80; @@ -685,6 +685,7 @@ in serviceConfig.ExecStart = "@${httpd}/bin/httpd httpd -f ${httpdConf}"; serviceConfig.ExecStop = "${httpd}/bin/httpd -f ${httpdConf} -k graceful-stop"; + serviceConfig.ExecReload = "${httpd}/bin/httpd -f ${httpdConf} -k graceful"; serviceConfig.Type = "forking"; serviceConfig.PIDFile = "${mainCfg.stateDir}/httpd.pid"; serviceConfig.Restart = "always"; diff --git a/nixos/modules/services/web-servers/apache-httpd/owncloud.nix b/nixos/modules/services/web-servers/apache-httpd/owncloud.nix index a9ec20ae8471..94e85f1f4289 100644 --- a/nixos/modules/services/web-servers/apache-httpd/owncloud.nix +++ b/nixos/modules/services/web-servers/apache-httpd/owncloud.nix @@ -333,7 +333,7 @@ let 'version' => '${config.package.version}', - 'openssl' => '${pkgs.openssl}/bin/openssl' + 'openssl' => '${pkgs.openssl.bin}/bin/openssl' ); diff --git a/nixos/modules/services/web-servers/apache-httpd/phabricator.nix b/nixos/modules/services/web-servers/apache-httpd/phabricator.nix index e4e3aac8d411..efd4a7b5f0fb 100644 --- a/nixos/modules/services/web-servers/apache-httpd/phabricator.nix +++ b/nixos/modules/services/web-servers/apache-httpd/phabricator.nix @@ -39,7 +39,7 @@ in { "${pkgs.diffutils}" ] ++ (if config.mercurial then ["${pkgs.mercurial}"] else []) ++ - (if config.subversion then ["${pkgs.subversion}"] else []) ++ + (if config.subversion then ["${pkgs.subversion.out}"] else []) ++ (if config.git then ["${pkgs.git}"] else []); startupScript = pkgs.writeScript "activatePhabricator" '' diff --git a/nixos/modules/services/web-servers/apache-httpd/trac.nix b/nixos/modules/services/web-servers/apache-httpd/trac.nix index 8fe8b90d823c..c5c11029010e 100644 --- a/nixos/modules/services/web-servers/apache-httpd/trac.nix +++ b/nixos/modules/services/web-servers/apache-httpd/trac.nix @@ -5,14 +5,19 @@ with lib; let # Build a Subversion instance with Apache modules and Swig/Python bindings. - subversion = pkgs.subversion.override (origArgs: { + subversion = pkgs.subversion.override { bdbSupport = true; httpServer = true; pythonBindings = true; - }); + apacheHttpd = httpd; + }; pythonLib = p: "${p}/"; + httpd = serverInfo.serverConfig.package; + + versionPre24 = versionOlder httpd.version "2.4"; + in { @@ -82,7 +87,7 @@ in AuthName "${config.ldapAuthentication.name}" AuthBasicProvider "ldap" AuthLDAPURL "${config.ldapAuthentication.url}" - authzldapauthoritative Off + ${if versionPre24 then "authzldapauthoritative Off" else ""} require valid-user '' else ""} diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index be7700424bc6..b112fc2422a7 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -166,7 +166,7 @@ in { }; environment.variables.GIO_EXTRA_MODULES = [ "${gnome3.dconf}/lib/gio/modules" - "${gnome3.glib_networking}/lib/gio/modules" + "${gnome3.glib_networking.out}/lib/gio/modules" "${gnome3.gvfs}/lib/gio/modules" ]; environment.systemPackages = gnome3.corePackages ++ cfg.sessionPath ++ (removePackagesByName gnome3.optionalPackages config.environment.gnome3.excludePackages); diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 9891da2169ea..4f74d5732af5 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -62,13 +62,13 @@ in ${config.hardware.pulseaudio.package}/bin/pactl load-module module-device-manager "do_routing=1" ''} - exec ${kde5.plasma-workspace}/bin/startkde + exec startkde ''; }; security.setuidOwners = singleton { program = "kcheckpass"; - source = "${kde5.plasma-workspace}/lib/libexec/kcheckpass"; + source = "${kde5.plasma-workspace.out}/lib/libexec/kcheckpass"; owner = "root"; group = "root"; setuid = true; @@ -171,19 +171,22 @@ in # Enable GTK applications to load SVG icons environment.variables = mkIf (lib.hasAttr "breeze-icons" kde5) { - GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; + GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; }; fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; - programs.ssh.askPassword = "${kde5.ksshaskpass}/bin/ksshaskpass"; + programs.ssh.askPassword = "${kde5.ksshaskpass.out}/bin/ksshaskpass"; # Enable helpful DBus services. services.udisks2.enable = true; services.upower.enable = config.powerManagement.enable; # Extra UDEV rules used by Solid - services.udev.packages = [ pkgs.media-player-info ]; + services.udev.packages = [ + pkgs.libmtp + pkgs.media-player-info + ]; services.xserver.displayManager.sddm = { theme = "breeze"; diff --git a/nixos/modules/services/x11/display-managers/default.nix b/nixos/modules/services/x11/display-managers/default.nix index 7dffdfc2b36c..be634fc259a2 100644 --- a/nixos/modules/services/x11/display-managers/default.nix +++ b/nixos/modules/services/x11/display-managers/default.nix @@ -45,7 +45,7 @@ let ${optionalString cfg.startDbusSession '' if test -z "$DBUS_SESSION_BUS_ADDRESS"; then - exec ${pkgs.dbus.tools}/bin/dbus-launch --exit-with-session "$0" "$sessionType" + exec ${pkgs.dbus.dbus-launch} --exit-with-session "$0" "$sessionType" fi ''} @@ -55,11 +55,11 @@ let # Start PulseAudio if enabled. ${optionalString (config.hardware.pulseaudio.enable) '' ${optionalString (!config.hardware.pulseaudio.systemWide) - "${config.hardware.pulseaudio.package}/bin/pulseaudio --start" + "${config.hardware.pulseaudio.package.out}/bin/pulseaudio --start" } # Publish access credentials in the root window. - ${config.hardware.pulseaudio.package}/bin/pactl load-module module-x11-publish "display=$DISPLAY" + ${config.hardware.pulseaudio.package.out}/bin/pactl load-module module-x11-publish "display=$DISPLAY" ''} # Tell systemd about our $DISPLAY. This is needed by the @@ -275,7 +275,7 @@ in }; config = { - services.xserver.displayManager.xserverBin = "${xorg.xorgserver}/bin/X"; + services.xserver.displayManager.xserverBin = "${xorg.xorgserver.out}/bin/X"; }; imports = [ diff --git a/nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix b/nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix index f5b6c20c5a05..543dd628ce66 100644 --- a/nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix +++ b/nixos/modules/services/x11/display-managers/lightdm-greeters/gtk.nix @@ -24,9 +24,9 @@ let # This wrapper ensures that we actually get themes makeWrapper ${pkgs.lightdm_gtk_greeter}/sbin/lightdm-gtk-greeter \ $out/greeter \ - --prefix PATH : "${pkgs.glibc}/bin" \ - --set GDK_PIXBUF_MODULE_FILE "${pkgs.gdk_pixbuf}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ - --set GTK_PATH "${theme}:${pkgs.gtk3}" \ + --prefix PATH : "${pkgs.glibc.bin}/bin" \ + --set GDK_PIXBUF_MODULE_FILE "${pkgs.gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache" \ + --set GTK_PATH "${theme}:${pkgs.gtk3.out}" \ --set GTK_EXE_PREFIX "${theme}" \ --set GTK_DATA_PREFIX "${theme}" \ --set XDG_DATA_DIRS "${theme}/share:${icons}/share" \ diff --git a/nixos/modules/services/x11/display-managers/sddm.nix b/nixos/modules/services/x11/display-managers/sddm.nix index 4d61afe0eaeb..7a17a222bcab 100644 --- a/nixos/modules/services/x11/display-managers/sddm.nix +++ b/nixos/modules/services/x11/display-managers/sddm.nix @@ -48,7 +48,7 @@ let [XDisplay] MinimumVT=${toString xcfg.tty} ServerPath=${xserverWrapper} - XephyrPath=${pkgs.xorg.xorgserver}/bin/Xephyr + XephyrPath=${pkgs.xorg.xorgserver.out}/bin/Xephyr SessionCommand=${dmcfg.session.script} SessionDir=${dmcfg.session.desktops} XauthPath=${pkgs.xorg.xauth}/bin/xauth diff --git a/nixos/modules/services/x11/terminal-server.nix b/nixos/modules/services/x11/terminal-server.nix index 4d5dbd604159..09d0ab077515 100644 --- a/nixos/modules/services/x11/terminal-server.nix +++ b/nixos/modules/services/x11/terminal-server.nix @@ -41,7 +41,7 @@ with lib; { description = "Terminal Server"; path = - [ pkgs.xorgserver pkgs.gawk pkgs.which pkgs.openssl pkgs.xorg.xauth + [ pkgs.xorgserver.out pkgs.gawk pkgs.which pkgs.openssl pkgs.xorg.xauth pkgs.nettools pkgs.shadow pkgs.procps pkgs.utillinux pkgs.bash ]; diff --git a/nixos/modules/services/x11/window-managers/metacity.nix b/nixos/modules/services/x11/window-managers/metacity.nix index 3e5229be634f..2957ad91be45 100644 --- a/nixos/modules/services/x11/window-managers/metacity.nix +++ b/nixos/modules/services/x11/window-managers/metacity.nix @@ -20,7 +20,7 @@ in services.xserver.windowManager.session = singleton { name = "metacity"; start = '' - env LD_LIBRARY_PATH=${xorg.libX11}/lib:${xorg.libXext}/lib:/usr/lib/ + env LD_LIBRARY_PATH=${xorg.libX11.out}/lib:${xorg.libXext.out}/lib:/usr/lib/ # !!! Hack: load the schemas for Metacity. GCONF_CONFIG_SOURCE=xml::~/.gconf ${gnome.GConf}/bin/gconftool-2 \ --makefile-install-rule ${gnome.metacity}/etc/gconf/schemas/*.schemas # */ diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 76431f211243..d03e8ec8b1ba 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -219,6 +219,12 @@ in ''; }; + dpi = mkOption { + type = types.nullOr types.int; + default = 0; + description = "DPI resolution to use for X server."; + }; + startDbusSession = mkOption { type = types.bool; default = true; @@ -450,7 +456,7 @@ in ]); environment.systemPackages = - [ xorg.xorgserver + [ xorg.xorgserver.out xorg.xrandr xorg.xrdb xorg.setxkbmap @@ -487,7 +493,7 @@ in XKB_BINDIR = "${xorg.xkbcomp}/bin"; # Needed for the Xkb extension. XORG_DRI_DRIVER_PATH = "/run/opengl-driver/lib/dri"; # !!! Depends on the driver selected at runtime. LD_LIBRARY_PATH = concatStringsSep ":" ( - [ "${xorg.libX11}/lib" "${xorg.libXext}/lib" ] + [ "${xorg.libX11.out}/lib" "${xorg.libXext.out}/lib" ] ++ concatLists (catAttrs "libPath" cfg.drivers)); } // cfg.displayManager.job.environment; @@ -513,12 +519,13 @@ in "-xkbdir" "${cfg.xkbDir}" ] ++ optional (cfg.display != null) ":${toString cfg.display}" ++ optional (cfg.tty != null) "vt${toString cfg.tty}" + ++ optional (cfg.dpi != null) "-dpi ${toString cfg.dpi}" ++ optionals (cfg.display != null) [ "-logfile" "/var/log/X.${toString cfg.display}.log" ] ++ optional (!cfg.enableTCP) "-nolisten tcp"; services.xserver.modules = concatLists (catAttrs "modules" cfg.drivers) ++ - [ xorg.xorgserver + [ xorg.xorgserver.out xorg.xf86inputevdev ]; diff --git a/nixos/modules/system/activation/activation-script.nix b/nixos/modules/system/activation/activation-script.nix index 854fa2f40b69..9d61d64f7553 100644 --- a/nixos/modules/system/activation/activation-script.nix +++ b/nixos/modules/system/activation/activation-script.nix @@ -12,7 +12,8 @@ let ''; }); - path = + path = map # outputs TODO? + (pkg: (pkg.bin or (pkg.out or pkg))) [ pkgs.coreutils pkgs.gnugrep pkgs.findutils pkgs.glibc # needed for getent pkgs.shadow diff --git a/nixos/modules/system/boot/luksroot.nix b/nixos/modules/system/boot/luksroot.nix index 59bff5472e84..77a82547031a 100644 --- a/nixos/modules/system/boot/luksroot.nix +++ b/nixos/modules/system/boot/luksroot.nix @@ -436,9 +436,9 @@ in ${optionalString luks.yubikeySupport '' copy_bin_and_libs ${pkgs.ykpers}/bin/ykchalresp copy_bin_and_libs ${pkgs.ykpers}/bin/ykinfo - copy_bin_and_libs ${pkgs.openssl}/bin/openssl + copy_bin_and_libs ${pkgs.openssl.bin}/bin/openssl - cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto + cc -O3 -I${pkgs.openssl}/include -L${pkgs.openssl.out}/lib ${./pbkdf2-sha512.c} -o pbkdf2-sha512 -lcrypto strip -s pbkdf2-sha512 copy_bin_and_libs pbkdf2-sha512 diff --git a/nixos/modules/system/boot/stage-1-init.sh b/nixos/modules/system/boot/stage-1-init.sh index c0c2b6a94164..1f8779abf0c3 100644 --- a/nixos/modules/system/boot/stage-1-init.sh +++ b/nixos/modules/system/boot/stage-1-init.sh @@ -434,11 +434,8 @@ udevadm control --exit # Reset the logging file descriptors. # Do this just before pkill, which will kill the tee process. -if test -n "@logCommands@" -then - exec 1>&$logOutFd 2>&$logErrFd - eval "exec $logOutFd>&- $logErrFd>&-" -fi +exec 1>&$logOutFd 2>&$logErrFd +eval "exec $logOutFd>&- $logErrFd>&-" # Kill any remaining processes, just to be sure we're not taking any # with us into stage 2. But keep storage daemons like unionfs-fuse. diff --git a/nixos/modules/system/boot/stage-1.nix b/nixos/modules/system/boot/stage-1.nix index 757d883373ac..7e84dd204773 100644 --- a/nixos/modules/system/boot/stage-1.nix +++ b/nixos/modules/system/boot/stage-1.nix @@ -67,6 +67,10 @@ let copy_bin_and_libs $BIN done + # Copy modprobe. + copy_bin_and_libs ${pkgs.kmod}/bin/kmod + ln -sf kmod $out/bin/modprobe + # Copy resize2fs if needed. ${optionalString (any (fs: fs.autoResize) (attrValues config.fileSystems)) '' # We need mke2fs in the initrd. @@ -76,7 +80,7 @@ let ${config.boot.initrd.extraUtilsCommands} # Copy ld manually since it isn't detected correctly - cp -pv ${pkgs.glibc}/lib/ld*.so.? $out/lib + cp -pv ${pkgs.glibc.out}/lib/ld*.so.? $out/lib # Copy all of the needed libraries for the binaries for BIN in $(find $out/{bin,sbin} -type f); do diff --git a/nixos/modules/system/boot/stage-2.nix b/nixos/modules/system/boot/stage-2.nix index c0ef4e02d1ff..b67f42a017e6 100644 --- a/nixos/modules/system/boot/stage-2.nix +++ b/nixos/modules/system/boot/stage-2.nix @@ -7,11 +7,14 @@ let kernel = config.boot.kernelPackages.kernel; activateConfiguration = config.system.activationScripts.script; - readonlyMountpoint = pkgs.runCommand "readonly-mountpoint" {} '' - mkdir -p $out/bin - cc -O3 ${./readonly-mountpoint.c} -o $out/bin/readonly-mountpoint - strip -s $out/bin/readonly-mountpoint - ''; + readonlyMountpoint = pkgs.stdenv.mkDerivation { + name = "readonly-mountpoint"; + unpackPhase = "true"; + installPhase = '' + mkdir -p $out/bin + cc -O3 ${./readonly-mountpoint.c} -o $out/bin/readonly-mountpoint + ''; + }; bootStage2 = pkgs.substituteAll { src = ./stage-2-init.sh; diff --git a/nixos/modules/tasks/filesystems/unionfs-fuse.nix b/nixos/modules/tasks/filesystems/unionfs-fuse.nix index 3e38bffa3ba2..1dcc4c87e3ce 100644 --- a/nixos/modules/tasks/filesystems/unionfs-fuse.nix +++ b/nixos/modules/tasks/filesystems/unionfs-fuse.nix @@ -18,9 +18,9 @@ boot.initrd.postDeviceCommands = '' # Hacky!!! fuse hard-codes the path to mount - mkdir -p /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin - ln -s $(which mount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin - ln -s $(which umount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}/bin + mkdir -p /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin + ln -s $(which mount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin + ln -s $(which umount) /nix/store/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-${pkgs.utillinux.name}-bin/bin ''; }) diff --git a/nixos/modules/tasks/filesystems/xfs.nix b/nixos/modules/tasks/filesystems/xfs.nix index d7c3930f4a3c..c6a90bcf1a51 100644 --- a/nixos/modules/tasks/filesystems/xfs.nix +++ b/nixos/modules/tasks/filesystems/xfs.nix @@ -11,13 +11,13 @@ in { config = mkIf (any (fs: fs == "xfs") config.boot.supportedFilesystems) { - system.fsPackages = [ pkgs.xfsprogs ]; + system.fsPackages = [ pkgs.xfsprogs.bin ]; boot.initrd.availableKernelModules = mkIf inInitrd [ "xfs" "crc32c" ]; boot.initrd.extraUtilsCommands = mkIf inInitrd '' - copy_bin_and_libs ${pkgs.xfsprogs}/sbin/fsck.xfs + copy_bin_and_libs ${pkgs.xfsprogs.bin}/bin/fsck.xfs ''; # Trick just to set 'sh' after the extraUtils nuke-refs. diff --git a/nixos/modules/virtualisation/ec2-amis.nix b/nixos/modules/virtualisation/ec2-amis.nix index 15ea7bb19448..e0aad5e42f20 100644 --- a/nixos/modules/virtualisation/ec2-amis.nix +++ b/nixos/modules/virtualisation/ec2-amis.nix @@ -89,4 +89,41 @@ "15.09".us-west-2.hvm-s3 = "ami-2956b849"; "15.09".us-west-2.pv-ebs = "ami-005fb160"; "15.09".us-west-2.pv-s3 = "ami-cd55bbad"; + + "16.03".ap-northeast-1.hvm-ebs = "ami-885040e6"; + "16.03".ap-northeast-1.hvm-s3 = "ami-d15a4abf"; + "16.03".ap-northeast-1.pv-ebs = "ami-7f455511"; + "16.03".ap-northeast-1.pv-s3 = "ami-6d7d6d03"; + "16.03".ap-southeast-1.hvm-ebs = "ami-478a5f24"; + "16.03".ap-southeast-1.hvm-s3 = "ami-b2885dd1"; + "16.03".ap-southeast-1.pv-ebs = "ami-55b46136"; + "16.03".ap-southeast-1.pv-s3 = "ami-92b762f1"; + "16.03".ap-southeast-2.hvm-ebs = "ami-26b09345"; + "16.03".ap-southeast-2.hvm-s3 = "ami-52ac8f31"; + "16.03".ap-southeast-2.pv-ebs = "ami-1fb3907c"; + "16.03".ap-southeast-2.pv-s3 = "ami-49b1922a"; + "16.03".eu-central-1.hvm-ebs = "ami-2bd63744"; + "16.03".eu-central-1.hvm-s3 = "ami-82d435ed"; + "16.03".eu-central-1.pv-ebs = "ami-b729c8d8"; + "16.03".eu-central-1.pv-s3 = "ami-a12dccce"; + "16.03".eu-west-1.hvm-ebs = "ami-87c242f4"; + "16.03".eu-west-1.hvm-s3 = "ami-b6c343c5"; + "16.03".eu-west-1.pv-ebs = "ami-6bc94918"; + "16.03".eu-west-1.pv-s3 = "ami-00cb4b73"; + "16.03".sa-east-1.hvm-ebs = "ami-845cd3e8"; + "16.03".sa-east-1.hvm-s3 = "ami-8142cded"; + "16.03".sa-east-1.pv-ebs = "ami-1643cc7a"; + "16.03".sa-east-1.pv-s3 = "ami-1646c97a"; + "16.03".us-east-1.hvm-ebs = "ami-2cc4d046"; + "16.03".us-east-1.hvm-s3 = "ami-9bc9ddf1"; + "16.03".us-east-1.pv-ebs = "ami-7df4e017"; + "16.03".us-east-1.pv-s3 = "ami-90f2e6fa"; + "16.03".us-west-1.hvm-ebs = "ami-d8116db8"; + "16.03".us-west-1.hvm-s3 = "ami-a7166ac7"; + "16.03".us-west-1.pv-ebs = "ami-e90c7089"; + "16.03".us-west-1.pv-s3 = "ami-5b0c703b"; + "16.03".us-west-2.hvm-ebs = "ami-b339ccd3"; + "16.03".us-west-2.hvm-s3 = "ami-2c3bce4c"; + "16.03".us-west-2.pv-ebs = "ami-0625d066"; + "16.03".us-west-2.pv-s3 = "ami-7414e114"; } diff --git a/nixos/modules/virtualisation/virtualbox-guest.nix b/nixos/modules/virtualisation/virtualbox-guest.nix index a025aee7cfeb..9733bd6fac46 100644 --- a/nixos/modules/virtualisation/virtualbox-guest.nix +++ b/nixos/modules/virtualisation/virtualbox-guest.nix @@ -66,7 +66,7 @@ in services.xserver.displayManager.sessionCommands = '' - PATH=${makeSearchPath "bin" [ pkgs.gnugrep pkgs.which pkgs.xorg.xorgserver ]}:$PATH \ + PATH=${makeSearchPath "bin" [ pkgs.gnugrep pkgs.which pkgs.xorg.xorgserver.out ]}:$PATH \ ${kernel.virtualboxGuestAdditions}/bin/VBoxClient-all ''; diff --git a/nixos/tests/cadvisor.nix b/nixos/tests/cadvisor.nix index 1644cb856cec..c55b08c0e924 100644 --- a/nixos/tests/cadvisor.nix +++ b/nixos/tests/cadvisor.nix @@ -14,7 +14,7 @@ import ./make-test.nix ({ pkgs, ... } : { services.cadvisor.storageDriver = "influxdb"; services.influxdb.enable = true; systemd.services.influxdb.postStart = mkAfter '' - ${pkgs.curl}/bin/curl -X POST 'http://localhost:8086/db?u=root&p=root' \ + ${pkgs.curl.bin}/bin/curl -X POST 'http://localhost:8086/db?u=root&p=root' \ -d '{"name": "root"}' ''; }; diff --git a/pkgs/applications/altcoins/bitcoin-xt.nix b/pkgs/applications/altcoins/bitcoin-xt.nix index 9b86bf2b3d5a..e678d6e4acb3 100644 --- a/pkgs/applications/altcoins/bitcoin-xt.nix +++ b/pkgs/applications/altcoins/bitcoin-xt.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec{ configureFlags = [ "--with-boost-libdir=${boost.lib}/lib" - "--with-libcurl-headers=${curl}/include" + "--with-libcurl-headers=${curl.dev}/include" ] ++ optionals withGui [ "--with-gui=qt4" ]; meta = { diff --git a/pkgs/applications/audio/ardour/default.nix b/pkgs/applications/audio/ardour/default.nix index 3d44dd872c78..9f047a600cbd 100644 --- a/pkgs/applications/audio/ardour/default.nix +++ b/pkgs/applications/audio/ardour/default.nix @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { # have to do that ourself. patchPhase = '' printf '#include "libs/ardour/ardour/revision.h"\nnamespace ARDOUR { const char* revision = \"${tag}-${builtins.substring 0 8 src.rev}\"; }\n' > libs/ardour/revision.cc - sed 's|/usr/include/libintl.h|${glibc}/include/libintl.h|' -i wscript + sed 's|/usr/include/libintl.h|${glibc.dev}/include/libintl.h|' -i wscript patchShebangs ./tools/ ''; diff --git a/pkgs/applications/audio/audacity/default.nix b/pkgs/applications/audio/audacity/default.nix index 627d68525b9b..afa8a94d200d 100644 --- a/pkgs/applications/audio/audacity/default.nix +++ b/pkgs/applications/audio/audacity/default.nix @@ -18,6 +18,12 @@ stdenv.mkDerivation rec { sha256 = "19fr674mw844zmkp1476yigkcnmb6zyn78av64ccdwi3p68i00rf"; })]; + # fix with gcc-5 from http://lists.freebsd.org/pipermail/freebsd-ports-bugs/2012-December/245884.html + postPatch = '' + substituteInPlace lib-src/libnyquist/nyquist/ffts/src/fftlib.c \ + --replace 'inline void' 'static inline void' + ''; + preConfigure = /* we prefer system-wide libs */ '' mv lib-src lib-src-rm mkdir lib-src diff --git a/pkgs/applications/audio/baudline/default.nix b/pkgs/applications/audio/baudline/default.nix index 543329ef679b..2d6b0434d6a1 100644 --- a/pkgs/applications/audio/baudline/default.nix +++ b/pkgs/applications/audio/baudline/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { cp -r . "$out/libexec/baudline/" - interpreter="$(echo ${stdenv.glibc}/lib/ld-linux*)" + interpreter="$(echo ${stdenv.glibc.out}/lib/ld-linux*)" for prog in "$out"/libexec/baudline/baudline*; do patchelf --interpreter "$interpreter" "$prog" ln -sr "$prog" "$out/bin/" diff --git a/pkgs/applications/audio/caudec/default.nix b/pkgs/applications/audio/caudec/default.nix index 978dd27facdb..d84ff702ce87 100644 --- a/pkgs/applications/audio/caudec/default.nix +++ b/pkgs/applications/audio/caudec/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { postFixup = '' for executable in $(cd $out/bin && ls); do wrapProgram $out/bin/$executable \ - --prefix PATH : "${bc}/bin:${findutils}/bin:${sox}/bin:${procps}/bin:${opusTools}/bin:${lame}/bin:${flac}/bin" + --prefix PATH : "${bc}/bin:${findutils}/bin:${sox}/bin:${procps}/bin:${opusTools}/bin:${lame}/bin:${flac.bin}/bin" done ''; diff --git a/pkgs/applications/audio/drumgizmo/default.nix b/pkgs/applications/audio/drumgizmo/default.nix index 08d0afcd3f2b..e6287af497ad 100644 --- a/pkgs/applications/audio/drumgizmo/default.nix +++ b/pkgs/applications/audio/drumgizmo/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - version = "0.9.9"; + version = "0.9.10"; name = "drumgizmo-${version}"; src = fetchurl { url = "http://www.drumgizmo.org/releases/${name}/${name}.tar.gz"; - sha256 = "03dnh2p4s6n107n0r86h9j1jwy85a8qwjkh0288k60qpdqy1c7vp"; + sha256 = "142si734lsyywxhn7msiz053ir96kl5im3h1jql3vhcb4807f3d1"; }; configureFlags = [ "--enable-lv2" ]; diff --git a/pkgs/applications/audio/flac/default.nix b/pkgs/applications/audio/flac/default.nix index 18fb48a17ba1..80e4e49fb183 100644 --- a/pkgs/applications/audio/flac/default.nix +++ b/pkgs/applications/audio/flac/default.nix @@ -8,12 +8,12 @@ stdenv.mkDerivation rec { sha256 = "4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c"; }; - outputs = [ "out" "doc" ]; - buildInputs = [ libogg ]; #doCheck = true; # takes lots of time + outputs = [ "dev" "out" "bin" "doc" ]; + meta = with stdenv.lib; { homepage = http://xiph.org/flac/; description = "Library and tools for encoding and decoding the FLAC lossless audio file format"; diff --git a/pkgs/applications/audio/google-musicmanager/default.nix b/pkgs/applications/audio/google-musicmanager/default.nix index f86513659b64..72bec52b2663 100644 --- a/pkgs/applications/audio/google-musicmanager/default.nix +++ b/pkgs/applications/audio/google-musicmanager/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { buildPhase = '' patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "$out/opt/google/musicmanager:${readline}/lib:${ncurses}/lib:${stdenv.cc.libc}/lib:${qt48}/lib:${stdenv.cc.cc}/lib:${libidn}/lib:${expat}/lib:${flac}/lib:${libvorbis}/lib" opt/google/musicmanager/MusicManager + --set-rpath "$out/opt/google/musicmanager:${stdenv.lib.makeLibraryPath [ readline ncurses stdenv.cc.libc.out qt48 stdenv.cc.cc libidn expat flac libvorbis ]}" opt/google/musicmanager/MusicManager ''; dontPatchELF = true; diff --git a/pkgs/applications/audio/japa/default.nix b/pkgs/applications/audio/japa/default.nix new file mode 100644 index 000000000000..4efdaa86084a --- /dev/null +++ b/pkgs/applications/audio/japa/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, alsaLib, libjack2, fftwFloat, libclthreads, libclxclient, libX11, libXft, zita-alsa-pcmi, }: + +stdenv.mkDerivation rec { + version = "0.8.4"; + name = "japa-${version}"; + + src = fetchurl { + url = "http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${name}.tar.bz2"; + sha256 = "1jhj7s4vqk5c4lchdall0kslvj5sh91902hhfjvs6r3a5nrhwcp0"; + }; + + buildInputs = [ alsaLib libjack2 fftwFloat libclthreads libclxclient libX11 libXft zita-alsa-pcmi ]; + + preConfigure = '' + cd ./source/ + ''; + + makeFlags = [ + "PREFIX=$(out)" + "SUFFIX=''" + ]; + + meta = { + description = "A 'perceptual' or 'psychoacoustic' audio spectrum analyser for JACK and ALSA"; + homepage = http://kokkinizita.linuxaudio.org/linuxaudio/index.html; + license = stdenv.lib.licenses.gpl2; + maintainers = [ stdenv.lib.maintainers.magnetophon ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/audio/milkytracker/default.nix b/pkgs/applications/audio/milkytracker/default.nix index 8bc0aebba5a8..f22ccd08a8e8 100644 --- a/pkgs/applications/audio/milkytracker/default.nix +++ b/pkgs/applications/audio/milkytracker/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { ''; preBuild='' - export CPATH=${zlib}/lib + export CPATH=${zlib.out}/lib ''; buildInputs = [ SDL alsaLib autoconf automake libjack2 perl zlib zziplib ]; diff --git a/pkgs/applications/audio/paprefs/default.nix b/pkgs/applications/audio/paprefs/default.nix index b026d8b9e6a6..3ce52806a4e0 100644 --- a/pkgs/applications/audio/paprefs/default.nix +++ b/pkgs/applications/audio/paprefs/default.nix @@ -1,5 +1,5 @@ { fetchurl, stdenv, pkgconfig, libpulseaudio, gtkmm, libglademm -, dbus_glib, gconfmm, intltool }: +, dbus_glib, GConf, gconfmm, intltool }: stdenv.mkDerivation rec { name = "paprefs-0.9.10"; @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool ]; + propagatedUserEnvPkgs = [ GConf ]; + configureFlags = [ "--disable-lynx" ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/audio/spotify/default.nix b/pkgs/applications/audio/spotify/default.nix index 243d1e49c7b7..00e841e7009e 100644 --- a/pkgs/applications/audio/spotify/default.nix +++ b/pkgs/applications/audio/spotify/default.nix @@ -1,11 +1,11 @@ -{ fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl_1_0_1, freetype +{ fetchurl, stdenv, dpkg, xorg, alsaLib, makeWrapper, openssl, freetype , glib, pango, cairo, atk, gdk_pixbuf, gtk, cups, nspr, nss, libpng, GConf -, libgcrypt, udev, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome }: +, libgcrypt, libudev, fontconfig, dbus, expat, ffmpeg_0_10, curl, zlib, gnome }: assert stdenv.system == "x86_64-linux"; let - version = "1.0.26.125.g64dc8bc6-14"; + version = "1.0.27.71.g0a26e3b2-9"; deps = [ alsaLib @@ -27,7 +27,7 @@ let nss pango stdenv.cc.cc - udev + libudev xorg.libX11 xorg.libXcomposite xorg.libXcursor @@ -50,7 +50,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://repository-origin.spotify.com/pool/non-free/s/spotify-client/spotify-client_${version}_amd64.deb"; - sha256 = "09wanpml2a6k8asfc0pd56n7fia37amgsplsan1qdh6dwdzr3rv5"; + sha256 = "1rs08cvn0y1lzazlmzj4sn2iyacadwi6j70n5c7rvfvvs4p61p42"; }; buildInputs = [ dpkg makeWrapper ]; @@ -68,10 +68,10 @@ stdenv.mkDerivation { # Work around Spotify referring to a specific minor version of # OpenSSL. - ln -s ${openssl_1_0_1}/lib/libssl.so $libdir/libssl.so.1.0.0 - ln -s ${openssl_1_0_1}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 - ln -s ${nspr}/lib/libnspr4.so $libdir/libnspr4.so - ln -s ${nspr}/lib/libplc4.so $libdir/libplc4.so + ln -s ${openssl.out}/lib/libssl.so $libdir/libssl.so.1.0.0 + ln -s ${openssl.out}/lib/libcrypto.so $libdir/libcrypto.so.1.0.0 + ln -s ${nspr.out}/lib/libnspr4.so $libdir/libnspr4.so + ln -s ${nspr.out}/lib/libplc4.so $libdir/libplc4.so rpath="$out/share/spotify:$libdir" diff --git a/pkgs/applications/audio/swh-lv2/default.nix b/pkgs/applications/audio/swh-lv2/default.nix index 2955a9371ff6..4bc7801637c6 100644 --- a/pkgs/applications/audio/swh-lv2/default.nix +++ b/pkgs/applications/audio/swh-lv2/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { }; patchPhase = '' - sed -e "s#xsltproc#${libxslt}/bin/xsltproc#" -i Makefile + sed -e "s#xsltproc#${libxslt.bin}/bin/xsltproc#" -i Makefile sed -e "s#PREFIX = /usr/local#PREFIX = $out#" -i Makefile ''; diff --git a/pkgs/applications/audio/yoshimi/default.nix b/pkgs/applications/audio/yoshimi/default.nix index 9cc7f3f1fc85..ab7eb10798d7 100644 --- a/pkgs/applications/audio/yoshimi/default.nix +++ b/pkgs/applications/audio/yoshimi/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { preConfigure = "cd src"; - cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc}/lib/libm.so -DCMAKE_INSTALL_DATAROOTDIR=$out" ]; + cmakeFlags = [ "-DFLTK_MATH_LIBRARY=${stdenv.glibc.out}/lib/libm.so -DCMAKE_INSTALL_DATAROOTDIR=$out" ]; meta = with stdenv.lib; { description = "high quality software synthesizer based on ZynAddSubFX"; diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index e89de9b4c6aa..b9566e9c535f 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -1,13 +1,15 @@ { stdenv, fetchurl, makeWrapper, jre, cpio, gawk, gnugrep, gnused, procps, swt, gtk2, glib, libXtst }: -let version = "4.6.0"; +let + version = "4.6.0"; + rev = "2"; #tracks unversioned changes that occur on download.code42.com from time to time in stdenv.mkDerivation rec { - name = "crashplan-${version}"; + name = "crashplan-${version}-r${rev}"; crashPlanArchive = fetchurl { url = "https://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; - sha256 = "0h9zk6i1pdvl101c8l4v4x6i7q4wkmkqp2dkm0lq7ha96lrvac47"; + sha256 = "13rmmdj048r8k4v7ig4i6pnvwyzc1vasfgksf070bx6ksklgbq47"; }; srcs = [ crashPlanArchive ]; diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index e4f68d786f40..8e1812ec013b 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ lndir makeQtWrapper ]; buildInputs = [ unwrapped ] ++ themes; - inherit themes; + themes = map (pkg: pkg.out or pkg) themes; inherit unwrapped; installPhase = '' @@ -81,7 +81,7 @@ stdenv.mkDerivation { mkdir -p "$out/share/sddm" for pkg in $unwrapped $themes; do local sddmDir="$pkg/share/sddm" - if [[ -d "$sddmDir" ]]; then + if [ -d "$sddmDir" ]; then lndir -silent "$sddmDir" "$out/share/sddm" fi done diff --git a/pkgs/applications/display-managers/slim/default.nix b/pkgs/applications/display-managers/slim/default.nix index 8020ecb12a55..62b1a9c2f696 100644 --- a/pkgs/applications/display-managers/slim/default.nix +++ b/pkgs/applications/display-managers/slim/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, cmake, pkgconfig, xorg, libjpeg, libpng -, fontconfig, freetype, pam, dbus_libs, makeWrapper, pkgs }: +, fontconfig, freetype, pam, dbus_libs, makeWrapper }: stdenv.mkDerivation rec { name = "slim-1.3.6"; @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { buildInputs = [ cmake pkgconfig libjpeg libpng fontconfig freetype - pam dbus_libs + pam dbus_libs (stdenv.cc.libc.out or null) xorg.libX11 xorg.libXext xorg.libXrandr xorg.libXrender xorg.libXmu xorg.libXft makeWrapper ]; diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index de857b7a8c6e..33813ca3a660 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -16,11 +16,11 @@ let }; in stdenv.mkDerivation rec { name = "atom-${version}"; - version = "1.6.0"; + version = "1.6.2"; src = fetchurl { url = "https://github.com/atom/atom/releases/download/v${version}/atom-amd64.deb"; - sha256 = "1izp2fwxk4rrksdbhcaj8fn0aazi7brid72n1vp7f49adrkqqc1b"; + sha256 = "1kl2pc0smacn4lgk5wwlaiw03rm8b0763vaisgp843p35zzsbc9n"; name = "${name}.deb"; }; diff --git a/pkgs/applications/editors/brackets/default.nix b/pkgs/applications/editors/brackets/default.nix index 131675486bad..127ed981a6c8 100644 --- a/pkgs/applications/editors/brackets/default.nix +++ b/pkgs/applications/editors/brackets/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, buildEnv, gtk, glib, gdk_pixbuf, alsaLib, nss, nspr, gconf -, cups, libgcrypt_1_5, makeWrapper, dbus, udev }: +, cups, libgcrypt_1_5, libudev, makeWrapper, dbus }: let bracketsEnv = buildEnv { name = "env-brackets"; paths = [ gtk glib gdk_pixbuf stdenv.cc.cc alsaLib nss nspr gconf cups libgcrypt_1_5 - dbus udev + dbus libudev.out ]; }; in @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { rmdir $out/usr ln -sf $out/opt/brackets/brackets $out/bin/brackets - ln -s ${udev}/lib/libudev.so.1 $out/opt/brackets/lib/libudev.so.0 + ln -s ${libudev.out}/lib/libudev.so.1 $out/opt/brackets/lib/libudev.so.0 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath "${bracketsEnv}/lib:${bracketsEnv}/lib64" \ diff --git a/pkgs/applications/editors/codeblocks/default.nix b/pkgs/applications/editors/codeblocks/default.nix index 53b7b5750a04..76df6d4d2b99 100644 --- a/pkgs/applications/editors/codeblocks/default.nix +++ b/pkgs/applications/editors/codeblocks/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; patches = [ ./writable-projects.patch ]; preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file"; - postConfigure = optionalString stdenv.isLinux "substituteInPlace libtool --replace ldconfig ${stdenv.cc.libc}/sbin/ldconfig"; + postConfigure = optionalString stdenv.isLinux "substituteInPlace libtool --replace ldconfig ${stdenv.cc.libc.bin}/bin/ldconfig"; configureFlags = [ "--enable-pch=no" ] ++ optional contribPlugins "--with-contrib-plugins"; diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index f4804c75ca3b..e4eb6eb8f658 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, makeDesktopItem, makeWrapper +{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper , freetype, fontconfig, libX11, libXext, libXrender, zlib , glib, gtk, libXtst, jdk , webkitgtk2 ? null # for internal web browser diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix index 0e0c75fcfc88..87603f20b89a 100644 --- a/pkgs/applications/editors/eclipse/plugins.nix +++ b/pkgs/applications/editors/eclipse/plugins.nix @@ -359,11 +359,11 @@ rec { scala = buildEclipseUpdateSite rec { name = "scala-${version}"; - version = "4.3.0.201512011535"; + version = "4.4.0.201604010956"; src = fetchzip { url = "http://download.scala-ide.org/sdk/lithium/e44/scala211/stable/update-site.zip"; - sha256 = "1j0qw4frkvvmyl64wdbznglgjjr9sfg8wb9npar0x7qv1hj4hw3x"; + sha256 = "1yypzcf2iwlcj43vd6h9n4y2ka1gxjf5vm3yx87bgfbzbchzckz7"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/editors/edbrowse/default.nix b/pkgs/applications/editors/edbrowse/default.nix index d969552ecde4..712ede2e316f 100644 --- a/pkgs/applications/editors/edbrowse/default.nix +++ b/pkgs/applications/editors/edbrowse/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { substituteInPlace src/ebjs.c --replace \"edbrowse-js\" \"$out/bin/edbrowse-js\" ''; - NIX_CFLAGS_COMPILE = "-I${spidermonkey_24}/include/mozjs-24"; + NIX_CFLAGS_COMPILE = "-I${spidermonkey_24.dev}/include/mozjs-24"; makeFlags = "-C src prefix=$(out)"; src = fetchurl { diff --git a/pkgs/applications/editors/emacs-24/default.nix b/pkgs/applications/editors/emacs-24/default.nix index ffa280d360c5..6359bd7bde18 100644 --- a/pkgs/applications/editors/emacs-24/default.nix +++ b/pkgs/applications/editors/emacs-24/default.nix @@ -67,7 +67,7 @@ stdenv.mkDerivation rec { "--with-gif=no" "--with-tiff=no" ]; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (stdenv.isDarwin && withX) - "-I${cairo}/include/cairo"; + "-I${cairo.dev}/include/cairo"; postInstall = '' mkdir -p $out/share/emacs/site-lisp/ diff --git a/pkgs/applications/editors/emacs-24/macport-24.5.nix b/pkgs/applications/editors/emacs-24/macport-24.5.nix index c778c42de857..23133ec262c3 100644 --- a/pkgs/applications/editors/emacs-24/macport-24.5.nix +++ b/pkgs/applications/editors/emacs-24/macport-24.5.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "LDFLAGS=-L${ncurses}/lib" + "LDFLAGS=-L${ncurses.out}/lib" "--with-xml2=yes" "--with-gnutls=yes" "--with-mac" @@ -48,7 +48,7 @@ stdenv.mkDerivation rec { ]; CFLAGS = "-O3"; - LDFLAGS = "-O3 -L${ncurses}/lib"; + LDFLAGS = "-O3 -L${ncurses.out}/lib"; postInstall = '' mkdir -p $out/share/emacs/site-lisp/ diff --git a/pkgs/applications/editors/emacs-25/builder.sh b/pkgs/applications/editors/emacs-25/builder.sh index 984a61df6f3b..545520cca7c0 100644 --- a/pkgs/applications/editors/emacs-25/builder.sh +++ b/pkgs/applications/editors/emacs-25/builder.sh @@ -5,6 +5,8 @@ source $stdenv/setup # *our* versions, not the ones found in the system, as it would do by default. # On other platforms, this appears to be unnecessary. preConfigure() { + ./autogen.sh + for i in Makefile.in ./src/Makefile.in ./lib-src/Makefile.in ./leim/Makefile.in; do substituteInPlace $i --replace /bin/pwd pwd done diff --git a/pkgs/applications/editors/emacs-25/default.nix b/pkgs/applications/editors/emacs-25/default.nix index 472a686b964b..93baa43abc32 100644 --- a/pkgs/applications/editors/emacs-25/default.nix +++ b/pkgs/applications/editors/emacs-25/default.nix @@ -1,7 +1,7 @@ -{ stdenv, fetchgit, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d +{ stdenv, lib, fetchurl, ncurses, xlibsWrapper, libXaw, libXpm, Xaw3d , pkgconfig, gettext, libXft, dbus, libpng, libjpeg, libungif , libtiff, librsvg, texinfo, gconf, libxml2, imagemagick, gnutls -, alsaLib, cairo, acl, gpm, AppKit, Foundation, libobjc +, alsaLib, cairo, acl, gpm, AppKit, CoreWLAN, Kerberos, GSS, ImageIO , autoconf, automake , withX ? !stdenv.isDarwin , withGTK3 ? false, gtk3 ? null @@ -23,17 +23,16 @@ let in stdenv.mkDerivation rec { - name = "emacs-25.0.50-1b5630e"; + name = "emacs-25.0.92"; builder = ./builder.sh; - src = fetchgit { - url = "git://git.savannah.gnu.org/emacs.git"; - rev = "1b5630eb47d3f4bade09708c958ab006b83b3fc0"; - sha256 = "0n3qbri84akmy7ad1pbv89j4jn4x9pnkz0p4nbhh6m1c37cbz58l"; + src = fetchurl { + url = "ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-25.0.92.tar.xz"; + sha256 = "13jnj1js2l90k4yk219r3z67fff90r6mniprsp0sgip2kaak75y2"; }; - patches = stdenv.lib.optionals stdenv.isDarwin [ + patches = lib.optionals stdenv.isDarwin [ ./at-fdcwd.patch ]; @@ -52,11 +51,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional (withX && withGTK3) gtk3 ++ stdenv.lib.optional (stdenv.isDarwin && withX) cairo; - propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit Foundation libobjc - ]; - - NIX_LDFLAGS = stdenv.lib.optional stdenv.isDarwin - "/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation"; + propagatedBuildInputs = stdenv.lib.optionals stdenv.isDarwin [ AppKit GSS ImageIO ]; configureFlags = if stdenv.isDarwin @@ -81,18 +76,16 @@ stdenv.mkDerivation rec { mv nextstep/Emacs.app $out/Applications ''; - doCheck = !stdenv.isDarwin; + # https://github.com/NixOS/nixpkgs/issues/13573 + doCheck = false; meta = with stdenv.lib; { description = "GNU Emacs 25 (pre), the extensible, customizable text editor"; homepage = http://www.gnu.org/software/emacs/; license = licenses.gpl3Plus; - maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny ]; + maintainers = with maintainers; [ chaoflow lovek323 simons the-kenny jwiegley ]; platforms = platforms.all; - # So that Exuberant ctags is preferred - priority = 1; - longDescription = '' GNU Emacs is an extensible, customizable text editor—and more. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp diff --git a/pkgs/applications/editors/heme/default.nix b/pkgs/applications/editors/heme/default.nix index 69ba674d2d49..c74e47a5243d 100644 --- a/pkgs/applications/editors/heme/default.nix +++ b/pkgs/applications/editors/heme/default.nix @@ -10,10 +10,11 @@ stdenv.mkDerivation rec { postPatch = '' substituteInPlace Makefile \ --replace "/usr/local" "$out" \ - --replace "CFLAGS = " "CFLAGS = -I${ncurses}/include " \ - --replace "LDFLAGS = " "LDFLAGS = -L${ncurses}/lib " \ + --replace "CFLAGS = " "CFLAGS = -I${ncurses.dev}/include " \ + --replace "LDFLAGS = " "LDFLAGS = -L${ncurses.out}/lib " \ --replace "-lcurses" "-lncurses" ''; + buildInputs = [ ncurses ]; preBuild = '' mkdir -p $out/bin mkdir -p $out/man/man1 diff --git a/pkgs/applications/editors/idea/common.nix b/pkgs/applications/editors/idea/common.nix index 36f600c14860..fbe6210a39ba 100644 --- a/pkgs/applications/editors/idea/common.nix +++ b/pkgs/applications/editors/idea/common.nix @@ -37,7 +37,7 @@ with stdenv; lib.makeOverridable mkDerivation rec { truncate --size=$size $fname } - interpreter=$(echo ${stdenv.glibc}/lib/ld-linux*.so.2) + interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2) if [ "${stdenv.system}" == "x86_64-linux" ]; then target_size=$(get_file_size bin/fsnotifier64) patchelf --set-interpreter "$interpreter" bin/fsnotifier64 diff --git a/pkgs/applications/editors/lighttable/default.nix b/pkgs/applications/editors/lighttable/default.nix index 6bf5a1a9e6da..9b87f13d623d 100644 --- a/pkgs/applications/editors/lighttable/default.nix +++ b/pkgs/applications/editors/lighttable/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, zlib, glib, alsaLib, makeDesktopItem , dbus, gtk, atk, pango, freetype, fontconfig, libgnome_keyring3, gdk_pixbuf -, cairo, cups, expat, libgpgerror, nspr, gnome3, nss, xorg, udev, libnotify +, cairo, cups, expat, libgpgerror, nspr, gnome3, nss, xorg, libudev, libnotify }: let @@ -45,9 +45,9 @@ stdenv.mkDerivation rec { mv $out/share/LightTable/light $out/bin/light - ln -s ${udev}/lib/libudev.so.1 $out/share/LightTable/libudev.so.0 + ln -sf ${libudev.out}/lib/libudev.so.1 $out/share/LightTable/libudev.so.0 substituteInPlace $out/bin/light \ - --replace "/usr/lib/x86_64-linux-gnu" "${udev}/lib" \ + --replace "/usr/lib/x86_64-linux-gnu" "${libudev.out}/lib" \ --replace "/lib/x86_64-linux-gnu" "$out/share/LightTable" \ --replace 'HERE=`dirname $(readlink -f $0)`' "HERE=$out/share/LightTable" diff --git a/pkgs/applications/editors/music/tuxguitar/default.nix b/pkgs/applications/editors/music/tuxguitar/default.nix index 768842a3875d..65ea62b33686 100644 --- a/pkgs/applications/editors/music/tuxguitar/default.nix +++ b/pkgs/applications/editors/music/tuxguitar/default.nix @@ -26,7 +26,7 @@ in stdenv.mkDerivation rec { wrapProgram $out/bin/tuxguitar \ --set JAVA "${jdk}/bin/java" \ - --prefix LD_LIBRARY_PATH : "$out/lib/:${swt}/lib:${alsaLib}/lib" \ + --prefix LD_LIBRARY_PATH : "$out/lib/:${swt}/lib:${alsaLib.out}/lib" \ --prefix CLASSPATH : "${swt}/jars/swt.jar:$out/lib/tuxguitar.jar:$out/lib/itext.jar" ''; diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index e291cfcdc2bf..7d23ae5bbbdd 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -75,8 +75,10 @@ let glib libtermkey libuv - luajit + # For some reason, `luajit` has to be listed after `lua`. See + # https://github.com/NixOS/nixpkgs/issues/14442 lua + luajit lpeg luaMessagePack luabitop diff --git a/pkgs/applications/editors/sublime3/default.nix b/pkgs/applications/editors/sublime3/default.nix index ad9fc056757f..507dc611fd4f 100644 --- a/pkgs/applications/editors/sublime3/default.nix +++ b/pkgs/applications/editors/sublime3/default.nix @@ -57,7 +57,7 @@ in let --set NIX_REDIRECTS ${builtins.concatStringsSep ":" redirects} # Without this, plugin_host crashes, even though it has the rpath - wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl}/lib/libssl.so:${bzip2}/lib/libbz2.so + wrapProgram $out/plugin_host --prefix LD_PRELOAD : ${stdenv.cc.cc}/lib${stdenv.lib.optionalString stdenv.is64bit "64"}/libgcc_s.so.1:${openssl.out}/lib/libssl.so:${bzip2.out}/lib/libbz2.so ''; }; in stdenv.mkDerivation { diff --git a/pkgs/applications/editors/texmacs/default.nix b/pkgs/applications/editors/texmacs/default.nix index e415239d76fb..e51813459c6f 100644 --- a/pkgs/applications/editors/texmacs/default.nix +++ b/pkgs/applications/editors/texmacs/default.nix @@ -69,7 +69,7 @@ stdenv.mkDerivation rec { postFixup = '' bin="$out/libexec/TeXmacs/bin/texmacs.bin" rpath=$(patchelf --print-rpath "$bin") - patchelf --set-rpath "$rpath:${zlib}/lib" "$bin" + patchelf --set-rpath "$rpath:${zlib.out}/lib" "$bin" ''; meta = { diff --git a/pkgs/applications/editors/vscode/default.nix b/pkgs/applications/editors/vscode/default.nix new file mode 100644 index 000000000000..64b46c2ac6ec --- /dev/null +++ b/pkgs/applications/editors/vscode/default.nix @@ -0,0 +1,101 @@ +{ callPackage, stdenv, fetchurl, makeWrapper +, jq, xlibs, gtk, python, nodejs +, ... +} @ args: + +let + electron = callPackage ../../../development/tools/electron/default.nix (args // rec { + version = "0.35.6"; + sha256 = "1bwn14769nby04zkza9jphsya2p6fjnkm1k2y4h5y2l4gnqdvmx0"; + }); +in + stdenv.mkDerivation rec { + name = "vscode-${version}"; + version = "0.10.10"; + + src = fetchurl { + url = "https://github.com/Microsoft/vscode/archive/${version}.tar.gz"; + sha256 = "1mzkip6621111xwwksqjad1kgpbhna4dhpkf6cnj2r18dkk2jmcw"; + }; + + buildInputs = [ makeWrapper jq xlibs.libX11 xlibs.xproto gtk python nodejs electron ]; + + extensionGalleryJSON = '' + { + \"extensionsGallery\": { + \"serviceUrl\": \"https://marketplace.visualstudio.com/_apis/public/gallery\", + \"cacheUrl\": \"https://vscode.blob.core.windows.net/gallery/index\", + \"itemUrl\": \"https://marketplace.visualstudio.com/items\" + } + } + ''; + + configurePhase = '' + # PATCH SCRIPT SHEBANGS + echo "PATCH SCRIPT SHEBANGS" + patchShebangs ./scripts + + # ADD EXTENSION GALLERY URLS TO APPLICATION CONFIGURATION + echo "AUGMENT APPLICATION CONFIGURATION" + echo "$(cat ./product.json) ${extensionGalleryJSON}" | jq -s add > tmpFile && \ + mv tmpFile ./product.json + ''; + + buildPhase = '' + # BUILD COMPILE- & RUN-TIME DEPENDENCIES + echo "BUILD COMPILE- & RUN-TIME DEPENDENCIES" + mkdir -p ./tmp + HOME=./tmp ./scripts/npm.sh install + + # COMPILE SOURCES + echo "COMPILE SOURCES" + ./node_modules/.bin/gulp + ''; + + doCheck = true; + checkPhase = '' + # CHECK APPLICATION + echo "CHECK APPLICATION" + ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 ${electron}/bin/electron ./node_modules/.bin/_mocha + ''; + + installPhase = '' + # PRUNE COMPILE-TIME DEPENDENCIES + echo "PRUNE COMPILE-TIME DEPENDENCIES" + npm prune --production + + # COPY FILES NEEDED FOR RUNNING APPLICATION TO OUT DIRECTORY + echo "COPY FILES NEEDED FOR RUNNING APPLICATION TO OUT DIRECTORY" + mkdir -p "$out" + cp -R ./.vscode "$out"/.vscode + cp -R ./extensions "$out"/extensions + cp -R ./out "$out"/out + cp -R ./node_modules "$out"/node_modules + cp ./package.json "$out"/package.json + cp ./product.json "$out"/product.json + cp ./tslint.json "$out"/tslint.json + # COPY LEGAL STUFF + cp ./LICENSE.txt "$out"/LICENSE.txt + cp ./OSSREADME.json "$out"/OSSREADME.json + cp ./ThirdPartyNotices.txt "$out"/ThirdPartyNotices.txt + + # CREATE RUNNER SCRIPT + echo "CREATE RUNNER SCRIPT" + mkdir -p "$out"/bin + makeWrapper "${electron}/bin/electron" "$out/bin/vscode" \ + --set VSCODE_DEV 1 \ + --add-flags "$out" + ''; + + meta = with stdenv.lib; { + description = "Visual Studio Code is an open source source code editor developed by Microsoft for Windows, Linux and OS X."; + longDescription = '' + Visual Studio Code is an open source source code editor developed by Microsoft for Windows, Linux and OS X. + It includes support for debugging, embedded Git control, syntax highlighting, intelligent code completion, snippets, and code refactoring. + It is also customizable, so users can change the editor's theme, keyboard shortcuts, and preferences. + ''; + homepage = http://code.visualstudio.com/; + license = licenses.mit; + platforms = [ "x86_64-linux" ]; + }; + } diff --git a/pkgs/applications/graphics/digikam/default.nix b/pkgs/applications/graphics/digikam/default.nix index a41e1ad07d3c..119125066bda 100644 --- a/pkgs/applications/graphics/digikam/default.nix +++ b/pkgs/applications/graphics/digikam/default.nix @@ -70,7 +70,7 @@ let # Help digiKam find libusb, otherwise gphoto2 support is disabled cmakeFlags = [ - "-DLIBUSB_LIBRARIES=${libusb1}/lib" + "-DLIBUSB_LIBRARIES=${libusb1.out}/lib" "-DLIBUSB_INCLUDE_DIR=${libusb1}/include/libusb-1.0" "-DENABLE_BALOOSUPPORT=ON" "-DENABLE_KDEPIMLIBSSUPPORT=ON" diff --git a/pkgs/applications/graphics/fbida/default.nix b/pkgs/applications/graphics/fbida/default.nix index b0ad5be93717..cdb5afaac31c 100644 --- a/pkgs/applications/graphics/fbida/default.nix +++ b/pkgs/applications/graphics/fbida/default.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp +{ stdenv, fetchurl, libjpeg, libexif, libungif, libtiff, libpng, libwebp, libdrm , pkgconfig, freetype, fontconfig, which, imagemagick, curl, sane-backends }: stdenv.mkDerivation rec { - name = "fbida-2.10"; + name = "fbida-2.11"; src = fetchurl { url = "http://dl.bytesex.org/releases/fbida/${name}.tar.gz"; - sha256 = "1dkc1d6qlfa1gn94wcbyr7ayiy728q52fvbipwmnl2mlc6n3lnks"; + sha256 = "00x1lppb66b0gvp6sqs7zjgnlfh80lnkwvsm15ifzvlss3b67akw"; }; nativeBuildInputs = [ pkgconfig which ]; buildInputs = [ libexif libjpeg libpng libungif freetype fontconfig libtiff libwebp - imagemagick curl sane-backends + imagemagick curl sane-backends libdrm ]; makeFlags = [ "prefix=$(out)" "verbose=yes" ]; diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 8602a9a04f85..39132bb9b6f8 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0j5wxpqccnd0hl74z2vwv25n7qnik1n2mcm2jn0c0z7cjn4wsa9q"; }; + outputs = [ "out" "doc" ]; + nativeBuildInputs = [ makeWrapper ]; buildInputs = [ xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ]; @@ -17,7 +19,7 @@ stdenv.mkDerivation rec { ''; postInstall = '' - wrapProgram "$out/bin/feh" --prefix PATH : "${libjpeg}/bin" \ + wrapProgram "$out/bin/feh" --prefix PATH : "${libjpeg.bin}/bin" \ --add-flags '--theme=feh' ''; diff --git a/pkgs/applications/graphics/gimp/2.8.nix b/pkgs/applications/graphics/gimp/2.8.nix index 55e85fc5ec6b..b09838656929 100644 --- a/pkgs/applications/graphics/gimp/2.8.nix +++ b/pkgs/applications/graphics/gimp/2.8.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; # "screenshot" needs this. - NIX_LDFLAGS = "-rpath ${xorg.libX11}/lib" + NIX_LDFLAGS = "-rpath ${xorg.libX11.out}/lib" + stdenv.lib.optionalString stdenv.isDarwin " -lintl"; meta = { diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index b285edd71e03..47532972893f 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -1,10 +1,10 @@ { callPackage, fetchgit, ... } @ args: callPackage ./generic.nix (args // { - version = "2016-03-24"; + version = "2016-04-06"; src = fetchgit { - sha256 = "593672ccfef6e3e0f3cb8ae4bbc67db9b2f1a821df4914343e4cf32f75cea865"; - rev = "41a416e4afcf6cada69193dc408ef184d0e5f678"; + sha256 = "af0b5943787bfe86169cd9bbf34284152e18b6df1f692773369545047e54a288"; + rev = "e6b6ad9d4847e86aed8be0837a19bfada881f52d"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; }) diff --git a/pkgs/applications/graphics/seg3d/default.nix b/pkgs/applications/graphics/seg3d/default.nix index 23a2d23b1ae1..d645a15b02ea 100644 --- a/pkgs/applications/graphics/seg3d/default.nix +++ b/pkgs/applications/graphics/seg3d/default.nix @@ -13,8 +13,8 @@ stdenv.mkDerivation { patches = [ ./cstdio.patch ]; cmakeFlags = [ - "-DM_LIBRARY=${stdenv.glibc}/lib/libm.so" - "-DDL_LIBRARY=${stdenv.glibc}/lib/libdl.so" + "-DM_LIBRARY=${stdenv.glibc.out}/lib/libm.so" + "-DDL_LIBRARY=${stdenv.glibc.out}/lib/libdl.so" "-DBUILD_UTILS=1" "-DBUILD_SEG3D=1" "-DBUILD_DATAFLOW=0" diff --git a/pkgs/applications/graphics/shotwell/default.nix b/pkgs/applications/graphics/shotwell/default.nix index da8bbad33cad..3238a3ba974d 100644 --- a/pkgs/applications/graphics/shotwell/default.nix +++ b/pkgs/applications/graphics/shotwell/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/shotwell" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules" ''; diff --git a/pkgs/applications/graphics/xfig/default.nix b/pkgs/applications/graphics/xfig/default.nix index 9e53fe3efe2c..ca1d5345fb6a 100644 --- a/pkgs/applications/graphics/xfig/default.nix +++ b/pkgs/applications/graphics/xfig/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { nativeBuildInputs = [ imake makeWrapper ]; - NIX_CFLAGS_COMPILE = "-I${libXpm}/include/X11"; + NIX_CFLAGS_COMPILE = "-I${libXpm.dev}/include/X11"; patches = let diff --git a/pkgs/applications/misc/albert/default.nix b/pkgs/applications/misc/albert/default.nix index b6c0feede6cd..5e6931ce78e2 100644 --- a/pkgs/applications/misc/albert/default.nix +++ b/pkgs/applications/misc/albert/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchFromGitHub, qtbase, qtx11extras, makeQtWrapper, muparser, cmake }: +{ stdenv, fetchFromGitHub, qtbase, qtsvg, qtx11extras, makeQtWrapper, muparser, cmake }: stdenv.mkDerivation rec { name = "albert-${version}"; - version = "0.8.0"; + version = "0.8.7.2"; src = fetchFromGitHub { owner = "manuelschneid3r"; repo = "albert"; rev = "v${version}"; - sha256 = "0lzj1gbcc5sp2x1c0d3s21y55kcnnn4dmy8d205mrgnyavjrak7n"; + sha256 = "04k6cawil6kqkmsilq5mpjy8lwgk0g08s0v23d5a83calpq3ljpc"; }; - buildInputs = [ cmake qtbase qtx11extras muparser makeQtWrapper ]; + buildInputs = [ cmake qtbase qtsvg qtx11extras muparser makeQtWrapper ]; fixupPhase = '' wrapQtProgram $out/bin/albert diff --git a/pkgs/applications/misc/audio/soxr/default.nix b/pkgs/applications/misc/audio/soxr/default.nix index 135ae47aa846..941e1a393b15 100644 --- a/pkgs/applications/misc/audio/soxr/default.nix +++ b/pkgs/applications/misc/audio/soxr/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0xf2w3piwz9gfr1xqyrj4k685q5dy53kq3igv663i4f4y4sg9rjl"; }; + outputs = [ "out" "doc" ]; # headers are just two and very small + preConfigure = if stdenv.isDarwin then '' export DYLD_LIBRARY_PATH="$DYLD_LIBRARY_PATH:"`pwd`/build/src '' else '' diff --git a/pkgs/applications/misc/blender/default.nix b/pkgs/applications/misc/blender/default.nix index 0085da5b468f..3e7ad83c0a12 100644 --- a/pkgs/applications/misc/blender/default.nix +++ b/pkgs/applications/misc/blender/default.nix @@ -10,11 +10,11 @@ with lib; stdenv.mkDerivation rec { - name = "blender-2.77"; + name = "blender-2.77a"; src = fetchurl { url = "http://download.blender.org/source/${name}.tar.gz"; - sha256 = "0aynm249xgrnm6h5hlp9x40ww0hn391d9ka2mg9mmqrdzhih286n"; + sha256 = "0rswx2n52wjr4jpvg1a6mir5das2i752brjzigmm8rhayl0glw1p"; }; buildInputs = diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index e66f260af969..7b789b3881de 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.53.0"; + version = "2.54.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "0rvfh39a6j5r398p6xzrbzvhxapm1iyhc0d46xk5fwa52kscadhz"; + sha256 = "1r2cxnqiqnx51gbw283z8lz58i9zpvbf0a5ncrg5b2i9bphdiq79"; }; inherit python; @@ -40,11 +40,11 @@ stdenv.mkDerivation rec { installPhase = '' export HOME=$TMPDIR/fakehome export POPPLER_INC_DIR=${poppler_utils}/include/poppler - export POPPLER_LIB_DIR=${poppler_utils}/lib + export POPPLER_LIB_DIR=${poppler_utils.out}/lib export MAGICK_INC=${imagemagick}/include/ImageMagick export MAGICK_LIB=${imagemagick}/lib - export FC_INC_DIR=${fontconfig}/include/fontconfig - export FC_LIB_DIR=${fontconfig}/lib + export FC_INC_DIR=${fontconfig.dev}/include/fontconfig + export FC_LIB_DIR=${fontconfig.lib}/lib export PODOFO_INC_DIR=${podofo}/include/podofo export PODOFO_LIB_DIR=${podofo}/lib export SIP_BIN=${sip_4_16}/bin/sip @@ -59,7 +59,7 @@ stdenv.mkDerivation rec { for a in $out/bin/*; do wrapProgram $a --prefix PYTHONPATH : $PYTHONPATH \ - --prefix PATH : ${poppler_utils}/bin + --prefix PATH : ${poppler_utils.out}/bin done ''; diff --git a/pkgs/applications/misc/djvulibre/default.nix b/pkgs/applications/misc/djvulibre/default.nix index b0f89cc5ea03..910b24358b48 100644 --- a/pkgs/applications/misc/djvulibre/default.nix +++ b/pkgs/applications/misc/djvulibre/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6"; }; + outputs = [ "dev" "out" "bin" ]; + buildInputs = [ libjpeg libtiff librsvg ] ++ libintlOrEmpty; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix index c398c3c43d00..651c74b2d217 100644 --- a/pkgs/applications/misc/dunst/default.nix +++ b/pkgs/applications/misc/dunst/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { postFixup = '' wrapProgram "$out/bin/dunst" \ - --prefix PATH : '${dbus_daemon}/bin' + --prefix PATH : '${dbus_daemon.out}/bin' ''; meta = { diff --git a/pkgs/applications/misc/eterm/default.nix b/pkgs/applications/misc/eterm/default.nix new file mode 100644 index 000000000000..b622cf46cc82 --- /dev/null +++ b/pkgs/applications/misc/eterm/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl +, libX11, libXext, libXaw +, pkgconfig, imlib2, libast }: + +stdenv.mkDerivation rec { + name = "eterm-${version}"; + version = "0.9.6"; + srcName = "Eterm-${version}"; + + src = fetchurl { + url = "http://www.eterm.org/download/${srcName}.tar.gz"; + sha256 = "0g71szjklkiczxwzbjjfm59y6v9w4hp8mg7cy99z1g7qcjm0gfbj"; + }; + + buildInputs = [ libX11 libXext libXaw pkgconfig imlib2 ]; + propagatedBuildInputs = [ libast ]; + + meta = with stdenv.lib; { + description = "Terminal emulator"; + homepage = "http://www.eterm.org"; + license = licenses.bsd2; + maintainers = [ maintainers.AndersonTorres ]; + }; +} diff --git a/pkgs/applications/misc/get_iplayer/default.nix b/pkgs/applications/misc/get_iplayer/default.nix index 488a9a3732e2..e6ca8d207e89 100644 --- a/pkgs/applications/misc/get_iplayer/default.nix +++ b/pkgs/applications/misc/get_iplayer/default.nix @@ -17,7 +17,7 @@ buildPerlPackage { installPhase = '' mkdir -p $out/bin cp get_iplayer $out/bin - wrapProgram $out/bin/get_iplayer --suffix PATH : ${ffmpeg}/bin:${flvstreamer}/bin:${vlc}/bin:${rtmpdump}/bin --prefix PERL5LIB : $PERL5LIB + wrapProgram $out/bin/get_iplayer --suffix PATH : ${ffmpeg.bin}/bin:${flvstreamer}/bin:${vlc}/bin:${rtmpdump}/bin --prefix PERL5LIB : $PERL5LIB ''; src = fetchurl { diff --git a/pkgs/applications/misc/girara/default.nix b/pkgs/applications/misc/girara/default.nix index 0b721b562b53..cfa38a118614 100644 --- a/pkgs/applications/misc/girara/default.nix +++ b/pkgs/applications/misc/girara/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig gtk gettext ]; makeFlags = [ "PREFIX=$(out)" ] - ++ optional withBuildColors "TPUT=${ncurses}/bin/tput" + ++ optional withBuildColors "TPUT=${ncurses.out}/bin/tput" ++ optional (!withBuildColors) "TPUT_AVAILABLE=0" ; diff --git a/pkgs/applications/misc/ikiwiki/default.nix b/pkgs/applications/misc/ikiwiki/default.nix index 1f78355ca3a1..3e35b7bde4b8 100644 --- a/pkgs/applications/misc/ikiwiki/default.nix +++ b/pkgs/applications/misc/ikiwiki/default.nix @@ -66,7 +66,7 @@ stdenv.mkDerivation { ${lib.optionalString bazaarSupport ''--prefix PATH : ${bazaar}/bin \''} ${lib.optionalString cvsSupport ''--prefix PATH : ${cvs}/bin \''} ${lib.optionalString cvsSupport ''--prefix PATH : ${cvsps}/bin \''} - ${lib.optionalString subversionSupport ''--prefix PATH : ${subversion}/bin \''} + ${lib.optionalString subversionSupport ''--prefix PATH : ${subversion.out}/bin \''} ${lib.optionalString mercurialSupport ''--prefix PATH : ${mercurial}/bin \''} ${lib.concatMapStrings (x: "--prefix PATH : ${x}/bin ") extraUtils} done diff --git a/pkgs/applications/misc/inspectrum/default.nix b/pkgs/applications/misc/inspectrum/default.nix index 1736581a30f1..536582e4ee71 100644 --- a/pkgs/applications/misc/inspectrum/default.nix +++ b/pkgs/applications/misc/inspectrum/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchFromGitHub, pkgconfig, cmake, fftwFloat, qt5 }: +{ stdenv, fetchFromGitHub, pkgconfig, cmake, boost, fftwFloat, qt5, gnuradio }: stdenv.mkDerivation rec { name = "inspectrum-${version}"; - version = "20160103"; + version = "20160403"; src = fetchFromGitHub { owner = "miek"; repo = "inspectrum"; - rev = "a60d711b46130d37b7c05074285558cd67a28820"; - sha256 = "1q7izpyi7c9qszygiaq0zs3swihxlss3n52q7wx2jq97hdi2hmzy"; + rev = "27381dbb30f59267a429c04d17d792d3953a6b99"; + sha256 = "0y4j62khq6fcv2qqlqi0kn2ix821m5gcqzg72nhc2zzfb3cdm9nm"; }; - buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat ]; + buildInputs = [ pkgconfig cmake qt5.qtbase fftwFloat boost gnuradio ]; meta = with stdenv.lib; { description = "Tool for analysing captured signals from sdr receivers"; diff --git a/pkgs/applications/misc/khard/default.nix b/pkgs/applications/misc/khard/default.nix index 679dc10291a7..c6aad7194a2b 100644 --- a/pkgs/applications/misc/khard/default.nix +++ b/pkgs/applications/misc/khard/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pkgs, python2Packages }: python2Packages.buildPythonApplication rec { - version = "0.8.1"; + version = "0.9.0"; name = "khard-${version}"; namePrefix = ""; src = fetchurl { url = "https://github.com/scheibler/khard/archive/v${version}.tar.gz"; - sha256 = "13axfrs96isirx0c483545xdmjwwfq1k7yy92xpk7l184v71rgi1"; + sha256 = "1cj6rlvbk05cfjkl1lnyvq12sb847jjwqy5j8906p2b2x4wq72qi"; }; propagatedBuildInputs = with python2Packages; [ diff --git a/pkgs/applications/misc/kiwix/default.nix b/pkgs/applications/misc/kiwix/default.nix index 30db6a45ea1b..3de37fdbf207 100644 --- a/pkgs/applications/misc/kiwix/default.nix +++ b/pkgs/applications/misc/kiwix/default.nix @@ -93,7 +93,7 @@ stdenv.mkDerivation rec { make install cp -r src/dependencies/xulrunner $out/lib/kiwix - patchelf --set-interpreter ${glibc}/lib/ld-linux${optionalString (stdenv.system == "x86_64-linux") "-x86-64"}.so.2 $out/lib/kiwix/xulrunner/xulrunner + patchelf --set-interpreter ${glibc.out}/lib/ld-linux${optionalString (stdenv.system == "x86_64-linux") "-x86-64"}.so.2 $out/lib/kiwix/xulrunner/xulrunner rm $out/bin/kiwix makeWrapper $out/lib/kiwix/kiwix-launcher $out/bin/kiwix \ @@ -106,5 +106,6 @@ stdenv.mkDerivation rec { homepage = http://kiwix.org; license = licenses.gpl3; maintainers = with maintainers; [ robbinch ]; + broken = true; }; } diff --git a/pkgs/applications/misc/mediainfo-gui/default.nix b/pkgs/applications/misc/mediainfo-gui/default.nix index 83130164fd99..a136497de890 100644 --- a/pkgs/applications/misc/mediainfo-gui/default.nix +++ b/pkgs/applications/misc/mediainfo-gui/default.nix @@ -2,11 +2,11 @@ , desktop_file_utils, libSM, imagemagick }: stdenv.mkDerivation rec { - version = "0.7.83"; + version = "0.7.84"; name = "mediainfo-gui-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; + sha256 = "0w3hm34amfy5bq3n1jihbwqvwqn0f8kvvq3lfc8nfwf8v7mjn7q9"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/applications/misc/mediainfo/default.nix b/pkgs/applications/misc/mediainfo/default.nix index cf1a4ce82800..6f4c014fb23a 100644 --- a/pkgs/applications/misc/mediainfo/default.nix +++ b/pkgs/applications/misc/mediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, libmediainfo, zlib }: stdenv.mkDerivation rec { - version = "0.7.83"; + version = "0.7.84"; name = "mediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/mediainfo/${version}/mediainfo_${version}.tar.xz"; - sha256 = "0d8mph9lbg2lw0ccg1la0kqhbisra8q9rzn195lncch5cia5zyg7"; + sha256 = "0w3hm34amfy5bq3n1jihbwqvwqn0f8kvvq3lfc8nfwf8v7mjn7q9"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/applications/misc/monero/default.nix b/pkgs/applications/misc/monero/default.nix index e7829be03647..1fa5d1a28d57 100644 --- a/pkgs/applications/misc/monero/default.nix +++ b/pkgs/applications/misc/monero/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { checkTarget = "test-release"; # this would be the target installPhase = '' - installBin \ + install -Dt "$out/bin/" \ src/bitmonerod \ src/connectivity_tool \ src/simpleminer \ diff --git a/pkgs/applications/misc/mysql-workbench/default.nix b/pkgs/applications/misc/mysql-workbench/default.nix index 16a20015c629..056edd801c07 100644 --- a/pkgs/applications/misc/mysql-workbench/default.nix +++ b/pkgs/applications/misc/mysql-workbench/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { mysql.lib paramiko pcre pexpect pkgconfig pycrypto python sqlite ]; preConfigure = '' - substituteInPlace $(pwd)/frontend/linux/workbench/mysql-workbench.in --replace "catchsegv" "${glibc}/bin/catchsegv" + substituteInPlace $(pwd)/frontend/linux/workbench/mysql-workbench.in --replace "catchsegv" "${glibc.bin}/bin/catchsegv" ''; postInstall = '' diff --git a/pkgs/applications/misc/nut/default.nix b/pkgs/applications/misc/nut/default.nix index 3e972f672cc2..25c904880923 100644 --- a/pkgs/applications/misc/nut/default.nix +++ b/pkgs/applications/misc/nut/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/nut-scanner --prefix LD_LIBRARY_PATH : \ - "$out/lib:${neon}/lib:${libusb}/lib:${avahi}/lib:${freeipmi}/lib" + "$out/lib:${neon}/lib:${libusb.out}/lib:${avahi}/lib:${freeipmi}/lib" ''; meta = { diff --git a/pkgs/applications/misc/pdfmod/default.nix b/pkgs/applications/misc/pdfmod/default.nix index 23781d63664c..24a0a8c69675 100644 --- a/pkgs/applications/misc/pdfmod/default.nix +++ b/pkgs/applications/misc/pdfmod/default.nix @@ -38,7 +38,7 @@ stdenv.mkDerivation rec { --prefix LD_LIBRARY_PATH : ${gnome-sharp}/lib \ --prefix LD_LIBRARY_PATH : ${gtk-sharp.gtk}/lib \ --prefix LD_LIBRARY_PATH : ${gnome3.gconf}/lib \ - --prefix LD_LIBRARY_PATH : ${poppler}/lib + --prefix LD_LIBRARY_PATH : ${poppler.out}/lib ''; dontStrip = true; diff --git a/pkgs/applications/misc/pell/default.nix b/pkgs/applications/misc/pell/default.nix new file mode 100644 index 000000000000..f79d71ca2505 --- /dev/null +++ b/pkgs/applications/misc/pell/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchFromGitHub, scsh, sox, libnotify }: + +stdenv.mkDerivation rec { + pname = "pell"; + version = "0.0.1"; + name = "${pname}-${version}"; + + src = fetchFromGitHub { + owner = "ebzzry"; + repo = pname; + rev = "3f95341eb9439c7a6be1f3c6366c0552ab8208f0"; + sha256 = "183aj3ys080g2kahl8x8rkhzlsb6h5ls9xm1v2kasfbn1pi5i6nn"; + }; + + installPhase = '' + mkdir -p $out/bin + mkdir -p $out/share + cp pell $out/bin + cp resources/notification.mp3 $out/share + chmod +x $out/bin/pell + ''; + + postFixup = '' + substituteInPlace $out/bin/pell --replace "/usr/bin/env scsh" "${scsh}/bin/scsh" + substituteInPlace $out/bin/pell --replace "(play " "(${sox}/bin/play " + substituteInPlace $out/bin/pell --replace "(notify-send " "(${libnotify}/bin/notify-send " + substituteInPlace $out/bin/pell --replace "/usr/share/pell/notification.mp3" "$out/share/notification.mp3" + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/ebzzry/pell; + description = "A simple periodic host monitor using ping"; + license = licenses.mit; + maintainers = [ maintainers.ebzzry ]; + platforms = platforms.unix; + }; + + dontBuild = true; +} diff --git a/pkgs/applications/misc/pinfo/default.nix b/pkgs/applications/misc/pinfo/default.nix index 658ff410d379..222dddc0e897 100644 --- a/pkgs/applications/misc/pinfo/default.nix +++ b/pkgs/applications/misc/pinfo/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { buildInputs = [ autoreconfHook gettext texinfo ncurses readline ]; - configureFlags = [ "--with-curses=${ncurses}" "--with-readline=${readline}" ]; + configureFlags = [ "--with-curses=${ncurses.dev}" "--with-readline=${readline}" ]; meta = with stdenv.lib; { description = "A viewer for info files"; diff --git a/pkgs/applications/misc/roxterm/default.nix b/pkgs/applications/misc/roxterm/default.nix index ad7de90cad63..93ee6470b7c3 100644 --- a/pkgs/applications/misc/roxterm/default.nix +++ b/pkgs/applications/misc/roxterm/default.nix @@ -24,9 +24,9 @@ in stdenv.mkDerivation rec { propagatedBuildInputs = [ dbus_libs dbus_glib gdk_pixbuf gettext gsettings_desktop_schemas gtk2 gtk3 hicolor_icon_theme vte ]; - NIX_CFLAGS_COMPILE = [ "-I${dbus_glib}/include/dbus-1.0" - "-I${dbus_libs}/include/dbus-1.0" - "-I${dbus_libs}/lib/dbus-1.0/include" ]; + NIX_CFLAGS_COMPILE = [ "-I${dbus_glib.dev}/include/dbus-1.0" + "-I${dbus_libs.dev}/include/dbus-1.0" + "-I${dbus_libs.lib}/lib/dbus-1.0/include" ]; # Fix up python path so the lockfile library is on it. PYTHONPATH = stdenv.lib.makeSearchPath "lib/${pythonFull.libPrefix}/site-packages" [ @@ -35,7 +35,7 @@ in stdenv.mkDerivation rec { buildPhase = '' # Fix up the LD_LIBRARY_PATH so that expat is on it - export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${expat}/lib" + export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:${expat.out}/lib" python mscript.py configure --prefix="$out" python mscript.py build diff --git a/pkgs/applications/misc/rtv/default.nix b/pkgs/applications/misc/rtv/default.nix index 68097c2e2544..194535c7314c 100644 --- a/pkgs/applications/misc/rtv/default.nix +++ b/pkgs/applications/misc/rtv/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, pkgs, lib, python, pythonPackages }: pythonPackages.buildPythonApplication rec { - version = "1.8.0"; + version = "1.9.0"; name = "rtv-${version}"; src = fetchFromGitHub { owner = "michael-lazar"; repo = "rtv"; rev = "v${version}"; - sha256 = "0vp9yapm6bm4zdhd1ibbirc23ck7smrbsrask7xkrnz7qysxgsd3"; + sha256 = "18r3i2zlcprj6d4nzhhbd6sm1fs2x28924xsm6lcxa1643gkyb7i"; }; propagatedBuildInputs = with pythonPackages; [ @@ -24,6 +24,6 @@ pythonPackages.buildPythonApplication rec { homepage = https://github.com/michael-lazar/rtv; description = "Browse Reddit from your Terminal"; license = licenses.mit; - maintainers = with maintainers; [ matthiasbeyer jgeerds ]; + maintainers = with maintainers; [ matthiasbeyer jgeerds wedens ]; }; } diff --git a/pkgs/applications/misc/sent/default.nix b/pkgs/applications/misc/sent/default.nix index 9e07c0dd4c88..c6430af55608 100644 --- a/pkgs/applications/misc/sent/default.nix +++ b/pkgs/applications/misc/sent/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, libpng, libX11, libXft }: +{ stdenv, fetchurl, libpng, libX11, libXft +, patches ? [] }: stdenv.mkDerivation rec { name = "sent-0.2"; @@ -10,6 +11,8 @@ stdenv.mkDerivation rec { buildInputs = [ libpng libX11 libXft ]; + inherit patches; + installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { diff --git a/pkgs/applications/misc/sweethome3d/default.nix b/pkgs/applications/misc/sweethome3d/default.nix index 63a8d6cf7897..68dd69f385d9 100644 --- a/pkgs/applications/misc/sweethome3d/default.nix +++ b/pkgs/applications/misc/sweethome3d/default.nix @@ -48,7 +48,7 @@ let cp "${sweethome3dItem}/share/applications/"* $out/share/applications makeWrapper ${jre}/bin/java $out/bin/$exec \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ --add-flags "-jar $out/share/java/${module}-${version}.jar -cp $out/share/java/Furniture.jar:$out/share/java/Textures.jar:$out/share/java/Help.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}" ''; diff --git a/pkgs/applications/misc/sweethome3d/editors.nix b/pkgs/applications/misc/sweethome3d/editors.nix index da038a693813..61b47dcdd2ad 100644 --- a/pkgs/applications/misc/sweethome3d/editors.nix +++ b/pkgs/applications/misc/sweethome3d/editors.nix @@ -42,7 +42,7 @@ let cp ${module}-${version}.jar $out/share/java/. cp "${editorItem}/share/applications/"* $out/share/applications makeWrapper ${jre}/bin/java $out/bin/$exec \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gsettings_desktop_schemas}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" \ --add-flags "-jar $out/share/java/${module}-${version}.jar ${if stdenv.system == "x86_64-linux" then "-d64" else "-d32"}" ''; diff --git a/pkgs/applications/misc/tilda/default.nix b/pkgs/applications/misc/tilda/default.nix index bf99f0f5f651..43b7312cda64 100644 --- a/pkgs/applications/misc/tilda/default.nix +++ b/pkgs/applications/misc/tilda/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig autoreconfHook gettext confuse vte gtk makeWrapper ]; - LD_LIBRARY_PATH = "${expat}/lib"; # ugly hack for xgettext to work during build + LD_LIBRARY_PATH = "${expat.out}/lib"; # ugly hack for xgettext to work during build # The config locking scheme relies on the binary being called "tilda", # (`pgrep -C tilda`), so a simple `wrapProgram` won't suffice: diff --git a/pkgs/applications/misc/timewarrior/default.nix b/pkgs/applications/misc/timewarrior/default.nix new file mode 100644 index 000000000000..a7afa6562fa5 --- /dev/null +++ b/pkgs/applications/misc/timewarrior/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchgit, cmake, libuuid, gnutls }: + +stdenv.mkDerivation rec { + name = "timewarrior-${version}"; + version = "2016-03-29"; + + enableParallelBuilding = true; + + src = fetchgit { + url = "https://git.tasktools.org/scm/tm/timew.git"; + rev = "2175849a81ddd03707dca7b4c9d69d8fa11e35f7"; + sha256 = "1c55a5jsm9n2zcyskklhqiclnlb2pz2h7klbzx481nsn62xd6bbg"; + }; + + nativeBuildInputs = [ cmake ]; + + meta = with stdenv.lib; { + description = "A command-line time tracker"; + homepage = http://tasktools.org/projects/timewarrior.html; + license = licenses.mit; + maintainers = with maintainers; [ matthiasbeyer ]; + platforms = platforms.linux; + }; +} + diff --git a/pkgs/applications/misc/udevil/default.nix b/pkgs/applications/misc/udevil/default.nix index 75c02d3ba6dd..8ce683ec9088 100644 --- a/pkgs/applications/misc/udevil/default.nix +++ b/pkgs/applications/misc/udevil/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { --with-mount-prog=${utillinux}/bin/mount \ --with-umount-prog=${utillinux}/bin/umount \ --with-losetup-prog=${utillinux}/bin/losetup \ - --with-setfacl-prog=${acl}/bin/setfacl \ + --with-setfacl-prog=${acl.bin}/bin/setfacl \ --sysconfdir=$prefix/etc ''; preConfigure = '' diff --git a/pkgs/applications/misc/xca/default.nix b/pkgs/applications/misc/xca/default.nix index ffba09e69f95..e861973b13cc 100644 --- a/pkgs/applications/misc/xca/default.nix +++ b/pkgs/applications/misc/xca/default.nix @@ -11,7 +11,8 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram "$out/bin/xca" \ - --prefix LD_LIBRARY_PATH : "${qt4}/lib:${gcc.cc}/lib:${gcc.cc}/lib64:${openssl}/lib:${libtool}/lib" + --prefix LD_LIBRARY_PATH : \ + "${gcc.cc.lib}/lib64:${stdenv.lib.makeLibraryPath [ qt4 gcc.cc openssl libtool ]}" ''; buildInputs = [ openssl qt4 libtool gcc makeWrapper ]; diff --git a/pkgs/applications/misc/xneur/default.nix b/pkgs/applications/misc/xneur/default.nix index cc08436fa033..8e3165b75d26 100644 --- a/pkgs/applications/misc/xneur/default.nix +++ b/pkgs/applications/misc/xneur/default.nix @@ -23,13 +23,13 @@ stdenv.mkDerivation rec { sed -e 's@for imlib2_dir in@for imlib2_dir in ${imlib2} @' -i configure sed -e 's@for xosd_dir in@for xosd_dir in ${xosd} @' -i configure - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk}/include/gtk-2.0" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk}/lib/gtk-2.0/include" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${cairo}/include/cairo" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pango}/include/pango-1.0" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${atk}/include/atk-1.0" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gdk_pixbuf}/include/gdk-pixbuf-2.0" - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gdk_pixbuf}/lib/gdk-pixbuf-2.0/include" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk.dev}/include/gtk-2.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gtk.out}/lib/gtk-2.0/include" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${cairo.dev}/include/cairo" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pango.dev}/include/pango-1.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${atk.dev}/include/atk-1.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gdk_pixbuf.dev}/include/gdk-pixbuf-2.0" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/include" export NIX_LDFLAGS="$NIX_LDFLAGS -lnotify" ''; diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix index 3a88409999fc..62e7ee60cb3e 100644 --- a/pkgs/applications/misc/zathura/core/default.nix +++ b/pkgs/applications/misc/zathura/core/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { "PREFIX=$(out)" "RSTTOMAN=${docutils}/bin/rst2man.py" "VERBOSE=1" - "TPUT=${ncurses}/bin/tput" + "TPUT=${ncurses.out}/bin/tput" ]; postInstall = '' diff --git a/pkgs/applications/networking/browsers/chromium/common.nix b/pkgs/applications/networking/browsers/chromium/common.nix index 7bcc6242389d..9fbc8959ad26 100644 --- a/pkgs/applications/networking/browsers/chromium/common.nix +++ b/pkgs/applications/networking/browsers/chromium/common.nix @@ -8,7 +8,7 @@ , libusb1, pciutils, nss , python, pythonPackages, perl, pkgconfig -, nspr, udev, kerberos +, nspr, libudev, kerberos , utillinux, alsaLib , bison, gperf , glib, gtk, dbus_glib @@ -112,7 +112,7 @@ let buildInputs = defaultDependencies ++ [ which python perl pkgconfig - nspr nss udev + nspr nss libudev utillinux alsaLib bison gperf kerberos glib gtk dbus_glib @@ -147,7 +147,7 @@ let }' chrome/utility/media_galleries/image_metadata_extractor.cc ''} - sed -i -e '/lib_loader.*Load/s!"\(libudev\.so\)!"${udev}/lib/\1!' \ + sed -i -e '/lib_loader.*Load/s!"\(libudev\.so\)!"${libudev.out}/lib/\1!' \ device/udev_linux/udev?_loader.cc sed -i -e '/libpci_loader.*Load/s!"\(libpci\.so\)!"${pciutils}/lib/\1!' \ diff --git a/pkgs/applications/networking/browsers/chromium/plugins.nix b/pkgs/applications/networking/browsers/chromium/plugins.nix index a0b354f0327c..82b3bc3ea59c 100644 --- a/pkgs/applications/networking/browsers/chromium/plugins.nix +++ b/pkgs/applications/networking/browsers/chromium/plugins.nix @@ -44,6 +44,7 @@ let phases = [ "unpackPhase" "patchPhase" "installPhase" "checkPhase" ]; outputs = [ "flash" "widevine" ]; + out = "flash"; # outputs TODO: is this a hack? unpackCmd = let chan = if upstream-info.channel == "dev" then "chrome-unstable" @@ -63,7 +64,7 @@ let ''; patchPhase = let - rpaths = [ stdenv.cc.cc ]; + rpaths = [ stdenv.cc.cc.lib ]; mkrpath = p: "${makeSearchPath "lib64" p}:${makeSearchPath "lib" p}"; in '' for sofile in PepperFlash/libpepflashplayer.so \ diff --git a/pkgs/applications/networking/browsers/conkeror/default.nix b/pkgs/applications/networking/browsers/conkeror/default.nix index 8ade601d4840..322146374468 100644 --- a/pkgs/applications/networking/browsers/conkeror/default.nix +++ b/pkgs/applications/networking/browsers/conkeror/default.nix @@ -1,12 +1,14 @@ { stdenv, fetchgit, unzip, firefox, makeWrapper }: -stdenv.mkDerivation { - name = "conkeror-1.0pre-20150730"; - +stdenv.mkDerivation rec { + pkgname = "conkeror"; + version = "1.0pre-20160130"; + name = "${pkgname}-${version}"; + src = fetchgit { url = git://repo.or.cz/conkeror.git; - rev = "a1f7e879b129df5cf14ea4ce80a9c1407380ed58"; - sha256 = "12d8949a81a670037664dd930f7efe3d54b321aad48deea68343eba9aaea8785"; + rev = "3e4732cd0d15aa70121fe0a0403103b777c964bf"; + sha256 = "1c4ri6011wqnkkz1gcn4l6dkvz693mycwqgncbanhydmy8pcb7jk"; }; buildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/networking/browsers/dwb/default.nix b/pkgs/applications/networking/browsers/dwb/default.nix index d79a5215ce21..8a8478d3867a 100644 --- a/pkgs/applications/networking/browsers/dwb/default.nix +++ b/pkgs/applications/networking/browsers/dwb/default.nix @@ -18,10 +18,10 @@ stdenv.mkDerivation { preFixup='' wrapProgram "$out/bin/dwb" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules:${dconf}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules:${dconf}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share" wrapProgram "$out/bin/dwbem" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index 41f8cc155a8e..552c8d4d822e 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -122,6 +122,7 @@ common = { pname, version, sha256 }: stdenv.mkDerivation rec { passthru = { inherit gtk nspr version; isFirefox3Like = true; + browserName = pname; }; }; diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix index 91486b608b2c..5fb887bda220 100644 --- a/pkgs/applications/networking/browsers/firefox/wrapper.nix +++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix @@ -9,8 +9,8 @@ }: ## configurability of the wrapper itself -browser : -{ browserName ? (lib.head (lib.splitString "-" browser.name)) # name of the executable +browser: +{ browserName ? browser.browserName or (builtins.parseDrvName browser.name).name , name ? (browserName + "-" + (builtins.parseDrvName browser.name).version) , desktopName ? # browserName with first letter capitalized (lib.toUpper (lib.substring 0 1 browserName) + lib.substring 1 (-1) browserName) diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix index 0e962f5fc1f6..ce9b94409072 100644 --- a/pkgs/applications/networking/browsers/jumanji/default.nix +++ b/pkgs/applications/networking/browsers/jumanji/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { preFixup='' wrapProgram "$out/bin/jumanji" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; diff --git a/pkgs/applications/networking/browsers/luakit/default.nix b/pkgs/applications/networking/browsers/luakit/default.nix index a3edaad37d40..2777cb15fca9 100644 --- a/pkgs/applications/networking/browsers/luakit/default.nix +++ b/pkgs/applications/networking/browsers/luakit/default.nix @@ -45,7 +45,7 @@ stdenv.mkDerivation { in '' make DEVELOPMENT_PATHS=0 INSTALLDIR=$out DESTDIR=$out PREFIX=$out USE_GTK3=1 install wrapProgram $out/bin/luakit \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "${gsettings_desktop_schemas}/share:$out/usr/share/:$out/share/:$GSETTINGS_SCHEMAS_PATH" \ --prefix XDG_CONFIG_DIRS : "$out/etc/xdg" \ --set LUA_PATH '"${luaKitPath};${luaPath};"' \ diff --git a/pkgs/applications/networking/browsers/midori/default.nix b/pkgs/applications/networking/browsers/midori/default.nix index 9eaf254b23b5..23ed0bc2c1ea 100644 --- a/pkgs/applications/networking/browsers/midori/default.nix +++ b/pkgs/applications/networking/browsers/midori/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram $out/bin/midori \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; } diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix index 2b6b0d5b4123..d1a00f1bd044 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/flashplayer-11/default.nix @@ -36,6 +36,13 @@ }: +/* When updating this package, test that the following derivations build: + + * flashplayer + * flashplayer-standalone + * flashplayer-standalone-debugger +*/ + let arch = if stdenv.system == "x86_64-linux" then @@ -49,66 +56,59 @@ let suffix = if stdenv.system == "x86_64-linux" then if debug then throw "no x86_64 debugging version available" - else "-release.x86_64" + else "_linux.x86_64" else if stdenv.system == "i686-linux" then if debug then "_linux_debug.i386" else "_linux.i386" else throw "Flash Player is not supported on this platform"; + saname = + if debug then "flashplayerdebugger" + else "flashplayer"; + is-i686 = (stdenv.system == "i686-linux"); in stdenv.mkDerivation rec { name = "flashplayer-${version}"; - version = "11.2.202.577"; + version = "11.2.202.616"; src = fetchurl { url = "https://fpdownload.macromedia.com/pub/flashplayer/installers/archive/fp_${version}_archive.zip"; - sha256 = "1k02d6c9y8z9lxyqyq04zsc5735cvm30mkwli71mh87fr1va2q4j"; + sha256 = "0y4bjkla6ils4crmx61pi31s4gscy8rgiv7xccx1z0g6hba9j73l"; }; - buildInputs = [ unzip ]; + nativeBuildInputs = [ unzip ]; + + sourceRoot = "."; postUnpack = '' - pushd $sourceRoot - tar -xvzf *${arch}/*${suffix}.tar.gz + cd *${arch} - ${ lib.optionalString is-i686 '' - tar -xvzf */*_sa.*.tar.gz - tar -xvzf */*_sa_debug.*.tar.gz + tar -xvzf *${suffix}.tar.gz + + ${lib.optionalString is-i686 '' + tar -xvzf *_sa[_.]*.tar.gz ''} - - popd ''; - sourceRoot = "fp_${version}_archive"; - dontStrip = true; dontPatchELF = true; - outputs = [ "out" ] ++ lib.optionals is-i686 ["sa" "saDbg" ]; + outputs = [ "out" ] ++ lib.optional is-i686 "sa"; installPhase = '' mkdir -p $out/lib/mozilla/plugins cp -pv libflashplayer.so $out/lib/mozilla/plugins + patchelf --set-rpath "$rpath" $out/lib/mozilla/plugins/libflashplayer.so - ${ lib.optionalString is-i686 '' - mkdir -p $sa/bin - cp flashplayer $sa/bin/ + ${lib.optionalString is-i686 '' + install -Dm755 ${saname} $sa/bin/flashplayer - patchelf \ - --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$rpath" \ - $sa/bin/flashplayer - - - mkdir -p $saDbg/bin - cp flashplayerdebugger $saDbg/bin/ - - patchelf \ - --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$rpath" \ - $saDbg/bin/flashplayerdebugger + patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath "$rpath" \ + $sa/bin/flashplayer ''} ''; @@ -116,7 +116,7 @@ stdenv.mkDerivation rec { mozillaPlugin = "/lib/mozilla/plugins"; }; - rpath = stdenv.lib.makeLibraryPath + rpath = lib.makeLibraryPath [ zlib alsaLib curl nspr fontconfig freetype expat libX11 libXext libXrender libXcursor libXt gtk glib pango atk cairo gdk_pixbuf libvdpau nss diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/gecko-mediaplayer/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/gecko-mediaplayer/default.nix index ba40925e1d1e..f59de7db9f5c 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/gecko-mediaplayer/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/gecko-mediaplayer/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { # !!! fix this preBuild = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo ${browser}/include/xulrunner-*) -I${browser.nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I$(echo ${browser}/include/xulrunner-*) -I${browser.nspr.dev}/include/nspr" echo $NIX_CFLAGS_COMPILE ''; diff --git a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix index 6fd953636a83..f35e88ae89e6 100644 --- a/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix +++ b/pkgs/applications/networking/browsers/mozilla-plugins/google-talk-plugin/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, rpm, cpio, mesa, xorg, cairo , libpng, gtk, glib, gdk_pixbuf, fontconfig, freetype, curl -, dbus_glib, alsaLib, libpulseaudio, udev, pango +, dbus_glib, alsaLib, libpulseaudio, libudev, pango }: with stdenv.lib; @@ -36,7 +36,7 @@ let alsaLib libpulseaudio dbus_glib - udev + libudev curl pango cairo diff --git a/pkgs/applications/networking/browsers/opera/default.nix b/pkgs/applications/networking/browsers/opera/default.nix index ab199ff97cdf..de7240d3a83b 100644 --- a/pkgs/applications/networking/browsers/opera/default.nix +++ b/pkgs/applications/networking/browsers/opera/default.nix @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { postFixup = '' oldRPATH=`patchelf --print-rpath $out/lib/opera/opera` - patchelf --set-rpath $oldRPATH:${cups}/lib $out/lib/opera/opera + patchelf --set-rpath $oldRPATH:${cups.out}/lib $out/lib/opera/opera # This file should normally require a gtk-update-icon-cache -q /usr/share/icons/hicolor command # It have no reasons to exist in a redistribuable package diff --git a/pkgs/applications/networking/browsers/qutebrowser/default.nix b/pkgs/applications/networking/browsers/qutebrowser/default.nix index 1be28829e351..bd7ca8863897 100644 --- a/pkgs/applications/networking/browsers/qutebrowser/default.nix +++ b/pkgs/applications/networking/browsers/qutebrowser/default.nix @@ -2,7 +2,7 @@ , jinja2, pygments, pyyaml, pypeg2, gst-plugins-base, gst-plugins-good , gst-plugins-bad, gst-libav, wrapGAppsHook, glib_networking }: -let version = "0.5.1"; in +let version = "0.6.0"; in buildPythonApplication rec { name = "qutebrowser-${version}"; @@ -10,7 +10,7 @@ buildPythonApplication rec { src = fetchurl { url = "https://github.com/The-Compiler/qutebrowser/releases/download/v${version}/${name}.tar.gz"; - sha256 = "1pxgap04rv94kgcp9a05xx2kwg3j6jv8f6d3ww7hqs2xnkj8wzqb"; + sha256 = "1vf9gh1f12wza72y3yqj568h2wsm7wfvjjs6qsh6apw5mgjysz91"; }; # Needs tox diff --git a/pkgs/applications/networking/browsers/surf/default.nix b/pkgs/applications/networking/browsers/surf/default.nix index 7bbe84847f25..fcaaec63b9e6 100644 --- a/pkgs/applications/networking/browsers/surf/default.nix +++ b/pkgs/applications/networking/browsers/surf/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/surf" \ - --prefix GIO_EXTRA_MODULES : ${glib_networking}/lib/gio/modules \ + --prefix GIO_EXTRA_MODULES : ${glib_networking.out}/lib/gio/modules \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; diff --git a/pkgs/applications/networking/browsers/uzbl/default.nix b/pkgs/applications/networking/browsers/uzbl/default.nix index 9e3b44f4083d..0fb0db998914 100644 --- a/pkgs/applications/networking/browsers/uzbl/default.nix +++ b/pkgs/applications/networking/browsers/uzbl/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { preFixup = '' for f in $out/bin/*; do wrapProgram $f \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix PYTHONPATH : "$PYTHONPATH" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share" done diff --git a/pkgs/applications/networking/browsers/vimb/default.nix b/pkgs/applications/networking/browsers/vimb/default.nix index cfbaa908902d..ddaaa68f60d4 100644 --- a/pkgs/applications/networking/browsers/vimb/default.nix +++ b/pkgs/applications/networking/browsers/vimb/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/vimb" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; diff --git a/pkgs/applications/networking/browsers/vimprobable2/default.nix b/pkgs/applications/networking/browsers/vimprobable2/default.nix index 6f8eede9b3f8..45aa2a9c2d12 100644 --- a/pkgs/applications/networking/browsers/vimprobable2/default.nix +++ b/pkgs/applications/networking/browsers/vimprobable2/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/vimprobable2" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" ''; diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix index b1b451855110..7efd34dee563 100644 --- a/pkgs/applications/networking/cluster/mesos/default.nix +++ b/pkgs/applications/networking/cluster/mesos/default.nix @@ -10,7 +10,7 @@ let soext = if stdenv.system == "x86_64-darwin" then "dylib" else "so"; in stdenv.mkDerivation rec { - version = "0.27.1"; + version = "0.28.0"; name = "mesos-${version}"; enableParallelBuilding = true; @@ -18,7 +18,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "mirror://apache/mesos/${version}/${name}.tar.gz"; - sha256 = "147iq7vwi09kqblx1h8r6lkrg9g50i257qk1cph1zr5j3rncz7l8"; + sha256 = "05dnj6r5pspizna0fk7yayn38a4w9hlcswgg8l9qmb35m6nq6hby"; }; patches = [ diff --git a/pkgs/applications/networking/copy-com/default.nix b/pkgs/applications/networking/copy-com/default.nix index 0ec2f5ac87a0..21dc23739775 100644 --- a/pkgs/applications/networking/copy-com/default.nix +++ b/pkgs/applications/networking/copy-com/default.nix @@ -41,7 +41,7 @@ in stdenv.mkDerivation { for binary in Copy{Agent,Console,Cmd}; do binary="$out/${appdir}/$binary" ln -sv "$binary" "$out/bin" - patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} "$binary" + patchelf --set-interpreter ${stdenv.glibc.out}/lib/${interpreter} "$binary" done RPATH=${libPaths}:$out/${appdir} diff --git a/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix b/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix index a254535dd703..99196cdf796b 100644 --- a/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix +++ b/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ''; NIX_CFLAGS_COMPILE = - "-I${libxml2}/include/libxml2 -I${json-c-0-11}/include/json-c"; + "-I${libxml2.dev}/include/libxml2 -I${json-c-0-11}/include/json-c"; NIX_LDFLAGS = "-lsqlite3 -lcurl -lxml2 -lstfl -ljson"; diff --git a/pkgs/applications/networking/ike/default.nix b/pkgs/applications/networking/ike/default.nix index 56341b64d6ce..5ea0975e15f3 100644 --- a/pkgs/applications/networking/ike/default.nix +++ b/pkgs/applications/networking/ike/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { installPhase = '' make install for file in "$out"/bin/* "$out"/sbin/*; do - wrapProgram $file --prefix LD_LIBRARY_PATH ":" "$out/lib:${openssl}/lib:${gcc.cc}/lib:${stdenv.glibc}/lib::${gcc.cc}/lib64:${stdenv.glibc}/lib64:${libedit}/lib:${qt4}/lib" + wrapProgram $file --prefix LD_LIBRARY_PATH ":" "$out/lib:${openssl.out}/lib:${gcc.cc}/lib:${stdenv.glibc.out}/lib::${gcc.cc}/lib64:${stdenv.glibc.out}/lib64:${libedit}/lib:${qt4}/lib" done ''; diff --git a/pkgs/applications/networking/instant-messengers/blink/default.nix b/pkgs/applications/networking/instant-messengers/blink/default.nix index 8076b27d1c54..d2a08b98c076 100644 --- a/pkgs/applications/networking/instant-messengers/blink/default.nix +++ b/pkgs/applications/networking/instant-messengers/blink/default.nix @@ -32,7 +32,7 @@ pythonPackages.buildPythonApplication rec { postInstall = '' wrapProgram $out/bin/blink \ - --prefix LD_LIBRARY_PATH ":" ${gnutls}/lib + --prefix LD_LIBRARY_PATH ":" ${gnutls.out}/lib mkdir -p "$out/share/applications" mkdir -p "$out/share/pixmaps" cp "$desktopItem"/share/applications/* "$out/share/applications" diff --git a/pkgs/applications/networking/instant-messengers/discord/default.nix b/pkgs/applications/networking/instant-messengers/discord/default.nix new file mode 100644 index 000000000000..a072c4a5d767 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/discord/default.nix @@ -0,0 +1,48 @@ +{ stdenv, fetchurl +, alsaLib, atk, cairo, cups, dbus, expat, fontconfig, freetype, gdk_pixbuf +, glib, gnome, gtk, libnotify, libX11, libXcomposite, libXcursor, libXdamage +, libXext, libXfixes, libXi, libXrandr, libXrender, libXtst, nspr, nss, pango +, udev }: + +let version = "0.0.1"; in + +stdenv.mkDerivation { + + name = "discord-${version}"; + + src = fetchurl { + url = "https://storage.googleapis.com/discord-developer/test/discord-canary-${version}.tar.gz"; + sha256 = "1skmwc84s4xqyc167qrplhy5ah06kwfa3d3rxiwi4c8rc55vdd0g"; + }; + + libPath = stdenv.lib.makeLibraryPath [ + stdenv.cc.cc alsaLib atk cairo cups dbus expat fontconfig freetype + gdk_pixbuf glib gnome.GConf gtk libnotify libX11 libXcomposite + libXcursor libXdamage libXext libXfixes libXi libXrandr libXrender + libXtst nspr nss pango udev + ]; + + installPhase = '' + mkdir -p $out/bin + mv * $out + + # Copying how adobe-reader does it, + # see pkgs/applications/misc/adobe-reader/builder.sh + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "$out:$libPath" \ + $out/DiscordCanary + + ln -s $out/DiscordCanary $out/bin/ + + # Putting udev in the path won't work :( + ln -s ${udev}/lib/libudev.so.1 $out + ''; + + meta = with stdenv.lib; { + description = "All-in-one voice and text chat for gamers that’s free, secure, and works on both your desktop and phone"; + homepage = "https://discordapp.com/"; + license = licenses.unfree; + maintainers = [ maintainers.ldesgoui ]; + platforms = [ "x86_64-linux" ]; + }; +} diff --git a/pkgs/applications/networking/instant-messengers/hipchat/default.nix b/pkgs/applications/networking/instant-messengers/hipchat/default.nix index 3ff93c35dcd1..6449c9d3d1a5 100644 --- a/pkgs/applications/networking/instant-messengers/hipchat/default.nix +++ b/pkgs/applications/networking/instant-messengers/hipchat/default.nix @@ -70,6 +70,8 @@ stdenv.mkDerivation { patchelf --set-rpath ${rpath}:$out/libexec/hipchat/lib:\$ORIGIN $file || true done + patchShebangs $d/linuxbrowserlaunch.sh + substituteInPlace $out/share/applications/hipchat4.desktop \ --replace /opt/HipChat4/bin/HipChat4 $out/bin/hipchat diff --git a/pkgs/applications/networking/instant-messengers/oneteam/default.nix b/pkgs/applications/networking/instant-messengers/oneteam/default.nix index 2ab0930842bc..bec367818e2f 100644 --- a/pkgs/applications/networking/instant-messengers/oneteam/default.nix +++ b/pkgs/applications/networking/instant-messengers/oneteam/default.nix @@ -43,7 +43,7 @@ rec { '' ["minInit" "doUnpack"]; setVars=a.noDepEntry '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" ''; cmakeBuildDir="cmake-build"; diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix index 7e9e41ea0bfc..e7266a93350b 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix @@ -43,11 +43,11 @@ stdenv.mkDerivation rec { patches = [./pidgin-makefile.patch ./add-search-path.patch ]; configureFlags = [ - "--with-nspr-includes=${nspr}/include/nspr" - "--with-nspr-libs=${nspr}/lib" - "--with-nss-includes=${nss}/include/nss" - "--with-nss-libs=${nss}/lib" - "--with-ncurses-headers=${ncurses}/include" + "--with-nspr-includes=${nspr.dev}/include/nspr" + "--with-nspr-libs=${nspr.out}/lib" + "--with-nss-includes=${nss.dev}/include/nss" + "--with-nss-libs=${nss.out}/lib" + "--with-ncurses-headers=${ncurses.dev}/include" "--disable-meanwhile" "--disable-nm" "--disable-tcl" diff --git a/pkgs/applications/networking/instant-messengers/psi/default.nix b/pkgs/applications/networking/instant-messengers/psi/default.nix index 784bda5e0cd4..7fabfa5f7722 100644 --- a/pkgs/applications/networking/instant-messengers/psi/default.nix +++ b/pkgs/applications/networking/instant-messengers/psi/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, aspell, qt4, zlib, sox, libX11, xproto, libSM -, libICE, qca2, pkgconfig, liboil, speex, callPackage, which, glib +{ stdenv, fetchurl, enchant, qt4, zlib, sox, libX11, xproto, libSM +, libICE, qca2, pkgconfig, callPackage, which, glib , libXScrnSaver, scrnsaverproto }: @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { }; buildInputs = - [ aspell qt4 zlib sox libX11 xproto libSM libICE + [ enchant qt4 zlib sox libX11 xproto libSM libICE qca2 pkgconfig which glib scrnsaverproto libXScrnSaver ]; @@ -20,20 +20,8 @@ stdenv.mkDerivation rec { NIX_LDFLAGS="-lqca"; - psiMedia = callPackage ./psimedia.nix { }; - enableParallelBuilding = true; - configureFlags = [ - "--with-aspell-inc=${aspell}/include" - ]; - - postInstall = '' - PSI_PLUGINS="$out/lib/psi/plugins" - mkdir -p "$PSI_PLUGINS" - ln -s "${psiMedia}"/share/psi/plugins/*.so "$PSI_PLUGINS" - ''; - meta = { description = "Psi, an XMPP (Jabber) client"; maintainers = [ stdenv.lib.maintainers.raskin ]; diff --git a/pkgs/applications/networking/instant-messengers/psi/glib-2.32.patch b/pkgs/applications/networking/instant-messengers/psi/glib-2.32.patch deleted file mode 100644 index 49988c253bdb..000000000000 --- a/pkgs/applications/networking/instant-messengers/psi/glib-2.32.patch +++ /dev/null @@ -1,54 +0,0 @@ -http://sources2.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/net-im/psimedia/files/psimedia-1.0.3-glib2.32.patch?view=log - -Index: psimedia-1.0.3/gstprovider/gstcustomelements/gstcustomelements.h -=================================================================== ---- psimedia-1.0.3.orig/gstprovider/gstcustomelements/gstcustomelements.h -+++ psimedia-1.0.3/gstprovider/gstcustomelements/gstcustomelements.h -@@ -21,7 +21,7 @@ - #ifndef GSTCUSTOMELEMENTS_H - #define GSTCUSTOMELEMENTS_H - --#include -+#include - #include - #include - #include -Index: psimedia-1.0.3/gstprovider/gstelements/static/gstelements.h -=================================================================== ---- psimedia-1.0.3.orig/gstprovider/gstelements/static/gstelements.h -+++ psimedia-1.0.3/gstprovider/gstelements/static/gstelements.h -@@ -21,7 +21,7 @@ - #ifndef PSI_GSTELEMENTS_H - #define PSI_GSTELEMENTS_H - --#include -+#include - - G_BEGIN_DECLS - -Index: psimedia-1.0.3/gstprovider/gstthread.h -=================================================================== ---- psimedia-1.0.3.orig/gstprovider/gstthread.h -+++ psimedia-1.0.3/gstprovider/gstthread.h -@@ -22,7 +22,7 @@ - #define PSI_GSTTHREAD_H - - #include --#include -+#include - - namespace PsiMedia { - -Index: psimedia-1.0.3/gstprovider/rwcontrol.h -=================================================================== ---- psimedia-1.0.3.orig/gstprovider/rwcontrol.h -+++ psimedia-1.0.3/gstprovider/rwcontrol.h -@@ -28,7 +28,7 @@ - #include - #include - #include --#include -+#include - #include "psimediaprovider.h" - #include "rtpworker.h" - diff --git a/pkgs/applications/networking/instant-messengers/psi/linux-headers.patch b/pkgs/applications/networking/instant-messengers/psi/linux-headers.patch deleted file mode 100644 index a5386b3e111e..000000000000 --- a/pkgs/applications/networking/instant-messengers/psi/linux-headers.patch +++ /dev/null @@ -1,86 +0,0 @@ -http://pkgs.fedoraproject.org/gitweb/?p=psimedia.git;a=blob_plain;f=psimedia-remove-v4l.patch;hb=HEAD - ---- a/gstprovider/deviceenum/deviceenum_unix.cpp -+++ b/gstprovider/deviceenum/deviceenum_unix.cpp -@@ -35,7 +35,7 @@ - # include - # include - # include --# include -+# include - #endif - - namespace DeviceEnum { -@@ -478,72 +478,7 @@ - // v4l detection scheme adapted from PWLib (used by Ekiga/Gnomemeeting) - static QList get_v4l_items() - { --#ifdef Q_OS_LINUX -- QList out; -- -- QList list = get_v4l_names("/sys/class/video4linux", true); -- if(list.isEmpty()) -- list = get_v4l_names("/proc/video/dev", false); -- -- // if we can't find anything, then do a raw scan for possibilities -- if(list.isEmpty()) -- { -- QStringList possible = scan_for_videodevs("/dev"); -- foreach(QString str, possible) -- { -- V4LName v; -- v.dev = str; -- list += v; -- } -- } -- -- for(int n = 0; n < list.count(); ++n) -- { -- V4LName &v = list[n]; -- -- // if we already have a friendly name then we'll skip the confirm -- // in order to save resources. the only real drawback here that -- // I can think of is if the device isn't a capture type. but -- // what does it mean to have a V4L device that isn't capture?? -- if(v.friendlyName.isEmpty()) -- { -- int fd = open(QFile::encodeName(v.dev).data(), O_RDONLY | O_NONBLOCK); -- if(fd == -1) -- continue; -- -- // get video capabilities and close -- struct video_capability caps; -- memset(&caps, 0, sizeof(caps)); -- int ret = ioctl(fd, VIDIOCGCAP, &caps); -- close(fd); -- if(ret == -1) -- continue; -- -- if(!(caps.type & VID_TYPE_CAPTURE)) -- continue; -- -- v.friendlyName = caps.name; -- } -- -- Item i; -- i.type = Item::Video; -- i.dir = Item::Input; -- i.name = v.friendlyName; -- i.driver = "v4l"; -- i.id = v.dev; -- -- // HACK -- if(v.friendlyName == "Labtec Webcam Notebook") -- i.explicitCaptureSize = QSize(640, 480); -- -- out += i; -- } -- -- return out; --#else -- // return empty list if non-linux - return QList(); --#endif - } - - static QList get_v4l2_items() diff --git a/pkgs/applications/networking/instant-messengers/psi/psimedia.nix b/pkgs/applications/networking/instant-messengers/psi/psimedia.nix deleted file mode 100644 index aa54053c67f4..000000000000 --- a/pkgs/applications/networking/instant-messengers/psi/psimedia.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ stdenv, fetchurl, qt4, gstreamer, gst_plugins_base, liboil, speex, which -, glib, pkgconfig }: - -stdenv.mkDerivation rec { - name = "psimedia-1.0.3"; - - src = fetchurl { - url = "http://delta.affinix.com/download/psimedia/${name}.tar.bz2"; - sha256 = "0fxjdz8afh75gfx2msysb1gss6zx578l3224jvc9jhm99w1ii781"; - }; - - patches = [ ./glib-2.32.patch ./linux-headers.patch ]; - - buildInputs = [ qt4 gstreamer gst_plugins_base liboil speex which glib pkgconfig ]; - - configurePhase = ''./configure''; - - postBuild = '' - TARGET="$out/share/psi/plugins" - mkdir -p "$TARGET" - cp gstprovider/*.so "$TARGET"/ - ''; - - meta = { - description = "Psi Media, a plugin to provide Voice/Video over XMPP"; - }; -} diff --git a/pkgs/applications/networking/instant-messengers/pybitmessage/default.nix b/pkgs/applications/networking/instant-messengers/pybitmessage/default.nix index c19b5ff31f9d..17462cb75ad5 100644 --- a/pkgs/applications/networking/instant-messengers/pybitmessage/default.nix +++ b/pkgs/applications/networking/instant-messengers/pybitmessage/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { postInstall = '' substituteInPlace $out/bin/pybitmessage \ --replace "exec python2" "exec ${python}/bin/python" \ - --replace "/opt/openssl-compat-bitcoin/lib/" "${openssl}/lib/" + --replace "/opt/openssl-compat-bitcoin/lib/" "${openssl.out}/lib/" wrapProgram $out/bin/pybitmessage \ --prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH" ''; diff --git a/pkgs/applications/networking/instant-messengers/sflphone/default.nix b/pkgs/applications/networking/instant-messengers/sflphone/default.nix index 8b259c90fe50..7322ff2bb345 100644 --- a/pkgs/applications/networking/instant-messengers/sflphone/default.nix +++ b/pkgs/applications/networking/instant-messengers/sflphone/default.nix @@ -40,7 +40,7 @@ rec { cd .. ''; - configureFlags = "--with-expat --with-expat-inc=${expat}/include " + + configureFlags = "--with-expat --with-expat-inc=${expat.dev}/include " + "--with-expat-lib=-lexpat --with-opus "; buildInputs = [ libyaml alsaLib openssl libuuid pkgconfig libpulseaudio libsamplerate diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix index b5bd22f88771..527d61832861 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix @@ -3,12 +3,12 @@ }: stdenv.mkDerivation rec { - name = "telegram-cli-2015-07-30"; + name = "telegram-cli-2016-03-23"; src = fetchgit { url = "https://github.com/vysheng/tg.git"; - sha256 = "0phn9nl0sf2fylzfwi427xq60cfrnpsvhh8bp55y1wcjkmp0fxsn"; - rev = "2052f4b381337d75e783facdbfad56b04dec1a9c"; + sha256 = "07x6172nyipbz4bk7n417a2ydj5r7y1ch2zl3hp79nckfw11fix7"; + rev = "6547c0b21b977b327b3c5e8142963f4bc246187a"; }; buildInputs = [ diff --git a/pkgs/applications/networking/instant-messengers/telepathy/kde/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/kde/default.nix index 532d68ad6605..84ced8f62c6e 100644 --- a/pkgs/applications/networking/instant-messengers/telepathy/kde/default.nix +++ b/pkgs/applications/networking/instant-messengers/telepathy/kde/default.nix @@ -11,11 +11,11 @@ let call_ui = x : x // { NIX_CFLAGS_COMPILE = "-I${telepathy_glib}/include/telepathy-1.0" - + " -I${dbus_glib}/include/dbus-1.0" - + " -I${dbus_libs}/include/dbus-1.0"; + + " -I${dbus_glib.dev}/include/dbus-1.0" + + " -I${dbus_libs.dev}/include/dbus-1.0"; }; telepathy_logger_qt = x : x // { - NIX_CFLAGS_COMPILE = "-I${dbus_libs}/include/dbus-1.0"; + NIX_CFLAGS_COMPILE = "-I${dbus_libs.dev}/include/dbus-1.0"; }; }; diff --git a/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix index 173dfe9c929f..aaff39ccb44d 100644 --- a/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix +++ b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "18i00l8lnp5dghqmgmpxnn0is2a20pkisxy0sb78hnd2dz0z6xnl"; }; - NIX_CFLAGS_COMPILE = "-I${dbus_glib}/include/dbus-1.0 -I${dbus_libs}/include/dbus-1.0"; + NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0"; buildInputs = [ dbus_glib libxml2 sqlite telepathy_glib pkgconfig intltool gobjectIntrospection dbus_libs ]; diff --git a/pkgs/applications/networking/irc/irssi/default.nix b/pkgs/applications/networking/irc/irssi/default.nix index 8c26bf8d10e9..d6b57b6cb0d7 100644 --- a/pkgs/applications/networking/irc/irssi/default.nix +++ b/pkgs/applications/networking/irc/irssi/default.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, pkgconfig, ncurses, glib, openssl, perl, libintlOrEmpty }: stdenv.mkDerivation rec { - name = "irssi-0.8.17"; + + version = "0.8.19"; + name = "irssi-${version}"; src = fetchurl { - urls = [ "https://distfiles.macports.org/irssi/${name}.tar.bz2" - "http://irssi.org/files/${name}.tar.bz2" - ]; - sha256 = "01v82q2pfiimx6lh271kdvgp8hl4pahc3srg04fqzxgdsb5015iw"; + urls = [ "https://github.com/irssi/irssi/releases/download/${version}/${name}.tar.gz" ]; + sha256 = "0ny8dry1b8siyc5glaxcwzng0d2mxnwxk74v64f8xplqhrvlnkzy"; }; buildInputs = [ pkgconfig ncurses glib openssl perl libintlOrEmpty ]; diff --git a/pkgs/applications/networking/irc/wraith/default.nix b/pkgs/applications/networking/irc/wraith/default.nix new file mode 100644 index 000000000000..f36bbc000641 --- /dev/null +++ b/pkgs/applications/networking/irc/wraith/default.nix @@ -0,0 +1,46 @@ +{ stdenv, fetchurl, openssl }: + +with stdenv; +with stdenv.lib; + +mkDerivation rec { + name = "wraith-${version}"; + version = "1.4.6"; + src = fetchurl { + url = "mirror://sourceforge/wraithbotpack/wraith-v${version}.tar.gz"; + sha256 = "0vb2hbjmwh040f5yhxvwcfxvgxa0q9zdy9vvddydn8zn782d7wl8"; + }; + buildInputs = [ openssl ]; + patches = [ ./dlopen.patch ]; + postPatch = '' + substituteInPlace src/libssl.cc --subst-var-by openssl ${openssl} + substituteInPlace src/libcrypto.cc --subst-var-by openssl ${openssl} + ''; + configureFlags = "--with-openssl=${openssl}"; + installPhase = '' + mkdir -p $out/bin + cp -a wraith $out/bin/wraith + ln -s wraith $out/bin/hub + ''; + + meta = { + description = "An IRC channel management bot written purely in C/C++"; + longDescription = '' + Wraith is an IRC channel management bot written purely in C/C++. It has + been in development since late 2003. It is based on Eggdrop 1.6.12 but has + since evolved into something much different at its core. TCL and loadable + modules are currently not supported. + + Maintainer's Notes: + Copy the binary out of the store before running it with the -C option to + configure it. See https://github.com/wraith/wraith/wiki/GettingStarted . + + The binary will not run when moved onto non-NixOS systems; use patchelf + to fix its runtime dependenices. + ''; + homepage = http://wraith.botpack.net/; + license = licenses.gpl2Plus; + maintainers = with maintainers; [ elitak ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/applications/networking/irc/wraith/dlopen.patch b/pkgs/applications/networking/irc/wraith/dlopen.patch new file mode 100644 index 000000000000..bfc854ef9e9c --- /dev/null +++ b/pkgs/applications/networking/irc/wraith/dlopen.patch @@ -0,0 +1,48 @@ +diff --git a/src/libcrypto.cc b/src/libcrypto.cc +index 0339258..68746c8 100644 +--- a/src/libcrypto.cc ++++ b/src/libcrypto.cc +@@ -95,17 +95,9 @@ int load_libcrypto() { + } + + sdprintf("Loading libcrypto"); ++ dlerror(); // Clear Errors ++ libcrypto_handle = dlopen("@openssl@/lib/libcrypto.so", RTLD_LAZY|RTLD_GLOBAL); + +- bd::Array libs_list(bd::String("libcrypto.so." SHLIB_VERSION_NUMBER " libcrypto.so libcrypto.so.0.9.8 libcrypto.so.7 libcrypto.so.6").split(' ')); +- +- for (size_t i = 0; i < libs_list.length(); ++i) { +- dlerror(); // Clear Errors +- libcrypto_handle = dlopen(bd::String(libs_list[i]).c_str(), RTLD_LAZY|RTLD_GLOBAL); +- if (libcrypto_handle) { +- sdprintf("Found libcrypto: %s", bd::String(libs_list[i]).c_str()); +- break; +- } +- } + if (!libcrypto_handle) { + fprintf(stderr, STR("Unable to find libcrypto\n")); + return(1); +diff --git a/src/libssl.cc b/src/libssl.cc +index b432c7b..8940998 100644 +--- a/src/libssl.cc ++++ b/src/libssl.cc +@@ -68,17 +68,9 @@ int load_libssl() { + } + + sdprintf("Loading libssl"); ++ dlerror(); // Clear Errors ++ libssl_handle = dlopen("@openssl@/lib/libssl.so", RTLD_LAZY); + +- bd::Array libs_list(bd::String("libssl.so." SHLIB_VERSION_NUMBER " libssl.so libssl.so.0.9.8 libssl.so.7 libssl.so.6").split(' ')); +- +- for (size_t i = 0; i < libs_list.length(); ++i) { +- dlerror(); // Clear Errors +- libssl_handle = dlopen(bd::String(libs_list[i]).c_str(), RTLD_LAZY); +- if (libssl_handle) { +- sdprintf("Found libssl: %s", bd::String(libs_list[i]).c_str()); +- break; +- } +- } + if (!libssl_handle) { + fprintf(stderr, STR("Unable to find libssl\n")); + return(1); diff --git a/pkgs/applications/networking/mailreaders/mailpile/default.nix b/pkgs/applications/networking/mailreaders/mailpile/default.nix index 0ace6a01b3f3..5936ae6e878e 100644 --- a/pkgs/applications/networking/mailreaders/mailpile/default.nix +++ b/pkgs/applications/networking/mailreaders/mailpile/default.nix @@ -21,7 +21,7 @@ pythonPackages.buildPythonApplication rec { postInstall = '' wrapProgram $out/bin/mailpile \ - --prefix PATH ":" "${gnupg1orig}/bin:${openssl}/bin" + --prefix PATH ":" "${gnupg1orig}/bin:${openssl.bin}/bin" ''; meta = with stdenv.lib; { diff --git a/pkgs/applications/networking/mailreaders/mutt/default.nix b/pkgs/applications/networking/mailreaders/mutt/default.nix index a1bfb9f854c4..1964faf2f5c8 100644 --- a/pkgs/applications/networking/mailreaders/mutt/default.nix +++ b/pkgs/applications/networking/mailreaders/mutt/default.nix @@ -17,14 +17,14 @@ assert saslSupport -> cyrus_sasl != null; assert gpgmeSupport -> gpgme != null; let - version = "1.5.24"; + version = "1.6.0"; in stdenv.mkDerivation rec { name = "mutt${stdenv.lib.optionalString withSidebar "-with-sidebar"}-${version}"; src = fetchurl { url = "http://ftp.mutt.org/pub/mutt/mutt-${version}.tar.gz"; - sha256 = "0012njrgxf1barjksqkx7ccid2l0xyikhna9mjs9vcfpbrvcm4m2"; + sha256 = "06bc2drbgalkk68rzg7hq2v5m5qgjxff5357wg0419dpi8ivdbr9"; }; buildInputs = with stdenv.lib; diff --git a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch index 262e8f98a65a..bac1b4ab83b2 100644 --- a/pkgs/applications/networking/mailreaders/mutt/sidebar.patch +++ b/pkgs/applications/networking/mailreaders/mutt/sidebar.patch @@ -78,7 +78,7 @@ index 5dfeff6..cf1ac98 100644 score.c send.c sendlib.c signal.c sort.c \ status.c system.c thread.c charset.c history.c lib.c \ + sidebar.c \ - muttlib.c editmsg.c mbyte.c \ + muttlib.c editmsg.c mbyte.c mutt_idna.c \ url.c ascii.c crypt-mod.c crypt-mod.h safe_asprintf.c diff --git a/OPS b/OPS diff --git a/pkgs/applications/networking/mailreaders/sup/Gemfile b/pkgs/applications/networking/mailreaders/sup/Gemfile index a57feb5d21f3..bc37456ae58e 100644 --- a/pkgs/applications/networking/mailreaders/sup/Gemfile +++ b/pkgs/applications/networking/mailreaders/sup/Gemfile @@ -1,8 +1,9 @@ source "https://rubygems.org" +gem 'rake' gem 'sup' gem 'gpgme' # Sup tries to `xapian-ruby` in its extconf instead of listing it as a # dependency. -gem 'xapian-ruby', "~> 1.2.15" +gem 'xapian-ruby', "~> 1.2.22" diff --git a/pkgs/applications/networking/mailreaders/sup/Gemfile.lock b/pkgs/applications/networking/mailreaders/sup/Gemfile.lock index fe8746b9f724..0691919ba182 100644 --- a/pkgs/applications/networking/mailreaders/sup/Gemfile.lock +++ b/pkgs/applications/networking/mailreaders/sup/Gemfile.lock @@ -2,33 +2,40 @@ GEM remote: https://rubygems.org/ specs: chronic (0.9.1) - gpgme (2.0.7) - mini_portile (>= 0.5.0, <= 0.6.0) - highline (1.6.21) - locale (2.1.0) + gpgme (2.0.12) + mini_portile2 (~> 2.1.0) + highline (1.7.8) + locale (2.1.2) lockfile (2.1.3) - mime-types (1.25.1) - mini_portile (0.6.0) + mime-types (3.0) + mime-types-data (~> 3.2015) + mime-types-data (3.2016.0221) + mini_portile2 (2.1.0) ncursesw (1.4.9) + rake (11.1.2) rmail-sup (1.0.1) - sup (0.20.0) + sup (0.22.1) chronic (~> 0.9.1) highline locale (~> 2.0) lockfile - mime-types (~> 1.0) + mime-types (> 2.0) ncursesw (~> 1.4.0) rmail-sup (~> 1.0.1) trollop (>= 1.12) unicode (~> 0.4.4) - trollop (2.1.1) + trollop (2.1.2) unicode (0.4.4.2) - xapian-ruby (1.2.19.1) + xapian-ruby (1.2.22) PLATFORMS ruby DEPENDENCIES gpgme + rake sup - xapian-ruby (~> 1.2.15) + xapian-ruby (~> 1.2.22) + +BUNDLED WITH + 1.10.6 diff --git a/pkgs/applications/networking/mailreaders/sup/default.nix b/pkgs/applications/networking/mailreaders/sup/default.nix index f7aff8a4d0c2..b7ac621eb6db 100644 --- a/pkgs/applications/networking/mailreaders/sup/default.nix +++ b/pkgs/applications/networking/mailreaders/sup/default.nix @@ -2,9 +2,14 @@ , pkgconfig, which }: bundlerEnv { - name = "sup-0.20.0"; + name = "sup-0.22.1"; inherit ruby; + + # Updated with: + # nix-shell -p bundix -p bundler -p ncurses -p ruby -p which -p zlib -p libuuid + # bundle install --path ./vendor + # bundix gemfile = ./Gemfile; lockfile = ./Gemfile.lock; gemset = ./gemset.nix; diff --git a/pkgs/applications/networking/mailreaders/sup/gemset.nix b/pkgs/applications/networking/mailreaders/sup/gemset.nix index e39da3dac85e..babc063d6346 100644 --- a/pkgs/applications/networking/mailreaders/sup/gemset.nix +++ b/pkgs/applications/networking/mailreaders/sup/gemset.nix @@ -1,107 +1,126 @@ { - "chronic" = { - version = "0.9.1"; + xapian-ruby = { + version = "1.2.22"; source = { type = "gem"; - sha256 = "0kspaxpfy7yvyk1lvpx31w852qfj8wb9z04mcj5bzi70ljb9awqk"; + remotes = ["https://rubygems.org"]; + sha256 = "1xbarnxmhy6r0rxpspn4wk85j183w6b18nah73djcs06b3gfas15"; }; + dependencies = [ "rake" ]; }; - "gpgme" = { - version = "2.0.7"; - source = { - type = "gem"; - sha256 = "1p84zhiri2ihcld7py9mwc2kg5xs5da8fk11zhndrhmw05yvf5mr"; - }; - dependencies = [ - "mini_portile" - ]; - }; - "highline" = { - version = "1.6.21"; - source = { - type = "gem"; - sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1"; - }; - }; - "locale" = { - version = "2.1.0"; - source = { - type = "gem"; - sha256 = "18bb0g24flq9dr8qv4j7pm7w9i2vmvmqrbmry95ibf1r1c4s60yj"; - }; - }; - "lockfile" = { - version = "2.1.3"; - source = { - type = "gem"; - sha256 = "0dij3ijywylvfgrpi2i0k17f6w0wjhnjjw0k9030f54z56cz7jrr"; - }; - }; - "mime-types" = { - version = "1.25.1"; - source = { - type = "gem"; - sha256 = "0mhzsanmnzdshaba7gmsjwnv168r1yj8y0flzw88frw1cickrvw8"; - }; - }; - "mini_portile" = { - version = "0.6.0"; - source = { - type = "gem"; - sha256 = "09kcn4g63xrdirgwxgjikqg976rr723bkc9bxfr29pk22cj3wavn"; - }; - }; - "ncursesw" = { - version = "1.4.9"; - source = { - type = "gem"; - sha256 = "154cls3b237imdbhih7rni5p85nw6mpbpkzdw08jxzvqaml7q093"; - }; - }; - "rmail-sup" = { - version = "1.0.1"; - source = { - type = "gem"; - sha256 = "1xswk101s560lxqaax3plqh8vjx7jjspnggdwb3q80m358f92q9g"; - }; - }; - "sup" = { - version = "0.20.0"; - source = { - type = "gem"; - sha256 = "1lpqgrqkv29xr1h1142qsbmknlshpgys7fc3w1nkyhib8s3ikamg"; - }; - dependencies = [ - "chronic" - "highline" - "locale" - "lockfile" - "mime-types" - "ncursesw" - "rmail-sup" - "trollop" - "unicode" - ]; - }; - "trollop" = { - version = "2.1.1"; - source = { - type = "gem"; - sha256 = "0z5dvh7glwqjprlihsjx67hfzy4whsjfhqj9akyyrby9q5va1i4k"; - }; - }; - "unicode" = { + unicode = { version = "0.4.4.2"; source = { type = "gem"; + remotes = ["https://rubygems.org"]; sha256 = "15fggljzan8zvmr8h12b5m7pcj1gvskmmnx367xs4p0rrpnpil8g"; }; }; - "xapian-ruby" = { - version = "1.2.19.1"; + trollop = { + version = "2.1.2"; source = { type = "gem"; - sha256 = "1crfrmc8kf6qq1xcfcmgf213zg66badpg4d86n7y9x3i1f5lxlbv"; + remotes = ["https://rubygems.org"]; + sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8"; }; }; -} \ No newline at end of file + sup = { + version = "0.22.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "17s2sxismf46zdhgr6g2v53fw9f3sp1ijx7xdw3wx8qpcsgazcgi"; + }; + dependencies = ["chronic" "highline" "locale" "lockfile" "mime-types" "ncursesw" "rmail-sup" "trollop" "unicode" "rake" ]; + }; + rmail-sup = { + version = "1.0.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1xswk101s560lxqaax3plqh8vjx7jjspnggdwb3q80m358f92q9g"; + }; + }; + rake = { + version = "11.1.2"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0jfmy7kd543ldi3d4fg35a1w7q6jikpnzxqj4bzchfbn94cbabqz"; + }; + }; + ncursesw = { + version = "1.4.9"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "154cls3b237imdbhih7rni5p85nw6mpbpkzdw08jxzvqaml7q093"; + }; + }; + mini_portile2 = { + version = "2.1.0"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1y25adxb1hgg1wb2rn20g3vl07qziq6fz364jc5694611zz863hb"; + }; + }; + mime-types-data = { + version = "3.2016.0221"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "05ygjn0nnfh6yp1wsi574jckk95wqg9a6g598wk4svvrkmkrzkpn"; + }; + }; + mime-types = { + version = "3.0"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1snjc38a9vqvy8j41xld1i1byq9prbl955pbjw7dxqcfcirqlzra"; + }; + dependencies = ["mime-types-data"]; + }; + lockfile = { + version = "2.1.3"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0dij3ijywylvfgrpi2i0k17f6w0wjhnjjw0k9030f54z56cz7jrr"; + }; + }; + locale = { + version = "2.1.2"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1sls9bq4krx0fmnzmlbn64dw23c4d6pz46ynjzrn9k8zyassdd0x"; + }; + }; + highline = { + version = "1.7.8"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; + }; + }; + gpgme = { + version = "2.0.12"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0a04a76dw9dias0a8rp6dyk3vx2y024gim40lg2md6zdh2m1kx85"; + }; + dependencies = ["mini_portile2"]; + }; + chronic = { + version = "0.9.1"; + source = { + type = "gem"; + remotes = ["https://rubygems.org"]; + sha256 = "0kspaxpfy7yvyk1lvpx31w852qfj8wb9z04mcj5bzi70ljb9awqk"; + }; + }; +} diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index e3ffa283ad9e..781e2d27e55a 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -4,123 +4,123 @@ # ruby generate_sources.rb > sources.nix { - version = "38.7.1"; + version = "38.7.2"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha256 = "186ba5f03adc7cb94c69351f5edcf241abdba1a3602f9b140a46682cb94b053c"; } - { locale = "ar"; arch = "linux-x86_64"; sha256 = "7c6308024524c8ba458bb43cace95bdf92dfa7d797c7ff936598257c018e4807"; } - { locale = "ast"; arch = "linux-i686"; sha256 = "61de0fc548ff70367334c82bec580caa895f3db63c6b045c5a717bfa282e69db"; } - { locale = "ast"; arch = "linux-x86_64"; sha256 = "34c935a0b162e182a341699782143cad1e225ea63bf314c158d25f629889c5e1"; } - { locale = "be"; arch = "linux-i686"; sha256 = "4442d37c8bb411c5c151bd98d06a375dc8ffcf72fee4d03bed6ac8691ccd8e2c"; } - { locale = "be"; arch = "linux-x86_64"; sha256 = "e7226b6b42e7cfe4d36c430eca755f5deae8899fd64ea1877ad576f96fe29b8c"; } - { locale = "bg"; arch = "linux-i686"; sha256 = "eaf46e571b55800dfaf63a807236e8bf5fa8e8ba77bc996830ab0dfcdce23300"; } - { locale = "bg"; arch = "linux-x86_64"; sha256 = "62edb0cee78dd88a871355c996107901456f1fb70793d21209e75875c33d91a3"; } - { locale = "bn-BD"; arch = "linux-i686"; sha256 = "76e3222d9b7bc4f5948c56be6248deb23c1777550f497f115487e323c16b2f95"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "b7ad9dd397abb89b844f8a1adbd34d0dfdea6bb85b3f8ad5d5f297e7f8b1b081"; } - { locale = "br"; arch = "linux-i686"; sha256 = "b10c7e572ba88f79acb2d57988308c5af6fde268f64434956c4312f8a7c3ed42"; } - { locale = "br"; arch = "linux-x86_64"; sha256 = "174f671aa90307e4dd6756d60f37a0b628d7d1cee8c7bb623a1a32c55b26a967"; } - { locale = "ca"; arch = "linux-i686"; sha256 = "b966f3381a30567db88890dd3885c56f9cf367d9c92e192d0c6c79066e482c91"; } - { locale = "ca"; arch = "linux-x86_64"; sha256 = "e5d96ddd9ed6b685b872d90e95bded23124e21575e9e0bcb7aeaa77ef0226009"; } - { locale = "cs"; arch = "linux-i686"; sha256 = "fdbe97bc87656569b20d8154619cd7b3b5c3b03cbbcd7ff2f1e07a3af547bb41"; } - { locale = "cs"; arch = "linux-x86_64"; sha256 = "b24ea0ae2977d9380cadfd130f83971e798677ce956152d794523e90a54222e6"; } - { locale = "cy"; arch = "linux-i686"; sha256 = "ba39bd39698ad0486e22806ff468b9a763712f35e943b93e6021365dc061c2ce"; } - { locale = "cy"; arch = "linux-x86_64"; sha256 = "f51e4dcaeac1aeb53d858d029c34c366e948616f7ca3f35eb22b165fd2839376"; } - { locale = "da"; arch = "linux-i686"; sha256 = "511441bfe56749643f59e10c9219b8c3192d64c50008ee3d8a2dc342993c0133"; } - { locale = "da"; arch = "linux-x86_64"; sha256 = "9f60a1c06da4e61a415359eeaed831d61a8c8ad377952948c1475ee6a2bc0cd3"; } - { locale = "de"; arch = "linux-i686"; sha256 = "d48939ad0dab7c4829cd41cd6afe9239d12ab2a2337296203b660613cbba2698"; } - { locale = "de"; arch = "linux-x86_64"; sha256 = "6b1398161ab1271caa14b20c4ad0b3e4372fca743b4ae2e3d5bd1d77d8038c15"; } - { locale = "dsb"; arch = "linux-i686"; sha256 = "c30f3fea47cca28fcc928d813e8c631db43a665d8f347f174b23ef3c1fdd7550"; } - { locale = "dsb"; arch = "linux-x86_64"; sha256 = "592b18fa8ff3749c7a68b5f5406f5ae42f9f97e47cc8c2f9c18b242c8f192b8d"; } - { locale = "el"; arch = "linux-i686"; sha256 = "1ccdde8b11337e75feabbd1e40f1316c287862769d0b9c37934f22108c74bf1a"; } - { locale = "el"; arch = "linux-x86_64"; sha256 = "acb837b0120f00f6cb39e447e86cb140c0cabbe599bff70d85429126df377d85"; } - { locale = "en-GB"; arch = "linux-i686"; sha256 = "ba4c223c22fda306f4b66daa6ed0d157c5c24489ec7627e1124c9f79b5aca989"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "f4bb5a60493f3fbf519a55dc7ff2fa7bb455ad344d27b133addb2864f9d9d100"; } - { locale = "en-US"; arch = "linux-i686"; sha256 = "205729f0ce14666ef98b7e23dad0882d450a508b568fc1d2c99cdfffd2cc9547"; } - { locale = "en-US"; arch = "linux-x86_64"; sha256 = "7c7cb801ea902f93e57f944209e1358bcbe73f8ee312112e94ade2a2ef4b1194"; } - { locale = "es-AR"; arch = "linux-i686"; sha256 = "8bbb39afd31656bc7cdab60b179e0a5bb9d9d9fed62e1ad398dfc5c0f40a35ab"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "0d86ebebfd2ba294b0f27b5eb84b083a7c8cecc8fea944705525831cf3c161b8"; } - { locale = "es-ES"; arch = "linux-i686"; sha256 = "76673ffb93fb3b902366c5939619dfa11ecd724dc5ff37fe769d598dc937c353"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "6e7098cf9eb6f1b55d7504b341b709133fb5d4d20cb761984647422749b71615"; } - { locale = "et"; arch = "linux-i686"; sha256 = "3de2c84af3c7111a306e35f1f7304bf7a77a0e50c8d2c9bfbc896a11a6a23e5d"; } - { locale = "et"; arch = "linux-x86_64"; sha256 = "a2bb5c2b6e174a65cf825293f57cc1628930686f6a674d2cb7fcee6aaf755afc"; } - { locale = "eu"; arch = "linux-i686"; sha256 = "f0ec8c9613ee04c7f7c1b55cb81386036220a715b58edc302e2099882e2c642d"; } - { locale = "eu"; arch = "linux-x86_64"; sha256 = "3ed3c4431fc604fbc05b6f17c9c6e74057278e9ef85480d60ea638843eab1394"; } - { locale = "fi"; arch = "linux-i686"; sha256 = "e4dac93472bc5f41a75daf9ca18265de527b5fc621812bde2c634f1fa5a4692c"; } - { locale = "fi"; arch = "linux-x86_64"; sha256 = "8a30c0c7a586f598e6065f20b2a0dc1e105f59d3e4adac8167da462e8e0193d2"; } - { locale = "fr"; arch = "linux-i686"; sha256 = "adfe8aca07faf08ba780ca0f84d638d461f4a0f00b92d5a9cebe8102a94bce79"; } - { locale = "fr"; arch = "linux-x86_64"; sha256 = "19ccb4a2ec44b1c8edce204627af3d0e84f214591d3b7a4f6e67e297dd9db0f9"; } - { locale = "fy-NL"; arch = "linux-i686"; sha256 = "88f763080b2bbfb8957ed6b52189f2195b3317a1bfb851a6e686765e8a12181a"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "5955d594802281794ef25e9fda196206464ac0594ce12e957b5c40c589c89ad0"; } - { locale = "ga-IE"; arch = "linux-i686"; sha256 = "7fb849565e25b1bba853b434d7f0207bfc9b3f39251f08edf65a8a38ccd0dd96"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "b56cd8b5fc665ad24061fdf2ac3196aff9f953395e894007b133bc83f676be33"; } - { locale = "gd"; arch = "linux-i686"; sha256 = "860dca420cd8c6c18bc703ab4934948e038b4e7e91a1d80d3f632980f0799424"; } - { locale = "gd"; arch = "linux-x86_64"; sha256 = "4e8723dacd9a4961f02fece36066166c044880fbc0c7aab4e0f1289a36bd22c6"; } - { locale = "gl"; arch = "linux-i686"; sha256 = "fd071bf547ba0baaf13141e30f34c15108fb6e44432b02d55508cf3dfca91cdb"; } - { locale = "gl"; arch = "linux-x86_64"; sha256 = "b999261eb53e28c5b43fa5d3ffcb2f9c12cca45a38c6e8fc56a342b1a5dda78a"; } - { locale = "he"; arch = "linux-i686"; sha256 = "2c2e7d7a459dd85f88fb3839002e2eb602d47ce5df4d0572928d8a35a0df4773"; } - { locale = "he"; arch = "linux-x86_64"; sha256 = "0c540f0ffb1224c8d3b18423690f319d25ff5e0c004d18cc8bc6b7d69ecbc48a"; } - { locale = "hr"; arch = "linux-i686"; sha256 = "5d7e14f94f53c7623dc4fce69aa991a67792e0d2405a6c7044558d5023ea0cc0"; } - { locale = "hr"; arch = "linux-x86_64"; sha256 = "6355145ae642332d1798f8ce169cb85cc930af6add6c8cda142e8183666fdb71"; } - { locale = "hsb"; arch = "linux-i686"; sha256 = "897eca9ffdbf28f3d3f720dd44f68f67a289e4d2aff91005c180688b34358b08"; } - { locale = "hsb"; arch = "linux-x86_64"; sha256 = "43d2cf464be8be57a5d2bdba1683e6179641448e351d9a8bee9889febe1ebefd"; } - { locale = "hu"; arch = "linux-i686"; sha256 = "5e6b806364d7e97384bf3f30e4f398c8041cd8acc000b21edcf218ca24e1903a"; } - { locale = "hu"; arch = "linux-x86_64"; sha256 = "5b96ea401ec1af9473cc57e4f09f6f264598e52196dd9da38cebe3e802649fc9"; } - { locale = "hy-AM"; arch = "linux-i686"; sha256 = "3fbd40d914f9347f09848ffb3486d1cec9734f9ae3cc969bc71a8d9c61aea92b"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "9f60903ccb571eebdf7fab4c62e1f0675d4c7f5bcbca7589e669c931b355b55a"; } - { locale = "id"; arch = "linux-i686"; sha256 = "bd0e53bb5d792c9caf2aedc67cf1df2281d234905b96748766446e842448e39e"; } - { locale = "id"; arch = "linux-x86_64"; sha256 = "f7bc98632e15fb73c61c5fd54c3e349e93f3f07b61ee92d704b105b05386949d"; } - { locale = "is"; arch = "linux-i686"; sha256 = "6361b21f9a57468cb8e6273805437d4a40f90c0b461d447b17543f84f9cae8c2"; } - { locale = "is"; arch = "linux-x86_64"; sha256 = "df4d4ef5a25a8aa2f9cbbfef2425056c19b568030e2b217f9bb535fcd81cc017"; } - { locale = "it"; arch = "linux-i686"; sha256 = "def27fdc02da10e148b3312199826157b981165a98ea9a3f5135866092e07ad3"; } - { locale = "it"; arch = "linux-x86_64"; sha256 = "3c55c72d8b9936dc0b0ecf2e88024d4e128f4cbdb32ec5770d4caa930e12d696"; } - { locale = "ja"; arch = "linux-i686"; sha256 = "7f1e39da21362857afd57151b0bb606c7a8b52f0ea1362cbb5bf9c4eb9b18db8"; } - { locale = "ja"; arch = "linux-x86_64"; sha256 = "3b70e990616d999c572a9e95f92dc62b004f5449891778a6530ee81dc1f42703"; } - { locale = "ko"; arch = "linux-i686"; sha256 = "7023635ab8fde872b41b08f523128721863091d7bd7e76646ea2f2929a667719"; } - { locale = "ko"; arch = "linux-x86_64"; sha256 = "370075633a30d3f4afbe69c617ecc4df33e51aa95704ef9fff599a13e9cb3ab2"; } - { locale = "lt"; arch = "linux-i686"; sha256 = "f143791c658916ee2ddac2199293ded234cfd8201cd6399775ccb996cb784e18"; } - { locale = "lt"; arch = "linux-x86_64"; sha256 = "5d48abb53a5b71be190dc4c127c5718704fbc12590c2c5fbcf3b4046f9840415"; } - { locale = "nb-NO"; arch = "linux-i686"; sha256 = "319df90e458817537f7323e97c3d7fdeb2fd965a215b1173f87378b3c94e3ac7"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "2f93a35135f387c8cb2e4ca4b0c800f846596d0f93350f3be0983797a0571359"; } - { locale = "nl"; arch = "linux-i686"; sha256 = "8e3d9003a67a0d38821dae7a070eebe32698ae6a89272394d4f7faea91595360"; } - { locale = "nl"; arch = "linux-x86_64"; sha256 = "bf2bb1676c5966b6fdcf34c93eb3444ed0f3dd6ed03c8e2a39f6757811bf0e7f"; } - { locale = "nn-NO"; arch = "linux-i686"; sha256 = "e938fcf2e84bc19d766c89312f8ca8e055ffeaf7fe20ba8d616aeb0b862cd064"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "ab0b01922e883a34874de33f6eae08a8e4e40d23dd7ddcdf42254386218728e6"; } - { locale = "pa-IN"; arch = "linux-i686"; sha256 = "fd3fd9fe5280365a27ef4e81f7965da2e85ad149e4e026f6a8714a73d976eeb2"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "6a68c72828036a256a8d04b1678be58c786671ef97f106b23812ebcf149f1d15"; } - { locale = "pl"; arch = "linux-i686"; sha256 = "26bb8ca3617c70d1126ef4111787ab267bc6dcd28b2b995e07b7296bdf24723b"; } - { locale = "pl"; arch = "linux-x86_64"; sha256 = "de6ac16163aab662ba4fef2130dd822ec9cfecc0f4beec54f2017785fec8eb0a"; } - { locale = "pt-BR"; arch = "linux-i686"; sha256 = "82c459a487d2a7b156f92db36e85c815c714d59474ed9bd8cde46b08c69f1d57"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "1f4caae64ced0c69fe6ba6330921fce0d220b616a0eb8b1e696da85cdcf5ec01"; } - { locale = "pt-PT"; arch = "linux-i686"; sha256 = "830b649a394cd844bb1b159a76d265455f6ace76dec6697491367b2f6eff1588"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "e89e906cd896c8e04754a9658dc72617954e0a097e6e3b648e5ce827c8cec7d7"; } - { locale = "rm"; arch = "linux-i686"; sha256 = "260fc959ce74945d827c230124a451cec75b6347b78d7d8bbeb65a2bd91f5bd8"; } - { locale = "rm"; arch = "linux-x86_64"; sha256 = "aa416170d0d04d0e2e570d0b0874b6c585d706f8b670de3c24bc5a9ce9819d8d"; } - { locale = "ro"; arch = "linux-i686"; sha256 = "a24ec33c8812921ad0f15dd4306218a2443f7018be5141bcc8e87e0ce3f52929"; } - { locale = "ro"; arch = "linux-x86_64"; sha256 = "5c8bb4872206cacd17cfb77ed3cf58024cdc81be181908213f80659c4d36594b"; } - { locale = "ru"; arch = "linux-i686"; sha256 = "06bde08af3d4b73db3f0a8b87f4f5f3bbc95fd92d717a9ac83efddb7ebc0f12b"; } - { locale = "ru"; arch = "linux-x86_64"; sha256 = "6adf1e6992b05b6c93152bb19a79fe39f319b5a5a62d2491191544eaaabbcc1b"; } - { locale = "si"; arch = "linux-i686"; sha256 = "3f757064e857d8c4d025c0de8325b3bfd81648ac2b77ee11ca847e8ea85d35a5"; } - { locale = "si"; arch = "linux-x86_64"; sha256 = "01147194ad382e4cc61c22c6a2672a01740ced6fdb3d4c2a9394ca9d62503c24"; } - { locale = "sk"; arch = "linux-i686"; sha256 = "ffd8e8bbadb7be4672555f1ec8e4134af5c0898041cc197e1d0081b636d07642"; } - { locale = "sk"; arch = "linux-x86_64"; sha256 = "d1e9df7d081afa272e94534ee3d6310c3498629cd7bba0fd7ab86675ea885714"; } - { locale = "sl"; arch = "linux-i686"; sha256 = "2835ea496c48c171efa0d79924cd3183c12f6de49ce05af72214f6ad4a407c85"; } - { locale = "sl"; arch = "linux-x86_64"; sha256 = "e585b0839c2b31ef12f562c4303b46b392493c6619b7e1b0c92e21c3afdb7461"; } - { locale = "sq"; arch = "linux-i686"; sha256 = "592ece3de096b4135c24e9079f20b85b8c394d488caa6b7907b75d49f51fb30d"; } - { locale = "sq"; arch = "linux-x86_64"; sha256 = "048bcb92d0915b909e2174c990948dd5c50345452369e067bf8c5770bc7b40c4"; } - { locale = "sr"; arch = "linux-i686"; sha256 = "b24e02beeb02d44ba64884864cdfb6605e7b3454b6e953767ceeaf4817f41d95"; } - { locale = "sr"; arch = "linux-x86_64"; sha256 = "caad067689a49308c2e51385750f3d2319e3a06757cf56060ce3c5ecb74a9ed6"; } - { locale = "sv-SE"; arch = "linux-i686"; sha256 = "a2dc5de82a1736dd3aa157da305f5db478625508444df244a3492dfaff8278f3"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "d2c4ab30e6e5d17716d7981d0039f043a41107edb917a838be66659d60653074"; } - { locale = "ta-LK"; arch = "linux-i686"; sha256 = "58773ebf8d949541a2c19924935eb09f0d996aa4059ad3c17a71c664357c2bcc"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "bb5c4d1d81373c1d25c1df4d896fbd1ba52acfed4e890a81650e34e5b9bd2ef0"; } - { locale = "tr"; arch = "linux-i686"; sha256 = "c95f531aaa3d36788cf6511d51afa1242657890bdc10628218aef60d6d80b106"; } - { locale = "tr"; arch = "linux-x86_64"; sha256 = "bf04a4f7b629e20f8389aad530b89b592686bd1a8340090311882934f9bea391"; } - { locale = "uk"; arch = "linux-i686"; sha256 = "2c0c6d3a2d4228b7838864835665ff7d46cf8564d59db817ee1d8f9665828410"; } - { locale = "uk"; arch = "linux-x86_64"; sha256 = "c51477c9aaa96765205c163df83acb003c2db837243225d5d1e8753b1de5b71b"; } - { locale = "vi"; arch = "linux-i686"; sha256 = "3c92aef738962dab12fa0e118d64d29bb0d110f9ef2050630b3649d574036476"; } - { locale = "vi"; arch = "linux-x86_64"; sha256 = "4854536b65fb7afb8925315ff4192c369db53f55b3ccec698cb561af1bc03f68"; } - { locale = "zh-CN"; arch = "linux-i686"; sha256 = "3aa69342828a99d075e0b70938d1360dcb9016ad322638c57fba9288e37b9b3e"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "9d590c31e369d8e1287c915cb91061f14359329c89e5038e3491052ff3df894a"; } - { locale = "zh-TW"; arch = "linux-i686"; sha256 = "f133efa32b74f0203186abfeb5b191bf50711f04bf29762e2569b78e0feb66e3"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "15d71526ef072de2b9adacb300e0eb158170839be82a7def9efa6ac55adcda37"; } + { locale = "ar"; arch = "linux-i686"; sha256 = "63cdb91df96bc132e0b9b6c702cdc82b9583a58be11863c76c0a1a04b689b1ed"; } + { locale = "ar"; arch = "linux-x86_64"; sha256 = "d1dc64cc1ca886b81da71e132b31644d89b8f61b4fab5f886c00b3b8defcd49a"; } + { locale = "ast"; arch = "linux-i686"; sha256 = "b71ee84b0e56d7dd9b4cb40032055c8c1f8b4c18e9d679d84b71c226c928a189"; } + { locale = "ast"; arch = "linux-x86_64"; sha256 = "dbb80209a669529b17553d152d5b3ccffbabd5c44b1e6a7e63a2d011e5425a2c"; } + { locale = "be"; arch = "linux-i686"; sha256 = "358cf7d9b9b13cbd5614daa4f140a412e777f2dffe0dfa2673b33582f59e02f9"; } + { locale = "be"; arch = "linux-x86_64"; sha256 = "bd4ac7afafcc4b4a65e34f207f7c07b24be36c06c8e067fb75f4a22ce759fb4b"; } + { locale = "bg"; arch = "linux-i686"; sha256 = "853629b5625f9dd9a81d5f18d862f0f527043435a7c4624f6f78fa68541a5bba"; } + { locale = "bg"; arch = "linux-x86_64"; sha256 = "8d094f3d934d2ca42c38b985145bec7f72b4ddb9af7c31e30413721eaecc934d"; } + { locale = "bn-BD"; arch = "linux-i686"; sha256 = "d569e6211c4c011955553f3480fd8530ba6dd853b227859f95b0d8af4d9e8c6e"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha256 = "5ed4e24f7725864b47dcbb0602463bc95bb33c8e4413483854e0bf3f33ad9376"; } + { locale = "br"; arch = "linux-i686"; sha256 = "683716f591654dfc843a32198d5bbf6199bccb1a035d391293c4877f0ec47b1c"; } + { locale = "br"; arch = "linux-x86_64"; sha256 = "965d58b4ea4280f20d197e28e0e9eb87b29fc955e4f6e15b6582027000d0da6f"; } + { locale = "ca"; arch = "linux-i686"; sha256 = "eadc1248c9352574dcfcdcb3264a662d3a29f85a2f112f77a843f76d8778cba2"; } + { locale = "ca"; arch = "linux-x86_64"; sha256 = "cdd631c4a32d529a85f04bee01bbc7f50396b183a0f154808e801d29f0f11aab"; } + { locale = "cs"; arch = "linux-i686"; sha256 = "093f01ad325ba33f3f33f2efd72fb5cf3a87dd81162b094dc544744af78f3705"; } + { locale = "cs"; arch = "linux-x86_64"; sha256 = "f74b39dfd0d9f2241ea65d55a6e9459296796adf228def80c57dd66c3f05921d"; } + { locale = "cy"; arch = "linux-i686"; sha256 = "f84113f32952ae91a35d2aa166f16c4683e03fa43ce6fbd911d0f7f237b22ee8"; } + { locale = "cy"; arch = "linux-x86_64"; sha256 = "6e53fd624a5c968e60cd485ea7c7b80a68c164c2f165287ec68a180066c560cb"; } + { locale = "da"; arch = "linux-i686"; sha256 = "ff1f79558185d2a29487d15f95140716603f5978e8fcd891206ea0c5697342a0"; } + { locale = "da"; arch = "linux-x86_64"; sha256 = "522c53748cc7ab0faab84e124e45f3bcdb865f4b5312ff129fc50700ebc4d8ef"; } + { locale = "de"; arch = "linux-i686"; sha256 = "3e83bca492c325438f48880d76a259c3fbfa65eac71569a79e1fdff858268621"; } + { locale = "de"; arch = "linux-x86_64"; sha256 = "020655df7c19750f86a7e1778846ed53e2fe350d44a76f4ac0acaeb82c9d4100"; } + { locale = "dsb"; arch = "linux-i686"; sha256 = "3409d2988bb31b2dfc490e03976471e2d09139660a4c08daab518f3095b45170"; } + { locale = "dsb"; arch = "linux-x86_64"; sha256 = "f5d084e8efe87488fed491432d93fb74c7e14b1fbcbc2abf21af6c669110b5bf"; } + { locale = "el"; arch = "linux-i686"; sha256 = "514a3262c1d0e146b3dbfc24d54b73ce0a5e27e02f26692e25ba6e36897da125"; } + { locale = "el"; arch = "linux-x86_64"; sha256 = "924b0e1514cddbad893446bb6561ca9422d46f6f5303fa7f847550f2f92a988f"; } + { locale = "en-GB"; arch = "linux-i686"; sha256 = "1cff7f847a1ca8a52cfc9a733b7e223a8468a82f5ea9c7d8e1c074868a9baf27"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha256 = "5e803270db14ba348ab7b8697d488d172b774a8d782c22f079db0e8ccda793bf"; } + { locale = "en-US"; arch = "linux-i686"; sha256 = "95428cacb129137747da7cab4c793f102f87a5224ad2a5adc6f52939df746432"; } + { locale = "en-US"; arch = "linux-x86_64"; sha256 = "828317d27c4336aebf7122e2e5268697d8d0cdcde9bf874b63798f7fc6f84fd1"; } + { locale = "es-AR"; arch = "linux-i686"; sha256 = "7ec8555eeb01f126671b89fd8dcc46f219bc938cf15ca8b7f67b13a1df38a101"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha256 = "082c9ace7d6775aff0e0b379206fa5109ce5bac08686ab937b7441edd6e17d6f"; } + { locale = "es-ES"; arch = "linux-i686"; sha256 = "722e87bb5dbde3a7aa6ce5a913622a050a3fd1da822656a787cac6a18881737f"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha256 = "4420c5d0b773e76bdfa4e4ac842b86f3875ad81dc5b4d0666497a30d77267720"; } + { locale = "et"; arch = "linux-i686"; sha256 = "a3128b1315428ec2906ff44bef49f8f448d7116bae80be7bd68bf78138cf5192"; } + { locale = "et"; arch = "linux-x86_64"; sha256 = "299284d934129a15b70ca9f2d26fb05773d555972b14afe9f65826aaeda7bbf6"; } + { locale = "eu"; arch = "linux-i686"; sha256 = "197ba5387010a6d95fff049d780829526d1676de43f1eaa16be2ae1f04f1601a"; } + { locale = "eu"; arch = "linux-x86_64"; sha256 = "fc8386c294d107994463311d3778ad507a8848af3be8a533fd2c5be7394b9222"; } + { locale = "fi"; arch = "linux-i686"; sha256 = "db764598fb0cec2fdd0e585b3396e53fa873af303c4f9a027061a0179e445705"; } + { locale = "fi"; arch = "linux-x86_64"; sha256 = "ea87a217ec9934fae484a32f4dcc655cac04116c9b0c73e458eaee7e595f2b77"; } + { locale = "fr"; arch = "linux-i686"; sha256 = "e27563fdfcfceb5ed4b2643d63d5c26834ca9afed1d887151671fd13086fd66a"; } + { locale = "fr"; arch = "linux-x86_64"; sha256 = "0ee8fdb3d0a1e50afa5f232fba57d84b97c428c41176e73a712a2438bc3e8796"; } + { locale = "fy-NL"; arch = "linux-i686"; sha256 = "a5a785c9ebfb40a7962e29603792de280c57ff5d77f7836c5048074d5c9d4178"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha256 = "c5bbbb471fc2af310d768e7b01ff1336f78791a42a60b4473cdab00c0bd6e980"; } + { locale = "ga-IE"; arch = "linux-i686"; sha256 = "9c18f2677315f8613203dc69a7877b83e787f6c0b96fb150ab7e4ba3ac712e54"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha256 = "ccfcca939876bcca2e3b9fd81aee747d1c94f0df02f5258c9ae43564f61c7c23"; } + { locale = "gd"; arch = "linux-i686"; sha256 = "60031f3767779568e49ea477fd2677adf0f437d5663a53b7d96203e2cbc85f1e"; } + { locale = "gd"; arch = "linux-x86_64"; sha256 = "1090d5993cfffa923be8a8bb3acb197bd7968c994a1558a1024d81283e9341b2"; } + { locale = "gl"; arch = "linux-i686"; sha256 = "5a67627f06ae51553730e9185a11208f6ba15c421ebc5fa3ba358a341830efae"; } + { locale = "gl"; arch = "linux-x86_64"; sha256 = "2f7d114cfd69859f1cecd479ad00735744efe19b8a3db1be391fcd7dfe6ca757"; } + { locale = "he"; arch = "linux-i686"; sha256 = "f6cd331db9669ec8d910210061e95f2c87e64afe6343f5faaf75a321a5b99471"; } + { locale = "he"; arch = "linux-x86_64"; sha256 = "f665b75ad6ad846c57007e747931b89d773984beedb825c87fcb07a86ab52f9b"; } + { locale = "hr"; arch = "linux-i686"; sha256 = "69b5baa57f47ce77373aa9505b2ccba0baf90911f2c3ebaef28b043b601ad34b"; } + { locale = "hr"; arch = "linux-x86_64"; sha256 = "7bd6d9e36e87cf2e3aadb4fc7dec2dea371004466bc9a84ead3f60a59af38ae8"; } + { locale = "hsb"; arch = "linux-i686"; sha256 = "72cd9a12387bc5dc02783bb6f6a1d55ab8444557e4d2c46c35b93ce0ab0cf394"; } + { locale = "hsb"; arch = "linux-x86_64"; sha256 = "27b60e8cee363317070e74702d9ba97e5d68318caba0e17fc37aad6bf0fbb362"; } + { locale = "hu"; arch = "linux-i686"; sha256 = "b0b8219da55e81f3feb0872333eadd0f490b251fae09244d31287f2e40339861"; } + { locale = "hu"; arch = "linux-x86_64"; sha256 = "fb1b52b27253280f98e01b11e6f46e01d854998831b337a52922b925570ca330"; } + { locale = "hy-AM"; arch = "linux-i686"; sha256 = "8474bc4a1fd0f8b27131ed3ba999402e1a56b7e04be157e571b95c470f43e779"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha256 = "e68036c3057ce7c369b43335397c8248e5aac83a6db6e729c8e1116ed57a20a1"; } + { locale = "id"; arch = "linux-i686"; sha256 = "23ea1fb9c64baf835be0a87f7633ee5b87cc05db90a652ca05f17d6b2cb1904c"; } + { locale = "id"; arch = "linux-x86_64"; sha256 = "52584ff6ec72359f44891e630b099fc9114e1266a11cd0d063db5ff6034ed02e"; } + { locale = "is"; arch = "linux-i686"; sha256 = "3e018dd9407823747dce9d32571a390a8fdff11339826bcd68c6879b8edb9c1b"; } + { locale = "is"; arch = "linux-x86_64"; sha256 = "f86a8cd6be21403749607690c467baa126be38e547d1b0e3f50d40477b346fde"; } + { locale = "it"; arch = "linux-i686"; sha256 = "82afb08b29d44aa09da71c454c42d31fbf7ee2756c6f1ddca5c456179e5a7f89"; } + { locale = "it"; arch = "linux-x86_64"; sha256 = "d449b869faf6438697bb7e3f692c9bca6c1a116441b08dbd84e775de62564470"; } + { locale = "ja"; arch = "linux-i686"; sha256 = "02bcacb390dd85bf2e7809751d840fa7c87bb8eac467d9bc2cb50a77559060f9"; } + { locale = "ja"; arch = "linux-x86_64"; sha256 = "8ee832167990dc9546775a1c32518e4524b0f92147ce11e149b0b447932f7ecc"; } + { locale = "ko"; arch = "linux-i686"; sha256 = "374b797f6d662e3deb5a05f6939f650a0ec272f7788cc7dc1a02fc0262e5c903"; } + { locale = "ko"; arch = "linux-x86_64"; sha256 = "e0308132773119f13443ab475d66e651182adf508b7ca04b0efb65fd84013916"; } + { locale = "lt"; arch = "linux-i686"; sha256 = "dce54478d896490141be7f10ef780196ce446e3312cf5623315baedc4354f992"; } + { locale = "lt"; arch = "linux-x86_64"; sha256 = "e4b478609faa58ab0e8de7e2f542290f9ecf268d68f32828182208337523d3f5"; } + { locale = "nb-NO"; arch = "linux-i686"; sha256 = "14b2df6e331ae651d1d913c2d7116466df63e9fd24aad02db7a7f3dd010820c4"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha256 = "779f48e75546babae4ee153ce7d16f93af9daabf70f855dd702281e948a75cba"; } + { locale = "nl"; arch = "linux-i686"; sha256 = "faa6893cff053c090428035964fe67af8ecf9f5b71225678754e96d38d498311"; } + { locale = "nl"; arch = "linux-x86_64"; sha256 = "8a3ddebc51e182175afc272f16bdb7a584d78dd7af8849844f4e02892a439efd"; } + { locale = "nn-NO"; arch = "linux-i686"; sha256 = "3298284a9b326eccc05343ec5795034fa46dbfe75458e19d39d23564391840ac"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha256 = "e1f2da61eaf58f723e0c0021eb728e2a78a8cf36db60353e58d0233c2de60f73"; } + { locale = "pa-IN"; arch = "linux-i686"; sha256 = "4cb1c3b16b8d70f19e14a185bfbbc505d66795ddc4d55e1575193dd018c950d6"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha256 = "72b2c72ee5da9c4b353868efc0431b78feaeb0be8c18eecab6df4cfa0c5c7a3c"; } + { locale = "pl"; arch = "linux-i686"; sha256 = "48e7d195e4b6b9144e32f4a254a40f10c59a167a05ce0f38a013f4b914511d55"; } + { locale = "pl"; arch = "linux-x86_64"; sha256 = "ac6b2064b76b2a5f3cfad6089897126bca7cbf64922b61474eb01b0d65638221"; } + { locale = "pt-BR"; arch = "linux-i686"; sha256 = "57aee02d52b638d393df6a824021a1355df83711dc50663cc67a71366004a017"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha256 = "451de8f95bc2eaf67d1abb7ec604f566e5cb2f6b9a8ae2f2495f10a7157a12eb"; } + { locale = "pt-PT"; arch = "linux-i686"; sha256 = "98391cba2a9cfd194cb427243738e588f6de9c112762a6c1e099ba7a4fe621a0"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha256 = "92eeb485a7da11f1d600371d596c31fff778415784b54ec2fc5ba74199f49ec5"; } + { locale = "rm"; arch = "linux-i686"; sha256 = "f4e3073d31b221dc2fb37162011d6ab9c0980137cd81f0d9bf70384cfda91e4a"; } + { locale = "rm"; arch = "linux-x86_64"; sha256 = "4694fd61f7fe2a1066e08f85f041112076d63cf0fcb99db79c5833d714684388"; } + { locale = "ro"; arch = "linux-i686"; sha256 = "088c29a337c926dcbe11ef19c072624014ae7b59cf0ba2a0b8f25a5a725ec796"; } + { locale = "ro"; arch = "linux-x86_64"; sha256 = "0cb7c16955538ce7089e3aa8e5bc5c3325c4867aadf56837e7e3a05e86c4f482"; } + { locale = "ru"; arch = "linux-i686"; sha256 = "b420443eec07c56afed8435c02c305d355935cb0131b672814878cc9fb0143e6"; } + { locale = "ru"; arch = "linux-x86_64"; sha256 = "5964971c7261ba0619d34ce70d1fcf00aa105f159e2e47853d67fe03579dcbb7"; } + { locale = "si"; arch = "linux-i686"; sha256 = "ffb21e8a7a02ec8ef445735bc519671f3f3bf90f994db750a4d29385d574fd24"; } + { locale = "si"; arch = "linux-x86_64"; sha256 = "1177e20ff9b866c4c7e49a929c1f54c47174f80a8541ad0c98d5e472c4f20d26"; } + { locale = "sk"; arch = "linux-i686"; sha256 = "1309eaf342d7bd7a31c1022183e13e1b02275b01228fbfbd0d5e8b3ef235cceb"; } + { locale = "sk"; arch = "linux-x86_64"; sha256 = "adf736651eab43de2a927cd7ad471042f35eada0a5df4a09c0bbccf75dd17b44"; } + { locale = "sl"; arch = "linux-i686"; sha256 = "102c828dd42872ca9472d94ff842f412bd907be1f4cec8605805fea9f75250e2"; } + { locale = "sl"; arch = "linux-x86_64"; sha256 = "ebb608409f3c4ab44a6818020a826be7c3402977c18b08200df6b332e0a7fd3c"; } + { locale = "sq"; arch = "linux-i686"; sha256 = "ff984951130343fdba5377f91e325e7cd21b7c4e25a524b4a1bc98978842e45c"; } + { locale = "sq"; arch = "linux-x86_64"; sha256 = "15ca7d36207f8e7a80744d0d15966015c8dc395464cf7f70c98b643059f19fcb"; } + { locale = "sr"; arch = "linux-i686"; sha256 = "6c93f80d249ab5558543cc7b13cf72c2abba1da0616a817661f790e5c17c24cd"; } + { locale = "sr"; arch = "linux-x86_64"; sha256 = "3c6c64fbc264d4a3c98ae69c92ea778a87bd84ea23ded7f63117b4c77f93b4d5"; } + { locale = "sv-SE"; arch = "linux-i686"; sha256 = "3a82d99b249d9a99d207fc0b1d5a1bd8523833dc61ec09dd917ff427659ec338"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha256 = "0bf0e9ff45b3d25ef1b31f28b91e30280e8bdb25f864a31ccac795f66e27bb68"; } + { locale = "ta-LK"; arch = "linux-i686"; sha256 = "d346b57092959dbc880c9dc5a8b832dc7967c171ac361aa9b7e77b5589bd4c9e"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha256 = "6d86d75981ba1850980c3fa498c804dc64b4328c90d12d3a5c13af2f1e47af6d"; } + { locale = "tr"; arch = "linux-i686"; sha256 = "179a67fbb2420615e179d1c69cc5dccf1b135a7c61aea26bda658c724655931f"; } + { locale = "tr"; arch = "linux-x86_64"; sha256 = "bc95ac4b30ae806658218df21f5d9aa6c26b8b8c5fc8a58090de92e347735c58"; } + { locale = "uk"; arch = "linux-i686"; sha256 = "8b49fbe88dcc328b94a99f3b30af9f783910dbcdea1fc5b160526409d56994f7"; } + { locale = "uk"; arch = "linux-x86_64"; sha256 = "2ab49ec5742c07c44028d8aa980a6bd96623c554699037fd64d28cf4744789ce"; } + { locale = "vi"; arch = "linux-i686"; sha256 = "6eecd8d5fa6d6a826fec7a09ba11092348a0fa74c7c7a8c1239f41392d2e2055"; } + { locale = "vi"; arch = "linux-x86_64"; sha256 = "fdb2a25480eee0659803432fea02794f73aa18e9fe5a4b1c1c70ac5aceb09b4f"; } + { locale = "zh-CN"; arch = "linux-i686"; sha256 = "64358161ecc5064ee9fd26e301136a58f32b387466d6127604772b59b44f32c5"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha256 = "f9f54927e4ee378f56879b6ffc121d02ad300f6982d7751e730564ed9a9d8c80"; } + { locale = "zh-TW"; arch = "linux-i686"; sha256 = "78a6721da743bec597c9dd1e6bededffa43d675784f3585b0d1f03989007f295"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha256 = "fc3460aae0c3395220644ec0ce8c139512726e62d591ef51f4900ac3c9a9e461"; } ]; } diff --git a/pkgs/applications/networking/newsreaders/liferea/default.nix b/pkgs/applications/networking/newsreaders/liferea/default.nix index ff2b16b8a580..081525475550 100644 --- a/pkgs/applications/networking/newsreaders/liferea/default.nix +++ b/pkgs/applications/networking/newsreaders/liferea/default.nix @@ -6,14 +6,14 @@ }: let pname = "liferea"; - version = "1.10.18"; + version = "1.10.19"; in stdenv.mkDerivation rec { name = "${pname}-${version}"; src = fetchurl { url = "https://github.com/lwindolf/${pname}/releases/download/v${version}/${name}.tar.bz2"; - sha256 = "0xyy0qm3h22b69if2hmg36jzvvljxb1w0zy2m2a28kdqfzpa6m8g"; + sha256 = "1h6x8xd4ldrgw9mbf2gwf7wxi6z34h0d0rnwy9kyskdcgkymvi80"; }; buildInputs = with gst_all_1; [ @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { wrapProgram "$f" \ --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pygobject3})" \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules:${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${gnome3.dconf}/lib/gio/modules:${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.gtk}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" done ''; diff --git a/pkgs/applications/networking/owncloud-client/default.nix b/pkgs/applications/networking/owncloud-client/default.nix index 5841fe7c512e..8963f8dc01d0 100644 --- a/pkgs/applications/networking/owncloud-client/default.nix +++ b/pkgs/applications/networking/owncloud-client/default.nix @@ -1,17 +1,17 @@ -{ stdenv, fetchurl, cmake, qt4, pkgconfig, neon, qtkeychain, sqlite }: +{ stdenv, fetchurl, cmake, qt4, pkgconfig, qtkeychain, sqlite }: stdenv.mkDerivation rec { name = "owncloud-client" + "-" + version; - version = "1.7.1"; + version = "2.1.1"; src = fetchurl { - url = "https://download.owncloud.com/desktop/stable/mirall-${version}.tar.bz2"; - sha256 = "0n9gv97jqval7xjyix2lkywvmvvfv052s0bd1i8kybdl9rwca6yf"; + url = "https://download.owncloud.com/desktop/stable/owncloudclient-${version}.tar.xz"; + sha256 = "4e7cfeb72ec565392e7968f352c4a7f0ef2988cc577ebdfd668a3887d320b1cb"; }; buildInputs = - [ cmake qt4 pkgconfig neon qtkeychain sqlite]; + [ cmake qt4 pkgconfig qtkeychain sqlite]; #configurePhase = '' # mkdir build diff --git a/pkgs/applications/networking/p2p/retroshare/0.6.nix b/pkgs/applications/networking/p2p/retroshare/0.6.nix index 855ebdd05936..020d00170531 100644 --- a/pkgs/applications/networking/p2p/retroshare/0.6.nix +++ b/pkgs/applications/networking/p2p/retroshare/0.6.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { sha256 = "189qndkfq9kgv3qi3wx8ivla4j8fxr4iv7c8y9rjrjaz8jwdkn5x"; }; - NIX_CFLAGS_COMPILE = "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${libxml2}/include/libxml2 -I${sqlcipher}/include/sqlcipher"; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.dev}/lib/glib-2.0/include -I${libxml2.dev}/include/libxml2 -I${sqlcipher}/include/sqlcipher"; patchPhase = '' # Fix build error diff --git a/pkgs/applications/networking/p2p/retroshare/default.nix b/pkgs/applications/networking/p2p/retroshare/default.nix index a139531b19a6..e7fe79d66a56 100644 --- a/pkgs/applications/networking/p2p/retroshare/default.nix +++ b/pkgs/applications/networking/p2p/retroshare/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { sha256 = "0l2n4pr1hq66q6qa073hrdx3s3d7iw54z8ay1zy82zhk2rwhsavp"; }; - NIX_CFLAGS_COMPILE = "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${libxml2}/include/libxml2"; + NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/glib-2.0 -I${glib.dev}/lib/glib-2.0/include -I${libxml2.dev}/include/libxml2"; patchPhase = '' sed -i 's/UpnpString_get_String(es_event->PublisherUrl)/es_event->PublisherUrl/' \ diff --git a/pkgs/applications/networking/remote/citrix-receiver/default.nix b/pkgs/applications/networking/remote/citrix-receiver/default.nix index 056d28eb3cd8..6d14761356a8 100644 --- a/pkgs/applications/networking/remote/citrix-receiver/default.nix +++ b/pkgs/applications/networking/remote/citrix-receiver/default.nix @@ -121,9 +121,14 @@ stdenv.mkDerivation rec { find $ICAInstDir -type f -exec file {} \; | grep 'ELF.*executable' | cut -f 1 -d : | - xargs -t -n 1 patchelf \ - --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$ICAInstDir:$libPath" + while read f + do + echo "Patching ELF intrepreter and rpath for $f" + chmod u+w "$f" + patchelf \ + --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ + --set-rpath "$ICAInstDir:$libPath" "$f" + done echo "Wrapping wfica..." mkdir "$out/bin" diff --git a/pkgs/applications/networking/remote/putty/default.nix b/pkgs/applications/networking/remote/putty/default.nix index 241cfbd5bca7..ccabb5c77a81 100644 --- a/pkgs/applications/networking/remote/putty/default.nix +++ b/pkgs/applications/networking/remote/putty/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, ncurses, gtk, pkgconfig, autoconf, automake, perl, halibut, libtool }: stdenv.mkDerivation rec { - version = "0.66"; + version = "0.67"; name = "putty-${version}"; src = fetchurl { url = "http://the.earth.li/~sgtatham/putty/latest/${name}.tar.gz"; - sha256 = "14r9yfqjs61l82q09m8zifgcxrzvs6dvgx32ndl5i1jldkv14wzy"; + sha256 = "0isak6dy5vmfzf9ckcq6jvhgrn3xfmfcmziaa7g2jqm4x1c286c0"; }; preConfigure = '' diff --git a/pkgs/applications/networking/spideroak/default.nix b/pkgs/applications/networking/spideroak/default.nix index 525e15470232..fd060ad08801 100644 --- a/pkgs/applications/networking/spideroak/default.nix +++ b/pkgs/applications/networking/spideroak/default.nix @@ -41,7 +41,7 @@ in stdenv.mkDerivation { mkdir "$out/bin" rm "$out/usr/bin/SpiderOakONE" - patchelf --set-interpreter ${stdenv.glibc}/lib/${interpreter} \ + patchelf --set-interpreter ${stdenv.glibc.out}/lib/${interpreter} \ "$out/opt/SpiderOakONE/lib/SpiderOakONE" RPATH=$out/opt/SpiderOakONE/lib:${ldpath} diff --git a/pkgs/applications/office/gnucash/2.6.nix b/pkgs/applications/office/gnucash/2.6.nix index 3c2348bfa8b7..844ef9277089 100644 --- a/pkgs/applications/office/gnucash/2.6.nix +++ b/pkgs/applications/office/gnucash/2.6.nix @@ -2,6 +2,7 @@ , intltool, glib, gtk, libofx, aqbanking, gwenhywfar, libgnomecanvas, goffice , webkit, glibcLocales, gsettings_desktop_schemas, makeWrapper, dconf, file , gettext, swig, slibGuile, enchant, bzip2, isocodes, libdbi, libdbiDrivers +, pango, gdk_pixbuf }: /* @@ -78,7 +79,7 @@ stdenv.mkDerivation rec { ''; # The following settings fix failures in the test suite. It's not required otherwise. - NIX_LDFLAGS = "-rpath=${guile}/lib -rpath=${glib}/lib"; + LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath [ guile glib gtk pango gdk_pixbuf ]; preCheck = "export GNC_DOT_DIR=$PWD/dot-gnucash"; doCheck = true; diff --git a/pkgs/applications/office/mendeley/default.nix b/pkgs/applications/office/mendeley/default.nix index 4f641d1ee50b..529c41ec8992 100644 --- a/pkgs/applications/office/mendeley/default.nix +++ b/pkgs/applications/office/mendeley/default.nix @@ -12,14 +12,14 @@ let then "i386" else "amd64"; - shortVersion = "1.16-stable"; + shortVersion = "1.16.1-stable"; version = "${shortVersion}_${arch}"; url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb"; sha256 = if stdenv.system == arch32 - then "da56abe0e0e86d868d305119f06cf6d14273d2f65e5c135fc2d190ca599b3cb6" - else "e9c2f026fd267db34396ff5f24bce9c6a4beba530bd8b40265a792d417282fba"; + then "0lsmaw8zzyfvndsz1awz3vl5cdvsik9wc3ck8983y20awh7r9f4m" + else "12p6rgxiqajnfgd8nmknyb8icdkln727sshba8x1xlxakxg5c4q4"; deps = [ gcc.cc diff --git a/pkgs/applications/science/astronomy/celestia/default.nix b/pkgs/applications/science/astronomy/celestia/default.nix index 86b0ffbcf24c..f2407e1a8333 100644 --- a/pkgs/applications/science/astronomy/celestia/default.nix +++ b/pkgs/applications/science/astronomy/celestia/default.nix @@ -59,7 +59,7 @@ stdenv.mkDerivation { CPPFLAGS = "-DNDEBUG"; CFLAGS = "-O2 -fsigned-char"; CXXFLAGS = "-O2 -fsigned-char"; - GTK_CFLAGS = "-I${gtk2}/include/gtk-2.0 -I${gtk2}/lib/gtk-2.0/include -I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include -I${cairo}/include/cairo -I${pango}/include/pango-1.0 -I${gdk_pixbuf}/include/gdk-pixbuf-2.0 -I${atk}/include/atk-1.0 -I${gtkglext}/include/gtkglext-1.0 -I${gtkglext}/lib/gtkglext-1.0/include"; + GTK_CFLAGS = "-I${gtk2.dev}/include/gtk-2.0 -I${gtk2.out}/lib/gtk-2.0/include -I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include -I${cairo.dev}/include/cairo -I${pango.dev}/include/pango-1.0 -I${gdk_pixbuf.dev}/include/gdk-pixbuf-2.0 -I${atk}/include/atk-1.0 -I${gtkglext}/include/gtkglext-1.0 -I${gtkglext}/lib/gtkglext-1.0/include"; GTK_LIBS = "-lgtk-x11-2.0 -lgtkglext-x11-1.0 -lcairo -lgdk_pixbuf-2.0 -lpango-1.0 -lgobject-2.0"; installPhase = ''make MKDIR_P="mkdir -p" install''; diff --git a/pkgs/applications/science/electronics/kicad/default.nix b/pkgs/applications/science/electronics/kicad/default.nix index 0762002b8a84..56fbf20f52d1 100644 --- a/pkgs/applications/science/electronics/kicad/default.nix +++ b/pkgs/applications/science/electronics/kicad/default.nix @@ -1,21 +1,39 @@ -{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext }: +{ stdenv, fetchurl, fetchbzr, cmake, mesa, wxGTK, zlib, libX11, gettext, glew, cairo, openssl, boost, pkgconfig, doxygen }: stdenv.mkDerivation rec { - name = "kicad-20131025"; + name = "kicad-${series}"; + series = "4.0"; + version = "4.0.2"; - src = fetchbzr { - url = "https://code.launchpad.net/kicad/stable"; - rev = 4024; - sha256 = "1sv1l2zpbn6439ccz50p05hvqg6j551aqra551wck9h3929ghly5"; - }; + srcs = [ + (fetchurl { + url = "https://code.launchpad.net/kicad/${series}/${version}/+download/kicad-${version}.tar.xz"; + sha256 = "1fcf91fmxj6ha3mm6gzdb0px50j58m80p8wrncm8ca9shj36kbif"; + }) - srcLibrary = fetchbzr { - url = "http://bazaar.launchpad.net/~kicad-product-committers/kicad/library"; - rev = 293; - sha256 = "1wn9a4nhqyjzzfkq6xm7ag8n5n10xy7gkq6i7yry7wxini7pzv1i"; - }; + (fetchurl { + url = "http://downloads.kicad-pcb.org/libraries/kicad-library-${version}.tar.gz"; + sha256 = "1xk9sxxb3d42chdysqmvizrjcbm0467q7nsq5cahq3j1hci49m6l"; + }) - cmakeFlags = "-DKICAD_STABLE_VERSION=ON"; + (fetchurl { + url = "http://downloads.kicad-pcb.org/libraries/kicad-footprints-${version}.tar.gz"; + sha256 = "0vrzykgxx423iwgz6186bi8724kmbi5wfl92gfwb3r6mqammgwpg"; + }) + ]; + + sourceRoot = "kicad-${version}"; + + cmakeFlags = '' + -DCMAKE_BUILD_TYPE=Release + -DKICAD_SKIP_BOOST=ON + -DKICAD_BUILD_VERSION=${version} + -DKICAD_REPO_NAME=stable + ''; + + enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory + + buildInputs = [ cmake mesa wxGTK zlib libX11 gettext glew cairo openssl boost pkgconfig doxygen ]; # They say they only support installs to /usr or /usr/local, # so we have to handle this. @@ -23,17 +41,26 @@ stdenv.mkDerivation rec { sed -i -e 's,/usr/local/kicad,'$out,g common/gestfich.cpp ''; - #enableParallelBuilding = true; # often fails on Hydra: fatal error: pcb_plot_params_lexer.h: No such file or directory - - buildInputs = [ cmake mesa wxGTK zlib libX11 gettext ]; + postUnpack = '' + pushd $(pwd) + ''; postInstall = '' - mkdir library - cd library - cmake -DCMAKE_INSTALL_PREFIX=$out $srcLibrary + popd + + pushd kicad-library-* + cmake -DCMAKE_INSTALL_PREFIX=$out + make $MAKE_FLAGS make install + popd + + pushd kicad-footprints-* + mkdir -p $out/share/kicad/modules + cp -R *.pretty $out/share/kicad/modules/ + popd ''; + meta = { description = "Free Software EDA Suite"; homepage = "http://www.kicad-pcb.org/"; diff --git a/pkgs/applications/science/electronics/tkgate/1.x.nix b/pkgs/applications/science/electronics/tkgate/1.x.nix index e9849d0460c8..c62ecdcd1e2a 100644 --- a/pkgs/applications/science/electronics/tkgate/1.x.nix +++ b/pkgs/applications/science/electronics/tkgate/1.x.nix @@ -1,8 +1,8 @@ { stdenv, fetchurl, tcl, tk, libX11, glibc, which, yacc, flex, imake, xproto, gccmakedep }: let - libiconvInc = stdenv.lib.optionalString stdenv.isLinux "${glibc}/include"; - libiconvLib = stdenv.lib.optionalString stdenv.isLinux "${glibc}/lib"; + libiconvInc = stdenv.lib.optionalString stdenv.isLinux "${glibc.dev}/include"; + libiconvLib = stdenv.lib.optionalString stdenv.isLinux "${glibc.out}/lib"; in stdenv.mkDerivation rec { name = "tkgate-1.8.7"; diff --git a/pkgs/applications/science/logic/hol/default.nix b/pkgs/applications/science/logic/hol/default.nix index f8a57aebb6dc..c7fb4ffbb978 100644 --- a/pkgs/applications/science/logic/hol/default.nix +++ b/pkgs/applications/science/logic/hol/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation { buildCommand = '' mkdir chroot-fontconfig - cat ${fontconfig}/etc/fonts/fonts.conf > chroot-fontconfig/fonts.conf + cat ${fontconfig.out}/etc/fonts/fonts.conf > chroot-fontconfig/fonts.conf sed -e 's@@@' -i chroot-fontconfig/fonts.conf echo "${liberation_ttf}" >> chroot-fontconfig/fonts.conf echo "" >> chroot-fontconfig/fonts.conf diff --git a/pkgs/applications/science/logic/picosat/default.nix b/pkgs/applications/science/logic/picosat/default.nix index fb5acc64c4dc..070664980dcc 100644 --- a/pkgs/applications/science/logic/picosat/default.nix +++ b/pkgs/applications/science/logic/picosat/default.nix @@ -2,20 +2,18 @@ stdenv.mkDerivation rec { name = "picosat-${version}"; - version = "960"; + version = "965"; src = fetchurl { url = "http://fmv.jku.at/picosat/${name}.tar.gz"; - sha256 = "05z8cfjk84mkna5ryqlq2jiksjifg3jhlgbijaq36sbn0i51iczd"; + sha256 = "0m578rpa5rdn08d10kr4lbsdwp4402hpavrz6n7n53xs517rn5hm"; }; - dontAddPrefix = true; - configureFlags = "--shared"; + configurePhase = "./configure.sh --shared --trace"; installPhase = '' mkdir -p $out/bin $out/lib $out/include/picosat - cp picomus "$out"/bin - cp picosat "$out"/bin + cp picomus picomcs picosat picogcnf "$out"/bin cp libpicosat.a "$out"/lib cp libpicosat.so "$out"/lib diff --git a/pkgs/applications/science/logic/satallax/default.nix b/pkgs/applications/science/logic/satallax/default.nix index 89a214c3f474..7935be11926d 100644 --- a/pkgs/applications/science/logic/satallax/default.nix +++ b/pkgs/applications/science/logic/satallax/default.nix @@ -1,71 +1,66 @@ -x@{builderDefsPackage - , sbcl, zlib - , ...}: -builderDefsPackage -(a : -let - helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++ - []; +{stdenv, fetchurl, ocaml, zlib, which, eprover, makeWrapper, coq}: +stdenv.mkDerivation rec { + name = "satallax-${version}"; + version = "2.7"; - buildInputs = map (n: builtins.getAttr n x) - (builtins.attrNames (builtins.removeAttrs x helperArgNames)); - sourceInfo = rec { - baseName="satallax"; - version="1.4"; - name="${baseName}-${version}"; - url="http://www.ps.uni-saarland.de/~cebrown/satallax/downloads/${name}.tar.gz"; - hash="0l8dq4nyfw2bdsyqmgb4v6fjw3739p8nqv4bh2gh2924ibzrq5fc"; - }; -in -rec { - src = a.fetchurl { - url = sourceInfo.url; - sha256 = sourceInfo.hash; + buildInputs = [ocaml zlib which eprover makeWrapper coq]; + src = fetchurl { + url = "http://www.ps.uni-saarland.de/~cebrown/satallax/downloads/${name}.tar.gz"; + sha256 = "1kvxn8mc35igk4vigi5cp7w3wpxk2z3bgwllfm4n3h2jfs0vkpib"; }; - inherit (sourceInfo) name version; - inherit buildInputs; + preConfigure = '' + mkdir fake-tools + echo "echo 'Nix-build-host.localdomain'" > fake-tools/hostname + chmod a+x fake-tools/hostname + export PATH="$PATH:$PWD/fake-tools" - phaseNames = ["doDeployMinisat" "doDeploy"]; - - doDeployMinisat = a.fullDepEntry ('' ( - cd minisat/simp + cd picosat-* + ./configure make ) + export PATH="$PATH:$PWD/libexec/satallax" - mkdir -p "$out/bin" - cp minisat/simp/minisat "$out/bin" + mkdir -p "$out/libexec/satallax" + cp picosat-*/picosat picosat-*/picomus "$out/libexec/satallax" - echo "(setq *minisat-binary* \"$out/bin/minisat\")" > config.lisp + ( + cd minisat + export MROOT=$PWD + cd core + make + cd ../simp + make + ) + ''; - '') ["defEnsureDir" "minInit" "addInputs" "doUnpack"]; - doDeploy = a.fullDepEntry ('' - mkdir -p "$out/share/satallax/build-dir" - cp -r * "$out/share/satallax/build-dir" - cd "$out/share/satallax/build-dir" + postBuild = "echo testing; ! (bash ./test | grep ERROR)"; - sbcl --load make.lisp - ! ( ./test | grep ERROR ) + installPhase = '' + mkdir -p "$out/share/doc/satallax" "$out/bin" "$out/lib" "$out/lib/satallax" + cp bin/satallax.opt "$out/bin/satallax" + wrapProgram "$out/bin/satallax" \ + --suffix PATH : "${coq}/bin:${eprover}/bin:$out/libexec/satallax" \ + --add-flags "-M" --add-flags "$out/lib/satallax/modes" - mkdir -p "$out/bin" - cp bin/satallax "$out/bin" - '') ["defEnsureDir" "minInit" "addInputs" "doUnpack"]; + cp LICENSE README "$out/share/doc/satallax" + + cp bin/*.so "$out/lib" + + cp -r modes "$out/lib/satallax/" + cp -r problems "$out/lib/satallax/" + cp -r coq* "$out/lib/satallax/" + ''; meta = { - description = "A higher-order logic prover"; - maintainers = with a.lib.maintainers; - [ - raskin - ]; - platforms = with a.lib.platforms; - unix; - license = a.lib.licenses.free; - homepage = "http://www.ps.uni-saarland.de/~cebrown/satallax/"; + inherit version; + description = ''Automated theorem prover for higher-order logic''; + license = stdenv.lib.licenses.mit ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + downloadPage = "http://www.ps.uni-saarland.de/~cebrown/satallax/downloads.php"; + homepage = "http://www.ps.uni-saarland.de/~cebrown/satallax/index.php"; + updateWalker = true; }; - passthru = { - updateInfo = { - downloadPage = "http://www.ps.uni-saarland.de/~cebrown/satallax/"; - }; - }; -}) x +} diff --git a/pkgs/applications/science/logic/saw-tools/default.nix b/pkgs/applications/science/logic/saw-tools/default.nix index eebe6ff0a06c..1153c0b3cf5c 100644 --- a/pkgs/applications/science/logic/saw-tools/default.nix +++ b/pkgs/applications/science/logic/saw-tools/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { mv doc $out/share # Hack around lack of libtinfo in NixOS - ln -s ${ncurses}/lib/libncursesw.so.5 $out/lib/libtinfo.so.5 + ln -s ${ncurses.out}/lib/libncursesw.so.5 $out/lib/libtinfo.so.5 ln -s ${stdenv.cc.libc}/lib/libpthread.so.0 $out/lib/libpthread.so.0 # Add a clang symlink for easy building with a suitable compiler. diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index 0eb51ff1620b..7825fc2761ed 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "why3-${version}"; - version = "0.86.3"; + version = "0.87.0"; src = fetchurl { - url = https://gforge.inria.fr/frs/download.php/file/35537/why3-0.86.3.tar.gz; - sha256 = "0sph6i4ga9450bk60wpm5cq3psw3g8xprnac7yjfq64iqz1dyz03"; + url = https://gforge.inria.fr/frs/download.php/file/35643/why3-0.87.0.tar.gz; + sha256 = "0c3vhcb70ay7iwvmq0m25fqh38y40c5x7mki4r9pxf13vgbs3xb0"; }; buildInputs = (with ocamlPackages; [ diff --git a/pkgs/applications/science/logic/yices/default.nix b/pkgs/applications/science/logic/yices/default.nix index 5daaa444c127..f495ee257ff0 100644 --- a/pkgs/applications/science/logic/yices/default.nix +++ b/pkgs/applications/science/logic/yices/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gmp, gperf, autoreconfHook }: +{ stdenv, fetchurl, gmp-static, gperf, autoreconfHook }: stdenv.mkDerivation rec { name = "yices-${version}"; @@ -10,10 +10,10 @@ stdenv.mkDerivation rec { sha256 = "1da70n0cah0dh3pk7fcrvjkszx9qmhc0csgl15jqa7bdh707k2zs"; }; - configureFlags = [ "--with-static-gmp=${gmp}/lib/libgmp.a" - "--with-static-gmp-include-dir=${gmp}/include" + configureFlags = [ "--with-static-gmp=${gmp-static.out}/lib/libgmp.a" + "--with-static-gmp-include-dir=${gmp-static.dev}/include" ]; - buildInputs = [ gmp gperf autoreconfHook ]; + buildInputs = [ gmp-static gperf autoreconfHook ]; meta = { description = "A high-performance theorem prover and SMT solver"; diff --git a/pkgs/applications/science/math/R/default.nix b/pkgs/applications/science/math/R/default.nix index e7a195659491..2ca2cab3afd8 100644 --- a/pkgs/applications/science/math/R/default.nix +++ b/pkgs/applications/science/math/R/default.nix @@ -48,7 +48,6 @@ stdenv.mkDerivation rec { CXX=$(type -p g++) FC="${gfortran}/bin/gfortran" F77="${gfortran}/bin/gfortran" JAVA_HOME="${jdk}" - LDFLAGS="-L${gfortran.cc}/lib" RANLIB=$(type -p ranlib) R_SHELL="${stdenv.shell}" '' + stdenv.lib.optionalString stdenv.isDarwin '' diff --git a/pkgs/applications/science/molecular-dynamics/lammps/default.nix b/pkgs/applications/science/molecular-dynamics/lammps/default.nix new file mode 100644 index 000000000000..35ab53483687 --- /dev/null +++ b/pkgs/applications/science/molecular-dynamics/lammps/default.nix @@ -0,0 +1,55 @@ +{ stdenv, writeText, fetchurl, + libpng, fftw, + mpiSupport ? false, mpi ? null +}: + +assert mpiSupport -> mpi != null; + +stdenv.mkDerivation rec { + # LAMMPS has weird versioning converted to ISO 8601 format + version = "2016-02-16"; + name = "lammps-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/lammps/lammps-16Feb16.tar.gz"; + sha256 = "1yzfbkxma3xa1288rnn66h4w0smbmjkwq1fx1y60pjiw0prmk105"; + }; + + passthru = { + inherit mpi; + }; + + buildInputs = [ fftw libpng ] + ++ (stdenv.lib.optionals mpiSupport [ mpi ]); + + # Must do manual build due to LAMMPS requiring a seperate build for + # the libraries and executable + builder = writeText "builder.sh" '' + source $stdenv/setup + + tar xzf $src + cd lammps-*/src + make mode=exe ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="-DLAMMPS_GZIP -DLAMMPS_PNG" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng + make mode=shlib ${if mpiSupport then "mpi" else "serial"} SHELL=$SHELL LMP_INC="-DLAMMPS_GZIP -DLAMMPS_PNG" FFT_PATH=-DFFT_FFTW3 FFT_LIB=-lfftw3 JPG_LIB=-lpng + + mkdir -p $out/bin + cp -v lmp_* $out/bin/lammps + + mkdir -p $out/lib + cp -v liblammps* $out/lib/ + ''; + + meta = { + description = "Classical Molecular Dynamics simulation code"; + longDescription = '' + LAMMPS is a classical molecular dynamics simulation code designed to + run efficiently on parallel computers. It was developed at Sandia + National Laboratories, a US Department of Energy facility, with + funding from the DOE. It is an open-source code, distributed freely + under the terms of the GNU Public License (GPL). + ''; + homepage = "http://lammps.sandia.gov"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/applications/search/recoll/default.nix b/pkgs/applications/search/recoll/default.nix index c396870f9e5b..253b97aff1e7 100644 --- a/pkgs/applications/search/recoll/default.nix +++ b/pkgs/applications/search/recoll/default.nix @@ -29,20 +29,20 @@ stdenv.mkDerivation rec { substituteInPlace $f --replace antiword ${antiword}/bin/antiword substituteInPlace $f --replace awk ${gawk}/bin/awk substituteInPlace $f --replace catppt ${catdoc}/bin/catppt - substituteInPlace $f --replace djvused ${djvulibre}/bin/djvused - substituteInPlace $f --replace djvutxt ${djvulibre}/bin/djvutxt + substituteInPlace $f --replace djvused ${djvulibre.bin}/bin/djvused + substituteInPlace $f --replace djvutxt ${djvulibre.bin}/bin/djvutxt substituteInPlace $f --replace egrep ${gnugrep}/bin/egrep substituteInPlace $f --replace groff ${groff}/bin/groff substituteInPlace $f --replace gunzip ${gzip}/bin/gunzip - substituteInPlace $f --replace iconv ${libiconv}/bin/iconv + substituteInPlace $f --replace iconv ${libiconv.bin or libiconv}/bin/iconv substituteInPlace $f --replace lyx ${lyx}/bin/lyx - substituteInPlace $f --replace pdftotext ${poppler_utils}/bin/pdftotext + substituteInPlace $f --replace pdftotext ${poppler_utils.out}/bin/pdftotext substituteInPlace $f --replace pstotext ${ghostscript}/bin/ps2ascii substituteInPlace $f --replace sed ${gnused}/bin/sed substituteInPlace $f --replace tar ${gnutar}/bin/tar substituteInPlace $f --replace unzip ${unzip}/bin/unzip substituteInPlace $f --replace xls2csv ${catdoc}/bin/xls2csv - substituteInPlace $f --replace xsltproc ${libxslt}/bin/xsltproc + substituteInPlace $f --replace xsltproc ${libxslt.bin}/bin/xsltproc substituteInPlace $f --replace unrtf ${unrtf}/bin/unrtf substituteInPlace $f --replace untex ${untex}/bin/untex substituteInPlace $f --replace wpd2html ${libwpd}/bin/wpd2html diff --git a/pkgs/applications/version-management/git-and-tools/cgit/default.nix b/pkgs/applications/version-management/git-and-tools/cgit/default.nix index 49e1734fe02d..d144d484ed39 100644 --- a/pkgs/applications/version-management/git-and-tools/cgit/default.nix +++ b/pkgs/applications/version-management/git-and-tools/cgit/default.nix @@ -28,8 +28,8 @@ stdenv.mkDerivation rec { postPatch = '' sed -e 's|"gzip"|"${gzip}/bin/gzip"|' \ - -e 's|"bzip2"|"${bzip2}/bin/bzip2"|' \ - -e 's|"xz"|"${xz}/bin/xz"|' \ + -e 's|"bzip2"|"${bzip2.bin}/bin/bzip2"|' \ + -e 's|"xz"|"${xz.bin}/bin/xz"|' \ -i ui-snapshot.c ''; diff --git a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix index 91fe1662efec..f282fa6635b8 100644 --- a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix +++ b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildPhase = '' sed -i 's|/bin/cat|cat|' ./src/repository.cpp qmake - make CXXFLAGS='-I${apr}/include/apr-1 -I${subversion}/include/subversion-1 -DVER="\"${src.rev}\""' + make CXXFLAGS='-I${apr}/include/apr-1 -I${subversion.dev}/include/subversion-1 -DVER="\"${src.rev}\""' ''; installPhase = '' diff --git a/pkgs/applications/version-management/mercurial/default.nix b/pkgs/applications/version-management/mercurial/default.nix index b99727b2c9b6..f44baad4715b 100644 --- a/pkgs/applications/version-management/mercurial/default.nix +++ b/pkgs/applications/version-management/mercurial/default.nix @@ -3,7 +3,7 @@ , ApplicationServices, cf-private }: let - version = "3.7.1"; + version = "3.7.3"; name = "mercurial-${version}"; in @@ -12,7 +12,7 @@ stdenv.mkDerivation { src = fetchurl { url = "http://mercurial.selenic.com/release/${name}.tar.gz"; - sha256 = "1vfgqlb8z2k1vcx2nvcianxmml79cqqqncchw6aj40sa8hgpvlwn"; + sha256 = "0c2vkad9piqkggyk8y310rf619qgdfcwswnk3nv21mg2fhnw96f0"; }; inherit python; # pass it so that the same version can be used in hg2git diff --git a/pkgs/applications/version-management/rabbitvcs/default.nix b/pkgs/applications/version-management/rabbitvcs/default.nix index 58b29c10ae36..0f2f7646ac6a 100644 --- a/pkgs/applications/version-management/rabbitvcs/default.nix +++ b/pkgs/applications/version-management/rabbitvcs/default.nix @@ -17,7 +17,7 @@ python2Packages.buildPythonApplication rec { sed -ie 's|if sys\.argv\[1\] == "install":|if False:|' ./setup.py sed -ie "s|PREFIX = sys.prefix|PREFIX = \"$out\"|" ./setup.py sed -ie 's|/usr/bin/meld|${meld}/bin/meld|' ./rabbitvcs/util/configspec/configspec.ini - sed -ie 's|/usr/bin/svnadmin|${subversion}/bin/svnadmin|' ./rabbitvcs/ui/create.py + sed -ie 's|/usr/bin/svnadmin|${subversion.out}/bin/svnadmin|' ./rabbitvcs/ui/create.py sed -ie "s|/usr/share/doc|$out/share/doc|" ./rabbitvcs/ui/about.py sed -ie "s|gnome-open|xdg-open|" ./rabbitvcs/util/helper.py ''; diff --git a/pkgs/applications/version-management/rapidsvn/default.nix b/pkgs/applications/version-management/rapidsvn/default.nix index 843fe9ad3230..9397aa8a1e19 100644 --- a/pkgs/applications/version-management/rapidsvn/default.nix +++ b/pkgs/applications/version-management/rapidsvn/default.nix @@ -10,8 +10,8 @@ stdenv.mkDerivation { buildInputs = [ wxGTK subversion apr aprutil python ]; - configureFlags = [ "--with-svn-include=${subversion}/include" - "--with-svn-lib=${subversion}/lib" ]; + configureFlags = [ "--with-svn-include=${subversion.dev}/include" + "--with-svn-lib=${subversion.out}/lib" ]; meta = { description = "Multi-platform GUI front-end for the Subversion revision system"; diff --git a/pkgs/applications/version-management/redmine/bootstrap.nix b/pkgs/applications/version-management/redmine/bootstrap.nix index 5971f2e9cddc..82643f18a554 100644 --- a/pkgs/applications/version-management/redmine/bootstrap.nix +++ b/pkgs/applications/version-management/redmine/bootstrap.nix @@ -32,8 +32,8 @@ in stdenv.mkDerivation rec { bundle config --local build.nokogiri --use-system-libraries \ --with-iconv-dir=${libiconv} \ - --with-xslt-dir=${libxslt} \ - --with-xml2-dir=${libxml2} \ + --with-xslt-dir=${libxslt.out} \ + --with-xml2-dir=${libxml2.out} \ --with-pkg-config \ --with-pg-config=${postgresql}/bin/pg_config diff --git a/pkgs/applications/version-management/subversion/default.nix b/pkgs/applications/version-management/subversion/default.nix index 08b07b64b68b..da21c29e6f9f 100644 --- a/pkgs/applications/version-management/subversion/default.nix +++ b/pkgs/applications/version-management/subversion/default.nix @@ -26,6 +26,9 @@ let inherit sha256; }; + # Can't do separate $lib and $bin, as libs reference bins + outputs = [ "dev" "out" "man" ]; + buildInputs = [ zlib apr aprutil sqlite ] ++ stdenv.lib.optional httpSupport serf ++ stdenv.lib.optional pythonBindings python @@ -65,6 +68,12 @@ let mkdir -p $out/share/bash-completion/completions cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion + + for f in $out/lib/*.la; do + substituteInPlace $f --replace "${expat.dev}/lib" "${expat.out}/lib" + substituteInPlace $f --replace "${zlib.dev}/lib" "${zlib.out}/lib" + substituteInPlace $f --replace "${sqlite.dev}/lib" "${sqlite.out}/lib" + done ''; inherit perlBindings pythonBindings; diff --git a/pkgs/applications/video/avxsynth/default.nix b/pkgs/applications/video/avxsynth/default.nix index d8ec715a38cb..06dcaf31b443 100644 --- a/pkgs/applications/video/avxsynth/default.nix +++ b/pkgs/applications/video/avxsynth/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { "--enable-subtitle" "--enable-ffms2" (enableFeature avxeditSupport "avxedit") - "--with-jpeg=${libjpeg}/lib" + "--with-jpeg=${libjpeg.out}/lib" ]; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/applications/video/clipgrab/default.nix b/pkgs/applications/video/clipgrab/default.nix index 961471cd9b36..e634a0caa3f4 100644 --- a/pkgs/applications/video/clipgrab/default.nix +++ b/pkgs/applications/video/clipgrab/default.nix @@ -14,8 +14,8 @@ stdenv.mkDerivation rec { postPatch = stdenv.lib.optionalString (ffmpeg != null) '' substituteInPlace converter_ffmpeg.cpp \ - --replace '"ffmpeg"' '"${ffmpeg}/bin/ffmpeg"' \ - --replace '"ffmpeg ' '"${ffmpeg}/bin/ffmpeg ' + --replace '"ffmpeg"' '"${ffmpeg.bin}/bin/ffmpeg"' \ + --replace '"ffmpeg ' '"${ffmpeg.bin}/bin/ffmpeg ' ''; configurePhase = '' diff --git a/pkgs/applications/video/dvd-slideshow/default.nix b/pkgs/applications/video/dvd-slideshow/default.nix index fe95c2c6d7d8..040a7a2e7a69 100644 --- a/pkgs/applications/video/dvd-slideshow/default.nix +++ b/pkgs/applications/video/dvd-slideshow/default.nix @@ -4,7 +4,7 @@ let wrapper = writeScript "dvd-slideshow.sh" '' #!/bin/bash # wrapper script for dvd-slideshow programs - export PATH=${cdrtools}/bin:${dvdauthor}/bin:${ffmpeg}/bin:${imagemagick}/bin:${lame}/bin:${mjpegtools}/bin:${sox}/bin:${transcode}/bin:${vorbis-tools}/bin:$PATH + export PATH=${cdrtools}/bin:${dvdauthor}/bin:${ffmpeg.bin}/bin:${imagemagick}/bin:${lame}/bin:${mjpegtools}/bin:${sox}/bin:${transcode}/bin:${vorbis-tools}/bin:$PATH dir=`dirname "$0"` exe=`basename "$0"` diff --git a/pkgs/applications/video/gnash/default.nix b/pkgs/applications/video/gnash/default.nix index f53ce93328bf..0200b0c70f4e 100644 --- a/pkgs/applications/video/gnash/default.nix +++ b/pkgs/applications/video/gnash/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { for lib in $libs; do echo -n "$lib " >> macros/libslist done - echo -n "${stdenv.glibc}/lib" >> macros/libslist + echo -n "${stdenv.glibc.out}/lib" >> macros/libslist # Make sure to honor $TMPDIR, for chroot builds. for file in configure gui/Makefile.in Makefile.in @@ -65,7 +65,7 @@ stdenv.mkDerivation rec { preConfigure = '' configureFlags=" \ - --with-sdl-incl=${SDL}/include/SDL \ + --with-sdl-incl=${SDL.dev}/include/SDL \ --with-npapi-plugindir=$out/plugins \ --enable-media=gst \ --without-gconf diff --git a/pkgs/applications/video/kazam/default.nix b/pkgs/applications/video/kazam/default.nix index 7217f4746c8f..22b47c532e5f 100644 --- a/pkgs/applications/video/kazam/default.nix +++ b/pkgs/applications/video/kazam/default.nix @@ -34,9 +34,9 @@ python3Packages.buildPythonApplication rec { preFixup = '' wrapProgram $out/bin/kazam \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH ":" "${gtk3}/lib:${gst_all_1.gstreamer}/lib:${keybinder}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${gtk3.out}/lib:${gst_all_1.gstreamer}/lib:${keybinder}/lib" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ - --prefix XDG_DATA_DIRS : "${gtk3}/share" \ + --prefix XDG_DATA_DIRS : "${gtk3.out}/share" \ --set GST_REGISTRY "/tmp/kazam.gstreamer.registry"; ''; diff --git a/pkgs/applications/video/kodi/default.nix b/pkgs/applications/video/kodi/default.nix index c2b3914f8502..bb3aeed26ca8 100644 --- a/pkgs/applications/video/kodi/default.nix +++ b/pkgs/applications/video/kodi/default.nix @@ -110,15 +110,9 @@ in stdenv.mkDerivation rec { --prefix PATH ":" "${pythonFull}/bin" \ --prefix PATH ":" "${glxinfo}/bin" \ --prefix PATH ":" "${xdpyinfo}/bin" \ - --prefix LD_LIBRARY_PATH ":" "${curl}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${systemd}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${libmad}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${libvdpau}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${libcec}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${libcec_platform}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${libass}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${rtmpdump}/lib" \ - --prefix LD_LIBRARY_PATH ":" "${SDL2}/lib" + --prefix LD_LIBRARY_PATH ":" "${lib.makeLibraryPath + [ curl systemd libmad libvdpau libcec libcec_platform rtmpdump libass SDL2 ] + }" done ''; diff --git a/pkgs/applications/video/kodi/plugins.nix b/pkgs/applications/video/kodi/plugins.nix index 0ad638dd7054..bb826011e25d 100644 --- a/pkgs/applications/video/kodi/plugins.nix +++ b/pkgs/applications/video/kodi/plugins.nix @@ -142,14 +142,14 @@ in plugin = "svtplay"; namespace = "plugin.video.svtplay"; - version = "4.0.23"; + version = "4.0.24"; src = fetchFromGitHub { name = plugin + "-" + version + ".tar.gz"; owner = "nilzen"; repo = "xbmc-" + plugin; - rev = "80b6d241adb046c105ceb63d637da3f7f3684f1a"; - sha256 = "1236kanzl4dra78whpwic1r5iifaj3f27qycia9jr54z01id083s"; + rev = "e66e2af6529e3ffd030ad486c849894a9ffdeb45"; + sha256 = "01nq6gac83q6ayhqcj1whvk58pzrm1haw801s321f4vc8gswag56"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/video/miro/default.nix b/pkgs/applications/video/miro/default.nix index 66f249b8e4a5..07d60fe4764b 100644 --- a/pkgs/applications/video/miro/default.nix +++ b/pkgs/applications/video/miro/default.nix @@ -33,7 +33,7 @@ buildPythonApplication rec { sed -i -e 's|/usr/bin/||' -e 's|/usr||' \ -e 's/BUILD_TIME[^,]*/BUILD_TIME=0/' setup.py - sed -i -e 's|default="/usr/bin/ffmpeg"|default="${ffmpeg}/bin/ffmpeg"|' \ + sed -i -e 's|default="/usr/bin/ffmpeg"|default="${ffmpeg.bin}/bin/ffmpeg"|' \ plat/options.py sed -i -e 's|/usr/share/miro/themes|'"$out/share/miro/themes"'|' \ @@ -64,7 +64,7 @@ buildPythonApplication rec { mv "$out/bin/miro.real" "$out/bin/miro" wrapProgram "$out/bin/miro" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ - --prefix GIO_EXTRA_MODULES : "${glib_networking}/lib/gio/modules" \ + --prefix GIO_EXTRA_MODULES : "${glib_networking.out}/lib/gio/modules" \ --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share" ''; diff --git a/pkgs/applications/video/mpv/default.nix b/pkgs/applications/video/mpv/default.nix index a38ab6e9b3df..7fb62a5e1acc 100644 --- a/pkgs/applications/video/mpv/default.nix +++ b/pkgs/applications/video/mpv/default.nix @@ -58,12 +58,12 @@ let in stdenv.mkDerivation rec { - - name = "mpv-${meta.version}"; + name = "mpv-${version}"; + version = "0.16.0"; src = fetchurl { - url = "https://github.com/mpv-player/mpv/archive/v${meta.version}.tar.gz"; - sha256 = "1p0b83048g66icpz5n66v3k4ldr1z0rmg5d2rr7kcbspm1xj2cbx"; + url = "https://github.com/mpv-player/mpv/archive/v${version}.tar.gz"; + sha256 = "1fiqxx85s418qynq2fp0v7cpzrz8j285hwmc4fqgn5ny1vg1jdpw"; }; patchPhase = '' @@ -129,7 +129,6 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - version = "0.15.0"; description = "A media player that supports many video formats (MPlayer and mplayer2 fork)"; homepage = http://mpv.io; license = licenses.gpl2Plus; diff --git a/pkgs/applications/video/qgifer/default.nix b/pkgs/applications/video/qgifer/default.nix new file mode 100644 index 000000000000..f528ce99a8a2 --- /dev/null +++ b/pkgs/applications/video/qgifer/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchsvn, cmake, opencv, qt, giflib }: + +stdenv.mkDerivation rec { + name = "qgifer-${version}"; + version = "0.2.1"; + + src = fetchsvn { + url = "https://svn.code.sf.net/p/qgifer/code/tags/${name}"; + sha256 = "0fv40n58xjwfr06ix9ga79hs527rrzfaq1sll3n2xxchpgf3wf4f"; + }; + + postPatch = '' + substituteInPlace CMakeLists.txt --replace "SET(CMAKE_INSTALL_PREFIX" "#" + ''; + + buildInputs = [ cmake opencv qt giflib ]; + + meta = with stdenv.lib; { + description = "Video-based animated GIF creator"; + homepage = https://sourceforge.net/projects/qgifer/; + license = licenses.gpl3; + platforms = platforms.unix; + maintainers = [ maintainers.andrewrk ]; + }; +} diff --git a/pkgs/applications/virtualization/bochs/default.nix b/pkgs/applications/virtualization/bochs/default.nix index 9a75a3ddfd40..2cf57d78ba0c 100644 --- a/pkgs/applications/virtualization/bochs/default.nix +++ b/pkgs/applications/virtualization/bochs/default.nix @@ -143,8 +143,8 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional busMouse "--enable-busmouse" ; - NIX_CFLAGS_COMPILE="-I${gtk}/include/gtk-2.0/ -I${libtool}/include/"; - NIX_LDFLAGS="-L${libtool}/lib"; + NIX_CFLAGS_COMPILE="-I${gtk.dev}/include/gtk-2.0/ -I${libtool}/include/"; + NIX_LDFLAGS="-L${libtool.lib}/lib"; meta = with stdenv.lib; { description = "An open-source IA-32 (x86) PC emulator"; diff --git a/pkgs/applications/virtualization/docker/default.nix b/pkgs/applications/virtualization/docker/default.nix index 65bb6e61117c..74d23efcabe2 100644 --- a/pkgs/applications/virtualization/docker/default.nix +++ b/pkgs/applications/virtualization/docker/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { buildInputs = [ makeWrapper go sqlite iproute bridge-utils devicemapper btrfs-progs - iptables e2fsprogs systemd pkgconfig + iptables e2fsprogs systemd pkgconfig stdenv.glibc stdenv.glibc.static ]; dontStrip = true; @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { install -Dm755 ./bundles/${version}/dynbinary/docker-${version} $out/libexec/docker/docker install -Dm755 ./bundles/${version}/dynbinary/dockerinit-${version} $out/libexec/docker/dockerinit makeWrapper $out/libexec/docker/docker $out/bin/docker \ - --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz}/bin:${utillinux}/bin:${optionalString enableLxc "${lxc}/bin"}" + --prefix PATH : "${iproute}/sbin:sbin:${iptables}/sbin:${e2fsprogs}/sbin:${xz.bin}/bin:${utillinux}/bin:${optionalString enableLxc "${lxc}/bin"}" # systemd install -Dm644 ./contrib/init/systemd/docker.service $out/etc/systemd/system/docker.service diff --git a/pkgs/applications/virtualization/openstack/keystone.nix b/pkgs/applications/virtualization/openstack/keystone.nix index 61a366f7ab08..bbce75b5e51e 100644 --- a/pkgs/applications/virtualization/openstack/keystone.nix +++ b/pkgs/applications/virtualization/openstack/keystone.nix @@ -33,7 +33,7 @@ pythonPackages.buildPythonApplication rec { ldap ldappool webtest requests2 oslotest pep8 pymongo which ]; - makeWrapperArgs = ["--prefix PATH : '${openssl}/bin:$PATH'"]; + makeWrapperArgs = ["--prefix PATH : '${openssl.bin}/bin:$PATH'"]; postInstall = '' # install .ini files diff --git a/pkgs/applications/virtualization/virt-manager/default.nix b/pkgs/applications/virtualization/virt-manager/default.nix index 60599d18922c..e31ed7e509c5 100644 --- a/pkgs/applications/virtualization/virt-manager/default.nix +++ b/pkgs/applications/virtualization/virt-manager/default.nix @@ -19,7 +19,7 @@ buildPythonApplication rec { propagatedBuildInputs = [ eventlet greenlet gflags netaddr carrot routes - PasteDeploy m2crypto ipy twisted sqlalchemy_migrate_0_7 + PasteDeploy m2crypto ipy twisted distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 urlgrabber virtinst pyGtkGlade pythonDBus gnome_python pygobject3 libvirt libxml2Python ipaddr vte libosinfo gobjectIntrospection gtk3 mox diff --git a/pkgs/applications/virtualization/virtinst/default.nix b/pkgs/applications/virtualization/virtinst/default.nix index 6064972fe956..d3c2e9e806a8 100644 --- a/pkgs/applications/virtualization/virtinst/default.nix +++ b/pkgs/applications/virtualization/virtinst/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { pythonPath = with pythonPackages; [ setuptools eventlet greenlet gflags netaddr carrot routes - PasteDeploy m2crypto ipy twisted sqlalchemy_migrate + PasteDeploy m2crypto ipy twisted distutils_extra simplejson readline glanceclient cheetah lockfile httplib2 # !!! should libvirt be a build-time dependency? Note that # libxml2Python is a dependency of libvirt.py. diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix index c0fd8214b317..2cbf68671c90 100644 --- a/pkgs/applications/virtualization/virtualbox/default.nix +++ b/pkgs/applications/virtualization/virtualbox/default.nix @@ -81,14 +81,14 @@ in stdenv.mkDerivation { -e 's@MKISOFS --version@MKISOFS -version@' \ -e 's@PYTHONDIR=.*@PYTHONDIR=${if pythonBindings then python else ""}@' \ -i configure - ls kBuild/bin/linux.x86/k* tools/linux.x86/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 - ls kBuild/bin/linux.amd64/k* tools/linux.amd64/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 + ls kBuild/bin/linux.x86/k* tools/linux.x86/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 + ls kBuild/bin/linux.amd64/k* tools/linux.amd64/bin/* | xargs -n 1 patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 find . -type f -iname '*makefile*' -exec sed -i -e 's/depmod -a/:/g' {} + sed -i -e ' - s@"libdbus-1\.so\.3"@"${dbus}/lib/libdbus-1.so.3"@g - s@"libasound\.so\.2"@"${alsaLib}/lib/libasound.so.2"@g + s@"libdbus-1\.so\.3"@"${dbus.lib}/lib/libdbus-1.so.3"@g + s@"libasound\.so\.2"@"${alsaLib.out}/lib/libasound.so.2"@g ${optionalString pulseSupport '' - s@"libpulse\.so\.0"@"${libpulseaudio}/lib/libpulse.so.0"@g + s@"libpulse\.so\.0"@"${libpulseaudio.out}/lib/libpulse.so.0"@g ''} ' src/VBox/Main/xml/Settings.cpp \ src/VBox/Devices/Audio/{alsa,pulse}_stubs.c \ diff --git a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix index 57d9d28a773a..ba32ff98b0da 100644 --- a/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix +++ b/pkgs/applications/virtualization/virtualbox/guest-additions/default.nix @@ -63,19 +63,19 @@ stdenv.mkDerivation { for i in sbin/VBoxService bin/{VBoxClient,VBoxControl} lib/VBoxGuestAdditions/mount.vboxsf do ${if stdenv.system == "i686-linux" then '' - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $i + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $i '' else if stdenv.system == "x86_64-linux" then '' - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $i + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 $i '' else throw ("Architecture: "+stdenv.system+" not supported for VirtualBox guest additions") } - patchelf --set-rpath ${stdenv.cc.cc}/lib:${dbus}/lib:${libX11}/lib:${libXt}/lib:${libXext}/lib:${libXmu}/lib:${libXfixes}/lib:${libXrandr}/lib:${libXcursor}/lib $i + patchelf --set-rpath ${lib.makeLibraryPath [ stdenv.cc.cc dbus libX11 libXt libXext libXmu libXfixes libXrandr libXcursor ]} $i done for i in lib/VBoxOGL*.so do - patchelf --set-rpath $out/lib:${dbus}/lib:${libXcomposite}/lib:${libXdamage}/lib:${libXext}/lib:${libXfixes}/lib $i + patchelf --set-rpath $out/lib:${dbus.lib}/lib:${libXcomposite.out}/lib:${libXdamage.out}/lib:${libXext.out}/lib:${libXfixes.out}/lib $i done # FIXME: Virtualbox 4.3.22 moved VBoxClient-all (required by Guest Additions diff --git a/pkgs/applications/virtualization/xen/generic.nix b/pkgs/applications/virtualization/xen/generic.nix index c169519a8e54..c830fccb1201 100644 --- a/pkgs/applications/virtualization/xen/generic.nix +++ b/pkgs/applications/virtualization/xen/generic.nix @@ -106,7 +106,7 @@ stdenv.mkDerivation { --replace /usr/bin/pkill ${procps}/bin/pkill substituteInPlace tools/xenstat/Makefile \ - --replace /usr/include/curses.h ${ncurses}/include/curses.h + --replace /usr/include/curses.h ${ncurses.dev}/include/curses.h substituteInPlace tools/qemu-xen-traditional/xen-hooks.mak \ --replace /usr/include/pci ${pciutils}/include/pci diff --git a/pkgs/applications/window-managers/awesome/default.nix b/pkgs/applications/window-managers/awesome/default.nix index 2991169a7025..d4721c992008 100644 --- a/pkgs/applications/window-managers/awesome/default.nix +++ b/pkgs/applications/window-managers/awesome/default.nix @@ -63,8 +63,8 @@ stdenv.mkDerivation rec { #cmakeFlags = "-DGENERATE_MANPAGES=ON"; - LD_LIBRARY_PATH = "${cairo}/lib:${pango}/lib:${gobjectIntrospection}/lib"; - GI_TYPELIB_PATH = "${pango}/lib/girepository-1.0"; + LD_LIBRARY_PATH = "${stdenv.lib.makeLibraryPath [ cairo pango gobjectIntrospection ]}"; + GI_TYPELIB_PATH = "${pango.out}/lib/girepository-1.0"; LUA_CPATH = "${lgi}/lib/lua/${lua.luaversion}/?.so"; LUA_PATH = "${lgi}/share/lua/${lua.luaversion}/?.lua;${lgi}/share/lua/${lua.luaversion}/lgi/?.lua"; @@ -73,8 +73,8 @@ stdenv.mkDerivation rec { --prefix LUA_CPATH ";" '"${lgi}/lib/lua/${lua.luaversion}/?.so"' \ --prefix LUA_PATH ";" '"${lgi}/share/lua/${lua.luaversion}/?.lua;${lgi}/share/lua/${lua.luaversion}/lgi/?.lua"' \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH : "${cairo}/lib:${pango}/lib:${gobjectIntrospection}/lib" \ - --prefix PATH : "${compton}/bin:${unclutter}/bin:${procps}/bin:${iproute}/sbin:${coreutils}/bin:${curl}/bin:${alsaUtils}/bin:${findutils}/bin:${xterm}/bin" + --prefix LD_LIBRARY_PATH : "$LD_LIBRARY_PATH" \ + --prefix PATH : "${compton}/bin:${unclutter}/bin:${procps}/bin:${iproute}/sbin:${coreutils}/bin:${curl.bin}/bin:${alsaUtils}/bin:${findutils}/bin:${xterm}/bin" wrapProgram $out/bin/awesome-client \ --prefix PATH : "${which}/bin" diff --git a/pkgs/applications/window-managers/fvwm/default.nix b/pkgs/applications/window-managers/fvwm/default.nix index aded77a466da..77263293847c 100644 --- a/pkgs/applications/window-managers/fvwm/default.nix +++ b/pkgs/applications/window-managers/fvwm/default.nix @@ -1,7 +1,7 @@ { gestures ? false , stdenv, fetchurl, pkgconfig , cairo, fontconfig, freetype, libXft, libXcursor, libXinerama -, libXpm, librsvg, libpng, fribidi, perl +, libXpm, libXt, librsvg, libpng, fribidi, perl , libstroke ? null }: @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig cairo fontconfig freetype - libXft libXcursor libXinerama libXpm + libXft libXcursor libXinerama libXpm libXt librsvg libpng fribidi perl ] ++ stdenv.lib.optional gestures libstroke; diff --git a/pkgs/applications/window-managers/qtile/default.nix b/pkgs/applications/window-managers/qtile/default.nix index f2f864506d37..4060b9887f79 100644 --- a/pkgs/applications/window-managers/qtile/default.nix +++ b/pkgs/applications/window-managers/qtile/default.nix @@ -24,9 +24,9 @@ buildPythonApplication rec { postPatch = '' substituteInPlace libqtile/manager.py --subst-var-by out $out - substituteInPlace libqtile/pangocffi.py --subst-var-by glib ${pkgs.glib} - substituteInPlace libqtile/pangocffi.py --subst-var-by pango ${pkgs.pango} - substituteInPlace libqtile/xcursors.py --subst-var-by xcb-cursor ${pkgs.xorg.xcbutilcursor} + substituteInPlace libqtile/pangocffi.py --subst-var-by glib ${pkgs.glib.out} + substituteInPlace libqtile/pangocffi.py --subst-var-by pango ${pkgs.pango.out} + substituteInPlace libqtile/xcursors.py --subst-var-by xcb-cursor ${pkgs.xorg.xcbutilcursor.out} ''; buildInputs = [ pkgs.pkgconfig pkgs.glib pkgs.xorg.libxcb pkgs.cairo pkgs.pango python27Packages.xcffib ]; diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix index 862e8b0ea01e..8c7227847476 100644 --- a/pkgs/applications/window-managers/weston/default.nix +++ b/pkgs/applications/window-managers/weston/default.nix @@ -1,24 +1,24 @@ { stdenv, fetchurl, pkgconfig, wayland, mesa, libxkbcommon, cairo, libxcb , libXcursor, xlibsWrapper, udev, libdrm, mtdev, libjpeg, pam, dbus, libinput , pango ? null, libunwind ? null, freerdp ? null, vaapi ? null, libva ? null -, libwebp ? null, xwayland ? null +, libwebp ? null, xwayland ? null, wayland-protocols # beware of null defaults, as the parameters *are* supplied by callPackage by default }: stdenv.mkDerivation rec { name = "weston-${version}"; - version = "1.9.0"; + version = "1.10.0"; src = fetchurl { url = "http://wayland.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1ks8mja6glzy2dkayi535hd6w5c5h021bqk7vzgv182g33rh66ww"; + sha256 = "1hd5593zz5s3s07vb6linp6akbs62wy2ijh3g7gksafq016h1cp0"; }; nativeBuildInputs = [ pkgconfig ]; buildInputs = [ wayland mesa libxkbcommon cairo libxcb libXcursor xlibsWrapper udev libdrm - mtdev libjpeg pam dbus.libs libinput pango libunwind freerdp vaapi libva - libwebp + mtdev libjpeg pam dbus libinput pango libunwind freerdp vaapi libva + libwebp wayland-protocols ]; configureFlags = [ @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional (vaapi != null) "--enabe-vaapi-recorder" ++ stdenv.lib.optionals (xwayland != null) [ "--enable-xwayland" - "--with-xserver-path=${xwayland}/bin/Xwayland" + "--with-xserver-path=${xwayland.out}/bin/Xwayland" ]; meta = with stdenv.lib; { diff --git a/pkgs/build-support/build-fhs-userenv/default.nix b/pkgs/build-support/build-fhs-userenv/default.nix index a7e1bd11977a..a38f0a4f623d 100644 --- a/pkgs/build-support/build-fhs-userenv/default.nix +++ b/pkgs/build-support/build-fhs-userenv/default.nix @@ -1,5 +1,5 @@ { runCommand, lib, writeText, writeScriptBin, stdenv, ruby } : -{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "", importMeta ? {} } : +{ env, runScript ? "bash", extraBindMounts ? [], extraInstallCommands ? "", meta ? {}, passthru ? {} } : let name = env.pname; @@ -27,9 +27,9 @@ let ''; in runCommand name { - meta = importMeta; - passthru.env = - runCommand "${name}-shell-env" { + inherit meta; + passthru = passthru // { + env = runCommand "${name}-shell-env" { shellHook = '' export CHROOTENV_EXTRA_BINDS="${lib.concatStringsSep ":" extraBindMounts}:$CHROOTENV_EXTRA_BINDS" exec ${chroot-user}/bin/chroot-user ${env} bash -l ${init "bash"} "$(pwd)" @@ -40,6 +40,7 @@ in runCommand name { echo >&2 "" exit 1 ''; + }; } '' mkdir -p $out/bin cat <$out/bin/${name} diff --git a/pkgs/build-support/buildenv/default.nix b/pkgs/build-support/buildenv/default.nix index a9a4d95d7d8f..8b2167a8e74f 100644 --- a/pkgs/build-support/buildenv/default.nix +++ b/pkgs/build-support/buildenv/default.nix @@ -27,7 +27,7 @@ , # The package outputs to include. By default, only the default # output is included. - outputsToLink ? [] + extraOutputsToInstall ? [] , # Root the result in directory "$out${extraPrefix}", e.g. "/share". extraPrefix ? "" @@ -48,8 +48,14 @@ runCommand name meta pathsToLink extraPrefix postBuild buildInputs; pkgs = builtins.toJSON (map (drv: { paths = - [ drv ] - ++ lib.concatMap (outputName: lib.optional (drv.${outputName}.outPath or null != null) drv.${outputName}) outputsToLink; + # First add the usual output(s): respect if user has chosen explicitly, + # and otherwise use `meta.outputsToInstall` (guaranteed to exist by stdenv). + (if (drv.outputUnspecified or false) + then map (outName: drv.${outName}) drv.meta.outputsToInstall + else [ drv ]) + # Add any extra outputs specified by the caller of `buildEnv`. + ++ lib.filter (p: p!=null) + (builtins.map (outName: drv.${outName} or null) extraOutputsToInstall); priority = drv.meta.priority or 5; }) paths); preferLocalBuild = true; diff --git a/pkgs/build-support/cc-wrapper/cc-wrapper.sh b/pkgs/build-support/cc-wrapper/cc-wrapper.sh index 673d9ec494cb..894ea95b5fa0 100644 --- a/pkgs/build-support/cc-wrapper/cc-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/cc-wrapper.sh @@ -1,7 +1,7 @@ #! @shell@ -e path_backup="$PATH" -if [ -n "@coreutils@" ]; then - PATH="@coreutils@/bin:@gnugrep@/bin" +if [ -n "@coreutils_bin@" ]; then + PATH="@coreutils_bin@/bin:@gnugrep_bin@/bin" fi if [ -n "$NIX_CC_WRAPPER_START_HOOK" ]; then diff --git a/pkgs/build-support/cc-wrapper/default.nix b/pkgs/build-support/cc-wrapper/default.nix index 110f51891417..6cdd04772445 100644 --- a/pkgs/build-support/cc-wrapper/default.nix +++ b/pkgs/build-support/cc-wrapper/default.nix @@ -27,6 +27,13 @@ let ccVersion = (builtins.parseDrvName cc.name).version; ccName = (builtins.parseDrvName cc.name).name; + libc_bin = if nativeLibc then null else libc.bin or libc; + libc_dev = if nativeLibc then null else libc.dev or libc; + libc_lib = if nativeLibc then null else libc.out or libc; + cc_solib = cc.lib or cc; + binutils_bin = if nativeTools then "" else binutils.bin or binutils; + # The wrapper scripts use 'cat' and 'grep', so we may need coreutils. + coreutils_bin = if nativeTools then "" else coreutils.bin or coreutils; in stdenv.mkDerivation { @@ -36,15 +43,10 @@ stdenv.mkDerivation { preferLocalBuild = true; - inherit cc shell; - libc = if nativeLibc then null else libc; - binutils = if nativeTools then "" else binutils; - # The wrapper scripts use 'cat' and 'grep', so we may need coreutils - # and gnugrep. - coreutils = if nativeTools then "" else coreutils; - gnugrep = if nativeTools then "" else gnugrep; + inherit cc shell libc_bin libc_dev libc_lib binutils_bin coreutils_bin; + gnugrep_bin = if nativeTools then "" else gnugrep; - passthru = { inherit nativeTools nativeLibc nativePrefix isGNU isClang; }; + passthru = { inherit libc nativeTools nativeLibc nativePrefix isGNU isClang; }; buildCommand = '' @@ -60,11 +62,11 @@ stdenv.mkDerivation { '' + optionalString (!nativeLibc) (if (!stdenv.isDarwin) then '' - dynamicLinker="$libc/lib/$dynamicLinker" + dynamicLinker="${libc_lib}/lib/$dynamicLinker" echo $dynamicLinker > $out/nix-support/dynamic-linker - if [ -e $libc/lib/32/ld-linux.so.2 ]; then - echo $libc/lib/32/ld-linux.so.2 > $out/nix-support/dynamic-linker-m32 + if [ -e ${libc_lib}/lib/32/ld-linux.so.2 ]; then + echo ${libc_lib}/lib/32/ld-linux.so.2 > $out/nix-support/dynamic-linker-m32 fi # The dynamic linker is passed in `ldflagsBefore' to allow @@ -78,7 +80,7 @@ stdenv.mkDerivation { '') + optionalString (!nativeLibc) '' - # The "-B$libc/lib/" flag is a quick hack to force gcc to link + # The "-B${libc_lib}/lib/" flag is a quick hack to force gcc to link # against the crt1.o from our own glibc, rather than the one in # /usr/lib. (This is only an issue when using an `impure' # compiler/linker, i.e., one that searches /usr/lib and so on.) @@ -89,11 +91,11 @@ stdenv.mkDerivation { # compile, because it uses "#include_next " to find the # limits.h file in ../includes-fixed. To remedy the problem, # another -idirafter is necessary to add that directory again. - echo "-B$libc/lib/ -idirafter $libc/include -idirafter $cc/lib/gcc/*/*/include-fixed" > $out/nix-support/libc-cflags + echo "-B${libc_lib}/lib/ -idirafter ${libc_dev}/include -idirafter ${cc}/lib/gcc/*/*/include-fixed" > $out/nix-support/libc-cflags - echo "-L$libc/lib" > $out/nix-support/libc-ldflags + echo "-L${libc_lib}/lib" > $out/nix-support/libc-ldflags - echo $libc > $out/nix-support/orig-libc + echo "${libc_lib}" > $out/nix-support/orig-libc '' + (if nativeTools then '' @@ -102,23 +104,23 @@ stdenv.mkDerivation { '' else '' echo $cc > $out/nix-support/orig-cc - # GCC shows $cc/lib in `gcc -print-search-dirs', but not - # $cc/lib64 (even though it does actually search there...).. + # GCC shows ${cc_solib}/lib in `gcc -print-search-dirs', but not + # ${cc_solib}/lib64 (even though it does actually search there...).. # This confuses libtool. So add it to the compiler tool search # path explicitly. - if [ -e "$cc/lib64" -a ! -L "$cc/lib64" ]; then - ccLDFlags+=" -L$cc/lib64" - ccCFlags+=" -B$cc/lib64" + if [ -e "${cc_solib}/lib64" -a ! -L "${cc_solib}/lib64" ]; then + ccLDFlags+=" -L${cc_solib}/lib64" + ccCFlags+=" -B${cc_solib}/lib64" fi - ccLDFlags+=" -L$cc/lib" + ccLDFlags+=" -L${cc_solib}/lib" ${optionalString cc.langVhdl or false '' - ccLDFlags+=" -L${zlib}/lib" + ccLDFlags+=" -L${zlib.out}/lib" ''} # Find the gcc libraries path (may work only without multilib). ${optionalString cc.langAda or false '' - basePath=`echo $cc/lib/*/*/*` + basePath=`echo ${cc_solib}/lib/*/*/*` ccCFlags+=" -B$basePath -I$basePath/adainclude" gnatCFlags="-aI$basePath/adainclude -aO$basePath/adalib" echo "$gnatCFlags" > $out/nix-support/gnat-cflags @@ -134,13 +136,13 @@ stdenv.mkDerivation { echo "$ccLDFlags" > $out/nix-support/cc-ldflags echo "$ccCFlags" > $out/nix-support/cc-cflags - ccPath="$cc/bin" - ldPath="$binutils/bin" + ccPath="${cc}/bin" + ldPath="${binutils_bin}/bin" # Propagate the wrapped cc so that if you install the wrapper, # you get tools like gcov, the manpages, etc. as well (including # for binutils and Glibc). - echo $cc $binutils $libc > $out/nix-support/propagated-user-env-packages + echo ${cc} ${cc.man or ""} ${binutils_bin} ${libc_bin} > $out/nix-support/propagated-user-env-packages echo ${toString extraPackages} > $out/nix-support/propagated-native-build-inputs '' @@ -162,12 +164,12 @@ stdenv.mkDerivation { wrap ld ${./ld-wrapper.sh} ''${ld:-$ldPath/ld} - if [ -e $binutils/bin/ld.gold ]; then - wrap ld.gold ${./ld-wrapper.sh} $binutils/bin/ld.gold + if [ -e ${binutils_bin}/bin/ld.gold ]; then + wrap ld.gold ${./ld-wrapper.sh} ${binutils_bin}/bin/ld.gold fi - if [ -e $binutils/bin/ld.bfd ]; then - wrap ld.bfd ${./ld-wrapper.sh} $binutils/bin/ld.bfd + if [ -e ${binutils_bin}/bin/ld.bfd ]; then + wrap ld.bfd ${./ld-wrapper.sh} ${binutils_bin}/bin/ld.bfd fi export real_cc=cc diff --git a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh index 012f826a111e..0d74527dd8ad 100644 --- a/pkgs/build-support/cc-wrapper/gnat-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/gnat-wrapper.sh @@ -1,7 +1,7 @@ #! @shell@ -e path_backup="$PATH" -if [ -n "@coreutils@" ]; then - PATH="@coreutils@/bin" +if [ -n "@coreutils_bin@" ]; then + PATH="@coreutils_bin@/bin" fi if [ -n "$NIX_GNAT_WRAPPER_START_HOOK" ]; then diff --git a/pkgs/build-support/cc-wrapper/ld-wrapper.sh b/pkgs/build-support/cc-wrapper/ld-wrapper.sh index 449a86459045..28d73f046e68 100644 --- a/pkgs/build-support/cc-wrapper/ld-wrapper.sh +++ b/pkgs/build-support/cc-wrapper/ld-wrapper.sh @@ -1,7 +1,7 @@ #! @shell@ -e path_backup="$PATH" -if [ -n "@coreutils@" ]; then - PATH="@coreutils@/bin" +if [ -n "@coreutils_bin@" ]; then + PATH="@coreutils_bin@/bin" fi if [ -n "$NIX_LD_WRAPPER_START_HOOK" ]; then diff --git a/pkgs/build-support/cc-wrapper/setup-hook.sh b/pkgs/build-support/cc-wrapper/setup-hook.sh index 35620483d2bc..f4f7ab181d3e 100644 --- a/pkgs/build-support/cc-wrapper/setup-hook.sh +++ b/pkgs/build-support/cc-wrapper/setup-hook.sh @@ -22,20 +22,20 @@ envHooks+=(addCVars) # Note: these come *after* $out in the PATH (see setup.sh). -if [ -n "@binutils@" ]; then - addToSearchPath _PATH @binutils@/bin -fi - if [ -n "@cc@" ]; then addToSearchPath _PATH @cc@/bin fi -if [ -n "@libc@" ]; then - addToSearchPath _PATH @libc@/bin +if [ -n "@binutils_bin@" ]; then + addToSearchPath _PATH @binutils_bin@/bin fi -if [ -n "@coreutils@" ]; then - addToSearchPath _PATH @coreutils@/bin +if [ -n "@libc_bin@" ]; then + addToSearchPath _PATH @libc_bin@/bin +fi + +if [ -n "@coreutils_bin@" ]; then + addToSearchPath _PATH @coreutils_bin@/bin fi if [ -z "$crossConfig" ]; then diff --git a/pkgs/build-support/emacs/wrapper.nix b/pkgs/build-support/emacs/wrapper.nix index efee43d852ea..7be4d21bfa8d 100644 --- a/pkgs/build-support/emacs/wrapper.nix +++ b/pkgs/build-support/emacs/wrapper.nix @@ -51,8 +51,11 @@ stdenv.mkDerivation { inherit emacs explicitRequires; phases = [ "installPhase" ]; installPhase = '' - mkdir -p $out/bin - mkdir -p $out/share/emacs/site-lisp + readonly SHARE="share/emacs-with-packages" + + mkdir -p "$out/bin" + mkdir -p "$out/$SHARE/bin" + mkdir -p "$out/$SHARE/site-lisp" local requires for pkg in $explicitRequires; do @@ -60,29 +63,32 @@ stdenv.mkDerivation { done # requires now holds all requested packages and their transitive dependencies - siteStart="$out/share/emacs/site-lisp/site-start.el" + siteStart="$out/$SHARE/site-lisp/site-start.el" # Begin the new site-start.el by loading the original, which sets some # NixOS-specific paths. Paths are searched in the reverse of the order # they are specified in, so user and system profile paths are searched last. cat >"$siteStart" <" to find the # limits.h file in ../includes-fixed. To remedy the problem, # another -idirafter is necessary to add that directory again. - echo "-B$libc/lib/ -idirafter $libc/include -idirafter $gcc/lib/gcc/*/*/include-fixed" > $out/nix-support/libc-cflags + echo "-B$libc/lib/ -idirafter $libc_dev/include -idirafter $gcc/lib/gcc/*/*/include-fixed" > $out/nix-support/libc-cflags echo "-L$libc/lib" > $out/nix-support/libc-ldflags @@ -39,9 +39,9 @@ if test -n "$nativeTools"; then ldPath="$nativePrefix/bin" else if test -e "$gcc/lib64"; then - gccLDFlags="$gccLDFlags -L$gcc/lib64" + gccLDFlags="$gccLDFlags -L$gcc_lib/lib64" fi - gccLDFlags="$gccLDFlags -L$gcc/lib" + gccLDFlags="$gccLDFlags -L$gcc_lib/lib" if [ -n "$langVhdl" ]; then gccLDFlags="$gccLDFlags -L$zlib/lib" fi @@ -95,6 +95,7 @@ doSubstitute() { -e "s^@binutils@^$binutils^g" \ -e "s^@coreutils@^$coreutils^g" \ -e "s^@libc@^$libc^g" \ + -e "s^@libc_bin@^$libc_bin^g" \ -e "s^@ld@^$ld^g" \ < "$src" > "$dst" } @@ -210,5 +211,5 @@ cp -p $utils $out/nix-support/utils.sh # tools like gcov, the manpages, etc. as well (including for binutils # and Glibc). if test -z "$nativeTools"; then - echo $gcc $binutils $libc > $out/nix-support/propagated-user-env-packages + echo $gcc $binutils $libc $libc_bin > $out/nix-support/propagated-user-env-packages fi diff --git a/pkgs/build-support/gcc-wrapper-old/default.nix b/pkgs/build-support/gcc-wrapper-old/default.nix index 20f1bc97ad1b..f44aaec5d9d7 100644 --- a/pkgs/build-support/gcc-wrapper-old/default.nix +++ b/pkgs/build-support/gcc-wrapper-old/default.nix @@ -41,7 +41,10 @@ stdenv.mkDerivation { addFlags = ./add-flags; inherit nativeTools nativeLibc nativePrefix gcc; + gcc_lib = gcc.lib or gcc; libc = if nativeLibc then null else libc; + libc_dev = if nativeLibc then null else libc.dev or libc; + libc_bin = if nativeLibc then null else libc.bin or libc; binutils = if nativeTools then null else binutils; # The wrapper scripts use 'cat', so we may need coreutils coreutils = if nativeTools then null else coreutils; diff --git a/pkgs/build-support/gcc-wrapper-old/setup-hook.sh b/pkgs/build-support/gcc-wrapper-old/setup-hook.sh index 298ade21d1f5..d8bdf858ae58 100644 --- a/pkgs/build-support/gcc-wrapper-old/setup-hook.sh +++ b/pkgs/build-support/gcc-wrapper-old/setup-hook.sh @@ -25,7 +25,7 @@ if test -n "@binutils@"; then fi if test -n "@libc@"; then - addToSearchPath PATH @libc@/bin + addToSearchPath PATH @libc_bin@/bin fi if test -n "@coreutils@"; then diff --git a/pkgs/build-support/grsecurity/default.nix b/pkgs/build-support/grsecurity/default.nix index 18719e6e22ba..b6719abed701 100644 --- a/pkgs/build-support/grsecurity/default.nix +++ b/pkgs/build-support/grsecurity/default.nix @@ -119,7 +119,7 @@ let # As of gcc5 we also need libmpc buildInputs = args.buildInputs ++ [ pkgs.gmp pkgs.libmpc pkgs.mpfr ]; preConfigure = '' - extraIncludes="-I${pkgs.gmp}/include -I${pkgs.libmpc}/include -I${pkgs.mpfr}/include" + extraIncludes="-I${pkgs.gmp.dev}/include -I${pkgs.libmpc}/include -I${pkgs.mpfr.dev}/include" ${args.preConfigure or ""} sed -i "s|-I|$extraIncludes -I|" scripts/gcc-plugin.sh sed -i "s|HOST_EXTRACFLAGS +=|HOST_EXTRACFLAGS += $extraIncludes|" tools/gcc/Makefile diff --git a/pkgs/build-support/setup-hooks/compress-man-pages.sh b/pkgs/build-support/setup-hooks/compress-man-pages.sh index 1dd9788419b8..f1d9cf3a3696 100644 --- a/pkgs/build-support/setup-hooks/compress-man-pages.sh +++ b/pkgs/build-support/setup-hooks/compress-man-pages.sh @@ -3,6 +3,7 @@ fixupOutputHooks+=('if [ -z "$dontGzipMan" ]; then compressManPages "$prefix"; f compressManPages() { local dir="$1" + if [ ! -d "$dir/share/man" ]; then return; fi echo "gzipping man pages in $dir" GLOBIGNORE=.:..:*.gz:*.bz2 diff --git a/pkgs/build-support/setup-hooks/move-docs.sh b/pkgs/build-support/setup-hooks/move-docs.sh index 57b71c15691d..ef31dcdce274 100644 --- a/pkgs/build-support/setup-hooks/move-docs.sh +++ b/pkgs/build-support/setup-hooks/move-docs.sh @@ -2,7 +2,7 @@ # $out/share/man to $man/share/man; and moves $out/share/doc to # $man/share/doc. -preFixupHooks+=(_moveDocs) +preFixupHooks+=(_moveToShare) _moveToShare() { forceShare=${forceShare:=man doc info} @@ -21,31 +21,3 @@ _moveToShare() { done } -_moveToOutput() { - local d="$1" - local dst="$2" - if [ -z "$dst" -a ! -e $dst/$d ]; then return; fi - local output - for output in $outputs; do - if [ "${!output}" = "$dst" ]; then continue; fi - if [ -d "${!output}/$d" ]; then - echo "moving ${!output}/$d to $dst/$d" - mkdir -p $dst/share - mv ${!output}/$d $dst/$d - break - fi - done -} - -_moveDocs() { - _moveToShare - _moveToOutput share/man "$man" - _moveToOutput share/info "$info" - _moveToOutput share/doc "$doc" - _moveToOutput share/gtk-doc "$doc" - - # Remove empty share directory. - if [ -d "$out/share" ]; then - rmdir $out/share 2> /dev/null || true - fi -} diff --git a/pkgs/build-support/setup-hooks/multiple-outputs.sh b/pkgs/build-support/setup-hooks/multiple-outputs.sh new file mode 100644 index 000000000000..2cf08d42ae04 --- /dev/null +++ b/pkgs/build-support/setup-hooks/multiple-outputs.sh @@ -0,0 +1,177 @@ +# The base package for automatic multiple-output splitting. Used in stdenv as well. +preConfigureHooks+=(_multioutConfig) +preFixupHooks+=(_multioutDocs) +preFixupHooks+=(_multioutDevs) +postFixupHooks+=(_multioutPropagateDev) + +# Assign the first string containing nonempty variable to the variable named $1 +_assignFirst() { + local varName="$1" + local REMOVE=REMOVE # slightly hacky - we allow REMOVE (i.e. not a variable name) + shift + while [ $# -ge 1 ]; do + if [ -n "${!1}" ]; then eval "${varName}"="$1"; return; fi + shift + done + echo "Error: _assignFirst found no valid variant!" + return 1 # none found +} +# Same as _assignFirst, but only if "$1" = "" +_overrideFirst() { + if [ -z "${!1}" ]; then + _assignFirst "$@" + fi +} + + +# Setup chains of sane default values with easy overridability. +# The variables are global to be usable anywhere during the build. +# Typical usage in package is defining outputBin = "dev"; + +_overrideFirst outputDev "dev" "out" +_overrideFirst outputBin "bin" "out" + +_overrideFirst outputInclude "$outputDev" + +# so-libs are often among the main things to keep, and so go to $out +_overrideFirst outputLib "lib" "out" + +_overrideFirst outputDoc "doc" "out" +_overrideFirst outputDocdev "docdev" REMOVE # documentation for developers +# man and info pages are small and often useful to distribute with binaries +_overrideFirst outputMan "man" "doc" "$outputBin" +_overrideFirst outputInfo "info" "doc" "$outputMan" + + +# Add standard flags to put files into the desired outputs. +_multioutConfig() { + if [ "$outputs" = "out" ] || [ -z "${setOutputFlags-1}" ]; then return; fi; + + configureFlags="\ + --bindir=${!outputBin}/bin --sbindir=${!outputBin}/sbin \ + --includedir=${!outputInclude}/include --oldincludedir=${!outputInclude}/include \ + --mandir=${!outputMan}/share/man --infodir=${!outputInfo}/share/info \ + --docdir=${!outputDoc}/share/doc \ + --libdir=${!outputLib}/lib --libexecdir=${!outputLib}/libexec \ + --localedir=${!outputLib}/share/locale \ + $configureFlags" + + installFlags="\ + pkgconfigdir=${!outputDev}/lib/pkgconfig \ + m4datadir=${!outputDev}/share/aclocal aclocaldir=${!outputDev}/share/aclocal \ + $installFlags" +} + +# Add rpath prefixes to library paths, and avoid stdenv doing it for $out. +_addRpathPrefix "${!outputLib}" +NIX_NO_SELF_RPATH=1 + + +# Move subpaths that match pattern $1 from under any output/ to the $2 output/ +# Beware: only globbing patterns are accepted, e.g.: * ? {foo,bar} +# A special target "REMOVE" is allowed: moveToOutput foo REMOVE +moveToOutput() { + local patt="$1" + local dstOut="$2" + local output + for output in $outputs; do + if [ "${!output}" = "$dstOut" ]; then continue; fi + local srcPath + for srcPath in "${!output}"/$patt; do + if [ ! -e "$srcPath" ]; then continue; fi + + if [ "$dstOut" = REMOVE ]; then + echo "Removing $srcPath" + rm -r "$srcPath" + else + local dstPath="$dstOut${srcPath#${!output}}" + echo "Moving $srcPath to $dstPath" + + if [ -d "$dstPath" ] && [ -d "$srcPath" ] + then # attempt directory merge + # check the case of trying to move an empty directory + rmdir "$srcPath" --ignore-fail-on-non-empty + if [ -d "$srcPath" ]; then + mv -t "$dstPath" "$srcPath"/* + rmdir "$srcPath" + fi + else # usual move + mkdir -p "$(readlink -m "$dstPath/..")" + mv "$srcPath" "$dstPath" + fi + fi + + # remove empty directories, printing iff at least one gets removed + local srcParent="$(readlink -m "$srcPath/..")" + if rmdir "$srcParent"; then + echo "Removing empty $srcParent/ and (possibly) its parents" + rmdir -p --ignore-fail-on-non-empty "$(readlink -m "$srcParent/..")" \ + 2> /dev/null || true # doesn't ignore failure for some reason + fi + done + done +} + +# Move documentation to the desired outputs. +_multioutDocs() { + local REMOVE=REMOVE # slightly hacky - we expand ${!outputFoo} + + moveToOutput share/info "${!outputInfo}" + moveToOutput share/doc "${!outputDoc}" + moveToOutput share/gtk-doc "${!outputDocdev}" + + # the default outputMan is in $bin + moveToOutput share/man "${!outputMan}" + moveToOutput share/man/man3 "${!outputDocdev}" +} + +# Move development-only stuff to the desired outputs. +_multioutDevs() { + if [ "$outputs" = "out" ] || [ -z "${moveToDev-1}" ]; then return; fi; + moveToOutput include "${!outputInclude}" + # these files are sometimes provided even without using the corresponding tool + moveToOutput lib/pkgconfig "${!outputDev}" + moveToOutput share/pkgconfig "${!outputDev}" + moveToOutput lib/cmake "${!outputDev}" + moveToOutput share/aclocal "${!outputDev}" + # don't move *.la, as libtool needs them in the directory of the library + + for f in "${!outputDev}"/{lib,share}/pkgconfig/*.pc; do + echo "Patching '$f' includedir to output ${!outputInclude}" + sed -i "/^includedir=/s,=\${prefix},=${!outputInclude}," "$f" + done +} + +# Make the first output (typically "dev") propagate other outputs needed for development. +# Take the first, because that's what one gets when putting the package into buildInputs. +# Note: during the build, probably only the "native" development packages are useful. +# With current cross-building setup, all packages are "native" if not cross-building. +_multioutPropagateDev() { + if [ "$outputs" = "out" ]; then return; fi; + + local outputFirst + for outputFirst in $outputs; do + break + done + + # Default value: propagate binaries, includes and libraries + if [ -z "${propagatedBuildOutputs+1}" ]; then + local po_dirty="$outputBin $outputInclude $outputLib" + set +o pipefail + propagatedBuildOutputs=`echo "$po_dirty" \ + | tr -s ' ' '\n' | grep -v -F "$outputFirst" \ + | sort -u | tr '\n' ' ' ` + set -o pipefail + fi + + # The variable was explicitly set to empty or we resolved it so + if [ -z "$propagatedBuildOutputs" ]; then + return + fi + + mkdir -p "${!outputFirst}"/nix-support + for output in $propagatedBuildOutputs; do + echo -n " ${!output}" >> "${!outputFirst}"/nix-support/propagated-native-build-inputs + done +} + diff --git a/pkgs/build-support/setup-hooks/use-old-cxx-abi.sh b/pkgs/build-support/setup-hooks/use-old-cxx-abi.sh new file mode 100644 index 000000000000..53335d7a9a7a --- /dev/null +++ b/pkgs/build-support/setup-hooks/use-old-cxx-abi.sh @@ -0,0 +1 @@ +export NIX_CFLAGS_COMPILE+=" -D_GLIBCXX_USE_CXX11_ABI=0" diff --git a/pkgs/build-support/vm/default.nix b/pkgs/build-support/vm/default.nix index c11c21170e01..e670e1ef2258 100644 --- a/pkgs/build-support/vm/default.nix +++ b/pkgs/build-support/vm/default.nix @@ -40,9 +40,9 @@ rec { mkdir -p $out/lib # Copy what we need from Glibc. - cp -p ${pkgs.stdenv.glibc}/lib/ld-linux*.so.? $out/lib - cp -p ${pkgs.stdenv.glibc}/lib/libc.so.* $out/lib - cp -p ${pkgs.stdenv.glibc}/lib/libm.so.* $out/lib + cp -p ${pkgs.stdenv.glibc.out}/lib/ld-linux*.so.? $out/lib + cp -p ${pkgs.stdenv.glibc.out}/lib/libc.so.* $out/lib + cp -p ${pkgs.stdenv.glibc.out}/lib/libm.so.* $out/lib # Copy BusyBox. cp -pd ${pkgs.busybox}/bin/* $out/bin @@ -414,12 +414,12 @@ rec { fillDiskWithRPMs = { size ? 4096, rpms, name, fullName, preInstall ? "", postInstall ? "" , runScripts ? true, createRootFS ? defaultCreateRootFS + , QEMU_OPTS ? "", memSize ? 512 , unifiedSystemDir ? false }: runInLinuxVM (stdenv.mkDerivation { - inherit name preInstall postInstall rpms; - memSize = 512; + inherit name preInstall postInstall rpms QEMU_OPTS memSize; preVM = createEmptyImage {inherit size fullName;}; buildCommand = '' @@ -584,7 +584,7 @@ rec { buildCommand = '' ${createRootFS} - PATH=$PATH:${dpkg}/bin:${dpkg}/bin:${glibc}/bin:${lzma}/bin + PATH=$PATH:${dpkg}/bin:${dpkg}/bin:${glibc.bin}/bin:${lzma.bin}/bin # Unpack the .debs. We do this to prevent pre-install scripts # (which have lots of circular dependencies) from barfing. @@ -685,10 +685,11 @@ rec { , packages, extraPackages ? [] , preInstall ? "", postInstall ? "", archs ? ["noarch" "i386"] , runScripts ? true, createRootFS ? defaultCreateRootFS + , QEMU_OPTS ? "", memSize ? 512 , unifiedSystemDir ? false }: fillDiskWithRPMs { - inherit name fullName size preInstall postInstall runScripts createRootFS unifiedSystemDir; + inherit name fullName size preInstall postInstall runScripts createRootFS unifiedSystemDir QEMU_OPTS memSize; rpms = import (rpmClosureGenerator { inherit name packagesLists urlPrefixes archs; packages = packages ++ extraPackages; @@ -1780,22 +1781,22 @@ rec { }; debian8i386 = { - name = "debian-8.3-jessie-i386"; - fullName = "Debian 8.3 Jessie (i386)"; + name = "debian-8.4-jessie-i386"; + fullName = "Debian 8.4 Jessie (i386)"; packagesList = fetchurl { url = mirror://debian/dists/jessie/main/binary-i386/Packages.xz; - sha256 = "1240d404bd99afbeec042c08fdab049f0b5a984a393cac7c221553ab08f637f5"; + sha256 = "1j8swc1nzsi20vbcmya2sv0fzcnz7lhwb32lxabgcwm3xlkzlg58"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; }; debian8x86_64 = { - name = "debian-8.3-jessie-amd64"; - fullName = "Debian 8.3 Jessie (amd64)"; + name = "debian-8.4-jessie-amd64"; + fullName = "Debian 8.4 Jessie (amd64)"; packagesList = fetchurl { url = mirror://debian/dists/jessie/main/binary-amd64/Packages.xz; - sha256 = "ec937c1b3bbfe4803f0fa43681b19d089eb6b355455ac7caa17ec8e9ff604e56"; + sha256 = "0kipisyjkhczghzqj4a8y1n4az9c4c8lsj8sw7js13b053lpj6ga"; }; urlPrefix = mirror://debian; packages = commonDebianPackages; diff --git a/pkgs/data/documentation/man-pages/default.nix b/pkgs/data/documentation/man-pages/default.nix index 56956280feac..3ee2242adecd 100644 --- a/pkgs/data/documentation/man-pages/default.nix +++ b/pkgs/data/documentation/man-pages/default.nix @@ -9,7 +9,10 @@ stdenv.mkDerivation rec { sha256 = "03d6aqgvhcsyciwdhl50h9bwn53iivvd7rbnh8als2ia9jwm2026"; }; + # keep developer docs separately (man2 and man3) + outputs = [ "out" "docdev" ]; makeFlags = [ "MANDIR=$(out)/share/man" ]; + postFixup = ''moveToOutput share/man/man2 "$docdev" ''; meta = with stdenv.lib; { description = "Linux development manual pages"; diff --git a/pkgs/data/documentation/std-man-pages/default.nix b/pkgs/data/documentation/std-man-pages/default.nix index 3b45da914d25..c438f839dbda 100644 --- a/pkgs/data/documentation/std-man-pages/default.nix +++ b/pkgs/data/documentation/std-man-pages/default.nix @@ -2,12 +2,14 @@ stdenv.mkDerivation rec { name = "std-man-pages-4.4.0"; - + src = fetchurl { url = mirror://gcc/libstdc++/doxygen/libstdc++-man.4.4.0.tar.bz2; sha256 = "0153py77ll759jacq41dp2z2ksr08pdcfic0rwjd6pr84dk89y9v"; }; + outputDocdev = "out"; + installPhase = '' mkdir -p $out/share/man cp -R * $out/share/man diff --git a/pkgs/data/documentation/stdman/default.nix b/pkgs/data/documentation/stdman/default.nix index 33c002e98013..249e5b6841bf 100644 --- a/pkgs/data/documentation/stdman/default.nix +++ b/pkgs/data/documentation/stdman/default.nix @@ -11,13 +11,15 @@ stdenv.mkDerivation rec { sha256 = "09c5gjhcz97ghfrv9zkgfb1wckvmqnhbzga0xidbm1ir7640di8l"; }; + outputDocdev = "out"; + preConfigure = " patchShebangs ./configure patchShebangs ./do_install "; buildInputs = [ curl ]; - + meta = with stdenv.lib; { description = "Formatted C++11/14 stdlib man pages (cppreference)"; longDescription = "stdman is a tool that parses archived HTML diff --git a/pkgs/data/misc/media-player-info/default.nix b/pkgs/data/misc/media-player-info/default.nix index f31c7c503a29..9cfb89914b11 100644 --- a/pkgs/data/misc/media-player-info/default.nix +++ b/pkgs/data/misc/media-player-info/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, python3, udev }: +{ stdenv, fetchurl, pkgconfig, python3, udev, systemd }: let name = "media-player-info-22"; @@ -12,7 +12,7 @@ in sha256 = "0di3gfx5z8c34yspzyllydr5snzg71r985kbqhrhb1il51qxgrvy"; }; - buildInputs = [ udev ]; + buildInputs = [ udev systemd ]; nativeBuildInputs = [ pkgconfig python3 ]; postPatch = '' diff --git a/pkgs/data/misc/tzdata/default.nix b/pkgs/data/misc/tzdata/default.nix index 5b51da58e622..8ffd21330602 100644 --- a/pkgs/data/misc/tzdata/default.nix +++ b/pkgs/data/misc/tzdata/default.nix @@ -16,14 +16,16 @@ stdenv.mkDerivation rec { ]; sourceRoot = "."; - outputs = [ "out" "lib" ]; + + outputs = [ "out" "man" "dev" ]; + propagatedBuildOutputs = []; makeFlags = [ "TOPDIR=$(out)" "TZDIR=$(out)/share/zoneinfo" "ETCDIR=$(TMPDIR)/etc" - "LIBDIR=$(lib)/lib" - "MANDIR=$(TMPDIR)/man" + "LIBDIR=$(dev)/lib" + "MANDIR=$(man)/man" "AWK=awk" "CFLAGS=-DHAVE_LINK=0" ]; @@ -34,8 +36,8 @@ stdenv.mkDerivation rec { ln -s . $out/share/zoneinfo/posix mv $out/share/zoneinfo-leaps $out/share/zoneinfo/right - mkdir -p "$lib/include" - cp tzfile.h "$lib/include/tzfile.h" + mkdir -p "$dev/include" + cp tzfile.h "$dev/include/tzfile.h" ''; meta = { diff --git a/pkgs/desktops/enlightenment/efl.nix b/pkgs/desktops/enlightenment/efl.nix index c2124f0b2928..3df091fd48a7 100644 --- a/pkgs/desktops/enlightenment/efl.nix +++ b/pkgs/desktops/enlightenment/efl.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput }: +{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, dbus, bullet, luajit, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg, dbus_libs, alsaLib, poppler, libraw, libspectre, xineLib, libwebp, curl, libinput, systemd }: stdenv.mkDerivation rec { @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig openssl zlib freetype fontconfig fribidi SDL2 SDL mesa giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-libav libpulseaudio libsndfile xorg.libXcursor xorg.printproto - xorg.libX11 udev utillinux ]; + xorg.libX11 udev utillinux systemd ]; propagatedBuildInputs = [ libxkbcommon python27Packages.dbus dbus libjpeg xorg.libXcomposite xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { "--disable-tslib" "--with-systemdunitdir=$out/systemd/user" "ac_ct_CXX=foo" ]; - NIX_CFLAGS_COMPILE = [ "-I${xorg.libXtst}" "-I${dbus_libs}/include/dbus-1.0" "-I${dbus_libs}/lib/dbus-1.0/include" ]; + NIX_CFLAGS_COMPILE = [ "-I${xorg.libXtst}" "-I${dbus_libs.dev}/include/dbus-1.0" "-I${dbus_libs.lib}/lib/dbus-1.0/include" ]; patches = [ ./efl-elua.patch ]; diff --git a/pkgs/desktops/gnome-2/desktop/gnome-keyring/default.nix b/pkgs/desktops/gnome-2/desktop/gnome-keyring/default.nix index f31875bed91c..50f2cd081332 100644 --- a/pkgs/desktops/gnome-2/desktop/gnome-keyring/default.nix +++ b/pkgs/desktops/gnome-2/desktop/gnome-keyring/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { sha256 = "02r9gv3a4a705jf3h7c0bizn33c73wz0iw2500m7z291nrnmqkmj"; }; - buildInputs = [ dbus.libs libgcrypt pam python gtk GConf libgnome_keyring ]; + buildInputs = [ dbus libgcrypt pam python gtk GConf libgnome_keyring ]; propagatedBuildInputs = [ glib libtasn1 ]; diff --git a/pkgs/desktops/gnome-3/3.18/apps/evolution/default.nix b/pkgs/desktops/gnome-3/3.18/apps/evolution/default.nix index a9bb87d4dddf..100dfbf3acec 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/evolution/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/evolution/default.nix @@ -27,7 +27,7 @@ in stdenv.mkDerivation rec { configureFlags = [ "--disable-spamassassin" "--disable-pst-import" "--disable-autoar" "--disable-libcryptui" ]; - NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss -I${glib.dev}/include/gio-unix-2.0"; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix index 6f5af374dbc4..1edea6b888ba 100644 --- a/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix +++ b/pkgs/desktops/gnome-3/3.18/apps/gnome-boxes/default.nix @@ -3,7 +3,7 @@ , spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala , libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg , desktop_file_utils, mtools, cdrkit, libcdio, numactl, xen -, libusb, libarchive, acl, libgudev +, libusb, libarchive, acl, libgudev, qemu }: # TODO: ovirt (optional) @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { wrapProgram "$prog" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ - --prefix PATH : "${mtools}/bin:${cdrkit}/bin:${libcdio}/bin" + --prefix PATH : "${mtools}/bin:${cdrkit}/bin:${libcdio}/bin:${qemu}/bin" done ''; diff --git a/pkgs/desktops/gnome-3/3.18/core/empathy/default.nix b/pkgs/desktops/gnome-3/3.18/core/empathy/default.nix index 4c42c6c026d3..48b45f28522e 100644 --- a/pkgs/desktops/gnome-3/3.18/core/empathy/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/empathy/default.nix @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { gnome3.defaultIconTheme gnome3.gsettings_desktop_schemas file libtool librsvg ]; - NIX_CFLAGS_COMPILE = [ "-I${dbus_glib}/include/dbus-1.0" - "-I${dbus_libs}/include/dbus-1.0" - "-I${dbus_libs}/lib/dbus-1.0/include" ]; + NIX_CFLAGS_COMPILE = [ "-I${dbus_glib.dev}/include/dbus-1.0" + "-I${dbus_libs.dev}/include/dbus-1.0" + "-I${dbus_libs.lib}/lib/dbus-1.0/include" ]; preFixup = '' for f in $out/bin/* $out/libexec/*; do diff --git a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix index 322dd3bedac6..d50036a597e6 100644 --- a/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/epiphany/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { gdk_pixbuf gnome3.defaultIconTheme librsvg which gnome_common gcr avahi gnome3.gsettings_desktop_schemas gnome3.dconf ]; - NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; + NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss -I${glib.dev}/include/gio-unix-2.0"; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/3.18/core/folks/default.nix b/pkgs/desktops/gnome-3/3.18/core/folks/default.nix index 6e200bdb3188..4385c6b6f75b 100644 --- a/pkgs/desktops/gnome-3/3.18/core/folks/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/folks/default.nix @@ -23,8 +23,8 @@ stdenv.mkDerivation rec { configureFlags = "--disable-fatal-warnings"; - NIX_CFLAGS_COMPILE = ["-I${nspr}/include/nspr" "-I${nss}/include/nss" - "-I${dbus_glib}/include/dbus-1.0" "-I${dbus_libs}/include/dbus-1.0"]; + NIX_CFLAGS_COMPILE = ["-I${nspr.dev}/include/nspr" "-I${nss.dev}/include/nss" + "-I${dbus_glib.dev}/include/dbus-1.0" "-I${dbus_libs.dev}/include/dbus-1.0"]; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/3.16-wip/default.nix b/pkgs/desktops/gnome-3/3.18/core/gdm/3.16-wip/default.nix index 51b67afb01fd..3749be2de27f 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gdm/3.16-wip/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gdm/3.16-wip/default.nix @@ -11,9 +11,9 @@ stdenv.mkDerivation rec { }; preConfigure = '' - substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver}/bin/X" + substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver.out}/bin/X" substituteInPlace daemon/gdm-simple-slave.c --replace 'BINDIR "/gnome-session' '"${gnome_session}/bin/gnome-session' - substituteInPlace daemon/gdm-launch-environment.c --replace 'BINDIR "/dbus-launch' '"${dbus.tools}/bin/dbus-launch' + substituteInPlace daemon/gdm-launch-environment.c --replace 'BINDIR "/dbus-launch' '"${dbus.dbus-launch}' substituteInPlace data/gdm.conf-custom.in --replace '#WaylandEnable=false' 'WaylandEnable=false' sed 's/#Enable=true/Enable=true/' -i data/gdm.conf-custom.in ''; diff --git a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix index 1db969651317..a13370e5c9a9 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gdm/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { # Only needed to make it build preConfigure = '' - substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver}/bin/X" + substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver.out}/bin/X" ''; configureFlags = [ "--sysconfdir=/etc" diff --git a/pkgs/desktops/gnome-3/3.18/core/gjs/default.nix b/pkgs/desktops/gnome-3/3.18/core/gjs/default.nix index 792e34c7b148..ac53726bc537 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gjs/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gjs/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ spidermonkey_24 ]; postInstall = '' - sed 's|-lreadline|-L${readline}/lib -lreadline|g' -i $out/lib/libgjs.la + sed 's|-lreadline|-L${readline.out}/lib -lreadline|g' -i $out/lib/libgjs.la ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix index 1d1f9d18c566..51e3f6ab3133 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-dictionary/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/gnome-dictionary" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + --prefix XDG_DATA_DIRS : "${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-online-accounts/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-online-accounts/default.nix index d810fbb862b7..c6688fd30cd7 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-online-accounts/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-online-accounts/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { inherit (import ./src.nix fetchurl) name src; - NIX_CFLAGS_COMPILE = "-I${dbus_glib}/include/dbus-1.0 -I${dbus_libs}/include/dbus-1.0"; + NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0"; enableParallelBuilding = true; diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix index 763fc990bdab..15d93793088b 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-screenshot/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/gnome-screenshot" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + --prefix XDG_DATA_DIRS : "${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix index 716f92a072d4..6b7b28ad4000 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-system-log/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/gnome-system-log" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + --prefix XDG_DATA_DIRS : "${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix index 49ad40912c66..e8f649835062 100644 --- a/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/gnome-user-share/default.nix @@ -14,8 +14,8 @@ stdenv.mkDerivation rec { sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' -i data/dav_user_2.2.conf ''; - configureFlags = [ "--with-httpd=${apacheHttpd_2_2}/bin/httpd" - "--with-modules-path=${apacheHttpd_2_2}/modules" + configureFlags = [ "--with-httpd=${apacheHttpd_2_2.out}/bin/httpd" + "--with-modules-path=${apacheHttpd_2_2.out}/modules" "--disable-bluetooth" "--with-nautilusdir=$(out)/lib/nautilus/extensions-3.0" ]; diff --git a/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix b/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix index e8ddf7096e62..76d9118c4b95 100644 --- a/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix @@ -8,7 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" ]; + outputBin = "dev"; configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic"; diff --git a/pkgs/desktops/gnome-3/3.18/core/rest/default.nix b/pkgs/desktops/gnome-3/3.18/core/rest/default.nix index eada9ab19934..344bc00780f9 100644 --- a/pkgs/desktops/gnome-3/3.18/core/rest/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/rest/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection, gnome3 }: stdenv.mkDerivation rec { - name = "rest-0.7.92"; + name = "rest-0.7.93"; src = fetchurl { url = "mirror://gnome/sources/rest/0.7/${name}.tar.xz"; - sha256 = "07548c8785a3e743daf54a82b952ff5f32af94fee68997df4c83b00d52f9c0ec"; + sha256 = "05mj10hhiik23ai8w4wkk5vhsp7hcv24bih5q3fl82ilam268467"; }; buildInputs = [ pkgconfig glib libsoup gobjectIntrospection]; diff --git a/pkgs/desktops/gnome-3/3.18/core/vte/2.90.nix b/pkgs/desktops/gnome-3/3.18/core/vte/2.90.nix index 5ccca36bcaad..cbb52c9aaa12 100644 --- a/pkgs/desktops/gnome-3/3.18/core/vte/2.90.nix +++ b/pkgs/desktops/gnome-3/3.18/core/vte/2.90.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; postInstall = '' - substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses}/lib -lncurses" + substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses.out}/lib -lncurses" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/core/vte/default.nix b/pkgs/desktops/gnome-3/3.18/core/vte/default.nix index 334718403a0d..38850f0fe761 100644 --- a/pkgs/desktops/gnome-3/3.18/core/vte/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/vte/default.nix @@ -20,7 +20,7 @@ let baseAttrs = rec { enableParallelBuilding = true; postInstall = '' - substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses}/lib -lncurses" + substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses.out}/lib -lncurses" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix index 19f340ac291e..e7f833bf7172 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gitg/default.nix @@ -30,7 +30,7 @@ stdenv.mkDerivation rec { wrapProgram "$out/bin/gitg" \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/desktops/gnome-3/3.18/misc/gnome-tweak-tool/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gnome-tweak-tool/default.nix index 986d4058af92..d0c6674ad9bd 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gnome-tweak-tool/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gnome-tweak-tool/default.nix @@ -22,7 +22,7 @@ stdenv.mkDerivation rec { preFixup = '' wrapProgram "$out/bin/gnome-tweak-tool" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ - --suffix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ + --suffix XDG_DATA_DIRS : "${gtk3.out}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ --prefix PYTHONPATH : "$PYTHONPATH:$(toPythonPath $out)" ''; diff --git a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix index eeb2cee86cdd..fd7ecbea01ff 100644 --- a/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix +++ b/pkgs/desktops/gnome-3/3.18/misc/gpaste/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ intltool autoreconfHook pkgconfig vala glib - gtk3 gnome3.gnome_control_center dbus.libs + gtk3 gnome3.gnome_control_center dbus clutter pango appstream-glib makeWrapper ]; preConfigure = "intltoolize -f"; diff --git a/pkgs/desktops/kde-4.14/kde-runtime.nix b/pkgs/desktops/kde-4.14/kde-runtime.nix index 655555cd140a..495ea242e0d0 100644 --- a/pkgs/desktops/kde-4.14/kde-runtime.nix +++ b/pkgs/desktops/kde-4.14/kde-runtime.nix @@ -16,7 +16,7 @@ kde { nativeBuildInputs = [ shared_mime_info ]; - NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR -I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include"; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR -I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; passthru.propagatedUserEnvPackages = [ virtuoso ]; diff --git a/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix b/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix index 267c2b782129..f5750d60045f 100644 --- a/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix +++ b/pkgs/desktops/kde-4.14/kdenetwork/kopete.nix @@ -9,6 +9,7 @@ kde { patches = [ (fetchurl { + name = "kopete.patch"; url = "https://bugs.kde.org/attachment.cgi?id=91567"; sha256 = "0a44rjiqzn6v3sywm17d1741sygbvlfnbqadq7qbdj3amny014m1"; }) diff --git a/pkgs/desktops/kde-5/applications-15.12/kcalc.nix b/pkgs/desktops/kde-5/applications-15.12/kcalc.nix index a1f0316825da..e4c8e9d69253 100644 --- a/pkgs/desktops/kde-5/applications-15.12/kcalc.nix +++ b/pkgs/desktops/kde-5/applications-15.12/kcalc.nix @@ -1,14 +1,14 @@ { kdeApp , lib -, extra-cmake-modules -, kdoctools , makeQtWrapper +, extra-cmake-modules +, gmp +, kdoctools , kconfig , kconfigwidgets , kguiaddons , kinit , knotifications - }: kdeApp { @@ -20,6 +20,7 @@ kdeApp { ]; buildInputs = [ + gmp kconfig kconfigwidgets kguiaddons diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-app.nix b/pkgs/desktops/kde-5/applications-15.12/kde-app.nix index 242f3d9c793d..2f1fdc1d643c 100644 --- a/pkgs/desktops/kde-5/applications-15.12/kde-app.nix +++ b/pkgs/desktops/kde-5/applications-15.12/kde-app.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation (args // { name = "${name}-${version}"; inherit src; + outputs = args.outputs or [ "dev" "out" ]; + cmakeFlags = (args.cmakeFlags or []) ++ [ "-DBUILD_TESTING=OFF" ] diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix b/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix index 4b612ee3e3c2..e83794c60d81 100644 --- a/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix +++ b/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix @@ -6,6 +6,8 @@ kdeApp (args // { sname = "kde-l10n-${name}"; name = "kde-l10n-${name}-qt4"; + outputs = [ "out" ]; + nativeBuildInputs = [ automoc4 cmake gettext perl ] ++ (args.nativeBuildInputs or []); @@ -17,4 +19,9 @@ kdeApp (args // { sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt ${args.preConfigure or ""} ''; + + preFixup = '' + propagatedBuildInputs= + propagatedNativeBuildInputs= + ''; }) diff --git a/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix b/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix index 522fc542aeb2..772ebe37e44f 100644 --- a/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix +++ b/pkgs/desktops/kde-5/applications-15.12/kde-locale-5.nix @@ -6,6 +6,8 @@ kdeApp (args // { sname = "kde-l10n-${name}"; name = "kde-l10n-${name}-qt5"; + outputs = [ "out" ]; + nativeBuildInputs = [ cmake extra-cmake-modules gettext kdoctools ] ++ (args.nativeBuildInputs or []); @@ -14,4 +16,9 @@ kdeApp (args // { sed -e 's/add_subdirectory(4)//' -i CMakeLists.txt ${args.preConfigure or ""} ''; + + preFixup = '' + propagatedBuildInputs= + propagatedNativeBuildInputs= + ''; }) diff --git a/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix b/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix index a30b19774f2a..389362deecc6 100644 --- a/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix +++ b/pkgs/desktops/kde-5/applications-15.12/kdelibs/default.nix @@ -2,16 +2,18 @@ , docbook_xml_dtd_42, docbook_xsl, flex, giflib, ilmbase , libdbusmenu_qt, libjpeg, libxml2, libxslt, perl, phonon, pkgconfig , polkit_qt4, qca2, qt4, shared_desktop_ontologies, shared_mime_info -, soprano, strigi, udev, xz +, soprano, strigi, udev, xz, pcre , lib }: kdeApp { name = "kdelibs"; + outputs = [ "out" ]; + buildInputs = [ attica attr avahi giflib libdbusmenu_qt libjpeg libxml2 - polkit_qt4 qca2 shared_desktop_ontologies udev xz + polkit_qt4 qca2 shared_desktop_ontologies udev xz pcre ]; propagatedBuildInputs = [ qt4 soprano phonon strigi ]; nativeBuildInputs = [ diff --git a/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix index 879262c56a41..44cc99daf261 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/breeze-icons.nix @@ -6,5 +6,5 @@ kdeFramework { name = "breeze-icons"; nativeBuildInputs = [ extra-cmake-modules ]; - propagatedUserEnvPkgs = [ qtsvg ]; + buildInputs = [ qtsvg ]; } diff --git a/pkgs/desktops/kde-5/frameworks-5.19/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/default.nix index cd314e27cacb..2c15f31a9c9e 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/default.nix @@ -29,6 +29,8 @@ let name = "${name}-${version}"; inherit src; + outputs = args.outputs or [ "dev" "out" ]; + cmakeFlags = (args.cmakeFlags or []) ++ [ "-DBUILD_TESTING=OFF" ] @@ -64,14 +66,14 @@ let kdbusaddons = callPackage ./kdbusaddons.nix {}; kdeclarative = callPackage ./kdeclarative.nix {}; kded = callPackage ./kded.nix {}; - kdelibs4support = callPackage ./kdelibs4support.nix {}; + kdelibs4support = callPackage ./kdelibs4support {}; kdesignerplugin = callPackage ./kdesignerplugin.nix {}; kdewebkit = callPackage ./kdewebkit.nix {}; kdesu = callPackage ./kdesu.nix {}; kdnssd = callPackage ./kdnssd.nix {}; kdoctools = callPackage ./kdoctools {}; kemoticons = callPackage ./kemoticons.nix {}; - kfilemetadata = callPackage ./kfilemetadata.nix {}; + kfilemetadata = callPackage ./kfilemetadata {}; kglobalaccel = callPackage ./kglobalaccel.nix {}; kguiaddons = callPackage ./kguiaddons.nix {}; khtml = callPackage ./khtml.nix {}; diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/0001-extra-cmake-modules-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/0001-extra-cmake-modules-paths.patch deleted file mode 100644 index 9717716faf5b..000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/0001-extra-cmake-modules-paths.patch +++ /dev/null @@ -1,74 +0,0 @@ -From 3cc148e878b69fc3e0228f3e3bf1bbe689dad87c Mon Sep 17 00:00:00 2001 -From: Thomas Tuegel -Date: Fri, 20 Feb 2015 23:17:39 -0600 -Subject: [PATCH] extra-cmake-modules paths - ---- - kde-modules/KDEInstallDirs.cmake | 37 ++++--------------------------------- - 1 file changed, 4 insertions(+), 33 deletions(-) - -diff --git a/kde-modules/KDEInstallDirs.cmake b/kde-modules/KDEInstallDirs.cmake -index b7cd34d..2f868ac 100644 ---- a/kde-modules/KDEInstallDirs.cmake -+++ b/kde-modules/KDEInstallDirs.cmake -@@ -193,37 +193,8 @@ - # (To distribute this file outside of extra-cmake-modules, substitute the full - # License text for the above reference.) - --# Figure out what the default install directory for libraries should be. --# This is based on the logic in GNUInstallDirs, but simplified (the --# GNUInstallDirs code deals with re-configuring, but that is dealt with --# by the _define_* macros in this module). -+# The default library directory on NixOS is *always* /lib. - set(_LIBDIR_DEFAULT "lib") --# Override this default 'lib' with 'lib64' iff: --# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling --# - we are NOT on debian --# - we are on a 64 bits system --# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf --# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if --# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" --# See http://wiki.debian.org/Multiarch --if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") -- AND NOT CMAKE_CROSSCOMPILING) -- if (EXISTS "/etc/debian_version") # is this a debian system ? -- if(CMAKE_LIBRARY_ARCHITECTURE) -- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") -- endif() -- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: -- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) -- message(AUTHOR_WARNING -- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " -- "Please enable at least one language before including KDEInstallDirs.") -- else() -- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") -- set(_LIBDIR_DEFAULT "lib64") -- endif() -- endif() -- endif() --endif() - - set(_gnu_install_dirs_vars - BINDIR -@@ -445,15 +416,15 @@ if(KDE_INSTALL_USE_QT_SYS_PATHS) - "QtQuick2 imports" - QML_INSTALL_DIR) - else() -- _define_relative(QTPLUGINDIR LIBDIR "plugins" -+ _define_relative(QTPLUGINDIR LIBDIR "qt5/plugins" - "Qt plugins" - QT_PLUGIN_INSTALL_DIR) - -- _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "imports" -+ _define_relative(QTQUICKIMPORTSDIR QTPLUGINDIR "qt5/imports" - "QtQuick1 imports" - IMPORTS_INSTALL_DIR) - -- _define_relative(QMLDIR LIBDIR "qml" -+ _define_relative(QMLDIR LIBDIR "qt5/qml" - "QtQuick2 imports" - QML_INSTALL_DIR) - endif() --- -2.3.0 - diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix index 4e1b1aff3bd1..1c2ea70442d3 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/default.nix @@ -1,9 +1,11 @@ -{ kdeFramework, lib, stdenv, cmake, pkgconfig, qttools }: +{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: kdeFramework { name = "extra-cmake-modules"; - patches = [ ./0001-extra-cmake-modules-paths.patch ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + + outputs = [ "out" ]; # this package has no runtime components setupHook = ./setup-hook.sh; # It is OK to propagate these inputs as long as @@ -11,8 +13,8 @@ kdeFramework { # of some other derivation. propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; - meta = { - license = stdenv.lib.licenses.bsd2; - maintainers = [ lib.maintainers.ttuegel ]; + meta = with lib; { + license = licenses.bsd2; + maintainers = [ maintainers.ttuegel ]; }; } diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch new file mode 100644 index 000000000000..a74340a6dc96 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/nix-lib-path.patch @@ -0,0 +1,37 @@ +Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +=================================================================== +--- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake ++++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +@@ -200,32 +200,6 @@ + # GNUInstallDirs code deals with re-configuring, but that is dealt with + # by the _define_* macros in this module). + set(_LIBDIR_DEFAULT "lib") +-# Override this default 'lib' with 'lib64' iff: +-# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling +-# - we are NOT on debian +-# - we are on a 64 bits system +-# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf +-# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if +-# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" +-# See http://wiki.debian.org/Multiarch +-if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") +- AND NOT CMAKE_CROSSCOMPILING) +- if (EXISTS "/etc/debian_version") # is this a debian system ? +- if(CMAKE_LIBRARY_ARCHITECTURE) +- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") +- endif() +- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: +- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) +- message(AUTHOR_WARNING +- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " +- "Please enable at least one language before including KDEInstallDirs.") +- else() +- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") +- set(_LIBDIR_DEFAULT "lib64") +- endif() +- endif() +- endif() +-endif() + + set(_gnu_install_dirs_vars + BINDIR diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series new file mode 100644 index 000000000000..b4569e50a5f7 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/series @@ -0,0 +1 @@ +nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh index a6fa6189240b..56ed09f4ea59 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.19/extra-cmake-modules/setup-hook.sh @@ -1,27 +1,81 @@ -addMimePkg() { - local propagated - - if [[ -d "$1/share/mime" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - - propagated= - for pkg in $propagatedUserEnvPkgs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - fi - done - if [[ -z $propagated ]]; then - propagatedUserEnvPkgs="$propagatedUserEnvPkgs $1" - fi - fi +_ecmSetXdgDirs() { + addToSearchPathOnce XDG_DATA_DIRS "$1/share" + addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" } -envHooks+=(addMimePkg) +_ecmPropagateSharedData() { + local sharedPaths=( \ + "config.cfg" \ + "doc" \ + "kconf_update" \ + "kservices5" \ + "kservicetypes5" \ + "kxmlgui5" \ + "knotifications5" \ + "icons" \ + "sounds" \ + "templates" \ + "wallpapers" \ + "applications" \ + "desktop-directories" \ + "mime" \ + "info" \ + "dbus-1" \ + "interfaces" \ + "services" \ + "system-services" ) + for dir in ${sharedPaths[@]}; do + if [ -d "$1/share/$dir" ]; then + addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + propagateOnce propagatedUserEnvPkgs "$1" + break + fi + done +} + +_ecmConfig() { + # Because we need to use absolute paths here, we must set *all* the paths. + cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" + cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" + cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" + cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" + cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" + cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" + cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" + cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" + cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" + cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" + cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" + cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" + cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" + cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" + cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" + cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" + cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" + cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" + cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" + cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" + cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" + cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" + cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" + cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" + cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" + cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" + cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" + cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" + cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" + cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" + cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" + cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" + cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" + cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" + cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" +} + +envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) +preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch new file mode 100644 index 000000000000..c66f5ecd008f --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kauth/cmake-install-paths.patch @@ -0,0 +1,17 @@ +Index: kauth-5.18.0/KF5AuthConfig.cmake.in +=================================================================== +--- kauth-5.18.0.orig/KF5AuthConfig.cmake.in ++++ kauth-5.18.0/KF5AuthConfig.cmake.in +@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I + + set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") + set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") +-set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") ++set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") ++set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") ++set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") + + find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") + diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix index 2b000ff3c041..1352d8c5821f 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix @@ -1,4 +1,4 @@ -{ kdeFramework, lib +{ kdeFramework, lib, copyPathsToStore , extra-cmake-modules , kcoreaddons , polkit-qt @@ -9,7 +9,7 @@ kdeFramework { nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ polkit-qt ]; propagatedBuildInputs = [ kcoreaddons ]; - patches = [ ./kauth-policy-install.patch ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); meta = { maintainers = [ lib.maintainers.ttuegel ]; }; diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kauth/series b/pkgs/desktops/kde-5/frameworks-5.19/kauth/series new file mode 100644 index 000000000000..d2689425c387 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kauth/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix new file mode 100644 index 000000000000..843db83a99b2 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/default.nix @@ -0,0 +1,36 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, docbook_xml_dtd_45, kauth +, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels +, kinit, knotifications, kparts, kservice, ktextwidgets +, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui +, networkmanager, qtsvg, qtx11extras, xlibs +}: + +# TODO: debug docbook detection + +kdeFramework { + name = "kdelibs4support"; + outputs = [ "dev" "out" ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + setupHook = ./setup-hook.sh; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcompletion kconfig kded kservice kwidgetsaddons + kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM + ]; + propagatedBuildInputs = [ + kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons + kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio + kiconthemes kitemmodels kinit knotifications kparts ktextwidgets + kunitconversion kwindowsystem + ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXML4_DTD_VERSION=4.5" + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch new file mode 100644 index 000000000000..eabb70254483 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch @@ -0,0 +1,13 @@ +Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +=================================================================== +--- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp ++++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +@@ -292,7 +292,7 @@ static QString relativeInstallPath(const + return QFile::decodeName(ICON_INSTALL_DIR "/"); + } + if (strcmp("include", type) == 0) { +- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); ++ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); + } + break; + case 'l': diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series new file mode 100644 index 000000000000..9b08ab208774 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/series @@ -0,0 +1 @@ +nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh new file mode 100644 index 000000000000..21ac2e83b5da --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kdelibs4support/setup-hook.sh @@ -0,0 +1 @@ +export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix index 138c3fc33b94..f67c19f42395 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kdoctools/default.nix @@ -4,7 +4,6 @@ kdeFramework { name = "kdoctools"; - setupHook = ./setup-hook.sh; nativeBuildInputs = [ extra-cmake-modules ]; buildInputs = [ karchive ]; propagatedBuildInputs = [ ki18n ]; diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch new file mode 100644 index 000000000000..732f7b69c828 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/cmake-install-paths.patch @@ -0,0 +1,13 @@ +Index: kfilemetadata-5.18.0/src/CMakeLists.txt +=================================================================== +--- kfilemetadata-5.18.0.orig/src/CMakeLists.txt ++++ kfilemetadata-5.18.0/src/CMakeLists.txt +@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K + + install(EXPORT KF5FileMetaDataTargets + NAMESPACE KF5:: +- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData ++ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData + FILE KF5FileMetaDataTargets.cmake) + + install(FILES diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix new file mode 100644 index 000000000000..9bb4831cf8da --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/default.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules +, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib +}: + +kdeFramework { + name = "kfilemetadata"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; + propagatedBuildInputs = [ qtbase ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series new file mode 100644 index 000000000000..d2689425c387 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.19/kfilemetadata/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix index 03b7c7c2f51d..3a27d85b9166 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kservice/default.nix @@ -4,11 +4,10 @@ kdeFramework { name = "kservice"; - setupHook = ./setup-hook.sh; - nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + propagatedNativeBuildInputs = [ extra-cmake-modules ]; + nativeBuildInputs = [ kdoctools ]; buildInputs = [ kcrash kdbusaddons ]; propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; - propagatedUserEnvPkgs = [ kcoreaddons ]; patches = [ ./0001-qdiriterator-follow-symlinks.patch ./0002-no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix index 46e3cb37d112..5ade5f63a8d0 100644 --- a/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix +++ b/pkgs/desktops/kde-5/frameworks-5.19/kwallet.nix @@ -1,7 +1,7 @@ { kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets -, kcoreaddons, kdbusaddons, kdoctools, ki18n, kiconthemes, knotifications -, kservice, kwidgetsaddons, kwindowsystem, libgcrypt, makeQtWrapper -}: +, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes +, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt +, makeQtWrapper }: kdeFramework { name = "kwallet"; diff --git a/pkgs/desktops/kde-5/plasma-5.5/default.nix b/pkgs/desktops/kde-5/plasma-5.5/default.nix index c9fcbdd8e6a0..384fa6f6d272 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/default.nix @@ -26,7 +26,7 @@ let name = "${name}-${version}"; inherit src; - setupHook = args.setupHook or ./setup-hook.sh; + outputs = args.outputs or [ "dev" "out" ]; cmakeFlags = (args.cmakeFlags or []) @@ -48,8 +48,11 @@ let breeze-qt4 = callPackage ./breeze-qt4.nix {}; breeze-qt5 = callPackage ./breeze-qt5.nix {}; breeze = - let version = (builtins.parseDrvName breeze-qt5.name).version; - in symlinkJoin "breeze-${version}" [ breeze-gtk breeze-qt4 breeze-qt5 ]; + let + version = (builtins.parseDrvName breeze-qt5.name).version; + in + symlinkJoin "breeze-${version}" + (map (pkg: pkg.out or pkg) [ breeze-gtk breeze-qt4 breeze-qt5 ]); kde-cli-tools = callPackage ./kde-cli-tools.nix {}; kde-gtk-config = callPackage ./kde-gtk-config {}; kdecoration = callPackage ./kdecoration.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix b/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix index 6b41599994d5..ab8867520b38 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/kde-gtk-config/default.nix @@ -22,7 +22,7 @@ plasmaPackage { ]; propagatedBuildInputs = [ ki18n kio ]; cmakeFlags = [ - "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include" - "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include" + "-DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include" + "-DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include" ]; } diff --git a/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix b/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix index 2cfd0df2e1d3..a521a7993628 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/kscreen.nix @@ -23,11 +23,6 @@ plasmaPackage { qtdeclarative qtgraphicaleffects ]; - propagatedUserEnvPkgs = [ - libkscreen # D-Bus service - qtdeclarative # QML import - qtgraphicaleffects # QML import - ]; postInstall = '' wrapQtProgram "$out/bin/kscreen-console" ''; diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix index a73060ad1af1..5f27efc7f24c 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-desktop/default.nix @@ -60,9 +60,6 @@ plasmaPackage rec { qtquickcontrols qtx11extras ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; patches = [ ./0001-qt-5.5-QML-import-paths.patch (substituteAll { diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix index afd8a18bbbd6..7088f45d64e2 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix @@ -17,7 +17,4 @@ plasmaPackage rec { baloo kactivities kdeclarative kfilemetadata ki18n kio plasma-framework ]; - # All propagatedBuildInputs should be present in the profile because - # wrappers cannot be used here. - propagatedUserEnvPkgs = propagatedBuildInputs; } diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix index 2d9364d446eb..01c5c63ce0aa 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/default.nix @@ -11,7 +11,7 @@ , xprop, xrdb, xset, xsetroot, solid, qtquickcontrols }: -plasmaPackage rec { +plasmaPackage { name = "plasma-workspace"; nativeBuildInputs = [ @@ -20,10 +20,11 @@ plasmaPackage rec { makeQtWrapper ]; buildInputs = [ - kcmutils kcrash kdbusaddons kdesu kdewebkit kjsembed knewstuff - knotifyconfig kpackage ktextwidgets kwallet kwayland kxmlrpcclient - libdbusmenu libSM libXcursor networkmanager-qt pam phonon - qtscript wayland + dbus_tools kcmutils kconfig kcrash kdbusaddons kdesu kdewebkit + kinit kjsembed knewstuff knotifyconfig kpackage kservice + ktextwidgets kwallet kwayland kxmlrpcclient libdbusmenu libSM + libXcursor mkfontdir networkmanager-qt pam phonon qtscript qttools + socat wayland xmessage xprop xset xsetroot ]; propagatedBuildInputs = [ baloo kactivities kdeclarative kdelibs4support kglobalaccel @@ -32,13 +33,31 @@ plasmaPackage rec { ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); - inherit bash coreutils gnused gnugrep socat; - inherit kconfig kinit kservice qttools; - inherit dbus_tools mkfontdir xmessage xprop xrdb xset xsetroot; + postPatch = '' - substituteAllInPlace startkde/startkde.cmake + substituteInPlace startkde/startkde.cmake \ + --subst-var-by bash $(type -P bash) \ + --subst-var-by sed $(type -P sed) \ + --subst-var-by grep $(type -P grep) \ + --subst-var-by socat $(type -P socat) \ + --subst-var-by kcheckrunning $(type -P kcheckrunning) \ + --subst-var-by xmessage $(type -P xmessage) \ + --subst-var-by tr $(type -P tr) \ + --subst-var-by qtpaths $(type -P qtpaths) \ + --subst-var-by qdbus $(type -P qdbus) \ + --subst-var-by dbus-launch $(type -P dbus-launch) \ + --subst-var-by mkfontdir $(type -P mkfontdir) \ + --subst-var-by xset $(type -P xset) \ + --subst-var-by xsetroot $(type -P xsetroot) \ + --subst-var-by xprop $(type -P xprop) \ + --subst-var-by start_kdeinit_wrapper "${kinit.out}/lib/libexec/kf5/start_kdeinit_wrapper" \ + --subst-var-by kwrapper5 $(type -P kwrapper5) \ + --subst-var-by kdeinit5_shutdown $(type -P kdeinit5_shutdown) \ + --subst-var-by kbuildsycoca5 $(type -P kbuildsycoca5) \ + --subst-var-by kreadconfig5 $(type -P kreadconfig5) \ + --subst-var out substituteInPlace startkde/kstartupconfig/kstartupconfig.cpp \ - --replace kdostartupconfig5 $out/bin/kdostartupconfig5 + --replace kdostartupconfig5 $out/bin/kdostartupconfig5 ''; postInstall = '' diff --git a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch index 802c92da64d0..eea0ae4c199d 100644 --- a/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch +++ b/pkgs/desktops/kde-5/plasma-5.5/plasma-workspace/startkde.patch @@ -1,10 +1,10 @@ -Index: plasma-workspace-5.5.1/startkde/startkde.cmake +Index: plasma-workspace-5.5.5/startkde/startkde.cmake =================================================================== ---- plasma-workspace-5.5.1.orig/startkde/startkde.cmake -+++ plasma-workspace-5.5.1/startkde/startkde.cmake -@@ -1,8 +1,31 @@ +--- plasma-workspace-5.5.5.orig/startkde/startkde.cmake ++++ plasma-workspace-5.5.5/startkde/startkde.cmake +@@ -1,8 +1,36 @@ -#!/bin/sh -+#!@bash@/bin/bash ++#!@bash@ # # DEFAULT KDE STARTUP SCRIPT ( @PROJECT_VERSION@ ) # @@ -29,13 +29,18 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake +# in Trolltech.conf. A better solution would be to stop +# Qt from doing this wackiness in the first place. +if [ -e $HOME/.config/Trolltech.conf ]; then -+ @gnused@/bin/sed -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf ++ @sed@ -e '/nix\\store\|nix\/store/ d' -i $HOME/.config/Trolltech.conf +fi ++ ++# (NixOS) We run kbuildsycoca5 before starting the user session because things ++# may be missing or moved if they have run nixos-rebuild and it may not be ++# possible for them to start Konsole to run it manually! ++@kbuildsycoca5@ + if test "x$1" = x--failsafe; then KDE_FAILSAFE=1 # General failsafe flag KWIN_COMPOSE=N # Disable KWin's compositing -@@ -17,29 +40,16 @@ trap 'echo GOT SIGHUP' HUP +@@ -17,29 +45,16 @@ trap 'echo GOT SIGHUP' HUP # we have to unset this for Darwin since it will screw up KDE's dynamic-loading unset DYLD_FORCE_FLAT_NAMESPACE @@ -54,13 +59,13 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake - # Check if a KDE session already is running and whether it's possible to connect to X -kcheckrunning -+@out@/bin/kcheckrunning ++@kcheckrunning@ kcheckrunning_result=$? if test $kcheckrunning_result -eq 0 ; then - echo "KDE seems to be already running on this display." - xmessage -geometry 500x100 "KDE seems to be already running on this display." > /dev/null 2>/dev/null + echo "KDE seems to be already running on this display." -+ @xmessage@/bin/xmessage -geometry 500x100 "KDE seems to be already running on this display." ++ @xmessage@ -geometry 500x100 "KDE seems to be already running on this display." exit 1 elif test $kcheckrunning_result -eq 2 ; then echo "\$DISPLAY is not set or cannot connect to the X server." @@ -69,7 +74,7 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake fi # Boot sequence: -@@ -57,13 +67,8 @@ fi +@@ -57,13 +72,8 @@ fi # * Then ksmserver is started which takes control of the rest of the startup sequence # We need to create config folder so we can write startupconfigkeys @@ -80,12 +85,12 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake -fi - -mkdir -p $configDir -+configDir=$(@qttools@/bin/qtpaths --writable-path GenericConfigLocation) ++configDir=$(@qtpaths@ --writable-path GenericConfigLocation) +mkdir -p "$configDir" #This is basically setting defaults so we can use them with kstartupconfig5 cat >$configDir/startupconfigkeys </dev/null 2>/dev/null; then ++if @qdbus@ >/dev/null 2>/dev/null; then + : # ok +else + echo 'startkde: Could not start D-Bus. Can you call qdbus?' 1>&2 + test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" ++ @xmessage@ -geometry 500x100 "Could not start D-Bus. Can you call qdbus?" + exit 1 +fi + @@ -189,26 +194,26 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake ;; None) ;; -@@ -201,8 +194,7 @@ fi +@@ -201,8 +199,7 @@ fi # For anything else (that doesn't set env vars, or that needs a window manager), # better use the Autostart folder. -# TODO: Use GenericConfigLocation once we depend on Qt 5.4 -scriptpath=`qtpaths --paths ConfigLocation | tr ':' '\n' | sed 's,$,/plasma-workspace,g'` -+scriptpath=$(@qttools@/bin/qtpaths --paths GenericConfigLocation | tr ':' '\n' | @gnused@/bin/sed 's,$,/plasma-workspace,g') ++scriptpath=$(@qtpaths@ --paths GenericConfigLocation | tr ':' '\n' | @sed@ 's,$,/plasma-workspace,g') # Add /env/ to the directory to locate the scripts to be sourced for prefix in `echo $scriptpath`; do -@@ -232,7 +224,7 @@ usr_odir=$HOME/.fonts/kde-override +@@ -232,7 +229,7 @@ usr_odir=$HOME/.fonts/kde-override usr_fdir=$HOME/.fonts if test -n "$KDEDIRS"; then - kdedirs_first=`echo "$KDEDIRS"|sed -e 's/:.*//'` -+ kdedirs_first=`echo "$KDEDIRS" | @gnused@/bin/sed -e 's/:.*//'` ++ kdedirs_first=`echo "$KDEDIRS" | @sed@ -e 's/:.*//'` sys_odir=$kdedirs_first/share/fonts/override sys_fdir=$kdedirs_first/share/fonts else -@@ -245,23 +237,13 @@ fi +@@ -245,23 +242,13 @@ fi # add the user's dirs to the font path, as they might simply have been made # read-only by the administrator, for whatever reason. @@ -216,10 +221,10 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake -test -d "$usr_odir" && (mkfontdir "$usr_odir" ; xset +fp "$usr_odir") -test -d "$usr_fdir" && (mkfontdir "$usr_fdir" ; xset fp+ "$usr_fdir") -test -d "$sys_fdir" && xset fp+ "$sys_fdir" -+test -d "$sys_odir" && @xset@/bin/xset +fp "$sys_odir" -+test -d "$usr_odir" && ( @mkfontdir@/bin/mkfontdir "$usr_odir" ; @xset@/bin/xset +fp "$usr_odir" ) -+test -d "$usr_fdir" && ( @mkfontdir@/bin/mkfontdir "$usr_fdir" ; @xset@/bin/xset fp+ "$usr_fdir" ) -+test -d "$sys_fdir" && @xset@/bin/xset fp+ "$sys_fdir" ++test -d "$sys_odir" && @xset@ +fp "$sys_odir" ++test -d "$usr_odir" && ( @mkfontdir@ "$usr_odir" ; @xset@ +fp "$usr_odir" ) ++test -d "$usr_fdir" && ( @mkfontdir@ "$usr_fdir" ; @xset@ fp+ "$usr_fdir" ) ++test -d "$sys_fdir" && @xset@ fp+ "$sys_fdir" # Ask X11 to rebuild its font list. -xset fp rehash @@ -233,11 +238,11 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake -# so don't move this up. -# -xsetroot -cursor_name left_ptr -+@xset@/bin/xset fp rehash ++@xset@ fp rehash # Get Ghostscript to look into user's KDE fonts dir for additional Fontmap if test -n "$GS_LIB" ; then -@@ -274,26 +256,6 @@ fi +@@ -274,26 +261,6 @@ fi echo 'startkde: Starting up...' 1>&2 @@ -264,96 +269,88 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake # Mark that full KDE session is running (e.g. Konqueror preloading works only # with full KDE running). The KDE_FULL_SESSION property can be detected by # any X client connected to the same X session, even if not launched -@@ -318,11 +280,11 @@ fi +@@ -318,11 +285,11 @@ fi # KDE_FULL_SESSION=true export KDE_FULL_SESSION -xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true -+@xprop@/bin/xprop -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true ++@xprop@ -root -f KDE_FULL_SESSION 8t -set KDE_FULL_SESSION true KDE_SESSION_VERSION=5 export KDE_SESSION_VERSION -xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 -+@xprop@/bin/xprop -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 ++@xprop@ -root -f KDE_SESSION_VERSION 32c -set KDE_SESSION_VERSION 5 KDE_SESSION_UID=`id -ru` export KDE_SESSION_UID -@@ -332,11 +294,11 @@ export XDG_CURRENT_DESKTOP +@@ -332,11 +299,11 @@ export XDG_CURRENT_DESKTOP # At this point all the environment is ready, let's send it to kwalletd if running if test -n "$PAM_KWALLET_LOGIN" ; then - env | socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET_LOGIN fi # ...and also to kwalletd5 if test -n "$PAM_KWALLET5_LOGIN" ; then - env | socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN -+ env | @socat@/bin/socat STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN ++ env | @socat@ STDIN UNIX-CONNECT:$PAM_KWALLET5_LOGIN fi # At this point all environment variables are set, let's send it to the DBus session server to update the activation environment -@@ -349,21 +311,26 @@ if test $? -ne 0; then +@@ -349,18 +316,18 @@ if test $? -ne 0; then # Startup error echo 'startkde: Could not sync environment to dbus.' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not sync environment to dbus." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not sync environment to dbus." ++ @xmessage@ -geometry 500x100 "Could not sync environment to dbus." exit 1 fi # We set LD_BIND_NOW to increase the efficiency of kdeinit. # kdeinit unsets this variable before loading applications. -LD_BIND_NOW=true @CMAKE_INSTALL_FULL_LIBEXECDIR_KF5@/start_kdeinit_wrapper --kded +kcminit_startup -+LD_BIND_NOW=true @kinit@/lib/libexec/kf5/start_kdeinit_wrapper --kded +kcminit_startup ++LD_BIND_NOW=true @start_kdeinit_wrapper@ --kded +kcminit_startup if test $? -ne 0; then # Startup error echo 'startkde: Could not start kdeinit5. Check your installation.' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start kdeinit5. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start kdeinit5. Check your installation." exit 1 fi -+# (NixOS) We run kbuildsycoca5 before starting the user session because things -+# may be missing or moved if they have run nixos-rebuild and it may not be -+# possible for them to start Konsole to run it manually! -+@kservice@/bin/kbuildsycoca5 -+ - # finally, give the session control to the session manager - # see kdebase/ksmserver for the description of the rest of the startup sequence - # if the KDEWM environment variable has been set, then it will be used as KDE's @@ -379,27 +346,27 @@ test -n "$KDEWM" && KDEWM="--windowmanag # lock now and do the rest of the KDE startup underneath the locker. KSMSERVEROPTIONS="" test -n "$dl" && KSMSERVEROPTIONS=" --lockscreen" -kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS -+@kinit@/bin/kwrapper5 @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS ++@kwrapper5@ @CMAKE_INSTALL_FULL_BINDIR@/ksmserver $KDEWM $KSMSERVEROPTIONS if test $? -eq 255; then # Startup error echo 'startkde: Could not start ksmserver. Check your installation.' 1>&2 test -n "$ksplash_pid" && kill "$ksplash_pid" 2>/dev/null - xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." -+ @xmessage@/bin/xmessage -geometry 500x100 "Could not start ksmserver. Check your installation." ++ @xmessage@ -geometry 500x100 "Could not start ksmserver. Check your installation." fi -wait_drkonqi=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` -+wait_drkonqi=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Enabled --default true` ++wait_drkonqi=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Enabled --default true` if test x"$wait_drkonqi"x = x"true"x ; then # wait for remaining drkonqi instances with timeout (in seconds) - wait_drkonqi_timeout=`kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` -+ wait_drkonqi_timeout=`@kconfig@/bin/kreadconfig5 --file startkderc --group WaitForDrKonqi --key Timeout --default 900` ++ wait_drkonqi_timeout=`@kreadconfig5@ --file startkderc --group WaitForDrKonqi --key Timeout --default 900` wait_drkonqi_counter=0 - while $qdbus | grep "^[^w]*org.kde.drkonqi" > /dev/null ; do -+ while @qttools@/bin/qdbus | @gnugrep@/bin/grep "^[^w]*org.kde.drkonqi" > /dev/null ; do ++ while @qdbus@ | @grep@ "^[^w]*org.kde.drkonqi" > /dev/null ; do sleep 5 wait_drkonqi_counter=$((wait_drkonqi_counter+5)) if test "$wait_drkonqi_counter" -ge "$wait_drkonqi_timeout" ; then # ask remaining drkonqis to die in a graceful way - $qdbus | grep 'org.kde.drkonqi-' | while read address ; do - $qdbus "$address" "/MainApplication" "quit" -+ @qttools@/bin/qdbus | @gnugrep@/bin/grep 'org.kde.drkonqi-' | while read address ; do -+ @qttools@/bin/qdbus "$address" "/MainApplication" "quit" ++ @qdbus@ | @grep@ 'org.kde.drkonqi-' | while read address ; do ++ @qdbus@ "$address" "/MainApplication" "quit" done break fi @@ -362,14 +359,14 @@ Index: plasma-workspace-5.5.1/startkde/startkde.cmake # Clean up -kdeinit5_shutdown -+@kinit@/bin/kdeinit5_shutdown ++@kdeinit5_shutdown@ unset KDE_FULL_SESSION -xprop -root -remove KDE_FULL_SESSION -+@xprop@/bin/xprop -root -remove KDE_FULL_SESSION ++@xprop@ -root -remove KDE_FULL_SESSION unset KDE_SESSION_VERSION -xprop -root -remove KDE_SESSION_VERSION -+@xprop@/bin/xprop -root -remove KDE_SESSION_VERSION ++@xprop@ -root -remove KDE_SESSION_VERSION unset KDE_SESSION_UID echo 'startkde: Done.' 1>&2 diff --git a/pkgs/desktops/lxde/core/lxmenu-data.nix b/pkgs/desktops/lxde/core/lxmenu-data.nix new file mode 100644 index 000000000000..b75c09d2909d --- /dev/null +++ b/pkgs/desktops/lxde/core/lxmenu-data.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, intltool }: + +stdenv.mkDerivation rec { + name = "lxmenu-data-${version}"; + version = "0.1.5"; + + src = fetchurl { + url = "http://downloads.sourceforge.net/lxde/${name}.tar.xz"; + sha256 = "9fe3218d2ef50b91190162f4f923d6524c364849f87bcda8b4ed8eb59b80bab8"; + }; + + buildInputs = [ intltool ]; + + meta = { + homepage = "http://lxde.org/"; + license = stdenv.lib.licenses.gpl2; + description = "Freedesktop.org desktop menus for LXDE"; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/desktops/xfce/core/exo.nix b/pkgs/desktops/xfce/core/exo.nix index 83610a4e4a65..4d3f09105433 100644 --- a/pkgs/desktops/xfce/core/exo.nix +++ b/pkgs/desktops/xfce/core/exo.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchurl, pkgconfig, intltool, URI, glib, gtk, libxfce4ui, libxfce4util }: +{ stdenv, fetchurl, pkgconfig, intltool, URI, glib, gtk, libxfce4ui, libxfce4util +, hicolor_icon_theme }: stdenv.mkDerivation rec { p_name = "exo"; @@ -11,9 +12,11 @@ stdenv.mkDerivation rec { }; name = "${p_name}-${ver_maj}.${ver_min}"; - buildInputs = [ pkgconfig intltool URI glib gtk libxfce4ui libxfce4util ]; + outputs = [ "dev" "out" "docdev" ]; + # lib/xfce4/exo-1/exo-compose-mail-1 is a perl script :-/ - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; + nativeBuildInputs = [ pkgconfig intltool ]; + buildInputs = [ URI glib gtk libxfce4ui libxfce4util hicolor_icon_theme ]; meta = with stdenv.lib; { homepage = "http://www.xfce.org/projects/${p_name}"; diff --git a/pkgs/desktops/xfce/core/garcon.nix b/pkgs/desktops/xfce/core/garcon.nix index 8f8cfff76cd4..4fffc9e1ec9f 100644 --- a/pkgs/desktops/xfce/core/garcon.nix +++ b/pkgs/desktops/xfce/core/garcon.nix @@ -1,22 +1,26 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, libxfce4util, libxfce4ui, gtk }: - -stdenv.mkDerivation rec { +let p_name = "garcon"; ver_maj = "0.4"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "0wm9pjbwq53s3n3nwvsyf0q8lbmhiy2ln3bn5ncihr9vf5cwhzbq"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; + + outputs = [ "dev" "out" ]; buildInputs = [ pkgconfig intltool glib libxfce4util gtk libxfce4ui ]; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/; description = "Xfce menu support library"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2Plus; + platforms = platforms.linux; }; } + diff --git a/pkgs/desktops/xfce/core/libxfce4ui.nix b/pkgs/desktops/xfce/core/libxfce4ui.nix index 2cb20febcb94..6bdeb50f8399 100644 --- a/pkgs/desktops/xfce/core/libxfce4ui.nix +++ b/pkgs/desktops/xfce/core/libxfce4ui.nix @@ -1,40 +1,38 @@ { stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf -, libglade, libstartup_notification +, libglade, libstartup_notification, hicolor_icon_theme , withGtk3 ? false, gtk3 }: - -with { inherit (stdenv.lib) optional; }; - -stdenv.mkDerivation rec { +let p_name = "libxfce4ui"; ver_maj = "4.12"; ver_min = "1"; + inherit (stdenv.lib) optional; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "3d619811bfbe7478bb984c16543d980cadd08586365a7bc25e59e3ca6384ff43"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; - #TODO: gladeui - # Install into our own prefix instead. - configureFlags = [ - "--with-libglade-module-path=$out/lib/libglade/2.0" - ] ++ optional withGtk3 "--enable-gtk3"; + outputs = [ "dev" "out" "docdev" ]; buildInputs = [ pkgconfig intltool gtk libxfce4util xfconf libglade - libstartup_notification + libstartup_notification hicolor_icon_theme ] ++ optional withGtk3 gtk3; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; + #TODO: glade? + configureFlags = optional withGtk3 "--enable-gtk3"; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/; description = "Basic GUI library for Xfce"; - license = stdenv.lib.licenses.lgpl2Plus; - platforms = stdenv.lib.platforms.linux; + license = licenses.lgpl2Plus; + platforms = platforms.linux; }; } + diff --git a/pkgs/desktops/xfce/core/libxfce4util.nix b/pkgs/desktops/xfce/core/libxfce4util.nix index 6893d7cfb20b..cab904f55107 100644 --- a/pkgs/desktops/xfce/core/libxfce4util.nix +++ b/pkgs/desktops/xfce/core/libxfce4util.nix @@ -1,15 +1,18 @@ { stdenv, fetchurl, pkgconfig, glib, intltool }: - -stdenv.mkDerivation rec { +let p_name = "libxfce4util"; ver_maj = "4.12"; ver_min = "1"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "07c8r3xwx5is298zk77m3r784gmr5y4mh8bbca5zdjqk5vxdwsw7"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; + + outputs = [ "dev" "out" "docdev" ]; buildInputs = [ pkgconfig glib intltool ]; @@ -20,3 +23,4 @@ stdenv.mkDerivation rec { platforms = stdenv.lib.platforms.linux; }; } + diff --git a/pkgs/desktops/xfce/core/libxfcegui4.nix b/pkgs/desktops/xfce/core/libxfcegui4.nix index 32a320c779bf..d9e5cce25e85 100644 --- a/pkgs/desktops/xfce/core/libxfcegui4.nix +++ b/pkgs/desktops/xfce/core/libxfcegui4.nix @@ -1,31 +1,32 @@ { stdenv, fetchurl, pkgconfig, intltool, gtk -, libxfce4util, xfconf, libglade, libstartup_notification }: - -stdenv.mkDerivation rec { +, libxfce4util, xfconf, libglade, libstartup_notification, hicolor_icon_theme }: +let p_name = "libxfcegui4"; ver_maj = "4.10"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "0cs5im0ib0cmr1lhr5765yliqjfyxvk4kwy8h1l8bn3mj6bzk0ib"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; + + outputs = [ "dev" "out" "docdev" ]; #TODO: gladeui # By default, libxfcegui4 tries to install into libglade's prefix. # Install into our own prefix instead. - preConfigure = - '' - configureFlags="--with-libglade-module-path=$out/lib/libglade/2.0" - ''; + configureFlags = [ + "--with-libglade-module-path=$(out)/lib/libglade/2.0" + ]; #NOTE: missing keyboard library support is OK according to the mailing-list buildInputs = [ pkgconfig intltool gtk libxfce4util xfconf libglade - libstartup_notification + libstartup_notification hicolor_icon_theme ]; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; meta = { homepage = http://www.xfce.org/; diff --git a/pkgs/desktops/xfce/core/tumbler.nix b/pkgs/desktops/xfce/core/tumbler.nix index 1fc895ea412a..132003d3fc92 100644 --- a/pkgs/desktops/xfce/core/tumbler.nix +++ b/pkgs/desktops/xfce/core/tumbler.nix @@ -1,19 +1,24 @@ -{ stdenv, fetchurl, pkgconfig, intltool, dbus_glib, gdk_pixbuf, curl, freetype, -libgsf, poppler, bzip2 }: - -stdenv.mkDerivation rec { +{ stdenv, fetchurl, pkgconfig, intltool, dbus_glib, gdk_pixbuf, curl, freetype +, libgsf, poppler, bzip2 }: +let p_name = "tumbler"; ver_maj = "0.1"; ver_min = "31"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "0wvip28gm2w061hn84zp2q4dv947ihylrppahn4cjspzff935zfh"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; - buildInputs = [ pkgconfig intltool dbus_glib gdk_pixbuf curl freetype - poppler libgsf bzip2]; + outputs = [ "dev" "out" "docdev" ]; + + buildInputs = [ + pkgconfig intltool dbus_glib gdk_pixbuf curl freetype + poppler libgsf bzip2 + ]; configureFlags = [ # Needs gst-tag @@ -21,15 +26,16 @@ stdenv.mkDerivation rec { # Needs libffmpegthumbnailer # "--enable-ffmpeg-thumbnailer" - + "--enable-odf-thumbnailer" "--enable-poppler-thumbnailer" ]; - meta = { + meta = with stdenv.lib; { homepage = http://git.xfce.org/xfce/tumbler/; description = "A D-Bus thumbnailer service"; - platforms = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.gpl2; + platforms = platforms.linux; + license = licenses.gpl2; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-appfinder.nix b/pkgs/desktops/xfce/core/xfce4-appfinder.nix index 25bd04f9ec40..d39708dd523f 100644 --- a/pkgs/desktops/xfce/core/xfce4-appfinder.nix +++ b/pkgs/desktops/xfce/core/xfce4-appfinder.nix @@ -1,27 +1,29 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, gtk, libxfce4util , libxfce4ui, garcon, xfconf }: - -stdenv.mkDerivation rec { +let p_name = "xfce4-appfinder"; ver_maj = "4.12"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "0ry5hin8xhgnkmm9vs7jq8blk1cnbyr0s18nm1j6nsm7360abm1a"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; buildInputs = [ pkgconfig intltool glib gtk libxfce4util libxfce4ui garcon xfconf ]; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://docs.xfce.org/xfce/xfce4-appfinder/; description = "Xfce application finder, a tool to locate and launch programs on your system"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-dev-tools.nix b/pkgs/desktops/xfce/core/xfce4-dev-tools.nix index 5541011a5019..da7369decc46 100644 --- a/pkgs/desktops/xfce/core/xfce4-dev-tools.nix +++ b/pkgs/desktops/xfce/core/xfce4-dev-tools.nix @@ -1,15 +1,16 @@ { stdenv, fetchurl, pkgconfig, glib, autoconf, automake, libtool, intltool }: - -stdenv.mkDerivation rec { +let p_name = "xfce4-dev-tools"; ver_maj = "4.12"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "1jxmyp80pwbfgmqmwpjxs7z5dmm6pyf3qj62z20xy44izraadqz2"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; buildInputs = [ pkgconfig glib ]; @@ -22,3 +23,4 @@ stdenv.mkDerivation rec { license = stdenv.lib.licenses.gpl2Plus; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-panel.nix b/pkgs/desktops/xfce/core/xfce4-panel.nix index 0f9066876c66..816bbc05735f 100644 --- a/pkgs/desktops/xfce/core/xfce4-panel.nix +++ b/pkgs/desktops/xfce/core/xfce4-panel.nix @@ -1,49 +1,50 @@ { stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui , libxfce4ui_gtk3, libwnck, exo, garcon, xfconf, libstartup_notification -, makeWrapper, xfce4mixer +, makeWrapper, xfce4mixer, hicolor_icon_theme , withGtk3 ? false, gtk3 }: - -with { inherit (stdenv.lib) optional; }; - -stdenv.mkDerivation rec { +let + inherit (stdenv.lib) optional; p_name = "xfce4-panel"; ver_maj = "4.12"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "1c4p3ckghvsad1sj5v8wmar5mh9cbhail9mmhad2f9pwwb10z4ih"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; patches = [ ./xfce4-panel-datadir.patch ]; patchFlags = "-p1"; - configureFlags = optional withGtk3 "--enable-gtk3"; + outputs = [ "dev" "out" "docdev" ]; buildInputs = [ pkgconfig intltool gtk libxfce4util exo libwnck - garcon xfconf libstartup_notification makeWrapper + garcon xfconf libstartup_notification makeWrapper hicolor_icon_theme ] ++ xfce4mixer.gst_plugins ++ optional withGtk3 gtk3; propagatedBuildInputs = [ (if withGtk3 then libxfce4ui_gtk3 else libxfce4ui) ]; + configureFlags = optional withGtk3 "--enable-gtk3"; + postInstall = '' wrapProgram "$out/bin/xfce4-panel" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" ''; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; - enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/projects/xfce4-panel; description = "Xfce panel"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-power-manager.nix b/pkgs/desktops/xfce/core/xfce4-power-manager.nix index 9a3116463c63..7695f906d317 100644 --- a/pkgs/desktops/xfce/core/xfce4-power-manager.nix +++ b/pkgs/desktops/xfce/core/xfce4-power-manager.nix @@ -1,29 +1,29 @@ { stdenv, fetchurl, pkgconfig, intltool, gtk, dbus_glib, upower, xfconf -, libxfce4ui, libxfce4util, libnotify, xfce4panel }: - -stdenv.mkDerivation rec { +, libxfce4ui, libxfce4util, libnotify, xfce4panel, hicolor_icon_theme }: +let p_name = "xfce4-power-manager"; ver_maj = "1.4"; ver_min = "4"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "01rvqy1cif4s8lkidb7hhmsz7d9f2fwcwvc51xycaj3qgsmch3n5"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; - buildInputs = [ pkgconfig intltool gtk dbus_glib upower xfconf libxfce4ui libxfce4util - libnotify xfce4panel + libnotify xfce4panel hicolor_icon_theme ]; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; - meta = { + meta = with stdenv.lib; { homepage = http://goodies.xfce.org/projects/applications/xfce4-power-manager; description = "A power manager for the Xfce Desktop Environment"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-session.nix b/pkgs/desktops/xfce/core/xfce4-session.nix index 7599826e8f02..a0568b0dd395 100644 --- a/pkgs/desktops/xfce/core/xfce4-session.nix +++ b/pkgs/desktops/xfce/core/xfce4-session.nix @@ -1,25 +1,26 @@ { stdenv, fetchurl, fetchpatch, pkgconfig, intltool, gtk, polkit , libxfce4util, libxfce4ui, xfce4panel, libwnck, dbus_glib, xfconf, libglade, xorg +, hicolor_icon_theme }: -#TODO: gnome stuff: gconf (assistive?), keyring - -stdenv.mkDerivation rec { +let p_name = "xfce4-session"; ver_maj = "4.12"; ver_min = "1"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "97d7f2a2d0af7f3623b68d1f04091e02913b28f9555dab8b0d26c8a1299d08fd"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; buildInputs = [ pkgconfig intltool gtk libxfce4util libxfce4ui libwnck dbus_glib - xfconf xfce4panel libglade xorg.iceauth - polkit - ]; + xfconf xfce4panel libglade xorg.iceauth xorg.libSM + polkit hicolor_icon_theme + ]; #TODO: upower-glib, gconf (assistive?), gnome keyring preBuild = '' sed '/^PATH=/d' -i scripts/xflock4 @@ -28,13 +29,12 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-xsession-prefix=$(out)" ]; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; - - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/projects/xfce4-session; description = "Session manager for Xfce"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfce4-settings.nix b/pkgs/desktops/xfce/core/xfce4-settings.nix index 4c2de64561d5..f6f7c4c3a54b 100644 --- a/pkgs/desktops/xfce/core/xfce4-settings.nix +++ b/pkgs/desktops/xfce/core/xfce4-settings.nix @@ -1,33 +1,33 @@ { stdenv, fetchurl, pkgconfig, intltool, exo, gtk, libxfce4util, libxfce4ui , libglade, xfconf, xorg, libwnck, libnotify, libxklavier, garcon, upower }: - -#TODO: optional packages -stdenv.mkDerivation rec { +let p_name = "xfce4-settings"; ver_maj = "4.12"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "108za1cmjslwzkdl76x9kwxkq8z734kg9nz8rxk057f10pqwxgh4"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; - patches = [ ./xfce4-settings-default-icon-theme.patch ]; buildInputs = [ pkgconfig intltool exo gtk libxfce4util libxfce4ui libglade upower xfconf xorg.libXi xorg.libXcursor libwnck libnotify libxklavier garcon - ]; + ]; #TODO: optional packages - configureFlags = "--enable-pluggable-dialogs --enable-sound-settings"; + configureFlags = [ "--enable-pluggable-dialogs" "--enable-sound-settings" ]; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/projects/xfce4-settings; description = "Settings manager for Xfce"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfconf.nix b/pkgs/desktops/xfce/core/xfconf.nix index f12f96895cd9..13902fa4428c 100644 --- a/pkgs/desktops/xfce/core/xfconf.nix +++ b/pkgs/desktops/xfce/core/xfconf.nix @@ -1,24 +1,28 @@ { stdenv, fetchurl, pkgconfig, intltool, glib, libxfce4util, dbus_glib }: - -stdenv.mkDerivation rec { +let p_name = "xfconf"; ver_maj = "4.12"; ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "0mmi0g30aln3x98y5p507g17pipq0dj0bwypshan8cq5hkmfl44r"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; + + outputs = [ "dev" "out" "docdev" ]; #TODO: no perl bingings yet (ExtUtils::Depends, ExtUtils::PkgConfig, Glib) buildInputs = [ pkgconfig intltool glib libxfce4util ]; propagatedBuildInputs = [ dbus_glib ]; - meta = { + meta = with stdenv.lib; { homepage = http://docs.xfce.org/xfce/xfconf/start; description = "Simple client-server configuration storage and query system for Xfce"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2; + platforms = platforms.linux; }; } + diff --git a/pkgs/desktops/xfce/core/xfdesktop.nix b/pkgs/desktops/xfce/core/xfdesktop.nix index e5d04879008e..8802862eddde 100644 --- a/pkgs/desktops/xfce/core/xfdesktop.nix +++ b/pkgs/desktops/xfce/core/xfdesktop.nix @@ -1,30 +1,32 @@ { stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui -, libwnck, xfconf, libglade, xfce4panel, thunar, exo, garcon, libnotify }: - -stdenv.mkDerivation rec { +, libwnck, xfconf, libglade, xfce4panel, thunar, exo, garcon, libnotify +, hicolor_icon_theme }: +let p_name = "xfdesktop"; ver_maj = "4.12"; ver_min = "3"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "a8a8d93744d842ca6ac1f9bd2c8789ee178937bca7e170e5239cbdbef30520ac"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; buildInputs = [ pkgconfig intltool gtk libxfce4util libxfce4ui libwnck xfconf - libglade xfce4panel thunar exo garcon libnotify + libglade xfce4panel thunar exo garcon libnotify hicolor_icon_theme ]; - preFixup = "rm $out/share/icons/hicolor/icon-theme.cache"; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/projects/xfdesktop; description = "Xfce desktop manager"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/desktops/xfce/core/xfwm4.nix b/pkgs/desktops/xfce/core/xfwm4.nix index dd18b1355f79..d861e5f2d557 100644 --- a/pkgs/desktops/xfce/core/xfwm4.nix +++ b/pkgs/desktops/xfce/core/xfwm4.nix @@ -1,16 +1,17 @@ { stdenv, fetchurl, pkgconfig, gtk, intltool, libglade, libxfce4util , libxfce4ui, xfconf, libwnck, libstartup_notification, xorg }: - -stdenv.mkDerivation rec { +let p_name = "xfwm4"; ver_maj = "4.12"; ver_min = "3"; +in +stdenv.mkDerivation rec { + name = "${p_name}-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2"; sha256 = "f4a988fbc4e0df7e8583c781d271559e56fd28696092f94ae052e9e6edb09eac"; }; - name = "${p_name}-${ver_maj}.${ver_min}"; buildInputs = [ pkgconfig intltool gtk libglade libxfce4util libxfce4ui xfconf @@ -20,11 +21,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://www.xfce.org/projects/xfwm4; description = "Window manager for Xfce"; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.eelco ]; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.eelco ]; }; } + diff --git a/pkgs/development/compilers/abc/default.nix b/pkgs/development/compilers/abc/default.nix index 1a71b808827e..1340e8b5c1a0 100644 --- a/pkgs/development/compilers/abc/default.nix +++ b/pkgs/development/compilers/abc/default.nix @@ -1,23 +1,6 @@ -{stdenv, fetchurl, javaCup, jre, apacheAnt, patches} : - -let { - body = - stdenv.mkDerivation { - name = "abc-1.2.0"; - builder = ./builder.sh; - - src = fetchurl { - url = http://abc.comlab.ox.ac.uk/dists/1.2.0/files/abc-1.2.0-src.tar.gz; - md5 = "aef9e8eac860f904f2a841e18770dc47"; - }; - - inherit apacheAnt polyglot soot javaCup xact jasmin jre javabdd paddle jedd patches; - - meta = { - description = "The AspectBench Compiler for AspectJ"; - }; - }; +{stdenv, fetchurl, javaCup, jre, apacheAnt}: +let soot = import ./soot { inherit stdenv fetchurl apacheAnt polyglot jasmin; @@ -76,4 +59,21 @@ let { md5 = "9810ad8762101ea691a895f0a6b7a5c3"; }; }; +in + +stdenv.mkDerivation { + name = "abc-1.2.0"; + builder = ./builder.sh; + + src = fetchurl { + url = http://abc.comlab.ox.ac.uk/dists/1.2.0/files/abc-1.2.0-src.tar.gz; + md5 = "aef9e8eac860f904f2a841e18770dc47"; + }; + + inherit apacheAnt polyglot soot javaCup xact jasmin jre javabdd paddle jedd; + patches = []; + + meta = { + description = "The AspectBench Compiler for AspectJ"; + }; } diff --git a/pkgs/development/compilers/cudatoolkit/default.nix b/pkgs/development/compilers/cudatoolkit/default.nix index 0ab3f52f2bff..f13826ddb8c0 100644 --- a/pkgs/development/compilers/cudatoolkit/default.nix +++ b/pkgs/development/compilers/cudatoolkit/default.nix @@ -65,6 +65,9 @@ let if [ -d "$out"/cuda-samples ]; then mv "$out"/cuda-samples "$out"/samples fi + + # Change the #error on GCC > 4.9 to a #warning. + sed -i $out/include/host_config.h -e 's/#error\(.*unsupported GNU version\)/#warning\1/' ''; meta = { diff --git a/pkgs/development/compilers/gambit/default.nix b/pkgs/development/compilers/gambit/default.nix index cc8c80653ba2..99a4d6fc4d1f 100644 --- a/pkgs/development/compilers/gambit/default.nix +++ b/pkgs/development/compilers/gambit/default.nix @@ -2,12 +2,12 @@ stdenv.mkDerivation rec { name = "gambit-${version}"; - version = "4.7.3"; - devver = "4_7_3"; + version = "4.8.5"; + devver = "4_8_5"; src = fetchurl { - url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.7/source/gambc-v${devver}-devel.tgz"; - sha256 = "12jbr6bc0zmc7vw07a9pliadbvqgwkpmw6cj8awz73clv1j7pxha"; + url = "http://www.iro.umontreal.ca/~gambit/download/gambit/v4.8/source/gambit-v${devver}-devel.tgz"; + sha256 = "02b5bm06k2qr0lvdwwsl0ygxs7n8410rrkq95picn4s02kxszqnq"; }; configureFlags = [ "--enable-shared" "--enable-single-host" ]; diff --git a/pkgs/development/compilers/gcc-arm-embedded/default.nix b/pkgs/development/compilers/gcc-arm-embedded/default.nix index b6f6ac51ba2a..33f51270f43e 100644 --- a/pkgs/development/compilers/gcc-arm-embedded/default.nix +++ b/pkgs/development/compilers/gcc-arm-embedded/default.nix @@ -30,8 +30,8 @@ stdenv.mkDerivation { for f in $(find $out); do if [ -f "$f" ] && patchelf "$f" 2> /dev/null; then - patchelf --set-interpreter ${glibc}/lib/ld-linux.so.2 \ - --set-rpath $out/lib:${gcc}/lib:${ncurses}/lib \ + patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ + --set-rpath $out/lib:${gcc.lib or gcc}/lib:${ncurses.out}/lib \ "$f" || true fi done diff --git a/pkgs/development/compilers/gcc/4.6/builder.sh b/pkgs/development/compilers/gcc/4.6/builder.sh index af2e97b1e4e5..af36ec33b70a 100644 --- a/pkgs/development/compilers/gcc/4.6/builder.sh +++ b/pkgs/development/compilers/gcc/4.6/builder.sh @@ -8,9 +8,10 @@ mkdir $NIX_FIXINC_DUMMY if test "$staticCompiler" = "1"; then EXTRA_LDFLAGS="-static" else - EXTRA_LDFLAGS="" + EXTRA_LDFLAGS="-Wl,-rpath,$lib/lib" fi + # GCC interprets empty paths as ".", which we don't want. if test -z "$CPATH"; then unset CPATH; fi if test -z "$LIBRARY_PATH"; then unset LIBRARY_PATH; fi @@ -29,7 +30,7 @@ if test "$noSysDirs" = "1"; then # Use *real* header files, otherwise a limits.h is generated # that does not include Glibc's limits.h (notably missing # SSIZE_MAX, which breaks the build). - export NIX_FIXINC_DUMMY=$(cat $NIX_CC/nix-support/orig-libc)/include + export NIX_FIXINC_DUMMY=$libc_dev/include # The path to the Glibc binaries such as `crti.o'. glibc_libdir="$(cat $NIX_CC/nix-support/orig-libc)/lib" @@ -50,10 +51,10 @@ if test "$noSysDirs" = "1"; then # bootstrap compiler are optimized and (optionally) contain # debugging information (info "(gccinstall) Building"). if test -n "$dontStrip"; then - extraFlags="-O2 -g $extraFlags" + extraFlags="-O2 -g $extraFlags" else - # Don't pass `-g' at all; this saves space while building. - extraFlags="-O2 $extraFlags" + # Don't pass `-g' at all; this saves space while building. + extraFlags="-O2 $extraFlags" fi EXTRA_FLAGS="$extraFlags" @@ -170,9 +171,8 @@ preConfigure() { # Patch the configure script so it finds glibc headers. It's # important for example in order not to get libssp built, # because its functionality is in glibc already. - glibc_headers="$(cat $NIX_CC/nix-support/orig-libc)/include" sed -i \ - -e "s,glibc_header_dir=/usr/include,glibc_header_dir=$glibc_headers", \ + -e "s,glibc_header_dir=/usr/include,glibc_header_dir=$libc_dev/include", \ gcc/configure fi @@ -206,6 +206,14 @@ preInstall() { postInstall() { + # Move runtime libraries to $lib. + mkdir -p $lib/lib + ln -s lib $lib/lib64 + mv -v $out/lib/lib*.so $out/lib/lib*.so.*[0-9] $out/lib/*.la $lib/lib/ + for i in $lib/lib/*.la; do + substituteInPlace $i --replace $out $lib + done + # Remove precompiled headers for now. They are very big and # probably not very useful yet. find $out/include -name "*.gch" -exec rm -rf {} \; -prune @@ -217,6 +225,7 @@ postInstall() { # More dependencies with the previous gcc or some libs (gccbug stores the build command line) rm -rf $out/bin/gccbug + # Take out the bootstrap-tools from the rpath, as it's not needed at all having $out for i in $out/libexec/gcc/*/*/*; do if PREV_RPATH=`patchelf --print-rpath $i`; then @@ -225,7 +234,7 @@ postInstall() { done # Get rid of some "fixed" header files - rm -rf $out/lib/gcc/*/*/include/root + rm -rfv $out/lib/gcc/*/*/include-fixed/{root,linux} # Replace hard links for i686-pc-linux-gnu-gcc etc. with symlinks. for i in $out/bin/*-gcc*; do diff --git a/pkgs/development/compilers/gcc/4.6/default.nix b/pkgs/development/compilers/gcc/4.6/default.nix index b3caad11b716..bc968d1f66e3 100644 --- a/pkgs/development/compilers/gcc/4.6/default.nix +++ b/pkgs/development/compilers/gcc/4.6/default.nix @@ -170,7 +170,7 @@ let version = "4.6.4"; "-stage-final"; crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; - bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; + bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; in @@ -182,13 +182,19 @@ stdenv.mkDerivation ({ builder = ./builder.sh; - src = (import ./sources.nix) { + srcs = (import ./sources.nix) { inherit fetchurl optional version; inherit langC langCC langFortran langJava langAda langGo; }; + outputs = [ "out" "lib" ]; + + setOutputFlags = false; + inherit patches enableMultilib; + libc_dev = stdenv.cc.libc_dev; + postPatch = if (stdenv.isGNU || (libcCross != null # e.g., building `gcc.crossDrv' diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix index fd80f4ec8c5f..09e3751580c5 100644 --- a/pkgs/development/compilers/gcc/4.8/default.nix +++ b/pkgs/development/compilers/gcc/4.8/default.nix @@ -197,7 +197,7 @@ let version = "4.8.5"; stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final"; crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; - bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; + bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; in @@ -209,8 +209,6 @@ stdenv.mkDerivation ({ builder = ../builder.sh; - outputs = [ "out" "info" ]; - src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; sha256 = "08yggr18v373a1ihj0rg2vd6psnic42b518xcgp3r9k81xz1xyr2"; @@ -218,6 +216,12 @@ stdenv.mkDerivation ({ inherit patches; + outputs = [ "out" "lib" "doc" ]; + setOutputFlags = false; + NIX_NO_SELF_RPATH = true; + + libc_dev = stdenv.cc.libc_dev; + postPatch = if (stdenv.isGNU || (libcCross != null # e.g., building `gcc.crossDrv' @@ -358,7 +362,7 @@ stdenv.mkDerivation ({ ) } ${if (stdenv ? glibc && cross == null) - then " --with-native-system-header-dir=${stdenv.glibc}/include" + then " --with-native-system-header-dir=${stdenv.glibc.dev}/include" else ""} ${if langAda then " --enable-libada" else ""} ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} diff --git a/pkgs/development/compilers/gcc/4.9/default.nix b/pkgs/development/compilers/gcc/4.9/default.nix index 9e4823966cf3..d478196af518 100644 --- a/pkgs/development/compilers/gcc/4.9/default.nix +++ b/pkgs/development/compilers/gcc/4.9/default.nix @@ -199,7 +199,7 @@ let version = "4.9.3"; stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final"; crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; - bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; + bootstrap = cross == null; in @@ -211,8 +211,6 @@ stdenv.mkDerivation ({ builder = ../builder.sh; - outputs = [ "out" "info" ]; - src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; sha256 = "0zmnm00d2a1hsd41g34bhvxzvxisa2l584q3p447bd91lfjv4ci3"; @@ -220,6 +218,12 @@ stdenv.mkDerivation ({ inherit patches; + outputs = [ "out" "lib" "man" "info" ]; + setOutputFlags = false; + NIX_NO_SELF_RPATH = true; + + libc_dev = stdenv.cc.libc_dev; + postPatch = if (stdenv.isGNU || (libcCross != null # e.g., building `gcc.crossDrv' @@ -360,7 +364,7 @@ stdenv.mkDerivation ({ ) } ${if (stdenv ? glibc && cross == null) - then " --with-native-system-header-dir=${stdenv.glibc}/include" + then " --with-native-system-header-dir=${stdenv.glibc.dev}/include" else ""} ${if langAda then " --enable-libada" else ""} ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} diff --git a/pkgs/development/compilers/gcc/5/default.nix b/pkgs/development/compilers/gcc/5/default.nix index 3b105143c0bf..20c60eac3097 100644 --- a/pkgs/development/compilers/gcc/5/default.nix +++ b/pkgs/development/compilers/gcc/5/default.nix @@ -34,6 +34,7 @@ , stripped ? true , gnused ? null , binutils ? null +, cloog # unused; just for compat with gcc4, as we override the parameter on some places }: assert langJava -> zip != null && unzip != null @@ -197,7 +198,7 @@ let version = "5.3.0"; stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final"; crossNameAddon = if cross != null then "-${cross.config}" + stageNameAddon else ""; - bootstrap = cross == null && !stdenv.isArm && !stdenv.isMips; + bootstrap = cross == null; in @@ -209,8 +210,6 @@ stdenv.mkDerivation ({ builder = ../builder.sh; - outputs = [ "out" "info" ]; - src = fetchurl { url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.bz2"; sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq"; @@ -218,6 +217,12 @@ stdenv.mkDerivation ({ inherit patches; + outputs = [ "out" "lib" "man" "info" ]; + setOutputFlags = false; + NIX_NO_SELF_RPATH = true; + + libc_dev = stdenv.cc.libc_dev; + postPatch = if (stdenv.isGNU || (libcCross != null # e.g., building `gcc.crossDrv' @@ -358,7 +363,7 @@ stdenv.mkDerivation ({ ) } ${if (stdenv ? glibc && cross == null) - then " --with-native-system-header-dir=${stdenv.glibc}/include" + then " --with-native-system-header-dir=${stdenv.glibc.dev}/include" else ""} ${if langAda then " --enable-libada" else ""} ${if cross == null && stdenv.isi686 then "--with-arch=i686" else ""} diff --git a/pkgs/development/compilers/gcc/builder.sh b/pkgs/development/compilers/gcc/builder.sh index 6d9e93138737..3190c5f5739f 100644 --- a/pkgs/development/compilers/gcc/builder.sh +++ b/pkgs/development/compilers/gcc/builder.sh @@ -8,9 +8,10 @@ mkdir $NIX_FIXINC_DUMMY if test "$staticCompiler" = "1"; then EXTRA_LDFLAGS="-static" else - EXTRA_LDFLAGS="" + EXTRA_LDFLAGS="-Wl,-rpath,$lib/lib" fi + # GCC interprets empty paths as ".", which we don't want. if test -z "$CPATH"; then unset CPATH; fi if test -z "$LIBRARY_PATH"; then unset LIBRARY_PATH; fi @@ -29,7 +30,7 @@ if test "$noSysDirs" = "1"; then # Use *real* header files, otherwise a limits.h is generated # that does not include Glibc's limits.h (notably missing # SSIZE_MAX, which breaks the build). - export NIX_FIXINC_DUMMY=$(cat $NIX_CC/nix-support/orig-libc)/include + export NIX_FIXINC_DUMMY=$libc_dev/include # The path to the Glibc binaries such as `crti.o'. glibc_libdir="$(cat $NIX_CC/nix-support/orig-libc)/lib" @@ -171,9 +172,8 @@ preConfigure() { # Patch the configure script so it finds glibc headers. It's # important for example in order not to get libssp built, # because its functionality is in glibc already. - glibc_headers="$(cat $NIX_CC/nix-support/orig-libc)/include" sed -i \ - -e "s,glibc_header_dir=/usr/include,glibc_header_dir=$glibc_headers", \ + -e "s,glibc_header_dir=/usr/include,glibc_header_dir=$libc_dev/include", \ gcc/configure fi @@ -210,9 +210,15 @@ preInstall() { postInstall() { - # Remove precompiled headers for now. They are very big and - # probably not very useful yet. - find $out/include -name "*.gch" -exec rm -rf {} \; -prune + # Move runtime libraries to $lib. + moveToOutput "lib/lib*.so*" "$lib" + moveToOutput "lib/lib*.la" "$lib" + ln -s lib "$lib/lib64" # for *.la + moveToOutput "share/gcc-*/python" "$lib" + + for i in "$lib"/lib/*.{la,py}; do + substituteInPlace "$i" --replace "$out" "$lib" + done # Remove `fixincl' to prevent a retained dependency on the # previous gcc. @@ -221,15 +227,23 @@ postInstall() { # More dependencies with the previous gcc or some libs (gccbug stores the build command line) rm -rf $out/bin/gccbug + # Take out the bootstrap-tools from the rpath, as it's not needed at all having $out - for i in $out/libexec/gcc/*/*/*; do - if PREV_RPATH=`patchelf --print-rpath $i`; then - patchelf --set-rpath `echo $PREV_RPATH | sed 's,:[^:]*bootstrap-tools/lib,,'` $i - fi + for i in $(find "$out"/libexec/gcc/*/*/* -type f -a \! -name '*.la'); do + PREV_RPATH=`patchelf --print-rpath "$i"` + NEW_RPATH=`echo "$PREV_RPATH" | sed 's,:[^:]*bootstrap-tools/lib,,g'` + patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK + done + + # For some reason the libs retain RPATH to $out + for i in "$lib"/lib/{libtsan,libasan,libubsan}.so.*.*.*; do + PREV_RPATH=`patchelf --print-rpath "$i"` + NEW_RPATH=`echo "$PREV_RPATH" | sed "s,:${out}[^:]*,,g"` + patchelf --set-rpath "$NEW_RPATH" "$i" && echo OK done # Get rid of some "fixed" header files - rm -rf $out/lib/gcc/*/*/include/root + rm -rfv $out/lib/gcc/*/*/include-fixed/{root,linux} # Replace hard links for i686-pc-linux-gnu-gcc etc. with symlinks. for i in $out/bin/*-gcc*; do @@ -250,6 +264,9 @@ postInstall() { paxmark r $out/libexec/gcc/*/*/{cc1,cc1plus} eval "$postInstallGhdl" + + # Two identical man pages are shipped (moving and compressing is done later) + ln -sf gcc.1 "$out"/share/man/man1/g++.1 } genericBuild diff --git a/pkgs/development/compilers/gforth/default.nix b/pkgs/development/compilers/gforth/default.nix index c6165bb55869..6ea21207f19f 100644 --- a/pkgs/development/compilers/gforth/default.nix +++ b/pkgs/development/compilers/gforth/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation { buildInputs = [ m4 ]; + configureFlags = stdenv.lib.optional stdenv.isDarwin [ "--build=x86_64-apple-darwin" ]; + postInstall = '' mkdir -p $out/share/emacs/site-lisp cp gforth.el $out/share/emacs/site-lisp/ diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix index 96ec4e6c114a..3ad872518f9e 100644 --- a/pkgs/development/compilers/ghc/6.10.2-binary.nix +++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix @@ -40,14 +40,14 @@ stdenv.mkDerivation rec { (if stdenv.isLinux then '' find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${libedit}/lib:${ncurses}/lib:${gmp}/lib" {} \; + --set-rpath "${libedit}/lib:${ncurses.out}/lib:${gmp.out}/lib" {} \; for prog in ld ar gcc strip ranlib; do find . -name "setup-config" -exec sed -i "s@/usr/bin/$prog@$(type -p $prog)@g" {} \; done '' else ""); configurePhase = '' - ./configure --prefix=$out --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include + ./configure --prefix=$out --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp.dev or gmp}/include ''; # Stripping combined with patchelf breaks the executables (they die @@ -65,8 +65,8 @@ stdenv.mkDerivation rec { (if stdenv.isDarwin then '' mkdir -p $out/frameworks/GMP.framework/Versions/A - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP - ln -s ${gmp}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP + ln -s ${gmp.out}/lib/libgmp.dylib $out/frameworks/GMP.framework/GMP + ln -s ${gmp.out}/lib/libgmp.dylib $out/frameworks/GMP.framework/Versions/A/GMP # !!! fix this mkdir -p $out/frameworks/GNUeditline.framework/Versions/A ln -s ${libedit}/lib/libeditline.dylib $out/frameworks/GNUeditline.framework/GNUeditline @@ -83,7 +83,7 @@ stdenv.mkDerivation rec { + '' # bah, the passing gmp doesn't work, so let's add it to the final package.conf in a quick but dirty way - sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp}/lib\",\2@" $out/lib/ghc-${version}/package.conf + sed -i "s@^\(.*pkgName = PackageName \"rts\".*\libraryDirs = \\[\)\(.*\)@\\1\"${gmp.out}/lib\",\2@" $out/lib/ghc-${version}/package.conf # Sanity check, can ghc create executables? cd $TMP diff --git a/pkgs/development/compilers/ghc/6.10.4.nix b/pkgs/development/compilers/ghc/6.10.4.nix index d8157673fbc3..d8d25ef8082c 100644 --- a/pkgs/development/compilers/ghc/6.10.4.nix +++ b/pkgs/development/compilers/ghc/6.10.4.nix @@ -13,8 +13,8 @@ stdenv.mkDerivation rec { buildInputs = [ghc libedit perl gmp]; configureFlags = [ - "--with-gmp-libraries=${gmp}/lib" - "--with-gmp-includes=${gmp}/include" + "--with-gmp-libraries=${gmp.out}/lib" + "--with-gmp-includes=${gmp.dev}/include" "--with-gcc=${stdenv.cc}/bin/gcc" ]; diff --git a/pkgs/development/compilers/ghc/6.12.3.nix b/pkgs/development/compilers/ghc/6.12.3.nix index e480a6f837c3..5c33a193c501 100644 --- a/pkgs/development/compilers/ghc/6.12.3.nix +++ b/pkgs/development/compilers/ghc/6.12.3.nix @@ -13,10 +13,10 @@ stdenv.mkDerivation rec { buildInputs = [ghc perl gmp ncurses]; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ''; preConfigure = '' diff --git a/pkgs/development/compilers/ghc/7.0.4-binary.nix b/pkgs/development/compilers/ghc/7.0.4-binary.nix index 31df7f1fa355..c03cfbaaadda 100644 --- a/pkgs/development/compilers/ghc/7.0.4-binary.nix +++ b/pkgs/development/compilers/ghc/7.0.4-binary.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { # We have to patch the GMP paths for the integer-gmp package. '' find . -name integer-gmp.buildinfo \ - -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \; + -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \; '' + stdenv.lib.optionalString stdenv.isDarwin '' find . -name base.buildinfo \ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \; @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { stdenv.lib.optionalString stdenv.isLinux '' find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${ncurses}/lib:${gmp}/lib" {} \; + --set-rpath "${ncurses.out}/lib:${gmp.out}/lib" {} \; sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 for prog in ld ar gcc strip ranlib; do @@ -89,7 +89,7 @@ stdenv.mkDerivation rec { configurePhase = '' ./configure --prefix=$out \ - --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \ + --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp}/include \ ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"} ''; diff --git a/pkgs/development/compilers/ghc/7.0.4.nix b/pkgs/development/compilers/ghc/7.0.4.nix index 281e5ca66a2c..9152210b420d 100644 --- a/pkgs/development/compilers/ghc/7.0.4.nix +++ b/pkgs/development/compilers/ghc/7.0.4.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation rec { buildInputs = [ ghc perl gmp ncurses ]; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" diff --git a/pkgs/development/compilers/ghc/7.10.2.nix b/pkgs/development/compilers/ghc/7.10.2.nix index 87490842b3b6..d7f1e064030b 100644 --- a/pkgs/development/compilers/ghc/7.10.2.nix +++ b/pkgs/development/compilers/ghc/7.10.2.nix @@ -6,10 +6,10 @@ let inherit (bootPkgs) ghc; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" @@ -42,7 +42,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" - "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib" ]; # required, because otherwise all symbols from HSffi.o are stripped, and diff --git a/pkgs/development/compilers/ghc/7.10.3.nix b/pkgs/development/compilers/ghc/7.10.3.nix index 53ba058def4d..8d540fb3ad8a 100644 --- a/pkgs/development/compilers/ghc/7.10.3.nix +++ b/pkgs/development/compilers/ghc/7.10.3.nix @@ -40,8 +40,8 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" - "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" - "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib" + "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib" ] ++ stdenv.lib.optional stdenv.isDarwin [ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; diff --git a/pkgs/development/compilers/ghc/7.2.2.nix b/pkgs/development/compilers/ghc/7.2.2.nix index 7276f413967f..a08745732f88 100644 --- a/pkgs/development/compilers/ghc/7.2.2.nix +++ b/pkgs/development/compilers/ghc/7.2.2.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation rec { buildInputs = [ ghc perl gmp ncurses ]; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" diff --git a/pkgs/development/compilers/ghc/7.4.2-binary.nix b/pkgs/development/compilers/ghc/7.4.2-binary.nix index 03dd4dcd35bb..cf21a61b1b39 100644 --- a/pkgs/development/compilers/ghc/7.4.2-binary.nix +++ b/pkgs/development/compilers/ghc/7.4.2-binary.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { # We have to patch the GMP paths for the integer-gmp package. '' find . -name integer-gmp.buildinfo \ - -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp}/lib@" {} \; + -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${gmp.out}/lib@" {} \; '' + stdenv.lib.optionalString stdenv.isDarwin '' find . -name base.buildinfo \ -exec sed -i "s@extra-lib-dirs: @extra-lib-dirs: ${libiconv}/lib@" {} \; @@ -61,10 +61,10 @@ stdenv.mkDerivation rec { # find editline/gmp. stdenv.lib.optionalString stdenv.isLinux '' mkdir -p "$out/lib" - ln -sv "${ncurses}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5" + ln -sv "${ncurses.out}/lib/libncurses.so" "$out/lib/libncurses${stdenv.lib.optionalString stdenv.is64bit "w"}.so.5" find . -type f -perm -0100 \ -exec patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "$out/lib:${gmp}/lib" {} \; + --set-rpath "$out/lib:${gmp.out}/lib" {} \; sed -i "s|/usr/bin/perl|perl\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 sed -i "s|/usr/bin/gcc|gcc\x00 |" ghc-${version}/ghc/stage2/build/tmp/ghc-stage2 for prog in ld ar gcc strip ranlib; do @@ -91,7 +91,7 @@ stdenv.mkDerivation rec { configurePhase = '' ./configure --prefix=$out \ - --with-gmp-libraries=${gmp}/lib --with-gmp-includes=${gmp}/include \ + --with-gmp-libraries=${gmp.out}/lib --with-gmp-includes=${gmp}/include \ ${stdenv.lib.optionalString stdenv.isDarwin "--with-gcc=${./gcc-clang-wrapper.sh}"} ''; diff --git a/pkgs/development/compilers/ghc/7.4.2.nix b/pkgs/development/compilers/ghc/7.4.2.nix index b2abcb08ec3a..bf48e50b6b73 100644 --- a/pkgs/development/compilers/ghc/7.4.2.nix +++ b/pkgs/development/compilers/ghc/7.4.2.nix @@ -15,10 +15,10 @@ stdenv.mkDerivation rec { buildInputs = [ ghc perl gmp ncurses ]; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" diff --git a/pkgs/development/compilers/ghc/7.6.3.nix b/pkgs/development/compilers/ghc/7.6.3.nix index 366c0044a67a..af9fd3f8d93c 100644 --- a/pkgs/development/compilers/ghc/7.6.3.nix +++ b/pkgs/development/compilers/ghc/7.6.3.nix @@ -22,10 +22,10 @@ in stdenv.mkDerivation rec { buildInputs = [ ghc perl gmp ncurses ]; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-libraries="${libiconv}/lib" diff --git a/pkgs/development/compilers/ghc/7.8.3.nix b/pkgs/development/compilers/ghc/7.8.3.nix index 2e0f5ba07e4d..706899a8f7ba 100644 --- a/pkgs/development/compilers/ghc/7.8.3.nix +++ b/pkgs/development/compilers/ghc/7.8.3.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" DYNAMIC_BY_DEFAULT = NO ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" diff --git a/pkgs/development/compilers/ghc/7.8.4.nix b/pkgs/development/compilers/ghc/7.8.4.nix index 4323341dc4a4..cdcc2cf0e75e 100644 --- a/pkgs/development/compilers/ghc/7.8.4.nix +++ b/pkgs/development/compilers/ghc/7.8.4.nix @@ -14,10 +14,10 @@ stdenv.mkDerivation (rec { enableParallelBuilding = true; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" DYNAMIC_BY_DEFAULT = NO ${stdenv.lib.optionalString stdenv.isDarwin '' libraries/base_CONFIGURE_OPTS += --configure-option=--with-iconv-includes="${libiconv}/include" diff --git a/pkgs/development/compilers/ghc/8.0.1.nix b/pkgs/development/compilers/ghc/8.0.1.nix index 00482d013c23..10aa16391866 100644 --- a/pkgs/development/compilers/ghc/8.0.1.nix +++ b/pkgs/development/compilers/ghc/8.0.1.nix @@ -33,8 +33,8 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" - "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" - "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp.out}/lib" + "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses.out}/lib" ] ++ stdenv.lib.optional stdenv.isDarwin [ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 18e22f0100be..0fc80a24eca0 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -43,8 +43,8 @@ in stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" - "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" - "--with-curses-includes=${ncurses}/include" "--with-curses-libraries=${ncurses}/lib" + "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib" + "--with-curses-includes=${ncurses.dev}/include" "--with-curses-libraries=${ncurses.out}/lib" ] ++ stdenv.lib.optional stdenv.isDarwin [ "--with-iconv-includes=${libiconv}/include" "--with-iconv-libraries=${libiconv}/lib" ]; diff --git a/pkgs/development/compilers/ghc/nokinds.nix b/pkgs/development/compilers/ghc/nokinds.nix index acaef9c5ab11..ca0a78eb0b67 100644 --- a/pkgs/development/compilers/ghc/nokinds.nix +++ b/pkgs/development/compilers/ghc/nokinds.nix @@ -4,10 +4,10 @@ let inherit (bootPkgs) ghc; buildMK = '' - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp}/lib" - libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses}/include" - libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-libraries="${gmp.out}/lib" + libraries/integer-gmp_CONFIGURE_OPTS += --configure-option=--with-gmp-includes="${gmp.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-includes="${ncurses.dev}/include" + libraries/terminfo_CONFIGURE_OPTS += --configure-option=--with-curses-libraries="${ncurses.out}/lib" DYNAMIC_BY_DEFAULT = NO SRC_HC_OPTS = -H64m -O -fasm GhcLibHcOpts = -O -dcore-lint @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc=${stdenv.cc}/bin/cc" - "--with-gmp-includes=${gmp}/include" "--with-gmp-libraries=${gmp}/lib" + "--with-gmp-includes=${gmp.dev}/include" "--with-gmp-libraries=${gmp.out}/lib" ]; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/ghcjs/default.nix b/pkgs/development/compilers/ghcjs/default.nix index 77b3a15cb32f..e18c3213a3c0 100644 --- a/pkgs/development/compilers/ghcjs/default.nix +++ b/pkgs/development/compilers/ghcjs/default.nix @@ -117,13 +117,13 @@ in mkDerivation (rec { # This is necessary due to: https://github.com/haskell/cabal/commit/af19fb2c2d231d8deff1cb24164a2bf7efb8905a # Cabal otherwise fails to build: http://hydra.nixos.org/build/31824079/nixlog/1/raw postInstall = '' - PATH=$out/bin:$PATH LD_LIBRARY_PATH=${gmp}/lib:${stdenv.cc}/lib64:$LD_LIBRARY_PATH \ + PATH=$out/bin:$PATH LD_LIBRARY_PATH=${gmp.out}/lib:${stdenv.cc}/lib64:$LD_LIBRARY_PATH \ env -u GHC_PACKAGE_PATH $out/bin/ghcjs-boot \ --dev \ --quick \ --with-cabal ${cabal-install}/bin/cabal \ - --with-gmp-includes ${gmp}/include \ - --with-gmp-libraries ${gmp}/lib + --with-gmp-includes ${gmp.dev}/include \ + --with-gmp-libraries ${gmp.out}/lib ''; passthru = let ghcjsNodePkgs = pkgs.nodePackages.override { diff --git a/pkgs/development/compilers/go/1.1.nix b/pkgs/development/compilers/go/1.1.nix new file mode 100644 index 000000000000..0c6d41264149 --- /dev/null +++ b/pkgs/development/compilers/go/1.1.nix @@ -0,0 +1,101 @@ +{ stdenv, fetchurl, bison, glibc, bash, coreutils, makeWrapper, tzdata, iana_etc +, removeGodocExternals ? false }: + +let + loader386 = "${glibc.out}/lib/ld-linux.so.2"; + loaderAmd64 = "${glibc.out}/lib/ld-linux-x86-64.so.2"; + loaderArm = "${glibc.out}/lib/ld-linux.so.3"; +in + +stdenv.mkDerivation { + name = "go-1.1.2"; + + src = fetchurl { + url = http://go.googlecode.com/files/go1.1.2.src.tar.gz; + sha256 = "0w7bchhb4b053az3wjp6z342rs9lp9nxf4w2mnfd1b89d6sb7izz"; + }; + + buildInputs = [ bison glibc bash makeWrapper ]; + + NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; + + # I'm not sure what go wants from its 'src', but the go installation manual + # describes an installation keeping the src. + preUnpack = '' + mkdir -p $out/share + cd $out/share + ''; + + prePatch = '' + cd .. + if [ ! -d go ]; then + mv * go + fi + cd go + + patchShebangs ./ # replace /bin/bash + # !!! substituteInPlace does not seems to be effective. + sed -i 's,/lib/ld-linux.so.2,${loader386},' src/cmd/8l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.2,${loaderAmd64},' src/cmd/6l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.3,${loaderArm},' src/cmd/5l/asm.c + sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/pkg/time/zoneinfo_unix.go + sed -i 's,/etc/protocols,${iana_etc}/etc/protocols,' src/pkg/net/lookup_unix.go + + #sed -i -e 's,/bin/cat,${coreutils}/bin/cat,' \ + # -e 's,/bin/echo,${coreutils}/bin/echo,' \ + # src/pkg/exec/exec_test.go + + # Disabling the 'os/http/net' tests (they want files not available in + # chroot builds) + rm src/pkg/net/{multicast_test.go,parse_test.go,port_test.go} + # The os test wants to read files in an existing path. Just it don't be /usr/bin. + sed -i 's,/usr/bin,'"`pwd`", src/pkg/os/os_test.go + sed -i 's,/bin/pwd,'"`type -P pwd`", src/pkg/os/os_test.go + # Disable the hostname test + sed -i '/TestHostname/areturn' src/pkg/os/os_test.go + # ParseInLocation fails the test + sed -i '/TestParseInSydney/areturn' src/pkg/time/time_test.go + '' + stdenv.lib.optionalString removeGodocExternals '' + sed -i -e '/googleapi/d' -e '/javascript">$/,+6d' lib/godoc/godoc.html + ''; + + patches = [ ./cacert.patch ]; + + GOOS = "linux"; + GOARCH = if stdenv.system == "i686-linux" then "386" + else if stdenv.system == "x86_64-linux" then "amd64" + else if stdenv.system == "armv5tel-linux" then "arm" + else throw "Unsupported system"; + GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5"; + + installPhase = '' + mkdir -p "$out/bin" + export GOROOT="$(pwd)/" + export GOBIN="$out/bin" + export PATH="$GOBIN:$PATH" + cd ./src + ./all.bash + cd - + + # Wrap the tools to define the location of the + # libraries. + for a in go gofmt godoc; do + wrapProgram "$out/bin/$a" \ + --set "GOROOT" $out/share/go \ + ${if stdenv.system == "armv5tel-linux" then "--set GOARM $GOARM" else ""} + done + + # Copy the emacs configuration for Go files. + mkdir -p "$out/share/emacs/site-lisp" + cp ./misc/emacs/* $out/share/emacs/site-lisp/ + ''; + + meta = { + branch = "1.1"; + homepage = http://golang.org/; + description = "The Go Programming language"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ pierron viric ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/compilers/go/1.2.nix b/pkgs/development/compilers/go/1.2.nix new file mode 100644 index 000000000000..0454ea96d892 --- /dev/null +++ b/pkgs/development/compilers/go/1.2.nix @@ -0,0 +1,91 @@ +{ stdenv, fetchurl, bison, glibc, bash, coreutils, makeWrapper, tzdata, iana_etc }: + +let + loader386 = "${glibc.out}/lib/ld-linux.so.2"; + loaderAmd64 = "${glibc.out}/lib/ld-linux-x86-64.so.2"; + loaderArm = "${glibc.out}/lib/ld-linux.so.3"; +in + +stdenv.mkDerivation { + name = "go-1.2.2"; + + src = fetchurl { + url = https://storage.googleapis.com/golang/go1.2.2.src.tar.gz; + sha1 = "3ce0ac4db434fc1546fec074841ff40dc48c1167"; + }; + + buildInputs = [ bison glibc bash makeWrapper ]; + + NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; + + # I'm not sure what go wants from its 'src', but the go installation manual + # describes an installation keeping the src. + preUnpack = '' + mkdir -p $out/share + cd $out/share + ''; + + prePatch = '' + cd .. + if [ ! -d go ]; then + mv * go + fi + cd go + + patchShebangs ./ # replace /bin/bash + # !!! substituteInPlace does not seems to be effective. + sed -i 's,/lib/ld-linux.so.2,${loader386},' src/cmd/8l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.2,${loaderAmd64},' src/cmd/6l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.3,${loaderArm},' src/cmd/5l/asm.c + sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/pkg/time/zoneinfo_unix.go + sed -i 's,/etc/protocols,${iana_etc}/etc/protocols,' src/pkg/net/lookup_unix.go + + #sed -i -e 's,/bin/cat,${coreutils}/bin/cat,' \ + # -e 's,/bin/echo,${coreutils}/bin/echo,' \ + # src/pkg/exec/exec_test.go + + # Disabling the 'os/http/net' tests (they want files not available in + # chroot builds) + rm src/pkg/net/{multicast_test.go,parse_test.go,port_test.go} + # The os test wants to read files in an existing path. Just it don't be /usr/bin. + sed -i 's,/usr/bin,'"`pwd`", src/pkg/os/os_test.go + sed -i 's,/bin/pwd,'"`type -P pwd`", src/pkg/os/os_test.go + # Disable the hostname test + sed -i '/TestHostname/areturn' src/pkg/os/os_test.go + # ParseInLocation fails the test + sed -i '/TestParseInSydney/areturn' src/pkg/time/time_test.go + ''; + + patches = [ ./cacert-1.2.patch ]; + + GOOS = "linux"; + GOARCH = if stdenv.system == "i686-linux" then "386" + else if stdenv.system == "x86_64-linux" then "amd64" + else if stdenv.system == "armv5tel-linux" then "arm" + else throw "Unsupported system"; + GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5"; + GO386 = 387; # from Arch: don't assume sse2 on i686 + + installPhase = '' + mkdir -p "$out/bin" + export GOROOT="$(pwd)/" + export GOBIN="$out/bin" + export PATH="$GOBIN:$PATH" + cd ./src + ./all.bash + cd - + + # Copy the emacs configuration for Go files. + mkdir -p "$out/share/emacs/site-lisp" + cp ./misc/emacs/* $out/share/emacs/site-lisp/ + ''; + + meta = { + branch = "1.2"; + homepage = http://golang.org/; + description = "The Go Programming language"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ pierron viric ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/compilers/go/1.3.nix b/pkgs/development/compilers/go/1.3.nix new file mode 100644 index 000000000000..a9a3c10584b0 --- /dev/null +++ b/pkgs/development/compilers/go/1.3.nix @@ -0,0 +1,113 @@ +{ stdenv, lib, fetchurl, fetchhg, bison, glibc, bash, coreutils, makeWrapper, tzdata, iana_etc, perl }: + +let + loader386 = "${glibc.out}/lib/ld-linux.so.2"; + loaderAmd64 = "${glibc.out}/lib/ld-linux-x86-64.so.2"; + loaderArm = "${glibc.out}/lib/ld-linux.so.3"; + srcs = { + golang = fetchurl { + url = https://storage.googleapis.com/golang/go1.3.3.src.tar.gz; + sha1 = "b54b7deb7b7afe9f5d9a3f5dd830c7dede35393a"; + }; + tools = fetchhg { + url = https://code.google.com/p/go.tools/; + rev = "e1c276c4e679"; + sha256 = "0x62njflwkd99i2ixbksg6mjppl1wfg86f0g3swn350l1h0xzp76"; + }; + }; +in + +stdenv.mkDerivation { + name = "go-1.3.3"; + + src = srcs.golang; + + # perl is used for testing go vet + buildInputs = [ bison bash makeWrapper perl ] ++ lib.optionals stdenv.isLinux [ glibc ] ; + + # I'm not sure what go wants from its 'src', but the go installation manual + # describes an installation keeping the src. + preUnpack = '' + mkdir -p $out/share + cd $out/share + ''; + postUnpack = '' + mkdir -p $out/share/go/src/pkg/code.google.com/p/ + cp -rv --no-preserve=mode,ownership ${srcs.tools} $out/share/go/src/pkg/code.google.com/p/go.tools + ''; + + prePatch = '' + # Ensure that the source directory is named go + cd .. + if [ ! -d go ]; then + mv * go + fi + cd go + patchShebangs ./ # replace /bin/bash + + # Disabling the 'os/http/net' tests (they want files not available in + # chroot builds) + rm src/pkg/net/{multicast_test.go,parse_test.go,port_test.go} + # !!! substituteInPlace does not seems to be effective. + # The os test wants to read files in an existing path. Just don't let it be /usr/bin. + sed -i 's,/usr/bin,'"`pwd`", src/pkg/os/os_test.go + sed -i 's,/bin/pwd,'"`type -P pwd`", src/pkg/os/os_test.go + # Disable the unix socket test + sed -i '/TestShutdownUnix/areturn' src/pkg/net/net_test.go + # Disable the hostname test + sed -i '/TestHostname/areturn' src/pkg/os/os_test.go + sed -i 's,/etc/protocols,${iana_etc}/etc/protocols,' src/pkg/net/lookup_unix.go + # ParseInLocation fails the test + sed -i '/TestParseInSydney/areturn' src/pkg/time/format_test.go + '' + lib.optionalString stdenv.isLinux '' + sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/pkg/time/zoneinfo_unix.go + sed -i 's,/lib/ld-linux.so.3,${loaderArm},' src/cmd/5l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.2,${loaderAmd64},' src/cmd/6l/asm.c + sed -i 's,/lib/ld-linux.so.2,${loader386},' src/cmd/8l/asm.c + ''; + + patches = [ ./cacert-1.2.patch ]; + + GOOS = if stdenv.isDarwin then "darwin" else "linux"; + GOARCH = if stdenv.isDarwin then "amd64" + else if stdenv.system == "i686-linux" then "386" + else if stdenv.system == "x86_64-linux" then "amd64" + else if stdenv.system == "armv5tel-linux" then "arm" + else throw "Unsupported system"; + GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5"; + GO386 = 387; # from Arch: don't assume sse2 on i686 + CGO_ENABLED = if stdenv.isDarwin then 0 else 1; + + installPhase = '' + export CC=cc + mkdir -p "$out/bin" + unset GOPATH + export GOROOT="$(pwd)/" + export GOBIN="$out/bin" + export PATH="$GOBIN:$PATH" + cd ./src + ./all.bash + cd - + + # Build extra tooling + # TODO: Fix godoc tests + TOOL_ROOT=code.google.com/p/go.tools/cmd + go install -v $TOOL_ROOT/cover $TOOL_ROOT/vet $TOOL_ROOT/godoc + go test -v $TOOL_ROOT/cover $TOOL_ROOT/vet # $TOOL_ROOT/godoc + + # Copy the emacs configuration for Go files. + mkdir -p "$out/share/emacs/site-lisp" + cp ./misc/emacs/* $out/share/emacs/site-lisp/ + ''; + + setupHook = ./setup-hook.sh; + + meta = { + branch = "1.3"; + homepage = http://golang.org/; + description = "The Go Programming language"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ cstrahan ]; + platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + }; +} diff --git a/pkgs/development/compilers/go/1.4.nix b/pkgs/development/compilers/go/1.4.nix index 2a1f437ffdf6..3a1f39eab242 100644 --- a/pkgs/development/compilers/go/1.4.nix +++ b/pkgs/development/compilers/go/1.4.nix @@ -58,7 +58,7 @@ stdenv.mkDerivation rec { sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/time/zoneinfo_unix.go # Find the loader dynamically - LOADER="$(find ${libc}/lib -name ld-linux\* | head -n 1)" + LOADER="$(find ${libc.out or libc}/lib -name ld-linux\* | head -n 1)" # Replace references to the loader find src/cmd -name asm.c -exec sed -i "s,/lib/ld-linux.*\.so\.[0-9],$LOADER," {} \; diff --git a/pkgs/development/compilers/go/default.nix b/pkgs/development/compilers/go/default.nix new file mode 100644 index 000000000000..c684d7d5ee5d --- /dev/null +++ b/pkgs/development/compilers/go/default.nix @@ -0,0 +1,95 @@ +{ stdenv, fetchurl, bison, glibc, bash, coreutils, makeWrapper, tzdata}: + +let + loader386 = "${glibc.out}/lib/ld-linux.so.2"; + loaderAmd64 = "${glibc.out}/lib/ld-linux-x86-64.so.2"; + loaderArm = "${glibc.out}/lib/ld-linux.so.3"; +in + +stdenv.mkDerivation { + name = "go-1.0.3"; + + src = fetchurl { + url = http://go.googlecode.com/files/go1.0.3.src.tar.gz; + sha256 = "1pz31az3icwqfqfy3avms05jnqr0qrbrx9yqsclkdwbjs4rkbfkz"; + }; + + buildInputs = [ bison glibc bash makeWrapper ]; + + # I'm not sure what go wants from its 'src', but the go installation manual + # describes an installation keeping the src. + preUnpack = '' + mkdir -p $out/share + cd $out/share + ''; + + prePatch = '' + cd .. + if [ ! -d go ]; then + mv * go + fi + cd go + + patchShebangs ./ # replace /bin/bash + # !!! substituteInPlace does not seems to be effective. + sed -i 's,/lib/ld-linux.so.2,${loader386},' src/cmd/8l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.2,${loaderAmd64},' src/cmd/6l/asm.c + sed -i 's,/lib64/ld-linux-x86-64.so.3,${loaderArm},' src/cmd/5l/asm.c + sed -i 's,/usr/share/zoneinfo/,${tzdata}/share/zoneinfo/,' src/pkg/time/zoneinfo_unix.go + + #sed -i -e 's,/bin/cat,${coreutils}/bin/cat,' \ + # -e 's,/bin/echo,${coreutils}/bin/echo,' \ + # src/pkg/exec/exec_test.go + + # Disabling the 'os/http/net' tests (they want files not available in + # chroot builds) + rm src/pkg/net/{multicast_test.go,parse_test.go,port_test.go} + # The os test wants to read files in an existing path. Just it don't be /usr/bin. + sed -i 's,/usr/bin,'"`pwd`", src/pkg/os/os_test.go + sed -i 's,/bin/pwd,'"`type -P pwd`", src/pkg/os/os_test.go + # Disable the hostname test + sed -i '/TestHostname/areturn' src/pkg/os/os_test.go + ''; + + patches = [ ./cacert.patch ./1_0-opt-error.patch ./1_0-gcc-bug.patch ]; + + GOOS = "linux"; + GOARCH = if stdenv.system == "i686-linux" then "386" + else if stdenv.system == "x86_64-linux" then "amd64" + else if stdenv.system == "armv5tel-linux" then "arm" + else throw "Unsupported system"; + GOARM = stdenv.lib.optionalString (stdenv.system == "armv5tel-linux") "5"; + + NIX_CFLAGS_COMPILE = "-Wno-error=cpp"; + + installPhase = '' + mkdir -p "$out/bin" + export GOROOT="$(pwd)/" + export GOBIN="$out/bin" + export PATH="$GOBIN:$PATH" + cd ./src + ./all.bash + cd - + + # Wrap the tools to define the location of the + # libraries. + for a in go gofmt godoc; do + wrapProgram "$out/bin/$a" \ + --set "GOROOT" $out/share/go \ + ${if stdenv.system == "armv5tel-linux" then "--set GOARM $GOARM" else ""} + done + + # Copy the emacs configuration for Go files. + mkdir -p "$out/share/emacs/site-lisp" + cp ./misc/emacs/* $out/share/emacs/site-lisp/ + ''; + + meta = { + branch = "1.0"; + homepage = http://golang.org/; + description = "The Go Programming language"; + license = "BSD"; + maintainers = with stdenv.lib.maintainers; [ pierron viric ]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix index 393e889024be..be527d873754 100644 --- a/pkgs/development/compilers/llvm/3.7/llvm.nix +++ b/pkgs/development/compilers/llvm/3.7/llvm.nix @@ -56,6 +56,8 @@ in stdenv.mkDerivation rec { "-DCAN_TARGET_i386=false" ]; + NIX_LDFLAGS = "-lpthread"; # no idea what's the problem + postBuild = '' rm -fR $out diff --git a/pkgs/development/compilers/mentor/default.nix b/pkgs/development/compilers/mentor/default.nix index 7ff013b23441..74905c6ffae4 100644 --- a/pkgs/development/compilers/mentor/default.nix +++ b/pkgs/development/compilers/mentor/default.nix @@ -34,7 +34,7 @@ let # GDB needs ncurses case "$file" in - *gdb) patchelf --set-rpath "${ncurses}/lib" "$file";; + *gdb) patchelf --set-rpath "${ncurses.out}/lib" "$file";; esac done diff --git a/pkgs/development/compilers/mkcl/default.nix b/pkgs/development/compilers/mkcl/default.nix index f6ab05bd29ba..af1ebd6a1967 100644 --- a/pkgs/development/compilers/mkcl/default.nix +++ b/pkgs/development/compilers/mkcl/default.nix @@ -14,8 +14,8 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ gmp ]; configureFlags = [ - "GMP_CFLAGS=-I${gmp}/include" - "GMP_LDFLAGS=-L${gmp}/lib" + "GMP_CFLAGS=-I${gmp.dev}/include" + "GMP_LDFLAGS=-L${gmp.out}/lib" ]; postInstall = '' diff --git a/pkgs/development/compilers/mlton/default.nix b/pkgs/development/compilers/mlton/default.nix index 381941acc20e..c4890c1ca886 100644 --- a/pkgs/development/compilers/mlton/default.nix +++ b/pkgs/development/compilers/mlton/default.nix @@ -6,8 +6,8 @@ let usr_prefix = if stdenv.isDarwin then "usr/local" else "usr"; dynamic_linker = - if stdenv.isx86_64 then "${stdenv.glibc}/lib/ld-linux-x86-64.so.2" - else "${stdenv.glibc}/lib/ld-linux.so.2"; + if stdenv.isx86_64 then "${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2" + else "${stdenv.glibc.out}/lib/ld-linux.so.2"; in stdenv.mkDerivation rec { @@ -73,7 +73,7 @@ stdenv.mkDerivation rec { chmod u+x $(pwd)/../${usr_prefix}/bin/mlton # So the builder runs the binary compiler with gmp. - export LD_LIBRARY_PATH=${gmp}/lib:$LD_LIBRARY_PATH + export LD_LIBRARY_PATH=${gmp.out}/lib:$LD_LIBRARY_PATH '' + stdenv.lib.optionalString stdenv.isLinux '' # Patch ELF interpreter. @@ -92,10 +92,10 @@ stdenv.mkDerivation rec { substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace '/${usr_prefix}/lib/mlton' $out/lib/mlton # Path to libgmp. - substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace "-link-opt '-lm -lgmp'" "-link-opt '-lm -lgmp -L${gmp}/lib'" + substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace "-link-opt '-lm -lgmp'" "-link-opt '-lm -lgmp -L${gmp.out}/lib'" # Path to gmp.h. - substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace "-cc-opt '-O1 -fno-common'" "-cc-opt '-O1 -fno-common -I${gmp}/include'" + substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace "-cc-opt '-O1 -fno-common'" "-cc-opt '-O1 -fno-common -I${gmp.dev}/include'" # Path to the same cc used in the build; needed at runtime. substituteInPlace $(pwd)/install/${usr_prefix}/bin/mlton --replace "gcc='gcc'" "gcc='"$(type -p cc)"'" diff --git a/pkgs/development/compilers/nim/default.nix b/pkgs/development/compilers/nim/default.nix index a4dbfeac8342..f81370992a65 100644 --- a/pkgs/development/compilers/nim/default.nix +++ b/pkgs/development/compilers/nim/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { buildPhase = "sh build.sh"; installPhase = '' - installBin bin/nim + install -Dt "$out/bin" bin/nim substituteInPlace install.sh --replace '$1/nim' "$out" sh install.sh $out ''; diff --git a/pkgs/development/compilers/nvidia-cg-toolkit/default.nix b/pkgs/development/compilers/nvidia-cg-toolkit/default.nix index 9c6d07c4681e..ab71090b3580 100644 --- a/pkgs/development/compilers/nvidia-cg-toolkit/default.nix +++ b/pkgs/development/compilers/nvidia-cg-toolkit/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { installPhase = '' for b in cgc cgfxcat cginfo do - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux*.so.? "bin/$b" + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux*.so.? "bin/$b" done # FIXME: cgfxcat and cginfo need more patchelf mkdir -p "$out/bin/" diff --git a/pkgs/development/compilers/opendylan/bin.nix b/pkgs/development/compilers/opendylan/bin.nix index 4d18b8d328d6..492b1c4b3338 100644 --- a/pkgs/development/compilers/opendylan/bin.nix +++ b/pkgs/development/compilers/opendylan/bin.nix @@ -24,10 +24,10 @@ stdenv.mkDerivation { interpreter="$(cat "$NIX_CC"/nix-support/dynamic-linker)" for a in "$out"/bin/*; do patchelf --set-interpreter "$interpreter" "$a" - patchelf --set-rpath "$out/lib:${boehmgc}/lib" "$a" + patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a" done for a in "$out"/lib/*.so; do - patchelf --set-rpath "$out/lib:${boehmgc}/lib" "$a" + patchelf --set-rpath "$out/lib:${boehmgc.out}/lib" "$a" done sed -i -e "s|\-lgc|\-L${boehmgc}\/lib -lgc|" $out/lib/config.jam wrapProgram $out/bin/dylan-compiler --suffix PATH : ${gcc}/bin diff --git a/pkgs/development/compilers/openjdk/7.nix b/pkgs/development/compilers/openjdk/7.nix index 97ffbf9f0993..de803a5d90c5 100644 --- a/pkgs/development/compilers/openjdk/7.nix +++ b/pkgs/development/compilers/openjdk/7.nix @@ -106,9 +106,9 @@ let makeFlags = [ "SORT=${coreutils}/bin/sort" - "ALSA_INCLUDE=${alsaLib}/include/alsa/version.h" - "FREETYPE_HEADERS_PATH=${freetype}/include" - "FREETYPE_LIB_PATH=${freetype}/lib" + "ALSA_INCLUDE=${alsaLib.dev}/include/alsa/version.h" + "FREETYPE_HEADERS_PATH=${freetype.dev}/include" + "FREETYPE_LIB_PATH=${freetype.out}/lib" "MILESTONE=${update}" "BUILD_NUMBER=b${build}" "USRBIN_PATH=" diff --git a/pkgs/development/compilers/openjdk/8.nix b/pkgs/development/compilers/openjdk/8.nix index 45bef9819aab..7ba6b56a8f38 100644 --- a/pkgs/development/compilers/openjdk/8.nix +++ b/pkgs/development/compilers/openjdk/8.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cpio, file, which, unzip, zip, xorg, cups, freetype +{ stdenv, fetchurl, cpio, pkgconfig, file, which, unzip, zip, xorg, cups, freetype , alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig, zlib , setJavaClassPath , minimal ? false @@ -63,6 +63,7 @@ let outputs = [ "out" "jre" ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ cpio file which unzip zip xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXtst @@ -93,7 +94,6 @@ let ''; configureFlags = [ - "--with-freetype=${freetype}" "--with-boot-jdk=${bootjdk.home}" "--with-update-version=${update}" "--with-build-number=${build}" diff --git a/pkgs/development/compilers/openjdk/bootstrap.nix b/pkgs/development/compilers/openjdk/bootstrap.nix index a9ca7673dfe9..48a22638813f 100644 --- a/pkgs/development/compilers/openjdk/bootstrap.nix +++ b/pkgs/development/compilers/openjdk/bootstrap.nix @@ -40,13 +40,13 @@ let LIBDIRS="$(find $out -name \*.so\* -exec dirname {} \; | sort | uniq | tr '\n' ':')" for i in $out/bin/*; do - patchelf --set-interpreter ${glibc}/lib/ld-linux*.so.2 $i || true - patchelf --set-rpath "${glibc}/lib:$LIBDIRS" $i || true + patchelf --set-interpreter ${glibc.out}/lib/ld-linux*.so.2 $i || true + patchelf --set-rpath "${glibc.out}/lib:$LIBDIRS" $i || true done find $out -name \*.so\* | while read lib; do - patchelf --set-interpreter ${glibc}/lib/ld-linux*.so.2 $lib || true - patchelf --set-rpath "${glibc}/lib:${stdenv.cc.cc}/lib:$LIBDIRS" $lib || true + patchelf --set-interpreter ${glibc.out}/lib/ld-linux*.so.2 $lib || true + patchelf --set-rpath "${glibc.out}/lib:${stdenv.cc.cc.lib}/lib:$LIBDIRS" $lib || true done # Temporarily, while NixOS's OpenJDK bootstrap tarball doesn't have PaX markings: diff --git a/pkgs/development/compilers/orc/default.nix b/pkgs/development/compilers/orc/default.nix index d60ad0d11ec9..1488736a4808 100644 --- a/pkgs/development/compilers/orc/default.nix +++ b/pkgs/development/compilers/orc/default.nix @@ -8,20 +8,25 @@ stdenv.mkDerivation rec { sha256 = "16ykgdrgxr6pfpy931p979cs68klvwmk3ii1k0a00wr4nn9x931k"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" ]; + outputBin = "dev"; # compilation tools + + postInstall = '' + sed "/^toolsdir=/ctoolsdir=$dev/bin" -i "$dev"/lib/pkgconfig/orc*.pc + ''; # building memcpy_speed.log # ../test-driver: line 107: 4495 Segmentation fault "$@" > $log_file 2>&1 # FAIL: memcpy_speed doCheck = false; # see https://bugzilla.gnome.org/show_bug.cgi?id=728129#c7 - meta = { + meta = with stdenv.lib; { description = "The Oil Runtime Compiler"; homepage = "http://code.entropywave.com/orc/"; # The source code implementing the Marsenne Twister algorithm is licensed # under the 3-clause BSD license. The rest is 2-clause BSD license. - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + license = licenses.bsd3; + platforms = platforms.unix; + maintainers = [ maintainers.fuuzetsu ]; }; } diff --git a/pkgs/development/compilers/path64/default.nix b/pkgs/development/compilers/path64/default.nix index d6112dcdfc48..694bdc8990fd 100644 --- a/pkgs/development/compilers/path64/default.nix +++ b/pkgs/development/compilers/path64/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { patchPhase = '' sed -i s,/usr/bin/ld,$(type -P ld), src/driver/phases.c - sed -i s,/lib64/ld-linux-x86-64.so.2,${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2, src/include/main_defs.h.in + sed -i s,/lib64/ld-linux-x86-64.so.2,${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2, src/include/main_defs.h.in ''; cmakeFlags = '' @@ -22,7 +22,7 @@ stdenv.mkDerivation { -DPATH64_ENABLE_PSCRUNTIME=OFF -DPATH64_ENABLE_PROFILING=OFF -DPATH64_ENABLE_TARGETS=x8664 -DCMAKE_BUILD_TYPE=Debug -DPATH64_ENABLE_FORTRAN=OFF - -DPSC_CRT_PATH=${stdenv.cc.libc}/lib + -DPSC_CRT_PATH=${stdenv.cc.libc.out}/lib ''; makeFlags = "-j4"; diff --git a/pkgs/development/compilers/ponyc/default.nix b/pkgs/development/compilers/ponyc/default.nix index c94ba203c0ff..076146095196 100644 --- a/pkgs/development/compilers/ponyc/default.nix +++ b/pkgs/development/compilers/ponyc/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { checkTarget = "test"; patchPhase = '' - sed 's|/usr/lib/x86_64-linux-gnu/|${glibc}/lib/|g' -i src/libponyc/codegen/genexe.c + sed 's|/usr/lib/x86_64-linux-gnu/|${glibc.out}/lib/|g' -i src/libponyc/codegen/genexe.c sed 's|/lib/x86_64-linux-gnu/|${stdenv.cc.cc}/lib/|g' -i src/libponyc/codegen/genexe.c ''; @@ -26,7 +26,7 @@ stdenv.mkDerivation { ''; preCheck = '' - export LIBRARY_PATH="$out/lib:${openssl}/lib:${pcre2}/lib" + export LIBRARY_PATH="$out/lib:${openssl.out}/lib:${pcre2}/lib" ''; installPhase = '' @@ -34,7 +34,7 @@ stdenv.mkDerivation { mv $out/bin/ponyc $out/bin/ponyc.wrapped makeWrapper $out/bin/ponyc.wrapped $out/bin/ponyc \ --prefix LIBRARY_PATH : "$out/lib" \ - --prefix LIBRARY_PATH : "${openssl}/lib" \ + --prefix LIBRARY_PATH : "${openssl.out}/lib" \ --prefix LIBRARY_PATH : "${pcre2}/lib" ''; diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index c0f15fbd116c..177d403b4513 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps -, llvmPackages_37, jemalloc, ncurses, darwin +, llvmPackages_37, jemalloc, ncurses, darwin, binutils , shortVersion, isRelease , forceBundledLLVM ? false @@ -114,8 +114,8 @@ with stdenv.lib; stdenv.mkDerivation { mkdir -p "$out" cp -r bin "$out/bin" '' + optionalString stdenv.isLinux '' - patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/" \ + patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ + --set-rpath "${stdenv.cc.cc.lib}/lib/:${stdenv.cc.cc.lib}/lib64/" \ "$out/bin/rustc" ''; }; @@ -123,7 +123,7 @@ with stdenv.lib; stdenv.mkDerivation { configureFlags = configureFlags ++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ] # ++ [ "--jemalloc-root=${jemalloc}/lib" - ++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${stdenv.cc.binutils}/bin/ar" ] + ++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${binutils}/bin/ar" ] ++ optional (stdenv.cc.cc ? isClang) "--enable-clang" ++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}"; @@ -169,6 +169,7 @@ with stdenv.lib; stdenv.mkDerivation { enableParallelBuilding = false; # missing files during linking, occasionally outputs = [ "out" "doc" ]; + setOutputFlags = false; preCheck = "export TZDIR=${tzdata}/share/zoneinfo"; diff --git a/pkgs/development/compilers/sbcl/default.nix b/pkgs/development/compilers/sbcl/default.nix index ab8e8e08b1a5..946205011f2b 100644 --- a/pkgs/development/compilers/sbcl/default.nix +++ b/pkgs/development/compilers/sbcl/default.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, writeText, sbclBootstrap , sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit" +, threadSupport ? (stdenv.isi686 || stdenv.isx86_64) # Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die. # Note that the created binaries still need `patchelf --set-interpreter ...` # to get rid of ${glibc} dependency. @@ -8,11 +9,11 @@ stdenv.mkDerivation rec { name = "sbcl-${version}"; - version = "1.3.3"; + version = "1.3.4"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "0kzvwzz196ws9z20l8fm15m5gckhmkkc6lxvdib12mfvy80gcf6v"; + sha256 = "0zx6z43xfnw1b6v5d3bpjrwgqs14wxlji22nl0lr4wmzbfbzvqli"; }; patchPhase = '' @@ -23,10 +24,11 @@ stdenv.mkDerivation rec { (pushnew x features)) (disable (x) (setf features (remove x features)))) - #-arm - (enable :sb-thread) - #+arm - (enable :arm))) " > customize-target-features.lisp + '' + + stdenv.lib.optionalString threadSupport "(enable :sb-thread)" + + stdenv.lib.optionalString stdenv.isArm "(enable :arm)" + + '' + )) " > customize-target-features.lisp pwd diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index f1a52f5de91e..fbadb9d74366 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -25,9 +25,9 @@ stdenv.mkDerivation rec { preConfigure = '' configureFlagsArray+=("--elfinterp=$(cat $NIX_CC/nix-support/dynamic-linker)") - configureFlagsArray+=("--crtprefix=${stdenv.glibc}/lib") - configureFlagsArray+=("--sysincludepaths=${stdenv.glibc}/include:{B}/include") - configureFlagsArray+=("--libpaths=${stdenv.glibc}/lib") + configureFlagsArray+=("--crtprefix=${stdenv.glibc.out}/lib") + configureFlagsArray+=("--sysincludepaths=${stdenv.glibc.dev}/include:{B}/include") + configureFlagsArray+=("--libpaths=${stdenv.glibc.out}/lib") ''; doCheck = true; diff --git a/pkgs/development/compilers/urweb/default.nix b/pkgs/development/compilers/urweb/default.nix index f99571c6a10b..5fbfd8a96ac9 100644 --- a/pkgs/development/compilers/urweb/default.nix +++ b/pkgs/development/compilers/urweb/default.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { preConfigure = '' export PGHEADER="${postgresql}/include/libpq-fe.h"; export MSHEADER="${mysql.lib}/include/mysql/mysql.h"; - export SQHEADER="${sqlite}/include/sqlite3.h"; + export SQHEADER="${sqlite.dev}/include/sqlite3.h"; export CCARGS="-I$out/include \ -L${mysql.lib}/lib/mysql \ - -L${postgresql}/lib \ - -L${sqlite}/lib"; + -L${postgresql.lib}/lib \ + -L${sqlite.out}/lib"; ''; # Be sure to keep the statically linked libraries diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 20a338dd2cb8..f1e7efd3b12b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -29,6 +29,7 @@ self: super: { hspec_2_1_7 = super.hspec_2_1_7.override { stringbuilder = dontCheck super.stringbuilder; }; hspec_2_1_10 = super.hspec_2_1_10.override { stringbuilder = dontCheck super.stringbuilder; }; hspec_2_2_1 = super.hspec_2_2_1.override { stringbuilder = dontCheck super.stringbuilder; }; + hspec_2_2_2 = super.hspec_2_2_2.override { stringbuilder = dontCheck super.stringbuilder; }; hspec-expectations_0_6_1_1 = dontCheck super.hspec-expectations_0_6_1_1; hspec-expectations_0_6_1 = dontCheck super.hspec-expectations_0_6_1; hspec-expectations_0_7_1 = dontCheck super.hspec-expectations_0_7_1; @@ -43,9 +44,6 @@ self: super: { statistics = dontCheck super.statistics; c2hs = if pkgs.stdenv.isDarwin then dontCheck super.c2hs else super.c2hs; - # The package doesn't compile with ruby 1.9, which is our default at the moment. - hruby = super.hruby.override { ruby = pkgs.ruby_2_1; }; - # Use the default version of mysql to build this package (which is actually mariadb). mysql = super.mysql.override { mysql = pkgs.mysql.lib; }; @@ -223,8 +221,8 @@ self: super: { else super.x509-system; double-conversion = if !pkgs.stdenv.isDarwin - then super.double-conversion - else addBuildDepend (overrideCabal super.double-conversion (drv: + then addExtraLibrary super.double-conversion pkgs.stdenv.cc.cc.lib + else addExtraLibrary (overrideCabal super.double-conversion (drv: { postPatch = '' substituteInPlace double-conversion.cabal --replace stdc++ c++ @@ -958,8 +956,12 @@ self: super: { jsaddle = dontCheck super.jsaddle; # https://github.com/gwern/mueval/issues/14 - mueval = super.mueval.override { - hint = self.hint_0_4_3; - }; + mueval = super.mueval.override { hint = self.hint_0_4_3; }; + + # Looks like Avahi provides the missing library + dnssd = super.dnssd.override { dns_sd = pkgs.avahi.override { withLibdnssdCompat = true; }; }; + + # https://github.com/danidiaz/pipes-transduce/issues/2 + pipes-transduce = super.pipes-transduce.override { foldl = self.foldl_1_1_6; }; } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix index 648522914591..ac829daa485f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -125,11 +125,6 @@ self: super: { # https://github.com/kazu-yamamoto/unix-time/issues/30 unix-time = dontCheck super.unix-time; - present = appendPatch super.present (pkgs.fetchpatch { - url = "https://github.com/chrisdone/present/commit/6a61f099bf01e2127d0c68f1abe438cd3eaa15f7.patch"; - sha256 = "1vn3xm38v2f4lzyzkadvq322f3s2yf8c88v56wpdpzfxmvlzaqr8"; - }); - ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation { pname = "ghcjs-prim"; version = "0.1.0.0"; diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index f909336e669e..2e013ee940a2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -47,6 +47,16 @@ self: super: { hspec-core = dontCheck super.hspec-core; # Deviate from Stackage here to fix lots of builds. - transformers-compat = super.transformers-compat_0_5_1_4; + transformers-compat = self.transformers-compat_0_5_1_4; + + # https://github.com/sol/doctest/issues/125 + doctest = self.doctest_0_11_0; + + # No modules defined for this compiler. + fail = dontHaddock super.fail; + + # Version 4.x doesn't compile with transformers 0.5 or later. + comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33 + comonad = self.comonad_5; } diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index ecfc08b1d390..1c0536b67e67 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -191,6 +191,7 @@ dont-distribute-packages: AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-schema: [ i686-linux, x86_64-darwin, x86_64-linux ] aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] afv: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -206,6 +207,7 @@ dont-distribute-packages: al: [ i686-linux, x86_64-darwin, x86_64-linux ] alea: [ i686-linux, x86_64-darwin, x86_64-linux ] alga: [ i686-linux ] + algebra-sql: [ i686-linux, x86_64-darwin, x86_64-linux ] algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -289,7 +291,7 @@ dont-distribute-packages: atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] atom-msp430: [ x86_64-darwin, x86_64-linux ] - atomic-primops-foreign: [ x86_64-darwin ] + atomic-primops-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -362,6 +364,7 @@ dont-distribute-packages: berp: [ i686-linux, x86_64-darwin, x86_64-linux ] bff: [ i686-linux, x86_64-darwin, x86_64-linux ] bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] + bibdb: [ i686-linux, x86_64-darwin, x86_64-linux ] bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] BigPixel: [ x86_64-darwin ] @@ -417,6 +420,7 @@ dont-distribute-packages: bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] bindings-svm: [ x86_64-darwin ] + bindings-wlc: [ i686-linux, x86_64-darwin, x86_64-linux ] binembed-example: [ x86_64-darwin ] bio: [ i686-linux, x86_64-darwin, x86_64-linux ] Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -625,7 +629,7 @@ dont-distribute-packages: clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - clang-pure: [ x86_64-darwin ] + clang-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] clash: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -766,6 +770,7 @@ dont-distribute-packages: craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] + craze: [ i686-linux, x86_64-darwin, x86_64-linux ] crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -778,6 +783,7 @@ dont-distribute-packages: crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] + cryptonite-openssl: [ i686-linux, x86_64-darwin, x86_64-linux ] cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -854,6 +860,7 @@ dont-distribute-packages: ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-war: [ i686-linux, x86_64-darwin, x86_64-linux ] ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -913,6 +920,7 @@ dont-distribute-packages: DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DigitalOcean: [ i686-linux, x86_64-darwin, x86_64-linux ] DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -925,6 +933,7 @@ dont-distribute-packages: direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + discogs-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] discount: [ i686-linux, x86_64-darwin, x86_64-linux ] disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -977,6 +986,7 @@ dont-distribute-packages: dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsh-sql: [ i686-linux, x86_64-darwin, x86_64-linux ] dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1237,7 +1247,7 @@ dont-distribute-packages: funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] future: [ i686-linux, x86_64-darwin, x86_64-linux ] fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] - fwgl-glfw: [ i686-linux, x86_64-darwin ] + fwgl-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] fwgl: [ i686-linux ] g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] gact: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1303,6 +1313,10 @@ dont-distribute-packages: gi-girepository: [ i686-linux, x86_64-darwin ] gi-glib: [ i686-linux ] gi-gobject: [ i686-linux ] + gi-gst: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstbase: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstvideo: [ i686-linux, x86_64-darwin, x86_64-linux ] gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] gi-notify: [ i686-linux, x86_64-darwin ] @@ -1344,13 +1358,13 @@ dont-distribute-packages: glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-accelerate: [ x86_64-darwin ] + gloss-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] gloss-algorithms: [ x86_64-darwin ] gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] gloss-examples: [ x86_64-darwin ] - gloss-game: [ x86_64-darwin ] - gloss-juicy: [ x86_64-darwin ] + gloss-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-juicy: [ i686-linux, x86_64-darwin, x86_64-linux ] gloss-raster: [ x86_64-darwin ] gloss-rendering: [ x86_64-darwin ] gloss-sodium: [ x86_64-darwin ] @@ -1602,6 +1616,7 @@ dont-distribute-packages: haskell-mpi: [ x86_64-darwin ] haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1776,6 +1791,7 @@ dont-distribute-packages: hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgrev: [ i686-linux, x86_64-darwin, x86_64-linux ] hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1806,6 +1822,7 @@ dont-distribute-packages: HipmunkPlayground: [ x86_64-darwin ] hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hish: [ i686-linux, x86_64-darwin, x86_64-linux ] hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -1903,6 +1920,8 @@ dont-distribute-packages: hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ] + hpaco-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpaco: [ i686-linux, x86_64-darwin, x86_64-linux ] hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2125,7 +2144,7 @@ dont-distribute-packages: imm: [ i686-linux, x86_64-darwin, x86_64-linux ] imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - imperative-edsl: [ i686-linux, x86_64-darwin ] + imperative-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] improve: [ i686-linux, x86_64-darwin, x86_64-linux ] INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2148,6 +2167,7 @@ dont-distribute-packages: inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] inline-c-cpp: [ x86_64-darwin ] inline-r: [ i686-linux, x86_64-darwin ] + instant-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2230,6 +2250,7 @@ dont-distribute-packages: JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsonschema-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] judy: [ i686-linux, x86_64-darwin, x86_64-linux ] jukebox: [ x86_64-darwin ] @@ -2512,8 +2533,8 @@ dont-distribute-packages: manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] - manifold-random: [ x86_64-darwin ] - manifolds: [ x86_64-darwin ] + manifold-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + manifolds: [ i686-linux, x86_64-darwin, x86_64-linux ] mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2595,6 +2616,7 @@ dont-distribute-packages: modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] Moe: [ x86_64-darwin ] + MoeDict: [ i686-linux, x86_64-darwin, x86_64-linux ] mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2822,6 +2844,7 @@ dont-distribute-packages: OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] + operational-alacarte: [ i686-linux, x86_64-darwin, x86_64-linux ] optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -2978,6 +3001,7 @@ dont-distribute-packages: posix-realtime: [ x86_64-darwin ] posix-timer: [ x86_64-darwin ] posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] + postcodes: [ i686-linux, x86_64-darwin, x86_64-linux ] postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3411,6 +3435,7 @@ dont-distribute-packages: sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] sized: [ i686-linux, x86_64-darwin, x86_64-linux ] skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] + skulk: [ i686-linux, x86_64-darwin, x86_64-linux ] skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] slack: [ i686-linux, x86_64-darwin, x86_64-linux ] slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3574,6 +3599,7 @@ dont-distribute-packages: syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym: [ i686-linux, x86_64-darwin, x86_64-linux ] symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] sync-mht: [ i686-linux ] sync: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3692,6 +3718,7 @@ dont-distribute-packages: time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] + timelike-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] timemap: [ i686-linux, x86_64-darwin, x86_64-linux ] timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3780,6 +3807,7 @@ dont-distribute-packages: typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] typed-spreadsheet: [ x86_64-darwin ] + typed-wire-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] @@ -3846,6 +3874,7 @@ dont-distribute-packages: vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] var: [ i686-linux, x86_64-darwin, x86_64-linux ] + varying: [ i686-linux, x86_64-darwin, x86_64-linux ] vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] vcache-trie: [ x86_64-darwin ] vcache: [ x86_64-darwin ] @@ -3870,6 +3899,7 @@ dont-distribute-packages: vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + vinyl-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] vision: [ i686-linux, x86_64-darwin, x86_64-linux ] diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 4288e9417f7d..76ae38156f3f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_8"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2777,6 +2788,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2859,6 +2871,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2936,6 +2949,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3015,6 +3029,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3129,6 +3144,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3364,6 +3380,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3551,6 +3568,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4046,6 +4067,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4194,6 +4216,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4811,6 +4834,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4851,6 +4875,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4898,6 +4923,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5044,6 +5070,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5101,6 +5129,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5113,12 +5142,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5179,6 +5211,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5204,6 +5237,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5333,6 +5367,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5536,6 +5571,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5645,6 +5681,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5663,6 +5700,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5731,6 +5769,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5941,6 +5980,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6026,6 +6066,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6796,6 +6837,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6945,11 +6987,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7010,6 +7055,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7103,6 +7149,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7114,6 +7161,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7209,6 +7257,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7351,6 +7400,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7380,11 +7431,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7630,6 +7683,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7750,6 +7804,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -8000,6 +8055,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8067,6 +8123,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8316,6 +8375,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8506,6 +8566,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8622,6 +8683,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8916,6 +8978,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -9000,6 +9063,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 73a65c8b5a75..af27bea6a66c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2777,6 +2788,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2859,6 +2871,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2936,6 +2949,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3015,6 +3029,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3129,6 +3144,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3364,6 +3380,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3551,6 +3568,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4046,6 +4067,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4194,6 +4216,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4811,6 +4834,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4851,6 +4875,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4898,6 +4923,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5044,6 +5070,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5101,6 +5129,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5113,12 +5142,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5179,6 +5211,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5204,6 +5237,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5333,6 +5367,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5536,6 +5571,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5645,6 +5681,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5663,6 +5700,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5731,6 +5769,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5941,6 +5980,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6026,6 +6066,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6796,6 +6837,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6945,11 +6987,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7010,6 +7055,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7103,6 +7149,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7114,6 +7161,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7209,6 +7257,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7351,6 +7400,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7380,11 +7431,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7630,6 +7683,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7750,6 +7804,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -8000,6 +8055,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8067,6 +8123,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8316,6 +8375,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8506,6 +8566,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8622,6 +8683,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8916,6 +8978,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -9000,6 +9063,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 6e6eb1960fb4..e91ec4ef1efd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2777,6 +2788,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2859,6 +2871,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2936,6 +2949,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3015,6 +3029,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3129,6 +3144,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3364,6 +3380,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3551,6 +3568,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4046,6 +4067,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4194,6 +4216,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4811,6 +4834,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4851,6 +4875,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4898,6 +4923,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5044,6 +5070,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5101,6 +5129,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5113,12 +5142,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5179,6 +5211,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5204,6 +5237,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5333,6 +5367,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5536,6 +5571,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5645,6 +5681,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5663,6 +5700,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5731,6 +5769,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5941,6 +5980,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6026,6 +6066,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6796,6 +6837,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6945,11 +6987,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7010,6 +7055,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7103,6 +7149,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7114,6 +7161,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7209,6 +7257,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7351,6 +7400,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7380,11 +7431,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7630,6 +7683,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7750,6 +7804,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -8000,6 +8055,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8067,6 +8123,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8316,6 +8375,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8506,6 +8566,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8622,6 +8683,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8916,6 +8978,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -9000,6 +9063,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index dd2c73dd9e73..4ba0dc18bc6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2777,6 +2788,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2859,6 +2871,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2936,6 +2949,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3015,6 +3029,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3129,6 +3144,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3364,6 +3380,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3551,6 +3568,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4046,6 +4067,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4194,6 +4216,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4811,6 +4834,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4851,6 +4875,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4898,6 +4923,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5044,6 +5070,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5101,6 +5129,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5113,12 +5142,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5179,6 +5211,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5204,6 +5237,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5333,6 +5367,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5536,6 +5571,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5645,6 +5681,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5663,6 +5700,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5731,6 +5769,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5941,6 +5980,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6026,6 +6066,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6796,6 +6837,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6945,11 +6987,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7010,6 +7055,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7103,6 +7149,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7114,6 +7161,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7209,6 +7257,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7351,6 +7400,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7380,11 +7431,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7630,6 +7683,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7750,6 +7804,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -8000,6 +8055,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8067,6 +8123,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8316,6 +8375,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8506,6 +8566,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8622,6 +8683,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8916,6 +8978,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -9000,6 +9063,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 40c40c0771a3..b4e24ace05cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2776,6 +2787,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2858,6 +2870,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2935,6 +2948,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3014,6 +3028,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3128,6 +3143,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3363,6 +3379,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3550,6 +3567,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4043,6 +4064,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4191,6 +4213,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4808,6 +4831,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4848,6 +4872,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4895,6 +4920,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5041,6 +5067,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5098,6 +5126,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5110,12 +5139,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5176,6 +5208,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5201,6 +5234,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5330,6 +5364,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5533,6 +5568,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5642,6 +5678,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5660,6 +5697,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5728,6 +5766,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5938,6 +5977,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6023,6 +6063,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6793,6 +6834,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6942,11 +6984,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7007,6 +7052,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7100,6 +7146,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7111,6 +7158,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7205,6 +7253,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7347,6 +7396,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7376,11 +7427,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7626,6 +7679,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7746,6 +7800,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7996,6 +8051,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8063,6 +8119,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8312,6 +8371,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8502,6 +8562,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8618,6 +8679,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8912,6 +8974,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8996,6 +9059,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 5ba1a29c13ba..3a57c2b731b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -965,6 +965,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1133,6 +1134,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1340,6 +1342,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1464,6 +1467,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1621,6 +1625,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1715,6 +1720,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1741,6 +1747,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2257,6 +2264,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2400,6 +2408,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2430,6 +2440,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2776,6 +2787,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2858,6 +2870,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2935,6 +2948,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3014,6 +3028,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3128,6 +3143,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3363,6 +3379,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3550,6 +3567,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4043,6 +4064,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4191,6 +4213,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4808,6 +4831,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4848,6 +4872,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4895,6 +4920,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5041,6 +5067,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5098,6 +5126,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5110,12 +5139,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5176,6 +5208,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5201,6 +5234,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5330,6 +5364,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5533,6 +5568,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5642,6 +5678,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5660,6 +5697,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5728,6 +5766,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5938,6 +5977,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6023,6 +6063,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6793,6 +6834,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6942,11 +6984,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7007,6 +7052,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7100,6 +7146,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7111,6 +7158,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = doDistribute super."regular_0_3_4_3"; "regular-extras" = dontDistribute super."regular-extras"; @@ -7205,6 +7253,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7347,6 +7396,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7376,11 +7427,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7626,6 +7679,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7746,6 +7800,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7996,6 +8051,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8063,6 +8119,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8312,6 +8371,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8502,6 +8562,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8618,6 +8679,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8912,6 +8974,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8996,6 +9059,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 893b31324632..1bb176c3c12e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -964,6 +964,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1132,6 +1133,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1339,6 +1341,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1463,6 +1466,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1620,6 +1624,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1714,6 +1719,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1740,6 +1746,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2256,6 +2263,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2399,6 +2407,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2429,6 +2439,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2775,6 +2786,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2857,6 +2869,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2934,6 +2947,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3013,6 +3027,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3127,6 +3142,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3362,6 +3378,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3549,6 +3566,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4042,6 +4063,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4189,6 +4211,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4806,6 +4829,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4846,6 +4870,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4893,6 +4918,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5039,6 +5065,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5096,6 +5124,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5108,12 +5137,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5174,6 +5206,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5199,6 +5232,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5328,6 +5362,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5531,6 +5566,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5640,6 +5676,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5658,6 +5695,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5726,6 +5764,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5936,6 +5975,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6021,6 +6061,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6791,6 +6832,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6940,11 +6982,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7005,6 +7050,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7098,6 +7144,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7109,6 +7156,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7202,6 +7250,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7344,6 +7393,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7373,11 +7424,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7623,6 +7676,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7743,6 +7797,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7993,6 +8048,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8060,6 +8116,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8309,6 +8368,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8499,6 +8559,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8615,6 +8676,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8909,6 +8971,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8993,6 +9056,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 086a8f96caa6..10bf8a3834df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -964,6 +964,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1132,6 +1133,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1339,6 +1341,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1463,6 +1466,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1620,6 +1624,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1714,6 +1719,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1740,6 +1746,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2256,6 +2263,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2399,6 +2407,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2429,6 +2439,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2775,6 +2786,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2857,6 +2869,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2934,6 +2947,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3013,6 +3027,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3127,6 +3142,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3362,6 +3378,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3549,6 +3566,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4042,6 +4063,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4189,6 +4211,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4806,6 +4829,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4846,6 +4870,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4893,6 +4918,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5039,6 +5065,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5096,6 +5124,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5108,12 +5137,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5174,6 +5206,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5199,6 +5232,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5328,6 +5362,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5531,6 +5566,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5640,6 +5676,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5658,6 +5695,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5726,6 +5764,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5936,6 +5975,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6021,6 +6061,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6791,6 +6832,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6940,11 +6982,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -7005,6 +7050,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7098,6 +7144,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7109,6 +7156,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7202,6 +7250,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7344,6 +7393,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7373,11 +7424,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7623,6 +7676,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7743,6 +7797,7 @@ self: super: { "socketson" = dontDistribute super."socketson"; "sodium" = doDistribute super."sodium_0_11_0_2"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7993,6 +8048,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8060,6 +8116,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8309,6 +8368,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8499,6 +8559,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = dontDistribute super."type-list"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8615,6 +8676,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8909,6 +8971,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8993,6 +9056,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index aa31bb4fc7a5..6612f19fdf5e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -961,6 +961,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1129,6 +1130,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1336,6 +1338,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1460,6 +1463,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1617,6 +1621,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1710,6 +1715,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1736,6 +1742,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2250,6 +2257,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2393,6 +2401,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2422,6 +2432,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2768,6 +2779,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2850,6 +2862,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2927,6 +2940,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3004,6 +3018,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3119,6 +3134,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3354,6 +3370,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3541,6 +3558,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4034,6 +4055,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4181,6 +4203,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4797,6 +4820,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4837,6 +4861,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4884,6 +4909,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5030,6 +5056,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5087,6 +5115,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5099,12 +5128,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5165,6 +5197,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5190,6 +5223,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5319,6 +5353,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5522,6 +5557,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5631,6 +5667,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5649,6 +5686,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5717,6 +5755,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5927,6 +5966,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6012,6 +6052,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6782,6 +6823,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6931,11 +6973,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6996,6 +7041,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7089,6 +7135,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7100,6 +7147,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7192,6 +7240,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7334,6 +7383,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7363,11 +7414,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7613,6 +7666,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7732,6 +7786,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7982,6 +8037,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8049,6 +8105,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8298,6 +8357,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8488,6 +8548,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8603,6 +8664,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8897,6 +8959,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8981,6 +9044,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 51578a50705b..a0e29bada3d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -961,6 +961,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1129,6 +1130,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1336,6 +1338,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1460,6 +1463,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1617,6 +1621,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1710,6 +1715,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1736,6 +1742,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2249,6 +2256,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2392,6 +2400,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2420,6 +2430,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2766,6 +2777,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2847,6 +2859,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2924,6 +2937,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -3001,6 +3015,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3116,6 +3131,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3351,6 +3367,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3538,6 +3555,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4030,6 +4051,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4177,6 +4199,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4791,6 +4814,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4831,6 +4855,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4878,6 +4903,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5024,6 +5050,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5081,6 +5109,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5093,12 +5122,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5159,6 +5191,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5184,6 +5217,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5313,6 +5347,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5516,6 +5551,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5625,6 +5661,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5643,6 +5680,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5711,6 +5749,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5920,6 +5959,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6005,6 +6045,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6775,6 +6816,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6924,11 +6966,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6989,6 +7034,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7082,6 +7128,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7093,6 +7140,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7185,6 +7233,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7327,6 +7376,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7356,11 +7407,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7605,6 +7658,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7724,6 +7778,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7973,6 +8028,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8040,6 +8096,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8286,6 +8345,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8476,6 +8536,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8590,6 +8651,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8884,6 +8946,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8968,6 +9031,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 3a67b223ac75..da5284cd71b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3343,6 +3359,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3529,6 +3546,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4020,6 +4041,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4166,6 +4188,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4780,6 +4803,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4820,6 +4844,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4862,6 +4887,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5008,6 +5034,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5065,6 +5093,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5077,12 +5106,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5143,6 +5175,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5168,6 +5201,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5297,6 +5331,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5499,6 +5534,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5608,6 +5644,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5626,6 +5663,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5694,6 +5732,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5903,6 +5942,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5987,6 +6027,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6755,6 +6796,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6904,11 +6946,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6968,6 +7013,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7061,6 +7107,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7072,6 +7119,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7164,6 +7212,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7306,6 +7355,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7335,11 +7386,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7582,6 +7635,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7701,6 +7755,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7950,6 +8005,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8017,6 +8073,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8261,6 +8320,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8449,6 +8509,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8563,6 +8624,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8856,6 +8918,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8939,6 +9002,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index d2edd343231a..fce3ad89e814 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3342,6 +3358,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3528,6 +3545,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4019,6 +4040,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4165,6 +4187,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4779,6 +4802,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4819,6 +4843,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4860,6 +4885,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5005,6 +5031,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5062,6 +5090,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5074,12 +5103,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5140,6 +5172,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5165,6 +5198,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5294,6 +5328,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5495,6 +5530,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5604,6 +5640,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5622,6 +5659,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5690,6 +5728,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5899,6 +5938,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5983,6 +6023,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6751,6 +6792,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6900,11 +6942,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6964,6 +7009,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7057,6 +7103,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7068,6 +7115,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7160,6 +7208,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7302,6 +7351,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7331,11 +7382,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7578,6 +7631,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7697,6 +7751,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7946,6 +8001,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8013,6 +8069,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8257,6 +8316,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8445,6 +8505,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8559,6 +8620,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8852,6 +8914,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8935,6 +8998,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 52b17245d476..1514facb15d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3342,6 +3358,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3528,6 +3545,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4019,6 +4040,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4165,6 +4187,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4778,6 +4801,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4818,6 +4842,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4859,6 +4884,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5004,6 +5030,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5061,6 +5089,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5073,12 +5102,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5139,6 +5171,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5164,6 +5197,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5293,6 +5327,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5494,6 +5529,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5603,6 +5639,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5621,6 +5658,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5689,6 +5727,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5898,6 +5937,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5982,6 +6022,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6750,6 +6791,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6899,11 +6941,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6963,6 +7008,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7056,6 +7102,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7067,6 +7114,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7159,6 +7207,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7301,6 +7350,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7330,11 +7381,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7577,6 +7630,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7696,6 +7750,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7945,6 +8000,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8012,6 +8068,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8182,6 +8241,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8255,6 +8315,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8443,6 +8504,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8557,6 +8619,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8850,6 +8913,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8933,6 +8997,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index f52251d185c3..a96b87bc33cc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3342,6 +3358,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3528,6 +3545,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4018,6 +4039,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4164,6 +4186,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4777,6 +4800,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4817,6 +4841,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4858,6 +4883,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5003,6 +5029,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5060,6 +5088,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5072,12 +5101,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5138,6 +5170,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5163,6 +5196,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5292,6 +5326,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5493,6 +5528,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5602,6 +5638,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5620,6 +5657,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5688,6 +5726,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5897,6 +5936,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5981,6 +6021,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6749,6 +6790,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6898,11 +6940,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6962,6 +7007,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7055,6 +7101,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7066,6 +7113,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7158,6 +7206,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7300,6 +7349,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7329,11 +7380,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7576,6 +7629,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7695,6 +7749,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7944,6 +7999,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8011,6 +8067,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8180,6 +8239,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8253,6 +8313,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8441,6 +8502,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8555,6 +8617,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8848,6 +8911,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8931,6 +8995,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 159383635a0c..b2c6af6a0abd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -959,6 +959,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1127,6 +1128,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1334,6 +1336,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1458,6 +1461,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1614,6 +1618,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1707,6 +1712,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1733,6 +1739,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2244,6 +2251,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2387,6 +2395,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2413,6 +2423,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2759,6 +2770,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2840,6 +2852,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2917,6 +2930,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2994,6 +3008,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3109,6 +3124,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3339,6 +3355,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3525,6 +3542,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4015,6 +4036,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4161,6 +4183,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4774,6 +4797,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4814,6 +4838,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4855,6 +4880,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5000,6 +5026,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5057,6 +5085,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5069,12 +5098,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5135,6 +5167,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5160,6 +5193,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5289,6 +5323,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5490,6 +5525,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5599,6 +5635,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5617,6 +5654,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5685,6 +5723,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5893,6 +5932,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5977,6 +6017,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6745,6 +6786,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6893,11 +6935,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6957,6 +7002,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7050,6 +7096,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7061,6 +7108,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7153,6 +7201,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7295,6 +7344,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7324,11 +7375,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7571,6 +7624,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7690,6 +7744,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7939,6 +7994,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8006,6 +8062,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8175,6 +8234,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8248,6 +8308,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8436,6 +8497,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8550,6 +8612,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8843,6 +8906,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8926,6 +8990,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index c50ca30fa777..277d0afdb9c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -958,6 +958,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1126,6 +1127,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1333,6 +1335,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1457,6 +1460,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1613,6 +1617,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1706,6 +1711,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1732,6 +1738,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2242,6 +2249,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2385,6 +2393,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2411,6 +2421,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2756,6 +2767,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2837,6 +2849,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2914,6 +2927,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2990,6 +3004,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3105,6 +3120,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3335,6 +3351,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3521,6 +3538,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4011,6 +4032,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4157,6 +4179,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4770,6 +4793,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4810,6 +4834,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4851,6 +4876,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4996,6 +5022,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5053,6 +5081,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5065,12 +5094,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5131,6 +5163,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5156,6 +5189,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5285,6 +5319,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5486,6 +5521,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5595,6 +5631,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5613,6 +5650,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5681,6 +5719,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5889,6 +5928,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5973,6 +6013,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6739,6 +6780,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6886,11 +6928,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6950,6 +6995,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7043,6 +7089,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7054,6 +7101,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7146,6 +7194,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7288,6 +7337,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7317,11 +7368,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7564,6 +7617,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7683,6 +7737,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7930,6 +7985,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -7997,6 +8053,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8166,6 +8225,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8239,6 +8299,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8427,6 +8488,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8541,6 +8603,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8834,6 +8897,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8916,6 +8980,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index f4fd2cd85764..704d124cfe29 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -961,6 +961,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1129,6 +1130,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1336,6 +1338,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1460,6 +1463,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1617,6 +1621,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1710,6 +1715,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1736,6 +1742,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2248,6 +2255,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2391,6 +2399,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2418,6 +2428,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2764,6 +2775,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2845,6 +2857,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2922,6 +2935,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2999,6 +3013,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3114,6 +3129,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3349,6 +3365,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3535,6 +3552,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4027,6 +4048,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4174,6 +4196,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4788,6 +4811,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4828,6 +4852,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4875,6 +4900,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5021,6 +5047,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5078,6 +5106,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5090,12 +5119,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5156,6 +5188,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5181,6 +5214,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5310,6 +5344,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5513,6 +5548,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5622,6 +5658,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5640,6 +5677,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5708,6 +5746,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5917,6 +5956,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -6002,6 +6042,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6771,6 +6812,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6920,11 +6962,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6984,6 +7029,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7077,6 +7123,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7088,6 +7135,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7180,6 +7228,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7322,6 +7371,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7351,11 +7402,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7599,6 +7652,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7718,6 +7772,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7967,6 +8022,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8034,6 +8090,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8280,6 +8339,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8470,6 +8530,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8584,6 +8645,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8878,6 +8940,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8962,6 +9025,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index fb9749c94860..65b5d6c624e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2247,6 +2254,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2390,6 +2398,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2417,6 +2427,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2763,6 +2774,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2844,6 +2856,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2921,6 +2934,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2998,6 +3012,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3113,6 +3128,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3347,6 +3363,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3533,6 +3550,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4025,6 +4046,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4171,6 +4193,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4785,6 +4808,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4825,6 +4849,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4872,6 +4897,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5018,6 +5044,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5075,6 +5103,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5087,12 +5116,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5153,6 +5185,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5178,6 +5211,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5307,6 +5341,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5510,6 +5545,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5619,6 +5655,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5637,6 +5674,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5705,6 +5743,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5914,6 +5953,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5998,6 +6038,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6767,6 +6808,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6916,11 +6958,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6980,6 +7025,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7073,6 +7119,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7084,6 +7131,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7176,6 +7224,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7318,6 +7367,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7347,11 +7398,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7595,6 +7648,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7714,6 +7768,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7963,6 +8018,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8030,6 +8086,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8275,6 +8334,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8465,6 +8525,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8579,6 +8640,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8873,6 +8935,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8957,6 +9020,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 4e3b2b6eec38..04d8f345d947 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3346,6 +3362,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3532,6 +3549,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4024,6 +4045,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4170,6 +4192,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4784,6 +4807,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4824,6 +4848,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4871,6 +4896,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5017,6 +5043,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_0_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5074,6 +5102,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5086,12 +5115,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5152,6 +5184,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5177,6 +5210,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5306,6 +5340,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5509,6 +5544,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5618,6 +5654,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5636,6 +5673,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5704,6 +5742,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5913,6 +5952,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5997,6 +6037,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6766,6 +6807,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6915,11 +6957,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6979,6 +7024,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7072,6 +7118,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7083,6 +7130,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7175,6 +7223,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7317,6 +7366,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7346,11 +7397,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7594,6 +7647,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7713,6 +7767,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7962,6 +8017,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8029,6 +8085,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8274,6 +8333,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8463,6 +8523,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8577,6 +8638,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8870,6 +8932,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8954,6 +9017,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index fe328d71f91b..acb8e4c73985 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3346,6 +3362,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3532,6 +3549,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4024,6 +4045,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4170,6 +4192,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4784,6 +4807,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4824,6 +4848,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4866,6 +4891,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5012,6 +5038,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5069,6 +5097,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5081,12 +5110,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5147,6 +5179,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5172,6 +5205,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5301,6 +5335,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5504,6 +5539,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5613,6 +5649,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5631,6 +5668,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5699,6 +5737,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5908,6 +5947,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5992,6 +6032,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6761,6 +6802,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6910,11 +6952,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6974,6 +7019,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7067,6 +7113,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7078,6 +7125,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7170,6 +7218,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7312,6 +7361,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7341,11 +7392,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7589,6 +7642,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7708,6 +7762,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7957,6 +8012,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8024,6 +8080,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8269,6 +8328,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8458,6 +8518,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8572,6 +8633,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8865,6 +8927,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8949,6 +9012,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index d14e5b4a2f1a..b68f0ea1bb22 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3344,6 +3360,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3530,6 +3547,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4021,6 +4042,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4167,6 +4189,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4781,6 +4804,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4821,6 +4845,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4863,6 +4888,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5009,6 +5035,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5066,6 +5094,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5078,12 +5107,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5144,6 +5176,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5169,6 +5202,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5298,6 +5332,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5500,6 +5535,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5609,6 +5645,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5627,6 +5664,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5695,6 +5733,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5904,6 +5943,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5988,6 +6028,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6757,6 +6798,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6906,11 +6948,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6970,6 +7015,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7063,6 +7109,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7074,6 +7121,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7166,6 +7214,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7308,6 +7357,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7337,11 +7388,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7585,6 +7638,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7704,6 +7758,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7953,6 +8008,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8020,6 +8076,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8265,6 +8324,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8453,6 +8513,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8567,6 +8628,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8860,6 +8922,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8944,6 +9007,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index e41abe399da2..bd38b54e1732 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -960,6 +960,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1128,6 +1129,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1335,6 +1337,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1459,6 +1462,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1616,6 +1620,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1709,6 +1714,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1735,6 +1741,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2246,6 +2253,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2389,6 +2397,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2416,6 +2426,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = dontDistribute super."cryptol"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2762,6 +2773,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2843,6 +2855,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2920,6 +2933,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = dontDistribute super."effect-handlers"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2997,6 +3011,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3112,6 +3127,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -3343,6 +3359,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3529,6 +3546,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -4020,6 +4041,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4166,6 +4188,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4780,6 +4803,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4820,6 +4844,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4862,6 +4887,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -5008,6 +5034,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5065,6 +5093,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5077,12 +5106,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5143,6 +5175,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5168,6 +5201,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5297,6 +5331,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5499,6 +5534,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5608,6 +5644,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5626,6 +5663,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5694,6 +5732,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5903,6 +5942,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5987,6 +6027,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6756,6 +6797,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6905,11 +6947,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6969,6 +7014,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -7062,6 +7108,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7073,6 +7120,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7165,6 +7213,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7307,6 +7356,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7336,11 +7387,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7584,6 +7637,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7703,6 +7757,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7952,6 +8007,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = dontDistribute super."svg-tree"; @@ -8019,6 +8075,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8264,6 +8323,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8452,6 +8512,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8566,6 +8627,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8859,6 +8921,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8943,6 +9006,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 76cdad114a39..30ba247b98fc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -952,6 +952,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1120,6 +1121,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1449,6 +1452,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1605,6 +1609,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1698,6 +1703,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1724,6 +1730,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2231,6 +2238,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2373,6 +2381,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2398,6 +2408,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2743,6 +2754,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2824,6 +2836,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2901,6 +2914,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2978,6 +2992,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3092,6 +3107,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3320,6 +3336,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3506,6 +3523,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3994,6 +4015,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4140,6 +4162,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4750,6 +4773,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4790,6 +4814,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4828,6 +4853,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4971,6 +4997,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5028,6 +5056,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5040,12 +5069,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5104,6 +5136,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5129,6 +5162,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5256,6 +5290,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2"; @@ -5454,6 +5489,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5562,6 +5598,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5580,6 +5617,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5648,6 +5686,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5851,6 +5890,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_3"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5934,6 +5974,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6693,6 +6734,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6841,11 +6883,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6905,6 +6950,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6998,6 +7044,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7009,6 +7056,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7101,6 +7149,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7243,6 +7292,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7272,11 +7323,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7517,6 +7570,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7633,6 +7687,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7880,6 +7935,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_0_2"; @@ -7945,6 +8001,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8114,6 +8173,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8187,6 +8247,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8374,6 +8435,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8488,6 +8550,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8779,6 +8842,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8860,6 +8924,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index e9b6c46cb691..7b1e884ee583 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -952,6 +952,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1120,6 +1121,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1327,6 +1329,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1449,6 +1452,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1605,6 +1609,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1698,6 +1703,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1724,6 +1730,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2230,6 +2237,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2372,6 +2380,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2397,6 +2407,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2742,6 +2753,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2823,6 +2835,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2900,6 +2913,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2977,6 +2991,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3091,6 +3106,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3319,6 +3335,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3505,6 +3522,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3993,6 +4014,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4139,6 +4161,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4749,6 +4772,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4789,6 +4813,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4827,6 +4852,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4970,6 +4996,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5027,6 +5055,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5039,12 +5068,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5103,6 +5135,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5128,6 +5161,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5255,6 +5289,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2"; @@ -5453,6 +5488,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5561,6 +5597,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5579,6 +5616,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5647,6 +5685,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5850,6 +5889,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5933,6 +5973,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6692,6 +6733,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6840,11 +6882,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6904,6 +6949,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6997,6 +7043,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7008,6 +7055,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7100,6 +7148,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7242,6 +7291,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7271,11 +7322,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7516,6 +7569,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7632,6 +7686,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7879,6 +7934,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_0_2"; @@ -7944,6 +8000,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8113,6 +8172,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8186,6 +8246,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8373,6 +8434,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8487,6 +8549,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8777,6 +8840,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8858,6 +8922,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 04377238e10d..2b4bcfffd6e8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1322,6 +1324,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1444,6 +1447,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1597,6 +1601,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1689,6 +1694,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1715,6 +1721,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2219,6 +2226,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2360,6 +2368,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2385,6 +2395,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2729,6 +2740,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2810,6 +2822,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2886,6 +2899,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2963,6 +2977,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3076,6 +3091,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3302,6 +3318,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3488,6 +3505,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3974,6 +3995,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4120,6 +4142,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4728,6 +4751,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4768,6 +4792,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4805,6 +4830,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4948,6 +4974,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5005,6 +5033,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5017,12 +5046,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5079,6 +5111,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5104,6 +5137,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5231,6 +5265,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5428,6 +5463,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5536,6 +5572,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5554,6 +5591,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5619,6 +5657,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5822,6 +5861,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5906,6 +5946,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6661,6 +6702,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6808,11 +6850,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6872,6 +6917,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6965,6 +7011,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6976,6 +7023,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7067,6 +7115,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7208,6 +7257,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7237,11 +7288,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7482,6 +7535,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7597,6 +7651,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7839,6 +7894,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7902,6 +7958,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8071,6 +8130,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8144,6 +8204,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8329,6 +8390,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8443,6 +8505,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8733,6 +8796,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8813,6 +8877,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index ed39707ac201..25c4b95bba16 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1321,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1443,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1596,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1688,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1714,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2218,6 +2225,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2359,6 +2367,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2384,6 +2394,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2728,6 +2739,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2809,6 +2821,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2885,6 +2898,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2962,6 +2976,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3075,6 +3090,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3301,6 +3317,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3486,6 +3503,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3972,6 +3993,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4118,6 +4140,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4725,6 +4748,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4765,6 +4789,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4802,6 +4827,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4945,6 +4971,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5002,6 +5030,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5014,12 +5043,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5075,6 +5107,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5100,6 +5133,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5227,6 +5261,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5424,6 +5459,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5532,6 +5568,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5550,6 +5587,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5615,6 +5653,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5817,6 +5856,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5901,6 +5941,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6655,6 +6696,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6802,11 +6844,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6866,6 +6911,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6959,6 +7005,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6970,6 +7017,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7060,6 +7108,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7201,6 +7250,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7230,11 +7281,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7475,6 +7528,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7590,6 +7644,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7831,6 +7886,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7893,6 +7949,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8062,6 +8121,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8135,6 +8195,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8320,6 +8381,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8434,6 +8496,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8724,6 +8787,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8804,6 +8868,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 3084bd6e5b8d..15edd3cf4aa9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1321,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1443,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1596,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1688,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1714,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2218,6 +2225,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2359,6 +2367,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2384,6 +2394,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2728,6 +2739,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2809,6 +2821,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2885,6 +2898,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2962,6 +2976,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3075,6 +3090,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3301,6 +3317,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3486,6 +3503,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3972,6 +3993,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4118,6 +4140,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4725,6 +4748,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4765,6 +4789,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4802,6 +4827,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4945,6 +4971,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5002,6 +5030,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5014,12 +5043,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5075,6 +5107,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5100,6 +5133,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5227,6 +5261,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5424,6 +5459,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5532,6 +5568,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5550,6 +5587,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5615,6 +5653,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5817,6 +5856,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5901,6 +5941,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6655,6 +6696,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6802,11 +6844,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6866,6 +6911,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6959,6 +7005,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6970,6 +7017,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7060,6 +7108,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7201,6 +7250,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7230,11 +7281,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7474,6 +7527,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7589,6 +7643,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7830,6 +7885,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7892,6 +7948,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8061,6 +8120,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8134,6 +8194,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8319,6 +8380,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8433,6 +8495,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8723,6 +8786,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8803,6 +8867,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index fe188ea6fb0b..f7f3d0135900 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1321,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1443,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1596,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1688,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1714,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2218,6 +2225,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2359,6 +2367,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2384,6 +2394,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2728,6 +2739,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2809,6 +2821,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2885,6 +2898,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2962,6 +2976,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3075,6 +3090,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3301,6 +3317,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3486,6 +3503,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3971,6 +3992,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4117,6 +4139,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4724,6 +4747,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4764,6 +4788,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4801,6 +4826,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4943,6 +4969,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5000,6 +5028,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5012,12 +5041,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5073,6 +5105,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5098,6 +5131,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5225,6 +5259,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; @@ -5422,6 +5457,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5530,6 +5566,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5548,6 +5585,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5613,6 +5651,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5815,6 +5854,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5899,6 +5939,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6653,6 +6694,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6800,11 +6842,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6864,6 +6909,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6957,6 +7003,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6968,6 +7015,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7058,6 +7106,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7199,6 +7248,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7228,11 +7279,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7472,6 +7525,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7587,6 +7641,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7828,6 +7883,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7890,6 +7946,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8059,6 +8118,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8132,6 +8192,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8317,6 +8378,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8431,6 +8493,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8721,6 +8784,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8801,6 +8865,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 280d11093337..2db86ffa7af9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1442,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1595,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1687,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1713,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2217,6 +2225,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2358,6 +2367,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2383,6 +2394,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2727,6 +2739,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2808,6 +2821,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2884,6 +2898,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2961,6 +2976,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3074,6 +3090,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3299,6 +3316,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3484,6 +3502,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3969,6 +3991,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4115,6 +4138,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4721,6 +4745,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4761,6 +4786,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4798,6 +4824,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4940,6 +4967,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4997,6 +5026,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5009,12 +5039,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5070,6 +5103,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5095,6 +5129,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5222,6 +5257,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; @@ -5419,6 +5455,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5527,6 +5564,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5545,6 +5583,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5610,6 +5649,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5812,6 +5852,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5896,6 +5937,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6650,6 +6692,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6797,11 +6840,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6861,6 +6907,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6954,6 +7001,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6965,6 +7013,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7055,6 +7104,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7196,6 +7246,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7225,11 +7277,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7468,6 +7522,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7583,6 +7638,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7824,6 +7880,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7886,6 +7943,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8055,6 +8115,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8128,6 +8189,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8313,6 +8375,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8427,6 +8490,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8717,6 +8781,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8796,6 +8861,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index baed9b4b6d26..b80dfba74b5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1442,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1595,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1687,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1713,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2217,6 +2225,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2358,6 +2367,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2383,6 +2394,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2727,6 +2739,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2808,6 +2821,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2884,6 +2898,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2960,6 +2975,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3073,6 +3089,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3298,6 +3315,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3483,6 +3501,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3968,6 +3990,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4114,6 +4137,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4720,6 +4744,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4760,6 +4785,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4797,6 +4823,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4939,6 +4966,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4996,6 +5025,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5008,12 +5038,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5069,6 +5102,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5094,6 +5128,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5221,6 +5256,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; @@ -5418,6 +5454,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5526,6 +5563,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5544,6 +5582,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5609,6 +5648,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5810,6 +5850,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5894,6 +5935,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6648,6 +6690,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6795,11 +6838,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6859,6 +6905,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6952,6 +6999,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6963,6 +7011,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7053,6 +7102,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7194,6 +7244,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7223,11 +7275,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7466,6 +7520,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7581,6 +7636,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7821,6 +7877,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7883,6 +7940,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8052,6 +8112,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8125,6 +8186,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8310,6 +8372,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8424,6 +8487,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8714,6 +8778,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8793,6 +8858,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8952,6 +9018,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index d439bfd44ad0..ce6662633818 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1442,6 +1446,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1595,6 +1600,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1687,6 +1693,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1713,6 +1720,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2216,6 +2224,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2356,6 +2365,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2381,6 +2392,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2724,6 +2736,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2805,6 +2818,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2881,6 +2895,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2957,6 +2972,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3070,6 +3086,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3294,6 +3311,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3479,6 +3497,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3964,6 +3986,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4110,6 +4133,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4716,6 +4740,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4756,6 +4781,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4793,6 +4819,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4935,6 +4962,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4992,6 +5021,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5004,12 +5034,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5065,6 +5098,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5090,6 +5124,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5217,6 +5252,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; @@ -5413,6 +5449,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5521,6 +5558,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5539,6 +5577,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5604,6 +5643,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5805,6 +5845,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5889,6 +5930,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6643,6 +6685,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6790,11 +6833,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6854,6 +6900,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6947,6 +6994,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6958,6 +7006,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7048,6 +7097,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7189,6 +7239,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7218,11 +7270,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7461,6 +7515,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7576,6 +7631,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7816,6 +7872,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7878,6 +7935,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8047,6 +8107,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8120,6 +8181,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8305,6 +8367,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8419,6 +8482,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8709,6 +8773,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8788,6 +8853,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8947,6 +9013,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 97a5b4aa520c..1e8a2763fbb5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2214,6 +2222,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2354,6 +2363,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2379,6 +2390,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2722,6 +2734,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2803,6 +2816,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2879,6 +2893,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2955,6 +2970,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3067,6 +3083,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3290,6 +3307,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3475,6 +3493,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3960,6 +3982,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4106,6 +4129,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4712,6 +4736,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4752,6 +4777,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4789,6 +4815,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4931,6 +4958,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4988,6 +5017,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5000,12 +5030,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5061,6 +5094,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5086,6 +5120,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5213,6 +5248,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5409,6 +5445,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5517,6 +5554,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5535,6 +5573,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5600,6 +5639,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5801,6 +5841,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5885,6 +5926,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6638,6 +6680,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6785,11 +6828,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6849,6 +6895,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6942,6 +6989,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6953,6 +7001,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7043,6 +7092,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7184,6 +7234,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7213,11 +7265,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7456,6 +7510,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7571,6 +7626,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7811,6 +7867,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7873,6 +7930,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8042,6 +8102,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8115,6 +8176,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8300,6 +8362,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8414,6 +8477,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8704,6 +8768,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8783,6 +8848,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8942,6 +9008,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 3a61f20966d5..d6519d66eb0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2213,6 +2221,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2353,6 +2362,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2378,6 +2389,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2721,6 +2733,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2802,6 +2815,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2877,6 +2891,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2953,6 +2968,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3065,6 +3081,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3288,6 +3305,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3473,6 +3491,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3958,6 +3980,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4104,6 +4127,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4710,6 +4734,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4750,6 +4775,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4787,6 +4813,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4929,6 +4956,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4986,6 +5015,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4998,12 +5028,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5059,6 +5092,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5084,6 +5118,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5211,6 +5246,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5407,6 +5443,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5515,6 +5552,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5533,6 +5571,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5598,6 +5637,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5799,6 +5839,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5883,6 +5924,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6635,6 +6677,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6782,11 +6825,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6846,6 +6892,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6939,6 +6986,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6950,6 +6998,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7040,6 +7089,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7181,6 +7231,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7210,11 +7262,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7453,6 +7507,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7568,6 +7623,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7807,6 +7863,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7869,6 +7926,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8038,6 +8098,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8111,6 +8172,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8296,6 +8358,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8410,6 +8473,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8700,6 +8764,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8779,6 +8844,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8937,6 +9003,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index a133f8e5ed98..43ec086efd64 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2213,6 +2221,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2353,6 +2362,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2378,6 +2389,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2721,6 +2733,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2802,6 +2815,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2877,6 +2891,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2953,6 +2968,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3065,6 +3081,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3287,6 +3304,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3472,6 +3490,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3957,6 +3979,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4103,6 +4126,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4709,6 +4733,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4749,6 +4774,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4786,6 +4812,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4928,6 +4955,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4985,6 +5014,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4997,12 +5027,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5058,6 +5091,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5083,6 +5117,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5210,6 +5245,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5406,6 +5442,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5514,6 +5551,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5532,6 +5570,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5597,6 +5636,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5797,6 +5837,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5881,6 +5922,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6633,6 +6675,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6780,11 +6823,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6844,6 +6890,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6937,6 +6984,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6948,6 +6996,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7038,6 +7087,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7179,6 +7229,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7208,11 +7260,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7451,6 +7505,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7565,6 +7620,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7804,6 +7860,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7866,6 +7923,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8035,6 +8095,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8108,6 +8169,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8293,6 +8355,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8407,6 +8470,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8697,6 +8761,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8775,6 +8840,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8933,6 +8999,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index cf59852c6e9b..301d968c8ce2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -951,6 +951,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1119,6 +1120,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1326,6 +1328,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1448,6 +1451,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1604,6 +1608,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1697,6 +1702,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1723,6 +1729,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2227,6 +2234,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2369,6 +2377,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2394,6 +2404,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_1"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2739,6 +2750,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2820,6 +2832,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2897,6 +2910,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2974,6 +2988,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3088,6 +3103,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3316,6 +3332,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3502,6 +3519,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3990,6 +4011,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4136,6 +4158,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4746,6 +4769,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4786,6 +4810,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4824,6 +4849,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4967,6 +4993,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5024,6 +5052,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5036,12 +5065,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5100,6 +5132,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5125,6 +5158,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5252,6 +5286,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5450,6 +5485,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5558,6 +5594,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5576,6 +5613,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5644,6 +5682,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5847,6 +5886,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5930,6 +5970,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6689,6 +6730,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6837,11 +6879,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6901,6 +6946,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6994,6 +7040,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7005,6 +7052,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7097,6 +7145,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7239,6 +7288,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7268,11 +7319,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7513,6 +7566,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7629,6 +7683,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7876,6 +7931,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7941,6 +7997,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8110,6 +8169,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8183,6 +8243,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8370,6 +8431,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8484,6 +8546,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8774,6 +8837,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8854,6 +8918,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 28ce83e8ad8f..fb9c2c7c2d3c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2212,6 +2220,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2352,6 +2361,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2377,6 +2388,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2720,6 +2732,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2801,6 +2814,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2876,6 +2890,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2952,6 +2967,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3064,6 +3080,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3286,6 +3303,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3471,6 +3489,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3956,6 +3978,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4102,6 +4125,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4708,6 +4732,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4748,6 +4773,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4785,6 +4811,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4927,6 +4954,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4984,6 +5013,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4996,12 +5026,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5057,6 +5090,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5082,6 +5116,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5209,6 +5244,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5405,6 +5441,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5513,6 +5550,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5531,6 +5569,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5596,6 +5635,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5796,6 +5836,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5880,6 +5921,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6631,6 +6673,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6778,11 +6821,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6842,6 +6888,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6935,6 +6982,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6946,6 +6994,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7036,6 +7085,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7177,6 +7227,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7206,11 +7258,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7448,6 +7502,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7562,6 +7617,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7801,6 +7857,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7863,6 +7920,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8032,6 +8092,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8105,6 +8166,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8290,6 +8352,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8404,6 +8467,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8694,6 +8758,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8772,6 +8837,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8930,6 +8996,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 014013bcd5d7..81d1eaa0e008 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2212,6 +2220,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2352,6 +2361,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2377,6 +2388,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2720,6 +2732,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2801,6 +2814,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2876,6 +2890,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2952,6 +2967,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3064,6 +3080,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3286,6 +3303,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3471,6 +3489,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3956,6 +3978,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4102,6 +4125,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4708,6 +4732,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4748,6 +4773,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4785,6 +4811,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4927,6 +4954,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4984,6 +5013,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4996,12 +5026,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5057,6 +5090,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5082,6 +5116,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5209,6 +5244,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5405,6 +5441,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5513,6 +5550,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5531,6 +5569,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5596,6 +5635,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5796,6 +5836,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5880,6 +5921,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6630,6 +6672,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6777,11 +6820,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6841,6 +6887,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6934,6 +6981,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6945,6 +6993,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7035,6 +7084,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7176,6 +7226,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7205,11 +7257,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7447,6 +7501,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7561,6 +7616,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7800,6 +7856,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7862,6 +7919,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8031,6 +8091,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8104,6 +8165,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8289,6 +8351,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8403,6 +8466,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8455,10 +8519,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8691,6 +8757,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8769,6 +8836,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8926,6 +8994,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index a17f9ef401da..607837e207e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1202,6 +1204,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1320,6 +1323,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1441,6 +1445,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1594,6 +1599,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1686,6 +1692,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1712,6 +1719,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2212,6 +2220,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2352,6 +2361,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2377,6 +2388,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2720,6 +2732,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2801,6 +2814,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2876,6 +2890,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2952,6 +2967,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3064,6 +3080,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3286,6 +3303,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3471,6 +3489,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3956,6 +3978,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4102,6 +4125,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4707,6 +4731,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4747,6 +4772,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4784,6 +4810,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4926,6 +4953,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4983,6 +5012,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4995,12 +5025,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5056,6 +5089,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5081,6 +5115,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5208,6 +5243,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; @@ -5404,6 +5440,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5512,6 +5549,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5530,6 +5568,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5595,6 +5634,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5795,6 +5835,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5879,6 +5920,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6629,6 +6671,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6776,11 +6819,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6840,6 +6886,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6933,6 +6980,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6944,6 +6992,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7034,6 +7083,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7175,6 +7225,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7204,11 +7256,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7446,6 +7500,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7560,6 +7615,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7799,6 +7855,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7861,6 +7918,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8030,6 +8090,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8103,6 +8164,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8288,6 +8350,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8402,6 +8465,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8454,10 +8518,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8690,6 +8756,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8768,6 +8835,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8925,6 +8993,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index aa2ca3a0f743..547776053b2c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -951,6 +951,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1119,6 +1120,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1326,6 +1328,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1448,6 +1451,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1604,6 +1608,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1697,6 +1702,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1723,6 +1729,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2227,6 +2234,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2369,6 +2377,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2394,6 +2404,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2739,6 +2750,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2820,6 +2832,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2897,6 +2910,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2974,6 +2988,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3088,6 +3103,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3315,6 +3331,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3501,6 +3518,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3989,6 +4010,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4135,6 +4157,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4745,6 +4768,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4785,6 +4809,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4822,6 +4847,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4965,6 +4991,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5022,6 +5050,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5034,12 +5063,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5098,6 +5130,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5123,6 +5156,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5250,6 +5284,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5448,6 +5483,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5556,6 +5592,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5574,6 +5611,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5642,6 +5680,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5845,6 +5884,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5928,6 +5968,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6687,6 +6728,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6835,11 +6877,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6899,6 +6944,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6992,6 +7038,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7003,6 +7050,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7095,6 +7143,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7237,6 +7286,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7266,11 +7317,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7511,6 +7564,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7627,6 +7681,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7874,6 +7929,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7939,6 +7995,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8108,6 +8167,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8181,6 +8241,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8368,6 +8429,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8482,6 +8544,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8772,6 +8835,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8852,6 +8916,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index b0cba8f674e6..f3b120df6abe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -951,6 +951,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1119,6 +1120,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1326,6 +1328,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1448,6 +1451,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1604,6 +1608,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1696,6 +1701,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1722,6 +1728,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2226,6 +2233,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2368,6 +2376,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2393,6 +2403,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2738,6 +2749,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2819,6 +2831,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2896,6 +2909,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2973,6 +2987,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3087,6 +3102,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3314,6 +3330,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3500,6 +3517,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3988,6 +4009,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4134,6 +4156,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4744,6 +4767,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4784,6 +4808,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4821,6 +4846,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4964,6 +4990,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5021,6 +5049,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5033,12 +5062,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5097,6 +5129,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5122,6 +5155,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5249,6 +5283,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5447,6 +5482,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5555,6 +5591,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5573,6 +5610,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5641,6 +5679,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5844,6 +5883,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5927,6 +5967,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6685,6 +6726,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6833,11 +6875,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6897,6 +6942,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6990,6 +7036,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7001,6 +7048,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7092,6 +7140,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7234,6 +7283,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7263,11 +7314,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7508,6 +7561,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7624,6 +7678,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7871,6 +7926,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7936,6 +7992,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8105,6 +8164,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8178,6 +8238,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8365,6 +8426,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8479,6 +8541,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8769,6 +8832,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8849,6 +8913,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 8b915c3fa3f8..86c810c0506c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -951,6 +951,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1119,6 +1120,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1326,6 +1328,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1448,6 +1451,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1604,6 +1608,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1696,6 +1701,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1722,6 +1728,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2226,6 +2233,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2367,6 +2375,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2392,6 +2402,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2737,6 +2748,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2818,6 +2830,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2895,6 +2908,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2972,6 +2986,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3086,6 +3101,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3313,6 +3329,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3499,6 +3516,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3987,6 +4008,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4133,6 +4155,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4743,6 +4766,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4783,6 +4807,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4820,6 +4845,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4963,6 +4989,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5020,6 +5048,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5032,12 +5061,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5096,6 +5128,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5121,6 +5154,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5248,6 +5282,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5446,6 +5481,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5554,6 +5590,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5572,6 +5609,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5640,6 +5678,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5843,6 +5882,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5926,6 +5966,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6684,6 +6725,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6832,11 +6874,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6896,6 +6941,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6989,6 +7035,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -7000,6 +7047,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7091,6 +7139,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7233,6 +7282,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7262,11 +7313,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7507,6 +7560,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7623,6 +7677,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7870,6 +7925,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7935,6 +7991,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8104,6 +8163,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8177,6 +8237,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8364,6 +8425,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8478,6 +8540,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8768,6 +8831,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8848,6 +8912,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 07ee07a13bbf..ff9dfccadcfb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -951,6 +951,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1117,6 +1118,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1324,6 +1326,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1446,6 +1449,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1601,6 +1605,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1693,6 +1698,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1719,6 +1725,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2223,6 +2230,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2364,6 +2372,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2389,6 +2399,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2734,6 +2745,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2815,6 +2827,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2892,6 +2905,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2969,6 +2983,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3083,6 +3098,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3310,6 +3326,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3496,6 +3513,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3982,6 +4003,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4128,6 +4150,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4738,6 +4761,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4778,6 +4802,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4815,6 +4840,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4958,6 +4984,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5015,6 +5043,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5027,12 +5056,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5091,6 +5123,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5116,6 +5149,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5243,6 +5277,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5441,6 +5476,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5549,6 +5585,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5567,6 +5604,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5635,6 +5673,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5838,6 +5877,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5921,6 +5961,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6678,6 +6719,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6826,11 +6868,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6890,6 +6935,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6983,6 +7029,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6994,6 +7041,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7085,6 +7133,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7227,6 +7276,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7256,11 +7307,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7501,6 +7554,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7617,6 +7671,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7864,6 +7919,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7929,6 +7985,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8098,6 +8157,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8171,6 +8231,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8356,6 +8417,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8470,6 +8532,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8760,6 +8823,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8840,6 +8904,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 7e52dd04e2c1..127045918a71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -950,6 +950,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1116,6 +1117,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1323,6 +1325,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1445,6 +1448,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1600,6 +1604,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1692,6 +1697,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1718,6 +1724,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2222,6 +2229,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2363,6 +2371,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2388,6 +2398,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2733,6 +2744,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2814,6 +2826,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2891,6 +2904,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2968,6 +2982,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3082,6 +3097,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3309,6 +3325,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3495,6 +3512,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3981,6 +4002,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4127,6 +4149,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4737,6 +4760,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4777,6 +4801,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4814,6 +4839,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4957,6 +4983,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5014,6 +5042,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5026,12 +5055,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5090,6 +5122,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5115,6 +5148,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5242,6 +5276,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5440,6 +5475,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5548,6 +5584,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5566,6 +5603,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5634,6 +5672,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5837,6 +5876,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5921,6 +5961,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6678,6 +6719,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6826,11 +6868,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6890,6 +6935,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6983,6 +7029,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6994,6 +7041,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7085,6 +7133,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7227,6 +7276,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7256,11 +7307,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7501,6 +7554,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7617,6 +7671,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7864,6 +7919,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7929,6 +7985,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8098,6 +8157,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8171,6 +8231,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8356,6 +8417,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8470,6 +8532,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8760,6 +8823,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8840,6 +8904,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 1bc128eec5b5..9e24f7278cc9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1322,6 +1324,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1444,6 +1447,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1599,6 +1603,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1691,6 +1696,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1717,6 +1723,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2221,6 +2228,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2362,6 +2370,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2387,6 +2397,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2732,6 +2743,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2813,6 +2825,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2890,6 +2903,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2967,6 +2981,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3081,6 +3096,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3307,6 +3323,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3493,6 +3510,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3979,6 +4000,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4125,6 +4147,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4735,6 +4758,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4775,6 +4799,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4812,6 +4837,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4955,6 +4981,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5012,6 +5040,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5024,12 +5053,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5088,6 +5120,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5113,6 +5146,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5240,6 +5274,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5438,6 +5473,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5546,6 +5582,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5564,6 +5601,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5632,6 +5670,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5835,6 +5874,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_4"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5919,6 +5959,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6676,6 +6717,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6824,11 +6866,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6888,6 +6933,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6981,6 +7027,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6992,6 +7039,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7083,6 +7131,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7224,6 +7273,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7253,11 +7304,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7498,6 +7551,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7613,6 +7667,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7858,6 +7913,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7923,6 +7979,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8092,6 +8151,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8165,6 +8225,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8350,6 +8411,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8464,6 +8526,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8754,6 +8817,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8834,6 +8898,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 752611fe2997..321b21984d4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -949,6 +949,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1115,6 +1116,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1322,6 +1324,7 @@ self: super: { "android-lint-summary" = dontDistribute super."android-lint-summary"; "angel" = dontDistribute super."angel"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = dontDistribute super."annotated-wl-pprint"; "anonymous-sums" = dontDistribute super."anonymous-sums"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; @@ -1444,6 +1447,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1597,6 +1601,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1689,6 +1694,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1715,6 +1721,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2219,6 +2226,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2360,6 +2368,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2385,6 +2395,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_2"; "cryptonite" = dontDistribute super."cryptonite"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2730,6 +2741,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2811,6 +2823,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2887,6 +2900,7 @@ self: super: { "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; "editor-open" = dontDistribute super."editor-open"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2964,6 +2978,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -3077,6 +3092,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -3303,6 +3319,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3489,6 +3506,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3975,6 +3996,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4121,6 +4143,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4729,6 +4752,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_1_3"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4769,6 +4793,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = dontDistribute super."hvect"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4806,6 +4831,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4949,6 +4975,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -5006,6 +5034,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -5018,12 +5047,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -5082,6 +5114,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -5107,6 +5140,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5234,6 +5268,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; @@ -5431,6 +5466,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = dontDistribute super."list-fusion-probe"; @@ -5539,6 +5575,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5557,6 +5594,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines" = doDistribute super."machines_0_4_1"; @@ -5624,6 +5662,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5827,6 +5866,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_5"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5911,6 +5951,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur-hash" = dontDistribute super."murmur-hash"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; @@ -6667,6 +6708,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6815,11 +6857,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6879,6 +6924,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6972,6 +7018,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6983,6 +7030,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular-extras" = dontDistribute super."regular-extras"; "regular-web" = dontDistribute super."regular-web"; @@ -7074,6 +7122,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7215,6 +7264,8 @@ self: super: { "scalpel" = dontDistribute super."scalpel"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7244,11 +7295,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; "scrz" = dontDistribute super."scrz"; @@ -7489,6 +7542,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7604,6 +7658,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7847,6 +7902,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_1_1"; @@ -7910,6 +7966,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -8079,6 +8138,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -8152,6 +8212,7 @@ self: super: { "timeit" = dontDistribute super."timeit"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8337,6 +8398,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_0_0_1"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8451,6 +8513,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8741,6 +8804,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8821,6 +8885,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 2621b6827253..35a05fd87d4b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -558,6 +558,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -930,6 +931,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1093,6 +1095,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1179,6 +1182,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1296,6 +1300,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1406,6 +1411,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1553,6 +1559,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1645,6 +1652,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1666,6 +1674,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2050,7 +2059,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2156,6 +2164,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2294,6 +2303,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2319,6 +2330,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2654,6 +2666,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2732,6 +2745,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2806,6 +2820,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2879,6 +2894,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2988,6 +3004,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2998,6 +3015,7 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_0"; "fast-math" = dontDistribute super."fast-math"; @@ -3203,6 +3221,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3387,6 +3406,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3865,6 +3888,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4011,6 +4035,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4607,6 +4632,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4646,6 +4672,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4658,6 +4685,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4682,6 +4710,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4815,6 +4844,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4868,6 +4899,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4880,12 +4912,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4940,6 +4975,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4965,6 +5001,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5081,6 +5118,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5269,6 +5307,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5376,6 +5415,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5394,6 +5434,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5457,6 +5498,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5650,6 +5692,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_6"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5729,6 +5772,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6459,6 +6503,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6605,11 +6650,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6667,6 +6715,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6709,6 +6758,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6757,6 +6807,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6769,6 +6820,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6861,6 +6913,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -7002,6 +7055,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7031,11 +7086,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7265,6 +7322,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7381,6 +7439,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7610,6 +7669,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_1"; @@ -7672,6 +7732,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7839,6 +7902,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7909,6 +7973,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8087,6 +8152,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8200,6 +8266,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8249,10 +8316,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8481,6 +8550,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8558,6 +8628,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8706,6 +8777,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index c22456e3fde0..7af46a481351 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -558,6 +558,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -930,6 +931,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1093,6 +1095,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1178,6 +1181,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1295,6 +1299,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1405,6 +1410,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1552,6 +1558,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1644,6 +1651,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1665,6 +1673,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2049,7 +2058,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2155,6 +2163,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2293,6 +2302,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2318,6 +2329,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2653,6 +2665,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2731,6 +2744,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2805,6 +2819,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2878,6 +2893,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2987,6 +3003,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2997,7 +3014,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3200,6 +3219,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3384,6 +3404,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3862,6 +3886,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4008,6 +4033,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4604,6 +4630,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4643,6 +4670,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4655,6 +4683,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4679,6 +4708,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4812,6 +4842,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4865,6 +4897,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4877,12 +4910,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4937,6 +4973,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4962,6 +4999,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5078,6 +5116,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5266,6 +5305,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5373,6 +5413,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5390,6 +5431,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5453,6 +5495,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5646,6 +5689,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_6"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5725,6 +5769,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6453,6 +6498,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6599,11 +6645,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6661,6 +6710,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6703,6 +6753,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6751,6 +6802,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6763,6 +6815,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6854,6 +6907,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6995,6 +7049,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7024,11 +7080,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7258,6 +7316,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7374,6 +7433,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7603,6 +7663,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_1"; @@ -7665,6 +7726,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7832,6 +7896,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7902,6 +7967,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8080,6 +8146,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8193,6 +8260,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8242,10 +8310,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8473,6 +8543,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8550,6 +8621,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8698,6 +8770,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index b4429e658116..fe0690ee942f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1090,6 +1092,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1175,6 +1178,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1292,6 +1296,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1312,6 +1317,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1397,6 +1403,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1544,6 +1551,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1635,6 +1643,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1656,6 +1665,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2038,7 +2048,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2144,6 +2153,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2281,6 +2291,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2306,6 +2318,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2637,6 +2650,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2713,6 +2727,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2786,6 +2801,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2859,6 +2875,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2968,6 +2985,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2978,7 +2996,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3178,6 +3198,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3361,6 +3382,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3837,6 +3862,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3982,6 +4008,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4575,6 +4602,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4614,6 +4642,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4626,6 +4655,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4650,6 +4680,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4781,6 +4812,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4834,6 +4867,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4846,12 +4880,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4906,6 +4943,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4931,6 +4969,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5044,6 +5083,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5230,6 +5270,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5337,6 +5378,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5354,6 +5396,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5370,6 +5413,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5416,6 +5460,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5608,6 +5653,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5685,6 +5731,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6236,6 +6283,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6403,6 +6451,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6548,11 +6597,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6610,6 +6662,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6652,6 +6705,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6699,6 +6753,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6711,6 +6766,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6802,6 +6858,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6943,6 +7000,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6972,11 +7031,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7205,6 +7266,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7319,6 +7381,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7546,6 +7609,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7608,6 +7672,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7652,6 +7719,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7770,6 +7838,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7840,6 +7909,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8017,6 +8087,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8129,6 +8200,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8177,10 +8249,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8404,6 +8478,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8478,6 +8553,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8585,6 +8661,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8625,6 +8702,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 512e50b34c99..67205eb5067e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1090,6 +1092,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1175,6 +1178,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1292,6 +1296,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1312,6 +1317,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1397,6 +1403,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1544,6 +1551,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1635,6 +1643,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1656,6 +1665,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2037,7 +2047,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2143,6 +2152,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2280,6 +2290,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2305,6 +2317,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2636,6 +2649,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2712,6 +2726,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2785,6 +2800,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2858,6 +2874,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2966,6 +2983,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2976,7 +2994,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3176,6 +3196,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3359,6 +3380,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3835,6 +3860,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3980,6 +4006,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4573,6 +4600,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4612,6 +4640,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4624,6 +4653,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4648,6 +4678,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4779,6 +4810,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4832,6 +4865,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4844,12 +4878,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4904,6 +4941,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4929,6 +4967,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5042,6 +5081,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5228,6 +5268,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5335,6 +5376,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5352,6 +5394,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5368,6 +5411,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5414,6 +5458,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5606,6 +5651,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5683,6 +5729,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6233,6 +6280,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6400,6 +6448,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6545,11 +6594,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6607,6 +6659,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6649,6 +6702,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6696,6 +6750,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6708,6 +6763,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6799,6 +6855,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6940,6 +6997,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6969,11 +7028,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7097,6 +7158,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7201,6 +7263,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7315,6 +7378,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7542,6 +7606,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7604,6 +7669,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7648,6 +7716,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7766,6 +7835,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7836,6 +7906,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8013,6 +8084,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8125,6 +8197,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8173,10 +8246,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8400,6 +8475,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8474,6 +8550,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8581,6 +8658,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8621,6 +8699,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 82434379c760..a81c742f0330 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1090,6 +1092,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1175,6 +1178,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1292,6 +1296,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1312,6 +1317,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1397,6 +1403,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1544,6 +1551,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1635,6 +1643,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1656,6 +1665,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2036,7 +2046,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2142,6 +2151,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2279,6 +2289,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2304,6 +2316,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2635,6 +2648,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2711,6 +2725,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2784,6 +2799,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2857,6 +2873,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2965,6 +2982,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2975,7 +2993,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3175,6 +3195,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3358,6 +3379,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3833,6 +3858,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3978,6 +4004,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4571,6 +4598,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4610,6 +4638,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4622,6 +4651,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4646,6 +4676,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4777,6 +4808,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4830,6 +4863,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4842,12 +4876,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4902,6 +4939,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4927,6 +4965,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5040,6 +5079,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5226,6 +5266,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5333,6 +5374,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5350,6 +5392,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5366,6 +5409,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5412,6 +5456,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5604,6 +5649,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5681,6 +5727,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6230,6 +6277,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6397,6 +6445,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6542,11 +6591,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6604,6 +6656,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6646,6 +6699,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6693,6 +6747,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6705,6 +6760,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6796,6 +6852,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6937,6 +6994,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6966,11 +7025,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7094,6 +7155,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7198,6 +7260,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7312,6 +7375,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7539,6 +7603,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7601,6 +7666,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7645,6 +7713,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7761,6 +7830,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7831,6 +7901,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8008,6 +8079,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8120,6 +8192,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8168,10 +8241,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8395,6 +8470,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8469,6 +8545,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8576,6 +8653,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8616,6 +8694,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index b75f071de113..79610166c8d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1090,6 +1092,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1175,6 +1178,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1292,6 +1296,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1312,6 +1317,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1397,6 +1403,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1544,6 +1551,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1635,6 +1643,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1656,6 +1665,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2036,7 +2046,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2142,6 +2151,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2279,6 +2289,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2304,6 +2316,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2635,6 +2648,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2711,6 +2725,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2784,6 +2799,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2857,6 +2873,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2965,6 +2982,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2975,7 +2993,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3175,6 +3195,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3358,6 +3379,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3833,6 +3858,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3978,6 +4004,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4570,6 +4597,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4609,6 +4637,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4621,6 +4650,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4645,6 +4675,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4776,6 +4807,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4829,6 +4862,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4841,12 +4875,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4901,6 +4938,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4926,6 +4964,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5039,6 +5078,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5224,6 +5264,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5331,6 +5372,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5348,6 +5390,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5364,6 +5407,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5410,6 +5454,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5602,6 +5647,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5679,6 +5725,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6227,6 +6274,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6394,6 +6442,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6539,11 +6588,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6601,6 +6653,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6643,6 +6696,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6690,6 +6744,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6702,6 +6757,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6793,6 +6849,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6934,6 +6991,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6963,11 +7022,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7091,6 +7152,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7195,6 +7257,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7309,6 +7372,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7536,6 +7600,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7598,6 +7663,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7642,6 +7710,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7758,6 +7827,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7828,6 +7898,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8005,6 +8076,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8117,6 +8189,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8165,10 +8238,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8391,6 +8466,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8465,6 +8541,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8572,6 +8649,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8612,6 +8690,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index fc89326dea88..68aacafb13f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1089,6 +1091,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1173,6 +1176,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1290,6 +1294,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1310,6 +1315,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1395,6 +1401,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1542,6 +1549,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1633,6 +1641,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1654,6 +1663,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2033,7 +2043,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2139,6 +2148,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2275,6 +2285,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2300,6 +2312,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2629,6 +2642,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2705,6 +2719,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2778,6 +2793,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2851,6 +2867,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2959,6 +2976,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2969,7 +2987,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3169,6 +3189,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3352,6 +3373,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3827,6 +3852,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3972,6 +3998,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4563,6 +4590,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4602,6 +4630,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4614,6 +4643,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4638,6 +4668,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4769,6 +4800,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4822,6 +4855,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4834,12 +4868,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4894,6 +4931,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4919,6 +4957,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5032,6 +5071,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5217,6 +5257,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5324,6 +5365,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5341,6 +5383,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5357,6 +5400,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5403,6 +5447,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5595,6 +5640,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5672,6 +5718,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6220,6 +6267,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6387,6 +6435,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6532,11 +6581,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6594,6 +6646,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6636,6 +6689,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6683,6 +6737,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6695,6 +6750,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6786,6 +6842,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6927,6 +6984,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6956,11 +7015,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7084,6 +7145,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7188,6 +7250,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7302,6 +7365,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7529,6 +7593,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7591,6 +7656,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7635,6 +7703,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7751,6 +7820,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7821,6 +7891,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7998,6 +8069,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8110,6 +8182,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8158,10 +8231,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8383,6 +8458,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8457,6 +8533,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8564,6 +8641,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8604,6 +8682,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index cb77599cc2f7..b3c63a710abe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1089,6 +1091,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1173,6 +1176,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1290,6 +1294,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1310,6 +1315,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1395,6 +1401,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1542,6 +1549,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1633,6 +1641,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1654,6 +1663,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2033,7 +2043,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2139,6 +2148,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2275,6 +2285,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2300,6 +2312,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2629,6 +2642,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2705,6 +2719,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2778,6 +2793,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2851,6 +2867,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2959,6 +2976,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2969,7 +2987,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3169,6 +3189,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3352,6 +3373,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3827,6 +3852,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3971,6 +3997,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4561,6 +4588,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4599,6 +4627,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4611,6 +4640,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4635,6 +4665,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4766,6 +4797,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4819,6 +4852,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4831,12 +4865,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4891,6 +4928,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4916,6 +4954,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5029,6 +5068,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5214,6 +5254,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5321,6 +5362,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5338,6 +5380,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5354,6 +5397,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5400,6 +5444,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5592,6 +5637,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5669,6 +5715,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6217,6 +6264,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6384,6 +6432,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6529,11 +6578,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6591,6 +6643,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6633,6 +6686,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6680,6 +6734,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6692,6 +6747,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6783,6 +6839,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6924,6 +6981,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6953,11 +7012,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7080,6 +7141,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7184,6 +7246,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7298,6 +7361,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7525,6 +7589,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7587,6 +7652,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7631,6 +7699,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7747,6 +7816,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7817,6 +7887,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7994,6 +8065,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8106,6 +8178,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8154,10 +8227,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8379,6 +8454,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8453,6 +8529,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8560,6 +8637,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8600,6 +8678,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 3954f26e4983..067bc308136d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -926,6 +927,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1088,6 +1090,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1172,6 +1175,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_5"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1289,6 +1293,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1309,6 +1314,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1394,6 +1400,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1541,6 +1548,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1632,6 +1640,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1653,6 +1662,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2032,7 +2042,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2138,6 +2147,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2274,6 +2284,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2299,6 +2311,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2628,6 +2641,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2704,6 +2718,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2777,6 +2792,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2850,6 +2866,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2957,6 +2974,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2967,7 +2985,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3167,6 +3187,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3350,6 +3371,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3824,6 +3849,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3968,6 +3994,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4558,6 +4585,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4596,6 +4624,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4608,6 +4637,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4632,6 +4662,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4763,6 +4794,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4816,6 +4849,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4828,12 +4862,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4888,6 +4925,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4913,6 +4951,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5026,6 +5065,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5210,6 +5250,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5317,6 +5358,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5334,6 +5376,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5350,6 +5393,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5396,6 +5440,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5587,6 +5632,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5664,6 +5710,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6212,6 +6259,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6378,6 +6426,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6523,11 +6572,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6585,6 +6637,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6627,6 +6680,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6673,6 +6727,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6685,6 +6740,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6776,6 +6832,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6917,6 +6974,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6946,11 +7005,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7073,6 +7134,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7177,6 +7239,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7291,6 +7354,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7518,6 +7582,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7580,6 +7645,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7623,6 +7691,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7738,6 +7807,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7807,6 +7877,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7984,6 +8055,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8096,6 +8168,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8144,10 +8217,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8369,6 +8444,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8443,6 +8519,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8550,6 +8627,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_8"; @@ -8590,6 +8668,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 815030d9dcca..0592f86bdc3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -926,6 +927,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1088,6 +1090,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1172,6 +1175,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_6"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1289,6 +1293,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1309,6 +1314,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1393,6 +1399,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1540,6 +1547,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1631,6 +1639,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1652,6 +1661,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2031,7 +2041,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2137,6 +2146,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2273,6 +2283,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2298,6 +2310,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2627,6 +2640,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2703,6 +2717,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2776,6 +2791,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2849,6 +2865,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2956,6 +2973,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2966,7 +2984,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3166,6 +3186,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3349,6 +3370,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3822,6 +3847,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3966,6 +3992,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4556,6 +4583,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4594,6 +4622,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4606,6 +4635,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4630,6 +4660,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4760,6 +4791,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4813,6 +4846,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4825,12 +4859,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4885,6 +4922,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4910,6 +4948,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5023,6 +5062,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5207,6 +5247,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5313,6 +5354,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5330,6 +5372,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5346,6 +5389,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5392,6 +5436,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5582,6 +5627,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5659,6 +5705,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6207,6 +6254,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6373,6 +6421,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6518,11 +6567,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6580,6 +6632,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6622,6 +6675,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6668,6 +6722,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6680,6 +6735,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6771,6 +6827,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6912,6 +6969,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6941,11 +7000,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7068,6 +7129,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7172,6 +7234,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7286,6 +7349,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7513,6 +7577,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7575,6 +7640,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7618,6 +7686,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7733,6 +7802,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7802,6 +7872,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7979,6 +8050,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8091,6 +8163,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8139,10 +8212,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8364,6 +8439,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8438,6 +8514,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8545,6 +8622,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8571,6 +8649,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8584,6 +8663,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 83f9a0923dda..00df06ee5f84 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -926,6 +927,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1088,6 +1090,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1172,6 +1175,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1289,6 +1293,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1309,6 +1314,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1393,6 +1399,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1540,6 +1547,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1631,6 +1639,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1652,6 +1661,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2030,7 +2040,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2136,6 +2145,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2272,6 +2282,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2297,6 +2309,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2626,6 +2639,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2702,6 +2716,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2775,6 +2790,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2848,6 +2864,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2955,6 +2972,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2965,7 +2983,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3165,6 +3185,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3348,6 +3369,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3818,6 +3843,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3961,6 +3987,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4550,6 +4577,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4588,6 +4616,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4600,6 +4629,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4624,6 +4654,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4754,6 +4785,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4807,6 +4840,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4819,12 +4853,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4879,6 +4916,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4904,6 +4942,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5017,6 +5056,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5201,6 +5241,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5307,6 +5348,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5324,6 +5366,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5340,6 +5383,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5386,6 +5430,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5576,6 +5621,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5653,6 +5699,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6200,6 +6247,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6366,6 +6414,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6511,11 +6560,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6573,6 +6625,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6615,6 +6668,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6661,6 +6715,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6673,6 +6728,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6764,6 +6820,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6905,6 +6962,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6934,11 +6993,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7061,6 +7122,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7164,6 +7226,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7278,6 +7341,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7505,6 +7569,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7567,6 +7632,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7610,6 +7678,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7725,6 +7794,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7794,6 +7864,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7971,6 +8042,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8083,6 +8155,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8131,10 +8204,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8356,6 +8431,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8430,6 +8506,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8537,6 +8614,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8563,6 +8641,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8576,6 +8655,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 5760e899c8bf..bdbe5483706e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -555,6 +555,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -925,6 +926,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1087,6 +1089,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1171,6 +1174,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1288,6 +1292,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1308,6 +1313,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1391,6 +1397,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1537,6 +1544,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1628,6 +1636,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1649,6 +1658,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2025,7 +2035,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2130,6 +2139,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2266,6 +2276,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2291,6 +2303,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2620,6 +2633,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2696,6 +2710,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2769,6 +2784,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2842,6 +2858,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2949,6 +2966,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2959,7 +2977,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3159,6 +3179,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3342,6 +3363,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3812,6 +3837,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3955,6 +3981,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4391,6 +4418,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4541,6 +4569,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4579,6 +4608,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4591,6 +4621,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4615,6 +4646,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4745,6 +4777,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4798,6 +4832,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4810,12 +4845,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4870,6 +4908,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4894,6 +4933,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5007,6 +5047,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; @@ -5191,6 +5232,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5296,6 +5338,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5313,6 +5356,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5329,6 +5373,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5375,6 +5420,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5565,6 +5611,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5642,6 +5689,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6188,6 +6236,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6354,6 +6403,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6499,11 +6549,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6561,6 +6614,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6603,6 +6657,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6649,6 +6704,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6661,6 +6717,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6752,6 +6809,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6893,6 +6951,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6922,11 +6982,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7049,6 +7111,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7152,6 +7215,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7265,6 +7329,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7492,6 +7557,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7554,6 +7620,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7597,6 +7666,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7712,6 +7782,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7781,6 +7852,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7958,6 +8030,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8070,6 +8143,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8118,10 +8192,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8343,6 +8419,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8416,6 +8493,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8523,6 +8601,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8549,6 +8628,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8562,6 +8642,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 830a93f2cc0f..d7de4a346198 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1403,6 +1408,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1550,6 +1556,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1642,6 +1649,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1663,6 +1671,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2047,7 +2056,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2153,6 +2161,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2291,6 +2300,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2316,6 +2327,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2651,6 +2663,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2728,6 +2741,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2802,6 +2816,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2875,6 +2890,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2984,6 +3000,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2994,7 +3011,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3197,6 +3216,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3380,6 +3400,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3858,6 +3882,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4004,6 +4029,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4600,6 +4626,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4639,6 +4666,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4651,6 +4679,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4675,6 +4704,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4808,6 +4838,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4861,6 +4893,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4873,12 +4906,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4933,6 +4969,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4958,6 +4995,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5073,6 +5111,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5260,6 +5299,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5367,6 +5407,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5384,6 +5425,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5447,6 +5489,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5640,6 +5683,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_6"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5719,6 +5763,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6274,6 +6319,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6446,6 +6492,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6591,11 +6638,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6653,6 +6703,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6695,6 +6746,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6743,6 +6795,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6755,6 +6808,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6846,6 +6900,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6987,6 +7042,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7016,11 +7073,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7250,6 +7309,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7365,6 +7425,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7594,6 +7655,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7656,6 +7718,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7823,6 +7888,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7893,6 +7959,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8071,6 +8138,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8184,6 +8252,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8233,10 +8302,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8464,6 +8535,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8541,6 +8613,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8689,6 +8762,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 1e842db7eed2..23db250f1fd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -554,6 +554,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -924,6 +925,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1086,6 +1088,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1170,6 +1173,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1287,6 +1291,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1307,6 +1312,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1390,6 +1396,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1536,6 +1543,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1627,6 +1635,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1648,6 +1657,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2024,7 +2034,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2129,6 +2138,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2265,6 +2275,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2290,6 +2302,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2619,6 +2632,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2695,6 +2709,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2768,6 +2783,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2841,6 +2857,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2948,6 +2965,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2958,7 +2976,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3158,6 +3178,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3341,6 +3362,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3811,6 +3836,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3954,6 +3980,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4390,6 +4417,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4540,6 +4568,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4578,6 +4607,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4590,6 +4620,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4614,6 +4645,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4744,6 +4776,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4797,6 +4831,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4809,12 +4844,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4869,6 +4907,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4893,6 +4932,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5006,6 +5046,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; @@ -5190,6 +5231,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5295,6 +5337,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5312,6 +5355,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5328,6 +5372,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5374,6 +5419,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5564,6 +5610,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_9"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5641,6 +5688,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6187,6 +6235,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6353,6 +6402,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6498,11 +6548,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6560,6 +6613,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6602,6 +6656,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6647,6 +6702,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6659,6 +6715,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6750,6 +6807,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6891,6 +6949,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6920,11 +6980,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7047,6 +7109,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7150,6 +7213,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7263,6 +7327,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7489,6 +7554,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7551,6 +7617,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7594,6 +7663,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7709,6 +7779,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7778,6 +7849,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7955,6 +8027,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8067,6 +8140,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8115,10 +8189,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8340,6 +8416,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8412,6 +8489,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8519,6 +8597,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8545,6 +8624,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8558,6 +8638,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index d2ba426e3001..0a083cff7063 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -554,6 +554,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -924,6 +925,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1086,6 +1088,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1170,6 +1173,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1287,6 +1291,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1307,6 +1312,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1390,6 +1396,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1536,6 +1543,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1627,6 +1635,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1648,6 +1657,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2024,7 +2034,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2128,6 +2137,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2264,6 +2274,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2289,6 +2301,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2618,6 +2631,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2694,6 +2708,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2767,6 +2782,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2840,6 +2856,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2947,6 +2964,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2957,7 +2975,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3155,6 +3175,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3338,6 +3359,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3808,6 +3833,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3951,6 +3977,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4387,6 +4414,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4537,6 +4565,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4575,6 +4604,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4587,6 +4617,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4611,6 +4642,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4739,6 +4771,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4792,6 +4826,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4804,12 +4839,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4864,6 +4902,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4888,6 +4927,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5001,6 +5041,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; @@ -5185,6 +5226,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5290,6 +5332,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5307,6 +5350,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5323,6 +5367,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5369,6 +5414,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5559,6 +5605,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5635,6 +5682,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6179,6 +6227,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6345,6 +6394,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6490,11 +6540,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6552,6 +6605,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6592,7 +6646,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6638,6 +6694,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6650,6 +6707,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6740,6 +6798,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6880,6 +6939,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6909,11 +6970,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7033,6 +7096,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7135,6 +7199,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7248,6 +7313,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7474,6 +7540,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7536,6 +7603,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7579,6 +7649,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7694,6 +7765,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7763,6 +7835,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7883,6 +7956,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7939,6 +8013,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8051,6 +8126,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8099,10 +8175,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8207,6 +8285,7 @@ self: super: { "wai" = doDistribute super."wai_3_0_5_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -8319,6 +8398,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8391,6 +8471,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8498,6 +8579,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8524,6 +8606,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8537,6 +8620,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index d85a7f7081a5..0a0b6e975bef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -554,6 +554,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -924,6 +925,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1086,6 +1088,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1170,6 +1173,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1287,6 +1291,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1307,6 +1312,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1390,6 +1396,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1536,6 +1543,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1627,6 +1635,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1648,6 +1657,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2024,7 +2034,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2128,6 +2137,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2264,6 +2274,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2289,6 +2301,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2618,6 +2631,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2694,6 +2708,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2767,6 +2782,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2840,6 +2856,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2946,6 +2963,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2956,7 +2974,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3153,6 +3173,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3336,6 +3357,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3806,6 +3831,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3949,6 +3975,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4384,6 +4411,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4534,6 +4562,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4572,6 +4601,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4584,6 +4614,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4608,6 +4639,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4734,6 +4766,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4786,6 +4820,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4798,12 +4833,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4858,6 +4896,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4882,6 +4921,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4995,6 +5035,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; @@ -5179,6 +5220,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5284,6 +5326,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5301,6 +5344,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5317,6 +5361,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5363,6 +5408,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5553,6 +5599,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5629,6 +5676,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6173,6 +6221,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6339,6 +6388,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6484,11 +6534,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6546,6 +6599,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6586,7 +6640,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6632,6 +6688,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6644,6 +6701,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6734,6 +6792,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6874,6 +6933,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6903,11 +6964,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7027,6 +7090,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -7129,6 +7193,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7242,6 +7307,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7468,6 +7534,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7530,6 +7597,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7573,6 +7643,7 @@ self: super: { "tasty-expected-failure" = dontDistribute super."tasty-expected-failure"; "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7688,6 +7759,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7757,6 +7829,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7877,6 +7950,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7933,6 +8007,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8045,6 +8120,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8093,10 +8169,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8201,6 +8279,7 @@ self: super: { "wai" = doDistribute super."wai_3_0_5_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -8313,6 +8392,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8385,6 +8465,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8492,6 +8573,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8518,6 +8600,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8531,6 +8614,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index c939e3fded7f..01397df18047 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1315,6 +1320,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1402,6 +1408,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1549,6 +1556,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1641,6 +1649,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1662,6 +1671,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2046,7 +2056,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2152,6 +2161,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2290,6 +2300,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2315,6 +2327,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2650,6 +2663,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2727,6 +2741,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2801,6 +2816,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2874,6 +2890,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2983,6 +3000,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2993,7 +3011,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3195,6 +3215,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3378,6 +3399,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3856,6 +3881,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4002,6 +4028,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4597,6 +4624,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4636,6 +4664,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4648,6 +4677,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4672,6 +4702,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4805,6 +4836,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4858,6 +4891,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4870,12 +4904,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4930,6 +4967,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4955,6 +4993,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5070,6 +5109,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5257,6 +5297,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5364,6 +5405,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5381,6 +5423,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5444,6 +5487,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5637,6 +5681,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_6"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5716,6 +5761,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6271,6 +6317,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6443,6 +6490,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6588,11 +6636,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6650,6 +6701,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6692,6 +6744,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6739,6 +6792,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6751,6 +6805,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6842,6 +6897,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6983,6 +7039,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7012,11 +7070,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7246,6 +7306,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7360,6 +7421,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7589,6 +7651,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7651,6 +7714,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7696,6 +7762,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7817,6 +7884,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7887,6 +7955,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8065,6 +8134,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8178,6 +8248,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8226,10 +8297,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8457,6 +8530,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8534,6 +8608,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8641,6 +8716,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; @@ -8681,6 +8757,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 97948f178488..f9755359a77e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1315,6 +1320,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1402,6 +1408,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1549,6 +1556,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1641,6 +1649,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1662,6 +1671,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2046,7 +2056,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2152,6 +2161,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2290,6 +2300,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2315,6 +2327,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2650,6 +2663,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2727,6 +2741,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2801,6 +2816,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2874,6 +2890,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2983,6 +3000,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2993,7 +3011,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3195,6 +3215,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3378,6 +3399,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3856,6 +3881,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4002,6 +4028,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4597,6 +4624,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4636,6 +4664,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4648,6 +4677,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4672,6 +4702,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4805,6 +4836,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4858,6 +4891,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4870,12 +4904,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4930,6 +4967,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4955,6 +4993,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5070,6 +5109,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5257,6 +5297,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_3"; @@ -5364,6 +5405,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5381,6 +5423,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5444,6 +5487,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5637,6 +5681,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_6"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5716,6 +5761,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6271,6 +6317,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6443,6 +6490,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6588,11 +6636,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6650,6 +6701,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6692,6 +6744,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6739,6 +6792,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6751,6 +6805,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6842,6 +6897,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6983,6 +7039,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7012,11 +7070,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7246,6 +7306,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7360,6 +7421,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7588,6 +7650,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7650,6 +7713,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7695,6 +7761,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7816,6 +7883,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7886,6 +7954,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8064,6 +8133,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8177,6 +8247,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8225,10 +8296,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8455,6 +8528,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8532,6 +8606,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8639,6 +8714,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6"; @@ -8679,6 +8755,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 6563871a8263..7c785b05d0c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1314,6 +1319,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1401,6 +1407,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1548,6 +1555,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1640,6 +1648,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1661,6 +1670,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2045,7 +2055,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2151,6 +2160,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2289,6 +2299,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2314,6 +2326,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2649,6 +2662,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2726,6 +2740,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2800,6 +2815,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2873,6 +2889,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2982,6 +2999,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2992,7 +3010,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3193,6 +3213,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3376,6 +3397,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3854,6 +3879,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -4000,6 +4026,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4593,6 +4620,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4632,6 +4660,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4644,6 +4673,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4668,6 +4698,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4799,6 +4830,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4852,6 +4885,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4864,12 +4898,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4924,6 +4961,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4949,6 +4987,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5064,6 +5103,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5251,6 +5291,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5358,6 +5399,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5375,6 +5417,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5438,6 +5481,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5631,6 +5675,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_7"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5709,6 +5754,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6263,6 +6309,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6434,6 +6481,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6579,11 +6627,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6641,6 +6692,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6683,6 +6735,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6730,6 +6783,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6742,6 +6796,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6833,6 +6888,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6974,6 +7030,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -7003,11 +7061,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7237,6 +7297,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7351,6 +7412,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7579,6 +7641,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7641,6 +7704,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7685,6 +7751,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7804,6 +7871,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7874,6 +7942,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8052,6 +8121,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8165,6 +8235,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8213,10 +8284,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8443,6 +8516,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8519,6 +8593,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8626,6 +8701,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8666,6 +8742,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index ccf8b2a63008..88eaeed0f5b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1314,6 +1319,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1401,6 +1407,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1548,6 +1555,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1640,6 +1648,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1661,6 +1670,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2045,7 +2055,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2151,6 +2160,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2289,6 +2299,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2314,6 +2326,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2649,6 +2662,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2726,6 +2740,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2800,6 +2815,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2873,6 +2889,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2982,6 +2999,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2992,7 +3010,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3192,6 +3212,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3375,6 +3396,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3851,6 +3876,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3997,6 +4023,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4590,6 +4617,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4629,6 +4657,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4641,6 +4670,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4665,6 +4695,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4796,6 +4827,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4849,6 +4882,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4861,12 +4895,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4921,6 +4958,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4946,6 +4984,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5059,6 +5098,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11"; @@ -5245,6 +5285,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5352,6 +5393,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5369,6 +5411,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5432,6 +5475,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5625,6 +5669,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_7"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5702,6 +5747,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6256,6 +6302,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6427,6 +6474,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6572,11 +6620,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6634,6 +6685,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6676,6 +6728,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6723,6 +6776,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6735,6 +6789,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6826,6 +6881,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6967,6 +7023,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6996,11 +7054,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7230,6 +7290,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7344,6 +7405,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7572,6 +7634,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7634,6 +7697,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7678,6 +7744,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7797,6 +7864,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7867,6 +7935,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8044,6 +8113,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8157,6 +8227,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8205,10 +8276,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8434,6 +8507,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8510,6 +8584,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8617,6 +8692,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8657,6 +8733,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 1fb8a3e6edd4..fec2f0d3bd69 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1314,6 +1319,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1399,6 +1405,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1546,6 +1553,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1638,6 +1646,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1659,6 +1668,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2043,7 +2053,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2149,6 +2158,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2286,6 +2296,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2311,6 +2323,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_4"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2646,6 +2659,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2723,6 +2737,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2797,6 +2812,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2870,6 +2886,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2979,6 +2996,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2989,7 +3007,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3189,6 +3209,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3372,6 +3393,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3848,6 +3873,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3993,6 +4019,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4586,6 +4613,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4625,6 +4653,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4637,6 +4666,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4661,6 +4691,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4792,6 +4823,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4845,6 +4878,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4857,12 +4891,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4917,6 +4954,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4942,6 +4980,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5055,6 +5094,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_0_1"; @@ -5241,6 +5281,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5348,6 +5389,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5365,6 +5407,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5428,6 +5471,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5621,6 +5665,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_7"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5698,6 +5743,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6252,6 +6298,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6421,6 +6468,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6566,11 +6614,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6628,6 +6679,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6670,6 +6722,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6717,6 +6770,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6729,6 +6783,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6820,6 +6875,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6961,6 +7017,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6990,11 +7048,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7224,6 +7284,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7338,6 +7399,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7565,6 +7627,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7627,6 +7690,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7671,6 +7737,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_1"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7790,6 +7857,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7860,6 +7928,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8037,6 +8106,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8150,6 +8220,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8198,10 +8269,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8427,6 +8500,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8501,6 +8575,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8608,6 +8683,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8648,6 +8724,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 325fdcc77786..e21c56a39685 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -557,6 +557,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -929,6 +930,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1092,6 +1094,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1177,6 +1180,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1294,6 +1298,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1314,6 +1319,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1399,6 +1405,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1546,6 +1553,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1638,6 +1646,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1659,6 +1668,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2041,7 +2051,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2147,6 +2156,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2284,6 +2294,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2309,6 +2321,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2640,6 +2653,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2717,6 +2731,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2791,6 +2806,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2864,6 +2880,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2973,6 +2990,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2983,7 +3001,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3183,6 +3203,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3366,6 +3387,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3842,6 +3867,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3987,6 +4013,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4580,6 +4607,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4619,6 +4647,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4631,6 +4660,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4655,6 +4685,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4786,6 +4817,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4839,6 +4872,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4851,12 +4885,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4911,6 +4948,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4936,6 +4974,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5049,6 +5088,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_2"; @@ -5235,6 +5275,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5342,6 +5383,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5359,6 +5401,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5375,6 +5418,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5421,6 +5465,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5613,6 +5658,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_7"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5690,6 +5736,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6244,6 +6291,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6412,6 +6460,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6557,11 +6606,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6619,6 +6671,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6661,6 +6714,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6708,6 +6762,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6720,6 +6775,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6811,6 +6867,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6952,6 +7009,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6981,11 +7040,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7215,6 +7276,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7329,6 +7391,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7556,6 +7619,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7618,6 +7682,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7662,6 +7729,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7780,6 +7848,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7850,6 +7919,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8027,6 +8097,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8140,6 +8211,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8188,10 +8260,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8417,6 +8491,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8491,6 +8566,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8598,6 +8674,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_6_1"; @@ -8638,6 +8715,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index d4ca2e6fb55e..e93acae28fa8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -556,6 +556,7 @@ self: super: { "INblobs" = dontDistribute super."INblobs"; "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -927,6 +928,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1090,6 +1092,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1175,6 +1178,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_4"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1292,6 +1296,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "annotated-wl-pprint" = doDistribute super."annotated-wl-pprint_0_6_0"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; @@ -1312,6 +1317,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1397,6 +1403,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1544,6 +1551,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1635,6 +1643,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1656,6 +1665,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -2038,7 +2048,6 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; - "clock" = doDistribute super."clock_0_5_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2144,6 +2153,7 @@ self: super: { "concurrent-extra" = doDistribute super."concurrent-extra_0_7_0_9"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = dontDistribute super."concurrent-output"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2281,6 +2291,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2306,6 +2318,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_5"; "cryptonite" = doDistribute super."cryptonite_0_6"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2637,6 +2650,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2714,6 +2728,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "drawille" = dontDistribute super."drawille"; @@ -2787,6 +2802,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2860,6 +2876,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2969,6 +2986,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2979,7 +2997,9 @@ self: super: { "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; "farmhash" = dontDistribute super."farmhash"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3179,6 +3199,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3362,6 +3383,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3838,6 +3863,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3983,6 +4009,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4576,6 +4603,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-reverse-proxy" = doDistribute super."http-reverse-proxy_0_4_2"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; @@ -4615,6 +4643,7 @@ self: super: { "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; "hvect" = doDistribute super."hvect_0_2_0_0"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hworker" = dontDistribute super."hworker"; "hworker-ses" = dontDistribute super."hworker-ses"; @@ -4627,6 +4656,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4651,6 +4681,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4782,6 +4813,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4835,6 +4868,7 @@ self: super: { "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "iso8601-time" = dontDistribute super."iso8601-time"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4847,12 +4881,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ix-shapable" = dontDistribute super."ix-shapable"; @@ -4907,6 +4944,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4932,6 +4970,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -5045,6 +5084,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = doDistribute super."language-c-quote_0_11_2_1"; @@ -5231,6 +5271,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_4"; @@ -5338,6 +5379,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = dontDistribute super."luminance"; "luminance-samples" = dontDistribute super."luminance-samples"; @@ -5355,6 +5397,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5371,6 +5414,7 @@ self: super: { "mailbox-count" = dontDistribute super."mailbox-count"; "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = doDistribute super."mainland-pretty_0_4_1_2"; "majordomo" = dontDistribute super."majordomo"; "majority" = dontDistribute super."majority"; "make-hard-links" = dontDistribute super."make-hard-links"; @@ -5417,6 +5461,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5609,6 +5654,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongoDB" = doDistribute super."mongoDB_2_0_8"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; @@ -5686,6 +5732,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -6239,6 +6286,7 @@ self: super: { "pipes-extra" = dontDistribute super."pipes-extra"; "pipes-extras" = dontDistribute super."pipes-extras"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; @@ -6407,6 +6455,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6552,11 +6601,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6614,6 +6666,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6656,6 +6709,7 @@ self: super: { "redis-hs" = dontDistribute super."redis-hs"; "redis-io" = doDistribute super."redis-io_0_5_1"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reducers" = doDistribute super."reducers_3_10_3_2"; @@ -6703,6 +6757,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6715,6 +6770,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6806,6 +6862,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6947,6 +7004,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6976,11 +7035,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -7210,6 +7271,7 @@ self: super: { "skeletons" = dontDistribute super."skeletons"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7324,6 +7386,7 @@ self: super: { "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7551,6 +7614,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7613,6 +7677,9 @@ self: super: { "systemd" = dontDistribute super."systemd"; "syz" = dontDistribute super."syz"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7657,6 +7724,7 @@ self: super: { "tasty-fail-fast" = dontDistribute super."tasty-fail-fast"; "tasty-golden" = doDistribute super."tasty-golden_2_3_0_2"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-html" = dontDistribute super."tasty-html"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7775,6 +7843,7 @@ self: super: { "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7845,6 +7914,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -8022,6 +8092,7 @@ self: super: { "type-level-tf" = dontDistribute super."type-level-tf"; "type-list" = doDistribute super."type-list_0_2_0_0"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -8135,6 +8206,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -8183,10 +8255,12 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-orphans" = dontDistribute super."uuid-orphans"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -8412,6 +8486,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8486,6 +8561,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-basedir" = dontDistribute super."xdg-basedir"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; @@ -8593,6 +8669,7 @@ self: super: { "yeller" = dontDistribute super."yeller"; "yes-precure5-command" = dontDistribute super."yes-precure5-command"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_7"; @@ -8633,6 +8710,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 04242b21f00d..98b396a99cbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -264,6 +264,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -332,6 +333,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -541,6 +543,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -904,6 +907,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1061,6 +1065,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1144,6 +1149,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex" = doDistribute super."alex_3_1_6"; "alex-meta" = dontDistribute super."alex-meta"; @@ -1261,6 +1267,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1280,6 +1287,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1308,6 +1316,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1361,6 +1370,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1501,6 +1511,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1541,6 +1552,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1588,6 +1600,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1608,6 +1621,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1737,6 +1751,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1971,6 +1986,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2071,6 +2087,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2203,6 +2220,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2228,6 +2247,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2464,6 +2484,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2544,6 +2565,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2619,6 +2641,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2690,6 +2713,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2762,6 +2786,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2820,6 +2845,7 @@ self: super: { "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; "exact-pi" = doDistribute super."exact-pi_0_4_1_0"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; @@ -2867,6 +2893,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2876,7 +2903,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3070,6 +3099,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3248,6 +3278,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3704,6 +3738,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3845,6 +3880,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4167,6 +4203,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4266,6 +4303,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4311,6 +4349,7 @@ self: super: { "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; @@ -4318,6 +4357,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4400,6 +4440,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4435,6 +4476,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4445,6 +4487,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4468,6 +4511,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4594,6 +4638,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4640,6 +4686,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4652,12 +4699,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4708,6 +4758,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4732,6 +4783,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4853,6 +4905,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5029,6 +5082,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5131,6 +5185,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1"; "luminance-samples" = doDistribute super."luminance-samples_0_9"; @@ -5148,6 +5203,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5208,6 +5264,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5390,6 +5447,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5412,6 +5470,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5465,6 +5524,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5984,7 +6044,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-http" = dontDistribute super."pipes-http"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -6084,6 +6146,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_4_1"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6142,6 +6205,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6282,11 +6346,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6343,6 +6410,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6382,7 +6450,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6421,6 +6491,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6433,6 +6504,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6516,6 +6588,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6653,6 +6726,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6682,11 +6757,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -6802,6 +6879,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6902,6 +6980,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -7003,12 +7082,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7227,6 +7308,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7286,6 +7368,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7325,6 +7410,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7435,6 +7521,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7501,6 +7588,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7672,6 +7760,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7773,6 +7862,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7819,9 +7909,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7922,6 +8014,7 @@ self: super: { "wai" = doDistribute super."wai_3_0_5_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -8020,6 +8113,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8090,6 +8184,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -8191,6 +8286,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8216,6 +8312,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8228,6 +8325,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8246,6 +8344,7 @@ self: super: { "yesod-session-redis" = dontDistribute super."yesod-session-redis"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 2b56b592c0c4..407d5b7d404a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -264,6 +264,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -332,6 +333,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -541,6 +543,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -904,6 +907,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1061,6 +1065,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1143,6 +1148,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1259,6 +1265,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1278,6 +1285,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1306,6 +1314,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1359,6 +1368,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1499,6 +1509,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1539,6 +1550,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1586,6 +1598,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1606,6 +1619,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1735,6 +1749,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1969,6 +1984,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -2069,6 +2085,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2201,6 +2218,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2226,6 +2245,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2462,6 +2482,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2542,6 +2563,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2617,6 +2639,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2687,6 +2710,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-handlers" = doDistribute super."effect-handlers_0_1_0_6"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; @@ -2758,6 +2782,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2816,6 +2841,7 @@ self: super: { "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; "exact-pi" = doDistribute super."exact-pi_0_4_1_0"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; @@ -2862,6 +2888,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2871,7 +2898,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3064,6 +3093,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3242,6 +3272,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3698,6 +3732,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3839,6 +3874,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4160,6 +4196,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4259,6 +4296,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4304,6 +4342,7 @@ self: super: { "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; @@ -4311,6 +4350,7 @@ self: super: { "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4393,6 +4433,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4428,6 +4469,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4438,6 +4480,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4461,6 +4504,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4583,6 +4627,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intervals" = doDistribute super."intervals_0_7_1"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; @@ -4628,6 +4674,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4640,12 +4687,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4696,6 +4746,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4720,6 +4771,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4841,6 +4893,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -5014,6 +5067,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5116,6 +5170,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1"; "luminance-samples" = doDistribute super."luminance-samples_0_9"; @@ -5133,6 +5188,7 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; @@ -5193,6 +5249,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5375,6 +5432,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5397,6 +5455,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5450,6 +5509,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5967,7 +6027,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-http" = dontDistribute super."pipes-http"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -6067,6 +6129,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_4_1"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6125,6 +6188,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6265,11 +6329,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6326,6 +6393,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6365,7 +6433,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6404,6 +6474,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6416,6 +6487,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6499,6 +6571,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6636,6 +6709,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6665,11 +6740,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -6785,6 +6862,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6885,6 +6963,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6986,12 +7065,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7210,6 +7291,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7269,6 +7351,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7308,6 +7393,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7418,6 +7504,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7484,6 +7571,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7599,6 +7687,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7654,6 +7743,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7755,6 +7845,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7801,9 +7892,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7904,6 +7997,7 @@ self: super: { "wai" = doDistribute super."wai_3_0_5_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -8001,6 +8095,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8071,6 +8166,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -8172,6 +8268,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8197,6 +8294,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8209,6 +8307,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8227,6 +8326,7 @@ self: super: { "yesod-session-redis" = dontDistribute super."yesod-session-redis"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 518d60405fad..992f86ff7a42 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -264,6 +264,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -332,6 +333,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -539,6 +541,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -900,6 +903,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1057,6 +1061,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1139,6 +1144,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1255,6 +1261,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1274,6 +1281,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1302,6 +1310,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1355,6 +1364,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1495,6 +1505,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1535,6 +1546,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1582,6 +1594,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1602,6 +1615,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1730,6 +1744,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1961,6 +1976,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1994,6 +2010,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2060,6 +2077,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2191,6 +2209,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2216,6 +2236,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptol" = doDistribute super."cryptol_2_2_6"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; @@ -2451,6 +2472,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2531,6 +2553,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2606,6 +2629,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2676,6 +2700,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2746,6 +2771,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "envy" = dontDistribute super."envy"; "epanet-haskell" = dontDistribute super."epanet-haskell"; @@ -2804,6 +2830,7 @@ self: super: { "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; "exact-pi" = doDistribute super."exact-pi_0_4_1_0"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; @@ -2848,6 +2875,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2857,7 +2885,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -3048,6 +3078,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3225,6 +3256,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3678,6 +3713,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3817,6 +3853,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4136,6 +4173,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4235,6 +4273,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4273,16 +4312,21 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = dontDistribute super."hspec-megaparsec"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4365,6 +4409,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4400,6 +4445,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4410,6 +4456,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4433,6 +4480,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4553,6 +4601,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_2_2"; @@ -4596,6 +4646,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4608,12 +4659,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4664,6 +4718,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4688,6 +4743,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4809,6 +4865,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4982,6 +5039,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5084,6 +5142,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -5101,9 +5160,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5160,6 +5221,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5340,6 +5402,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5362,6 +5425,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5414,6 +5478,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5931,7 +5996,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-http" = dontDistribute super."pipes-http"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; @@ -6031,6 +6098,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_4_1"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -6086,6 +6154,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6226,11 +6295,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6287,6 +6359,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6325,7 +6398,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6364,6 +6439,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6376,6 +6452,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6456,6 +6533,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6593,6 +6671,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6622,11 +6702,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrypt" = dontDistribute super."scrypt"; @@ -6741,6 +6823,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6837,6 +6920,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6938,12 +7022,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -7160,6 +7246,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7219,6 +7306,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7258,6 +7348,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7367,6 +7458,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7433,6 +7525,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7548,6 +7641,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7603,6 +7697,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7704,6 +7799,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7750,9 +7846,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7853,6 +7951,7 @@ self: super: { "wai" = doDistribute super."wai_3_0_5_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7948,6 +8047,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -8018,6 +8118,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -8119,6 +8220,7 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth" = doDistribute super."yesod-auth_1_4_11"; @@ -8132,6 +8234,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8143,6 +8246,7 @@ self: super: { "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8155,6 +8259,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8173,6 +8278,7 @@ self: super: { "yesod-session-redis" = dontDistribute super."yesod-session-redis"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index dcee088ade74..a01d5d3618d7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_4"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -262,6 +263,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -328,6 +330,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -532,6 +535,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -888,6 +892,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1045,6 +1050,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1082,6 +1088,7 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; @@ -1125,6 +1132,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1241,6 +1249,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1260,6 +1269,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1288,6 +1298,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1340,6 +1351,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1478,6 +1490,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1514,6 +1527,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1560,6 +1574,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1580,6 +1595,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1705,6 +1721,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1730,6 +1747,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1931,6 +1949,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1945,6 +1964,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1963,6 +1983,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2029,6 +2050,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2156,6 +2178,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2181,6 +2205,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2412,6 +2437,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2490,6 +2516,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2518,6 +2545,7 @@ self: super: { "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2562,6 +2590,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2630,6 +2659,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2699,6 +2729,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2756,11 +2787,13 @@ self: super: { "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; "exact-pi" = doDistribute super."exact-pi_0_4_1_0"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2798,6 +2831,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2807,7 +2841,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2996,6 +3032,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3168,6 +3205,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3616,6 +3657,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3755,6 +3797,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4044,6 +4087,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4073,6 +4117,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4172,6 +4217,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4210,16 +4256,21 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4301,6 +4352,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4334,6 +4386,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4344,6 +4397,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4367,6 +4421,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4486,6 +4541,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; @@ -4529,6 +4586,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4541,12 +4599,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4597,6 +4658,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4621,6 +4683,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4740,6 +4803,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4911,6 +4975,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5013,6 +5078,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -5030,9 +5096,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5051,6 +5119,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5088,6 +5157,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5263,6 +5333,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5285,6 +5356,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5337,6 +5409,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5676,6 +5749,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5846,7 +5920,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5944,6 +6020,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_5_1"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5998,6 +6075,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6135,11 +6213,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6195,6 +6276,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6232,7 +6314,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6270,6 +6354,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6282,6 +6367,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6362,6 +6448,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6496,6 +6583,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6525,11 +6614,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6643,6 +6734,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6737,6 +6829,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6749,6 +6842,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6837,12 +6931,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6922,6 +7018,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -7055,6 +7152,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7114,6 +7212,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7152,6 +7253,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7257,6 +7359,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7320,6 +7423,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7407,6 +7511,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7434,6 +7539,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7488,6 +7594,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7587,6 +7694,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7633,9 +7741,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7733,8 +7843,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7829,6 +7941,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7899,6 +8012,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -8000,8 +8114,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -8012,16 +8128,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8034,6 +8153,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8052,6 +8172,7 @@ self: super: { "yesod-session-redis" = dontDistribute super."yesod-session-redis"; "yesod-table" = doDistribute super."yesod-table_2_0_1"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 884b11b28b61..4a1271e52064 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -262,6 +263,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -328,6 +330,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -531,6 +534,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -887,6 +891,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1044,6 +1049,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1081,6 +1087,7 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; @@ -1124,6 +1131,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1239,6 +1247,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1258,6 +1267,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1286,6 +1296,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1338,6 +1349,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1377,6 +1389,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1473,6 +1488,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1509,6 +1525,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1555,6 +1572,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1575,6 +1593,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1698,6 +1717,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1723,6 +1743,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1923,6 +1944,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1937,6 +1959,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1955,6 +1978,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2021,6 +2045,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2148,6 +2173,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2173,6 +2200,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2403,6 +2431,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2481,6 +2510,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2509,6 +2539,7 @@ self: super: { "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2553,6 +2584,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2621,6 +2653,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2690,6 +2723,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2747,11 +2781,13 @@ self: super: { "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; "exact-pi" = doDistribute super."exact-pi_0_4_1_0"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2789,6 +2825,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2798,7 +2835,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2987,6 +3026,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3159,6 +3199,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3607,6 +3651,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3746,6 +3791,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4035,6 +4081,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4064,6 +4111,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4163,6 +4211,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4201,16 +4250,21 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4292,6 +4346,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4325,6 +4380,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4335,6 +4391,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4358,6 +4415,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4476,6 +4534,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invariant" = doDistribute super."invariant_0_3"; @@ -4519,6 +4579,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4531,12 +4592,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4587,6 +4651,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4611,6 +4676,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4730,6 +4796,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4901,6 +4968,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -5003,6 +5071,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -5020,9 +5089,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5041,6 +5112,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5078,6 +5150,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5210,6 +5283,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_1"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5251,6 +5325,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5273,6 +5348,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5325,6 +5401,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5664,6 +5741,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5834,7 +5912,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5932,6 +6012,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_8"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5986,6 +6067,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6123,11 +6205,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6183,6 +6268,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6219,7 +6305,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6257,6 +6345,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6269,6 +6358,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6349,6 +6439,7 @@ self: super: { "rev-state" = doDistribute super."rev-state_0_1_1"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6483,6 +6574,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6512,11 +6605,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6629,6 +6724,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6723,6 +6819,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6735,6 +6832,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6823,12 +6921,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6908,6 +7008,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -7041,6 +7142,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7100,6 +7202,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7137,6 +7242,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7242,6 +7348,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7305,6 +7412,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7392,6 +7500,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7419,6 +7528,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7473,6 +7583,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7572,6 +7683,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7618,9 +7730,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7717,8 +7831,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7813,6 +7929,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7883,6 +8000,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7984,8 +8102,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7996,16 +8116,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -8018,6 +8141,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8034,7 +8158,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix new file mode 100644 index 000000000000..4afe0e0a0b8b --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -0,0 +1,8031 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.10 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_5"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_2"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_2"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_15_2"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_5_1"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix new file mode 100644 index 000000000000..34f5701d36c5 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -0,0 +1,7995 @@ +{ pkgs }: + +with import ./lib.nix { inherit pkgs; }; + +self: super: { + + # core libraries provided by the compiler + Cabal = null; + array = null; + base = null; + bin-package-db = null; + binary = null; + bytestring = null; + containers = null; + deepseq = null; + directory = null; + filepath = null; + ghc-prim = null; + hoopl = null; + hpc = null; + integer-gmp = null; + pretty = null; + process = null; + rts = null; + template-haskell = null; + time = null; + transformers = null; + unix = null; + + # lts-5.11 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "AGI" = dontDistribute super."AGI"; + "ALUT" = dontDistribute super."ALUT"; + "AMI" = dontDistribute super."AMI"; + "ANum" = dontDistribute super."ANum"; + "ASN1" = dontDistribute super."ASN1"; + "AVar" = dontDistribute super."AVar"; + "AWin32Console" = dontDistribute super."AWin32Console"; + "AbortT-monadstf" = dontDistribute super."AbortT-monadstf"; + "AbortT-mtl" = dontDistribute super."AbortT-mtl"; + "AbortT-transformers" = dontDistribute super."AbortT-transformers"; + "ActionKid" = dontDistribute super."ActionKid"; + "Adaptive" = dontDistribute super."Adaptive"; + "Adaptive-Blaisorblade" = dontDistribute super."Adaptive-Blaisorblade"; + "Advgame" = dontDistribute super."Advgame"; + "AesonBson" = dontDistribute super."AesonBson"; + "Agata" = dontDistribute super."Agata"; + "Agda-executable" = dontDistribute super."Agda-executable"; + "AhoCorasick" = dontDistribute super."AhoCorasick"; + "AlgorithmW" = dontDistribute super."AlgorithmW"; + "AlignmentAlgorithms" = dontDistribute super."AlignmentAlgorithms"; + "Allure" = dontDistribute super."Allure"; + "AndroidViewHierarchyImporter" = dontDistribute super."AndroidViewHierarchyImporter"; + "Animas" = dontDistribute super."Animas"; + "Annotations" = dontDistribute super."Annotations"; + "Ansi2Html" = dontDistribute super."Ansi2Html"; + "ApplePush" = dontDistribute super."ApplePush"; + "AppleScript" = dontDistribute super."AppleScript"; + "ApproxFun-hs" = dontDistribute super."ApproxFun-hs"; + "ArrayRef" = dontDistribute super."ArrayRef"; + "ArrowVHDL" = dontDistribute super."ArrowVHDL"; + "AspectAG" = dontDistribute super."AspectAG"; + "AttoBencode" = dontDistribute super."AttoBencode"; + "AttoJson" = dontDistribute super."AttoJson"; + "Attrac" = dontDistribute super."Attrac"; + "Aurochs" = dontDistribute super."Aurochs"; + "AutoForms" = dontDistribute super."AutoForms"; + "AvlTree" = dontDistribute super."AvlTree"; + "BASIC" = dontDistribute super."BASIC"; + "BCMtools" = dontDistribute super."BCMtools"; + "BNFC" = dontDistribute super."BNFC"; + "BNFC-meta" = dontDistribute super."BNFC-meta"; + "Baggins" = dontDistribute super."Baggins"; + "Bang" = dontDistribute super."Bang"; + "Barracuda" = dontDistribute super."Barracuda"; + "Befunge93" = dontDistribute super."Befunge93"; + "BenchmarkHistory" = dontDistribute super."BenchmarkHistory"; + "BerkeleyDB" = dontDistribute super."BerkeleyDB"; + "BerkeleyDBXML" = dontDistribute super."BerkeleyDBXML"; + "BerlekampAlgorithm" = dontDistribute super."BerlekampAlgorithm"; + "BigPixel" = dontDistribute super."BigPixel"; + "Binpack" = dontDistribute super."Binpack"; + "Biobase" = dontDistribute super."Biobase"; + "BiobaseBlast" = dontDistribute super."BiobaseBlast"; + "BiobaseDotP" = dontDistribute super."BiobaseDotP"; + "BiobaseFR3D" = dontDistribute super."BiobaseFR3D"; + "BiobaseFasta" = dontDistribute super."BiobaseFasta"; + "BiobaseInfernal" = dontDistribute super."BiobaseInfernal"; + "BiobaseMAF" = dontDistribute super."BiobaseMAF"; + "BiobaseNewick" = dontDistribute super."BiobaseNewick"; + "BiobaseTrainingData" = dontDistribute super."BiobaseTrainingData"; + "BiobaseTurner" = dontDistribute super."BiobaseTurner"; + "BiobaseTypes" = dontDistribute super."BiobaseTypes"; + "BiobaseVienna" = dontDistribute super."BiobaseVienna"; + "BiobaseXNA" = dontDistribute super."BiobaseXNA"; + "BirdPP" = dontDistribute super."BirdPP"; + "BitSyntax" = dontDistribute super."BitSyntax"; + "Bitly" = dontDistribute super."Bitly"; + "Blobs" = dontDistribute super."Blobs"; + "BluePrintCSS" = dontDistribute super."BluePrintCSS"; + "Blueprint" = dontDistribute super."Blueprint"; + "Bookshelf" = dontDistribute super."Bookshelf"; + "Bravo" = dontDistribute super."Bravo"; + "BufferedSocket" = dontDistribute super."BufferedSocket"; + "Buster" = dontDistribute super."Buster"; + "CBOR" = dontDistribute super."CBOR"; + "CC-delcont" = dontDistribute super."CC-delcont"; + "CC-delcont-alt" = dontDistribute super."CC-delcont-alt"; + "CC-delcont-cxe" = dontDistribute super."CC-delcont-cxe"; + "CC-delcont-exc" = dontDistribute super."CC-delcont-exc"; + "CC-delcont-ref" = dontDistribute super."CC-delcont-ref"; + "CC-delcont-ref-tf" = dontDistribute super."CC-delcont-ref-tf"; + "CCA" = dontDistribute super."CCA"; + "CHXHtml" = dontDistribute super."CHXHtml"; + "CLASE" = dontDistribute super."CLASE"; + "CLI" = dontDistribute super."CLI"; + "CMCompare" = dontDistribute super."CMCompare"; + "CMQ" = dontDistribute super."CMQ"; + "COrdering" = dontDistribute super."COrdering"; + "CPBrainfuck" = dontDistribute super."CPBrainfuck"; + "CPL" = dontDistribute super."CPL"; + "CSPM-CoreLanguage" = dontDistribute super."CSPM-CoreLanguage"; + "CSPM-FiringRules" = dontDistribute super."CSPM-FiringRules"; + "CSPM-Frontend" = dontDistribute super."CSPM-Frontend"; + "CSPM-Interpreter" = dontDistribute super."CSPM-Interpreter"; + "CSPM-ToProlog" = dontDistribute super."CSPM-ToProlog"; + "CSPM-cspm" = dontDistribute super."CSPM-cspm"; + "CTRex" = dontDistribute super."CTRex"; + "CV" = dontDistribute super."CV"; + "CabalSearch" = dontDistribute super."CabalSearch"; + "Capabilities" = dontDistribute super."Capabilities"; + "Cardinality" = dontDistribute super."Cardinality"; + "CarneadesDSL" = dontDistribute super."CarneadesDSL"; + "CarneadesIntoDung" = dontDistribute super."CarneadesIntoDung"; + "Cartesian" = dontDistribute super."Cartesian"; + "Cascade" = dontDistribute super."Cascade"; + "Catana" = dontDistribute super."Catana"; + "ChannelT" = dontDistribute super."ChannelT"; + "Chart" = doDistribute super."Chart_1_5_4"; + "Chart-cairo" = doDistribute super."Chart-cairo_1_5_4"; + "Chart-diagrams" = dontDistribute super."Chart-diagrams"; + "Chart-gtk" = dontDistribute super."Chart-gtk"; + "Chart-simple" = dontDistribute super."Chart-simple"; + "CheatSheet" = dontDistribute super."CheatSheet"; + "Checked" = dontDistribute super."Checked"; + "Chitra" = dontDistribute super."Chitra"; + "ChristmasTree" = dontDistribute super."ChristmasTree"; + "CirruParser" = dontDistribute super."CirruParser"; + "ClassLaws" = dontDistribute super."ClassLaws"; + "ClassyPrelude" = dontDistribute super."ClassyPrelude"; + "Clean" = dontDistribute super."Clean"; + "Clipboard" = dontDistribute super."Clipboard"; + "Coadjute" = dontDistribute super."Coadjute"; + "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; + "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; + "Combinatorrent" = dontDistribute super."Combinatorrent"; + "Command" = dontDistribute super."Command"; + "Commando" = dontDistribute super."Commando"; + "ComonadSheet" = dontDistribute super."ComonadSheet"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "DifferenceLogic" = dontDistribute super."DifferenceLogic"; + "DifferentialEvolution" = dontDistribute super."DifferentialEvolution"; + "Digit" = dontDistribute super."Digit"; + "DigitalOcean" = dontDistribute super."DigitalOcean"; + "DimensionalHash" = dontDistribute super."DimensionalHash"; + "DirectSound" = dontDistribute super."DirectSound"; + "DisTract" = dontDistribute super."DisTract"; + "DiscussionSupportSystem" = dontDistribute super."DiscussionSupportSystem"; + "Dish" = dontDistribute super."Dish"; + "Dist" = dontDistribute super."Dist"; + "DistanceTransform" = dontDistribute super."DistanceTransform"; + "DistanceUnits" = dontDistribute super."DistanceUnits"; + "DnaProteinAlignment" = dontDistribute super."DnaProteinAlignment"; + "DocTest" = dontDistribute super."DocTest"; + "Docs" = dontDistribute super."Docs"; + "DrHylo" = dontDistribute super."DrHylo"; + "DrIFT" = dontDistribute super."DrIFT"; + "DrIFT-cabalized" = dontDistribute super."DrIFT-cabalized"; + "Dung" = dontDistribute super."Dung"; + "Dust" = dontDistribute super."Dust"; + "Dust-crypto" = dontDistribute super."Dust-crypto"; + "Dust-tools" = dontDistribute super."Dust-tools"; + "Dust-tools-pcap" = dontDistribute super."Dust-tools-pcap"; + "DynamicTimeWarp" = dontDistribute super."DynamicTimeWarp"; + "DysFRP" = dontDistribute super."DysFRP"; + "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; + "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; + "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; + "EdisonAPI" = dontDistribute super."EdisonAPI"; + "EdisonCore" = dontDistribute super."EdisonCore"; + "EditTimeReport" = dontDistribute super."EditTimeReport"; + "EitherT" = dontDistribute super."EitherT"; + "Elm" = dontDistribute super."Elm"; + "Emping" = dontDistribute super."Emping"; + "Encode" = dontDistribute super."Encode"; + "EnumContainers" = dontDistribute super."EnumContainers"; + "EnumMap" = dontDistribute super."EnumMap"; + "Eq" = dontDistribute super."Eq"; + "EqualitySolver" = dontDistribute super."EqualitySolver"; + "EsounD" = dontDistribute super."EsounD"; + "EstProgress" = dontDistribute super."EstProgress"; + "EtaMOO" = dontDistribute super."EtaMOO"; + "Etage" = dontDistribute super."Etage"; + "Etage-Graph" = dontDistribute super."Etage-Graph"; + "Eternal10Seconds" = dontDistribute super."Eternal10Seconds"; + "Etherbunny" = dontDistribute super."Etherbunny"; + "EuroIT" = dontDistribute super."EuroIT"; + "Euterpea" = dontDistribute super."Euterpea"; + "EventSocket" = dontDistribute super."EventSocket"; + "Extra" = dontDistribute super."Extra"; + "FComp" = dontDistribute super."FComp"; + "FM-SBLEX" = dontDistribute super."FM-SBLEX"; + "FModExRaw" = dontDistribute super."FModExRaw"; + "FPretty" = dontDistribute super."FPretty"; + "FTGL" = dontDistribute super."FTGL"; + "FTGL-bytestring" = dontDistribute super."FTGL-bytestring"; + "FTPLine" = dontDistribute super."FTPLine"; + "Facts" = dontDistribute super."Facts"; + "FailureT" = dontDistribute super."FailureT"; + "FastxPipe" = dontDistribute super."FastxPipe"; + "FermatsLastMargin" = dontDistribute super."FermatsLastMargin"; + "FerryCore" = dontDistribute super."FerryCore"; + "Feval" = dontDistribute super."Feval"; + "FieldTrip" = dontDistribute super."FieldTrip"; + "FileManip" = dontDistribute super."FileManip"; + "FileManipCompat" = dontDistribute super."FileManipCompat"; + "FilePather" = dontDistribute super."FilePather"; + "FileSystem" = dontDistribute super."FileSystem"; + "Finance-Quote-Yahoo" = dontDistribute super."Finance-Quote-Yahoo"; + "Finance-Treasury" = dontDistribute super."Finance-Treasury"; + "FiniteMap" = dontDistribute super."FiniteMap"; + "FirstOrderTheory" = dontDistribute super."FirstOrderTheory"; + "FixedPoint-simple" = dontDistribute super."FixedPoint-simple"; + "Flippi" = dontDistribute super."Flippi"; + "Focus" = dontDistribute super."Focus"; + "Folly" = dontDistribute super."Folly"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDBC-session" = dontDistribute super."HDBC-session"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JunkDB" = dontDistribute super."JunkDB"; + "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; + "JunkDB-driver-hashtables" = dontDistribute super."JunkDB-driver-hashtables"; + "JustParse" = dontDistribute super."JustParse"; + "KMP" = dontDistribute super."KMP"; + "KSP" = dontDistribute super."KSP"; + "Kalman" = dontDistribute super."Kalman"; + "KdTree" = dontDistribute super."KdTree"; + "Ketchup" = dontDistribute super."Ketchup"; + "KiCS" = dontDistribute super."KiCS"; + "KiCS-debugger" = dontDistribute super."KiCS-debugger"; + "KiCS-prophecy" = dontDistribute super."KiCS-prophecy"; + "Kleislify" = dontDistribute super."Kleislify"; + "Konf" = dontDistribute super."Konf"; + "Kriens" = dontDistribute super."Kriens"; + "KyotoCabinet" = dontDistribute super."KyotoCabinet"; + "L-seed" = dontDistribute super."L-seed"; + "LATS" = dontDistribute super."LATS"; + "LDAP" = dontDistribute super."LDAP"; + "LRU" = dontDistribute super."LRU"; + "LTree" = dontDistribute super."LTree"; + "LambdaCalculator" = dontDistribute super."LambdaCalculator"; + "LambdaHack" = dontDistribute super."LambdaHack"; + "LambdaINet" = dontDistribute super."LambdaINet"; + "LambdaNet" = dontDistribute super."LambdaNet"; + "LambdaPrettyQuote" = dontDistribute super."LambdaPrettyQuote"; + "LambdaShell" = dontDistribute super."LambdaShell"; + "Lambdajudge" = dontDistribute super."Lambdajudge"; + "Lambdaya" = dontDistribute super."Lambdaya"; + "LargeCardinalHierarchy" = dontDistribute super."LargeCardinalHierarchy"; + "Lastik" = dontDistribute super."Lastik"; + "Lattices" = dontDistribute super."Lattices"; + "Lazy-Pbkdf2" = dontDistribute super."Lazy-Pbkdf2"; + "LazyVault" = dontDistribute super."LazyVault"; + "Level0" = dontDistribute super."Level0"; + "LibClang" = dontDistribute super."LibClang"; + "Limit" = dontDistribute super."Limit"; + "LinearSplit" = dontDistribute super."LinearSplit"; + "LinguisticsTypes" = dontDistribute super."LinguisticsTypes"; + "LinkChecker" = dontDistribute super."LinkChecker"; + "ListTree" = dontDistribute super."ListTree"; + "ListWriter" = dontDistribute super."ListWriter"; + "ListZipper" = dontDistribute super."ListZipper"; + "Logic" = dontDistribute super."Logic"; + "LogicGrowsOnTrees" = dontDistribute super."LogicGrowsOnTrees"; + "LogicGrowsOnTrees-MPI" = dontDistribute super."LogicGrowsOnTrees-MPI"; + "LogicGrowsOnTrees-network" = dontDistribute super."LogicGrowsOnTrees-network"; + "LogicGrowsOnTrees-processes" = dontDistribute super."LogicGrowsOnTrees-processes"; + "LslPlus" = dontDistribute super."LslPlus"; + "Lucu" = dontDistribute super."Lucu"; + "MASMGen" = dontDistribute super."MASMGen"; + "MC-Fold-DP" = dontDistribute super."MC-Fold-DP"; + "MHask" = dontDistribute super."MHask"; + "MSQueue" = dontDistribute super."MSQueue"; + "MTGBuilder" = dontDistribute super."MTGBuilder"; + "MagicHaskeller" = dontDistribute super."MagicHaskeller"; + "MailchimpSimple" = dontDistribute super."MailchimpSimple"; + "MaybeT" = dontDistribute super."MaybeT"; + "MaybeT-monads-tf" = dontDistribute super."MaybeT-monads-tf"; + "MaybeT-transformers" = dontDistribute super."MaybeT-transformers"; + "MazesOfMonad" = dontDistribute super."MazesOfMonad"; + "MeanShift" = dontDistribute super."MeanShift"; + "Measure" = dontDistribute super."Measure"; + "MetaHDBC" = dontDistribute super."MetaHDBC"; + "MetaObject" = dontDistribute super."MetaObject"; + "Metrics" = dontDistribute super."Metrics"; + "Mhailist" = dontDistribute super."Mhailist"; + "Michelangelo" = dontDistribute super."Michelangelo"; + "MicrosoftTranslator" = dontDistribute super."MicrosoftTranslator"; + "MiniAgda" = dontDistribute super."MiniAgda"; + "MissingK" = dontDistribute super."MissingK"; + "MissingM" = dontDistribute super."MissingM"; + "MissingPy" = dontDistribute super."MissingPy"; + "Modulo" = dontDistribute super."Modulo"; + "Moe" = dontDistribute super."Moe"; + "MoeDict" = dontDistribute super."MoeDict"; + "MonadCatchIO-mtl" = dontDistribute super."MonadCatchIO-mtl"; + "MonadCatchIO-mtl-foreign" = dontDistribute super."MonadCatchIO-mtl-foreign"; + "MonadCatchIO-transformers-foreign" = dontDistribute super."MonadCatchIO-transformers-foreign"; + "MonadCompose" = dontDistribute super."MonadCompose"; + "MonadLab" = dontDistribute super."MonadLab"; + "MonadRandomLazy" = dontDistribute super."MonadRandomLazy"; + "MonadStack" = dontDistribute super."MonadStack"; + "Monadius" = dontDistribute super."Monadius"; + "Monaris" = dontDistribute super."Monaris"; + "Monatron" = dontDistribute super."Monatron"; + "Monatron-IO" = dontDistribute super."Monatron-IO"; + "Monocle" = dontDistribute super."Monocle"; + "MorseCode" = dontDistribute super."MorseCode"; + "MuCheck" = dontDistribute super."MuCheck"; + "MuCheck-HUnit" = dontDistribute super."MuCheck-HUnit"; + "MuCheck-Hspec" = dontDistribute super."MuCheck-Hspec"; + "MuCheck-QuickCheck" = dontDistribute super."MuCheck-QuickCheck"; + "MuCheck-SmallCheck" = dontDistribute super."MuCheck-SmallCheck"; + "Munkres" = dontDistribute super."Munkres"; + "Munkres-simple" = dontDistribute super."Munkres-simple"; + "MusicBrainz-libdiscid" = dontDistribute super."MusicBrainz-libdiscid"; + "MyPrimes" = dontDistribute super."MyPrimes"; + "NGrams" = dontDistribute super."NGrams"; + "NTRU" = dontDistribute super."NTRU"; + "NXT" = dontDistribute super."NXT"; + "NXTDSL" = dontDistribute super."NXTDSL"; + "NanoProlog" = dontDistribute super."NanoProlog"; + "NaturalLanguageAlphabets" = dontDistribute super."NaturalLanguageAlphabets"; + "NaturalSort" = dontDistribute super."NaturalSort"; + "NearContextAlgebra" = dontDistribute super."NearContextAlgebra"; + "Neks" = dontDistribute super."Neks"; + "NestedFunctor" = dontDistribute super."NestedFunctor"; + "NestedSampling" = dontDistribute super."NestedSampling"; + "NetSNMP" = dontDistribute super."NetSNMP"; + "NewBinary" = dontDistribute super."NewBinary"; + "Ninjas" = dontDistribute super."Ninjas"; + "NoSlow" = dontDistribute super."NoSlow"; + "NoTrace" = dontDistribute super."NoTrace"; + "Noise" = dontDistribute super."Noise"; + "Nomyx" = dontDistribute super."Nomyx"; + "Nomyx-Core" = dontDistribute super."Nomyx-Core"; + "Nomyx-Language" = dontDistribute super."Nomyx-Language"; + "Nomyx-Rules" = dontDistribute super."Nomyx-Rules"; + "Nomyx-Web" = dontDistribute super."Nomyx-Web"; + "NonEmpty" = dontDistribute super."NonEmpty"; + "NonEmptyList" = dontDistribute super."NonEmptyList"; + "NumLazyByteString" = dontDistribute super."NumLazyByteString"; + "NumberSieves" = dontDistribute super."NumberSieves"; + "NumberTheory" = dontDistribute super."NumberTheory"; + "Numbers" = dontDistribute super."Numbers"; + "Nussinov78" = dontDistribute super."Nussinov78"; + "Nutri" = dontDistribute super."Nutri"; + "OGL" = dontDistribute super."OGL"; + "OSM" = dontDistribute super."OSM"; + "OTP" = dontDistribute super."OTP"; + "Object" = dontDistribute super."Object"; + "ObjectIO" = dontDistribute super."ObjectIO"; + "Obsidian" = dontDistribute super."Obsidian"; + "OddWord" = dontDistribute super."OddWord"; + "Omega" = dontDistribute super."Omega"; + "OneTuple" = dontDistribute super."OneTuple"; + "OpenAFP" = dontDistribute super."OpenAFP"; + "OpenAFP-Utils" = dontDistribute super."OpenAFP-Utils"; + "OpenAL" = dontDistribute super."OpenAL"; + "OpenCL" = dontDistribute super."OpenCL"; + "OpenCLRaw" = dontDistribute super."OpenCLRaw"; + "OpenCLWrappers" = dontDistribute super."OpenCLWrappers"; + "OpenGLCheck" = dontDistribute super."OpenGLCheck"; + "OpenGLRaw21" = dontDistribute super."OpenGLRaw21"; + "OpenSCAD" = dontDistribute super."OpenSCAD"; + "OpenVG" = dontDistribute super."OpenVG"; + "OpenVGRaw" = dontDistribute super."OpenVGRaw"; + "Operads" = dontDistribute super."Operads"; + "OptDir" = dontDistribute super."OptDir"; + "OrPatterns" = dontDistribute super."OrPatterns"; + "OrchestrateDB" = dontDistribute super."OrchestrateDB"; + "OrderedBits" = dontDistribute super."OrderedBits"; + "Ordinals" = dontDistribute super."Ordinals"; + "PArrows" = dontDistribute super."PArrows"; + "PBKDF2" = dontDistribute super."PBKDF2"; + "PCLT" = dontDistribute super."PCLT"; + "PCLT-DB" = dontDistribute super."PCLT-DB"; + "PDBtools" = dontDistribute super."PDBtools"; + "PTQ" = dontDistribute super."PTQ"; + "PUH-Project" = dontDistribute super."PUH-Project"; + "PageIO" = dontDistribute super."PageIO"; + "Paillier" = dontDistribute super."Paillier"; + "PandocAgda" = dontDistribute super."PandocAgda"; + "Paraiso" = dontDistribute super."Paraiso"; + "Parry" = dontDistribute super."Parry"; + "ParsecTools" = dontDistribute super."ParsecTools"; + "ParserFunction" = dontDistribute super."ParserFunction"; + "PartialTypeSignatures" = dontDistribute super."PartialTypeSignatures"; + "PasswordGenerator" = dontDistribute super."PasswordGenerator"; + "PastePipe" = dontDistribute super."PastePipe"; + "Pathfinder" = dontDistribute super."Pathfinder"; + "Peano" = dontDistribute super."Peano"; + "PeanoWitnesses" = dontDistribute super."PeanoWitnesses"; + "PerfectHash" = dontDistribute super."PerfectHash"; + "PermuteEffects" = dontDistribute super."PermuteEffects"; + "Phsu" = dontDistribute super."Phsu"; + "Pipe" = dontDistribute super."Pipe"; + "Piso" = dontDistribute super."Piso"; + "PlayHangmanGame" = dontDistribute super."PlayHangmanGame"; + "PlayingCards" = dontDistribute super."PlayingCards"; + "Plot-ho-matic" = dontDistribute super."Plot-ho-matic"; + "PlslTools" = dontDistribute super."PlslTools"; + "Plural" = dontDistribute super."Plural"; + "Pollutocracy" = dontDistribute super."Pollutocracy"; + "PortFusion" = dontDistribute super."PortFusion"; + "PortMidi" = dontDistribute super."PortMidi"; + "PostgreSQL" = dontDistribute super."PostgreSQL"; + "PrimitiveArray" = dontDistribute super."PrimitiveArray"; + "PrimitiveArray-Pretty" = dontDistribute super."PrimitiveArray-Pretty"; + "Printf-TH" = dontDistribute super."Printf-TH"; + "PriorityChansConverger" = dontDistribute super."PriorityChansConverger"; + "ProbabilityMonads" = dontDistribute super."ProbabilityMonads"; + "PropLogic" = dontDistribute super."PropLogic"; + "Proper" = dontDistribute super."Proper"; + "ProxN" = dontDistribute super."ProxN"; + "Pugs" = dontDistribute super."Pugs"; + "Pup-Events" = dontDistribute super."Pup-Events"; + "Pup-Events-Client" = dontDistribute super."Pup-Events-Client"; + "Pup-Events-Demo" = dontDistribute super."Pup-Events-Demo"; + "Pup-Events-PQueue" = dontDistribute super."Pup-Events-PQueue"; + "Pup-Events-Server" = dontDistribute super."Pup-Events-Server"; + "QIO" = dontDistribute super."QIO"; + "QuadEdge" = dontDistribute super."QuadEdge"; + "QuadTree" = dontDistribute super."QuadTree"; + "Quelea" = dontDistribute super."Quelea"; + "QuickAnnotate" = dontDistribute super."QuickAnnotate"; + "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; + "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; + "QuickCheck-safe" = dontDistribute super."QuickCheck-safe"; + "QuickPlot" = dontDistribute super."QuickPlot"; + "Quickson" = dontDistribute super."Quickson"; + "R-pandoc" = dontDistribute super."R-pandoc"; + "RANSAC" = dontDistribute super."RANSAC"; + "RBTree" = dontDistribute super."RBTree"; + "RESTng" = dontDistribute super."RESTng"; + "RFC1751" = dontDistribute super."RFC1751"; + "RJson" = dontDistribute super."RJson"; + "RMP" = dontDistribute super."RMP"; + "RNAFold" = dontDistribute super."RNAFold"; + "RNAFoldProgs" = dontDistribute super."RNAFoldProgs"; + "RNAdesign" = dontDistribute super."RNAdesign"; + "RNAdraw" = dontDistribute super."RNAdraw"; + "RNAlien" = doDistribute super."RNAlien_1_0_0"; + "RNAwolf" = dontDistribute super."RNAwolf"; + "Raincat" = dontDistribute super."Raincat"; + "Random123" = dontDistribute super."Random123"; + "RandomDotOrg" = dontDistribute super."RandomDotOrg"; + "Randometer" = dontDistribute super."Randometer"; + "Range" = dontDistribute super."Range"; + "Ranged-sets" = dontDistribute super."Ranged-sets"; + "Ranka" = dontDistribute super."Ranka"; + "Rasenschach" = dontDistribute super."Rasenschach"; + "Redmine" = dontDistribute super."Redmine"; + "Ref" = dontDistribute super."Ref"; + "Referees" = dontDistribute super."Referees"; + "RepLib" = dontDistribute super."RepLib"; + "ReplicateEffects" = dontDistribute super."ReplicateEffects"; + "ReviewBoard" = dontDistribute super."ReviewBoard"; + "RichConditional" = dontDistribute super."RichConditional"; + "RollingDirectory" = dontDistribute super."RollingDirectory"; + "RoyalMonad" = dontDistribute super."RoyalMonad"; + "RxHaskell" = dontDistribute super."RxHaskell"; + "SBench" = dontDistribute super."SBench"; + "SConfig" = dontDistribute super."SConfig"; + "SDL" = dontDistribute super."SDL"; + "SDL-gfx" = dontDistribute super."SDL-gfx"; + "SDL-image" = dontDistribute super."SDL-image"; + "SDL-mixer" = dontDistribute super."SDL-mixer"; + "SDL-mpeg" = dontDistribute super."SDL-mpeg"; + "SDL-ttf" = dontDistribute super."SDL-ttf"; + "SDL2-ttf" = dontDistribute super."SDL2-ttf"; + "SFML" = dontDistribute super."SFML"; + "SFML-control" = dontDistribute super."SFML-control"; + "SFont" = dontDistribute super."SFont"; + "SG" = dontDistribute super."SG"; + "SGdemo" = dontDistribute super."SGdemo"; + "SHA2" = dontDistribute super."SHA2"; + "SMTPClient" = dontDistribute super."SMTPClient"; + "SNet" = dontDistribute super."SNet"; + "SQLDeps" = dontDistribute super."SQLDeps"; + "STL" = dontDistribute super."STL"; + "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = dontDistribute super."SVGFonts"; + "SVGPath" = dontDistribute super."SVGPath"; + "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; + "SableCC2Hs" = dontDistribute super."SableCC2Hs"; + "Safe" = dontDistribute super."Safe"; + "Salsa" = dontDistribute super."Salsa"; + "Saturnin" = dontDistribute super."Saturnin"; + "SciFlow" = dontDistribute super."SciFlow"; + "ScratchFs" = dontDistribute super."ScratchFs"; + "Scurry" = dontDistribute super."Scurry"; + "Semantique" = dontDistribute super."Semantique"; + "Semigroup" = dontDistribute super."Semigroup"; + "SeqAlign" = dontDistribute super."SeqAlign"; + "SessionLogger" = dontDistribute super."SessionLogger"; + "ShellCheck" = dontDistribute super."ShellCheck"; + "Shellac" = dontDistribute super."Shellac"; + "Shellac-compatline" = dontDistribute super."Shellac-compatline"; + "Shellac-editline" = dontDistribute super."Shellac-editline"; + "Shellac-haskeline" = dontDistribute super."Shellac-haskeline"; + "Shellac-readline" = dontDistribute super."Shellac-readline"; + "ShowF" = dontDistribute super."ShowF"; + "Shrub" = dontDistribute super."Shrub"; + "Shu-thing" = dontDistribute super."Shu-thing"; + "SimpleAES" = dontDistribute super."SimpleAES"; + "SimpleEA" = dontDistribute super."SimpleEA"; + "SimpleGL" = dontDistribute super."SimpleGL"; + "SimpleH" = dontDistribute super."SimpleH"; + "SimpleLog" = dontDistribute super."SimpleLog"; + "SimpleServer" = dontDistribute super."SimpleServer"; + "SizeCompare" = dontDistribute super."SizeCompare"; + "Slides" = dontDistribute super."Slides"; + "Smooth" = dontDistribute super."Smooth"; + "SmtLib" = dontDistribute super."SmtLib"; + "Snusmumrik" = dontDistribute super."Snusmumrik"; + "SoOSiM" = dontDistribute super."SoOSiM"; + "SoccerFun" = dontDistribute super."SoccerFun"; + "SoccerFunGL" = dontDistribute super."SoccerFunGL"; + "Sonnex" = dontDistribute super."Sonnex"; + "SourceGraph" = dontDistribute super."SourceGraph"; + "Southpaw" = dontDistribute super."Southpaw"; + "SpaceInvaders" = dontDistribute super."SpaceInvaders"; + "SpacePrivateers" = dontDistribute super."SpacePrivateers"; + "SpinCounter" = dontDistribute super."SpinCounter"; + "Spock-auth" = dontDistribute super."Spock-auth"; + "Spock-lucid" = dontDistribute super."Spock-lucid"; + "Spock-worker" = doDistribute super."Spock-worker_0_2_1_3"; + "SpreadsheetML" = dontDistribute super."SpreadsheetML"; + "Sprig" = dontDistribute super."Sprig"; + "Stasis" = dontDistribute super."Stasis"; + "StateVar-transformer" = dontDistribute super."StateVar-transformer"; + "StatisticalMethods" = dontDistribute super."StatisticalMethods"; + "Stomp" = dontDistribute super."Stomp"; + "Strafunski-ATermLib" = dontDistribute super."Strafunski-ATermLib"; + "Strafunski-Sdf2Haskell" = dontDistribute super."Strafunski-Sdf2Haskell"; + "StrappedTemplates" = dontDistribute super."StrappedTemplates"; + "StrategyLib" = dontDistribute super."StrategyLib"; + "Stream" = dontDistribute super."Stream"; + "StrictBench" = dontDistribute super."StrictBench"; + "SuffixStructures" = dontDistribute super."SuffixStructures"; + "SybWidget" = dontDistribute super."SybWidget"; + "SyntaxMacros" = dontDistribute super."SyntaxMacros"; + "Sysmon" = dontDistribute super."Sysmon"; + "TBC" = dontDistribute super."TBC"; + "TBit" = dontDistribute super."TBit"; + "THEff" = dontDistribute super."THEff"; + "TTTAS" = dontDistribute super."TTTAS"; + "TV" = dontDistribute super."TV"; + "TYB" = dontDistribute super."TYB"; + "TableAlgebra" = dontDistribute super."TableAlgebra"; + "Tables" = dontDistribute super."Tables"; + "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; + "Tainted" = dontDistribute super."Tainted"; + "Takusen" = dontDistribute super."Takusen"; + "Tape" = dontDistribute super."Tape"; + "TeaHS" = dontDistribute super."TeaHS"; + "Tensor" = dontDistribute super."Tensor"; + "TernaryTrees" = dontDistribute super."TernaryTrees"; + "TestExplode" = dontDistribute super."TestExplode"; + "Theora" = dontDistribute super."Theora"; + "Thingie" = dontDistribute super."Thingie"; + "ThreadObjects" = dontDistribute super."ThreadObjects"; + "Thrift" = dontDistribute super."Thrift"; + "Tic-Tac-Toe" = dontDistribute super."Tic-Tac-Toe"; + "TicTacToe" = dontDistribute super."TicTacToe"; + "TigerHash" = dontDistribute super."TigerHash"; + "TimePiece" = dontDistribute super."TimePiece"; + "TinyLaunchbury" = dontDistribute super."TinyLaunchbury"; + "TinyURL" = dontDistribute super."TinyURL"; + "Titim" = dontDistribute super."Titim"; + "Top" = dontDistribute super."Top"; + "Tournament" = dontDistribute super."Tournament"; + "TraceUtils" = dontDistribute super."TraceUtils"; + "TransformersStepByStep" = dontDistribute super."TransformersStepByStep"; + "Transhare" = dontDistribute super."Transhare"; + "TreeCounter" = dontDistribute super."TreeCounter"; + "TreeStructures" = dontDistribute super."TreeStructures"; + "TreeT" = dontDistribute super."TreeT"; + "Treiber" = dontDistribute super."Treiber"; + "TrendGraph" = dontDistribute super."TrendGraph"; + "TrieMap" = dontDistribute super."TrieMap"; + "Twofish" = dontDistribute super."Twofish"; + "TypeClass" = dontDistribute super."TypeClass"; + "TypeCompose" = dontDistribute super."TypeCompose"; + "TypeIlluminator" = dontDistribute super."TypeIlluminator"; + "TypeNat" = dontDistribute super."TypeNat"; + "TypingTester" = dontDistribute super."TypingTester"; + "UISF" = dontDistribute super."UISF"; + "UMM" = dontDistribute super."UMM"; + "URLT" = dontDistribute super."URLT"; + "URLb" = dontDistribute super."URLb"; + "UTFTConverter" = dontDistribute super."UTFTConverter"; + "Unique" = dontDistribute super."Unique"; + "Unixutils-shadow" = dontDistribute super."Unixutils-shadow"; + "Updater" = dontDistribute super."Updater"; + "UrlDisp" = dontDistribute super."UrlDisp"; + "Useful" = dontDistribute super."Useful"; + "UtilityTM" = dontDistribute super."UtilityTM"; + "VKHS" = dontDistribute super."VKHS"; + "Validation" = dontDistribute super."Validation"; + "Vec" = dontDistribute super."Vec"; + "Vec-Boolean" = dontDistribute super."Vec-Boolean"; + "Vec-OpenGLRaw" = dontDistribute super."Vec-OpenGLRaw"; + "Vec-Transform" = dontDistribute super."Vec-Transform"; + "VecN" = dontDistribute super."VecN"; + "Verba" = dontDistribute super."Verba"; + "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "Vulkan" = dontDistribute super."Vulkan"; + "WAVE" = dontDistribute super."WAVE"; + "WL500gPControl" = dontDistribute super."WL500gPControl"; + "WL500gPLib" = dontDistribute super."WL500gPLib"; + "WMSigner" = dontDistribute super."WMSigner"; + "WURFL" = dontDistribute super."WURFL"; + "WXDiffCtrl" = dontDistribute super."WXDiffCtrl"; + "WashNGo" = dontDistribute super."WashNGo"; + "WaveFront" = dontDistribute super."WaveFront"; + "Weather" = dontDistribute super."Weather"; + "WebBits" = dontDistribute super."WebBits"; + "WebBits-Html" = dontDistribute super."WebBits-Html"; + "WebBits-multiplate" = dontDistribute super."WebBits-multiplate"; + "WebCont" = dontDistribute super."WebCont"; + "WeberLogic" = dontDistribute super."WeberLogic"; + "Webrexp" = dontDistribute super."Webrexp"; + "Wheb" = dontDistribute super."Wheb"; + "WikimediaParser" = dontDistribute super."WikimediaParser"; + "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; + "Win32-errors" = dontDistribute super."Win32-errors"; + "Win32-junction-point" = dontDistribute super."Win32-junction-point"; + "Win32-security" = dontDistribute super."Win32-security"; + "Win32-services" = dontDistribute super."Win32-services"; + "Win32-services-wrapper" = dontDistribute super."Win32-services-wrapper"; + "Wired" = dontDistribute super."Wired"; + "WordAlignment" = dontDistribute super."WordAlignment"; + "WordNet" = dontDistribute super."WordNet"; + "WordNet-ghc74" = dontDistribute super."WordNet-ghc74"; + "Wordlint" = dontDistribute super."Wordlint"; + "WxGeneric" = dontDistribute super."WxGeneric"; + "X11-extras" = dontDistribute super."X11-extras"; + "X11-rm" = dontDistribute super."X11-rm"; + "X11-xdamage" = dontDistribute super."X11-xdamage"; + "X11-xfixes" = dontDistribute super."X11-xfixes"; + "X11-xft" = dontDistribute super."X11-xft"; + "X11-xshape" = dontDistribute super."X11-xshape"; + "XAttr" = dontDistribute super."XAttr"; + "XInput" = dontDistribute super."XInput"; + "XMMS" = dontDistribute super."XMMS"; + "XMPP" = dontDistribute super."XMPP"; + "XSaiga" = dontDistribute super."XSaiga"; + "Xec" = dontDistribute super."Xec"; + "XmlHtmlWriter" = dontDistribute super."XmlHtmlWriter"; + "Xorshift128Plus" = dontDistribute super."Xorshift128Plus"; + "YACPong" = dontDistribute super."YACPong"; + "YFrob" = dontDistribute super."YFrob"; + "Yablog" = dontDistribute super."Yablog"; + "YamlReference" = dontDistribute super."YamlReference"; + "Yampa-core" = dontDistribute super."Yampa-core"; + "Yocto" = dontDistribute super."Yocto"; + "Yogurt" = dontDistribute super."Yogurt"; + "Yogurt-Standalone" = dontDistribute super."Yogurt-Standalone"; + "ZEBEDDE" = dontDistribute super."ZEBEDDE"; + "ZFS" = dontDistribute super."ZFS"; + "ZMachine" = dontDistribute super."ZMachine"; + "ZipFold" = dontDistribute super."ZipFold"; + "ZipperAG" = dontDistribute super."ZipperAG"; + "Zora" = dontDistribute super."Zora"; + "Zwaluw" = dontDistribute super."Zwaluw"; + "a50" = dontDistribute super."a50"; + "abacate" = dontDistribute super."abacate"; + "abc-puzzle" = dontDistribute super."abc-puzzle"; + "abcBridge" = dontDistribute super."abcBridge"; + "abcnotation" = dontDistribute super."abcnotation"; + "abeson" = dontDistribute super."abeson"; + "abstract-deque-tests" = dontDistribute super."abstract-deque-tests"; + "abstract-par-accelerate" = dontDistribute super."abstract-par-accelerate"; + "abt" = dontDistribute super."abt"; + "ac-machine" = dontDistribute super."ac-machine"; + "ac-machine-conduit" = dontDistribute super."ac-machine-conduit"; + "accelerate-arithmetic" = dontDistribute super."accelerate-arithmetic"; + "accelerate-cublas" = dontDistribute super."accelerate-cublas"; + "accelerate-cuda" = dontDistribute super."accelerate-cuda"; + "accelerate-cufft" = dontDistribute super."accelerate-cufft"; + "accelerate-examples" = dontDistribute super."accelerate-examples"; + "accelerate-fft" = dontDistribute super."accelerate-fft"; + "accelerate-fftw" = dontDistribute super."accelerate-fftw"; + "accelerate-fourier" = dontDistribute super."accelerate-fourier"; + "accelerate-fourier-benchmark" = dontDistribute super."accelerate-fourier-benchmark"; + "accelerate-io" = dontDistribute super."accelerate-io"; + "accelerate-random" = dontDistribute super."accelerate-random"; + "accelerate-utility" = dontDistribute super."accelerate-utility"; + "accentuateus" = dontDistribute super."accentuateus"; + "access-time" = dontDistribute super."access-time"; + "acid-state-dist" = dontDistribute super."acid-state-dist"; + "acid-state-tls" = dontDistribute super."acid-state-tls"; + "acl2" = dontDistribute super."acl2"; + "acme-all-monad" = dontDistribute super."acme-all-monad"; + "acme-box" = dontDistribute super."acme-box"; + "acme-cadre" = dontDistribute super."acme-cadre"; + "acme-cofunctor" = dontDistribute super."acme-cofunctor"; + "acme-colosson" = dontDistribute super."acme-colosson"; + "acme-comonad" = dontDistribute super."acme-comonad"; + "acme-cutegirl" = dontDistribute super."acme-cutegirl"; + "acme-dont" = dontDistribute super."acme-dont"; + "acme-flipping-tables" = dontDistribute super."acme-flipping-tables"; + "acme-grawlix" = dontDistribute super."acme-grawlix"; + "acme-hq9plus" = dontDistribute super."acme-hq9plus"; + "acme-http" = dontDistribute super."acme-http"; + "acme-inator" = dontDistribute super."acme-inator"; + "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; + "acme-lolcat" = dontDistribute super."acme-lolcat"; + "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; + "acme-memorandom" = dontDistribute super."acme-memorandom"; + "acme-microwave" = dontDistribute super."acme-microwave"; + "acme-miscorder" = dontDistribute super."acme-miscorder"; + "acme-missiles" = dontDistribute super."acme-missiles"; + "acme-now" = dontDistribute super."acme-now"; + "acme-numbersystem" = dontDistribute super."acme-numbersystem"; + "acme-omitted" = dontDistribute super."acme-omitted"; + "acme-one" = dontDistribute super."acme-one"; + "acme-operators" = dontDistribute super."acme-operators"; + "acme-php" = dontDistribute super."acme-php"; + "acme-pointful-numbers" = dontDistribute super."acme-pointful-numbers"; + "acme-realworld" = dontDistribute super."acme-realworld"; + "acme-safe" = dontDistribute super."acme-safe"; + "acme-schoenfinkel" = dontDistribute super."acme-schoenfinkel"; + "acme-strfry" = dontDistribute super."acme-strfry"; + "acme-stringly-typed" = dontDistribute super."acme-stringly-typed"; + "acme-strtok" = dontDistribute super."acme-strtok"; + "acme-timemachine" = dontDistribute super."acme-timemachine"; + "acme-year" = dontDistribute super."acme-year"; + "acme-zero" = dontDistribute super."acme-zero"; + "activehs" = dontDistribute super."activehs"; + "activehs-base" = dontDistribute super."activehs-base"; + "activitystreams-aeson" = dontDistribute super."activitystreams-aeson"; + "actor" = dontDistribute super."actor"; + "adaptive-containers" = dontDistribute super."adaptive-containers"; + "adaptive-tuple" = dontDistribute super."adaptive-tuple"; + "adb" = dontDistribute super."adb"; + "adblock2privoxy" = dontDistribute super."adblock2privoxy"; + "addLicenseInfo" = dontDistribute super."addLicenseInfo"; + "adhoc-network" = dontDistribute super."adhoc-network"; + "adict" = dontDistribute super."adict"; + "adler32" = dontDistribute super."adler32"; + "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; + "adp-multi" = dontDistribute super."adp-multi"; + "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; + "aeson-applicative" = dontDistribute super."aeson-applicative"; + "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-filthy" = dontDistribute super."aeson-filthy"; + "aeson-iproute" = dontDistribute super."aeson-iproute"; + "aeson-lens" = dontDistribute super."aeson-lens"; + "aeson-native" = dontDistribute super."aeson-native"; + "aeson-parsec-picky" = dontDistribute super."aeson-parsec-picky"; + "aeson-schema" = dontDistribute super."aeson-schema"; + "aeson-serialize" = dontDistribute super."aeson-serialize"; + "aeson-smart" = dontDistribute super."aeson-smart"; + "aeson-streams" = dontDistribute super."aeson-streams"; + "aeson-t" = dontDistribute super."aeson-t"; + "aeson-toolkit" = dontDistribute super."aeson-toolkit"; + "aeson-value-parser" = dontDistribute super."aeson-value-parser"; + "aeson-yak" = dontDistribute super."aeson-yak"; + "affine-invariant-ensemble-mcmc" = dontDistribute super."affine-invariant-ensemble-mcmc"; + "afis" = dontDistribute super."afis"; + "afv" = dontDistribute super."afv"; + "ag-pictgen" = dontDistribute super."ag-pictgen"; + "agda-server" = dontDistribute super."agda-server"; + "agda-snippets" = dontDistribute super."agda-snippets"; + "agda-snippets-hakyll" = dontDistribute super."agda-snippets-hakyll"; + "agum" = dontDistribute super."agum"; + "aig" = dontDistribute super."aig"; + "air" = dontDistribute super."air"; + "air-extra" = dontDistribute super."air-extra"; + "air-spec" = dontDistribute super."air-spec"; + "air-th" = dontDistribute super."air-th"; + "airbrake" = dontDistribute super."airbrake"; + "airship" = doDistribute super."airship_0_4_3_0"; + "aivika" = dontDistribute super."aivika"; + "aivika-branches" = dontDistribute super."aivika-branches"; + "aivika-experiment" = dontDistribute super."aivika-experiment"; + "aivika-experiment-cairo" = dontDistribute super."aivika-experiment-cairo"; + "aivika-experiment-chart" = dontDistribute super."aivika-experiment-chart"; + "aivika-experiment-diagrams" = dontDistribute super."aivika-experiment-diagrams"; + "aivika-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_3_7"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; + "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_3_7"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_3_7"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_3_7"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_3_7"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_3_7"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_3_7"; + "amazonka-cloudwatch-events" = dontDistribute super."amazonka-cloudwatch-events"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_3_7"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_3_7"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_3_7"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_3_7"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_3_7"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_3_7"; + "amazonka-config" = doDistribute super."amazonka-config_1_3_7"; + "amazonka-core" = doDistribute super."amazonka-core_1_3_7"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-dms" = dontDistribute super."amazonka-dms"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_3_7"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_3_7"; + "amazonka-ecr" = dontDistribute super."amazonka-ecr"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_3_7"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_3_7"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_3_7"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_3_7"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_3_7"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_3_7"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_3_7"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_3_7"; + "amazonka-gamelift" = dontDistribute super."amazonka-gamelift"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_3_7"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_3_7"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_3_7"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_3_7"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_3_7"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_3_7"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_3_7"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_3_7"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_3_7"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_3_7"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_3_7"; + "amazonka-marketplace-metering" = dontDistribute super."amazonka-marketplace-metering"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_3_7"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_3_7"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_3_7"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_3_7"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_3_7"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_3_7"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_3_7"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_3_7"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_3_7"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_3_7"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_3_7"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_3_7"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_3_7"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_3_7"; + "amazonka-support" = doDistribute super."amazonka-support_1_3_7"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_3_7"; + "amazonka-test" = doDistribute super."amazonka-test_1_3_7"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_3_7"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_3_7"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; + "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; + "apiary-helics" = dontDistribute super."apiary-helics"; + "apiary-http-client" = dontDistribute super."apiary-http-client"; + "apiary-purescript" = dontDistribute super."apiary-purescript"; + "apis" = dontDistribute super."apis"; + "apotiki" = dontDistribute super."apotiki"; + "app-lens" = dontDistribute super."app-lens"; + "appc" = dontDistribute super."appc"; + "applicative-extras" = dontDistribute super."applicative-extras"; + "applicative-fail" = dontDistribute super."applicative-fail"; + "applicative-numbers" = dontDistribute super."applicative-numbers"; + "applicative-parsec" = dontDistribute super."applicative-parsec"; + "applicative-quoters" = dontDistribute super."applicative-quoters"; + "apply-refact" = doDistribute super."apply-refact_0_1_0_0"; + "apportionment" = dontDistribute super."apportionment"; + "approx-rand-test" = dontDistribute super."approx-rand-test"; + "approximate-equality" = dontDistribute super."approximate-equality"; + "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; + "arb-fft" = dontDistribute super."arb-fft"; + "arbb-vm" = dontDistribute super."arbb-vm"; + "archive" = dontDistribute super."archive"; + "archiver" = dontDistribute super."archiver"; + "archlinux" = dontDistribute super."archlinux"; + "archlinux-web" = dontDistribute super."archlinux-web"; + "archnews" = dontDistribute super."archnews"; + "arena" = dontDistribute super."arena"; + "arff" = dontDistribute super."arff"; + "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; + "argon2" = dontDistribute super."argon2"; + "argparser" = dontDistribute super."argparser"; + "arguedit" = dontDistribute super."arguedit"; + "ariadne" = dontDistribute super."ariadne"; + "arion" = dontDistribute super."arion"; + "arith-encode" = dontDistribute super."arith-encode"; + "arithmatic" = dontDistribute super."arithmatic"; + "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = dontDistribute super."arithmoi"; + "armada" = dontDistribute super."armada"; + "arpa" = dontDistribute super."arpa"; + "array-forth" = dontDistribute super."array-forth"; + "array-memoize" = dontDistribute super."array-memoize"; + "array-primops" = dontDistribute super."array-primops"; + "array-utils" = dontDistribute super."array-utils"; + "arrow-improve" = dontDistribute super."arrow-improve"; + "arrowapply-utils" = dontDistribute super."arrowapply-utils"; + "arrowp" = dontDistribute super."arrowp"; + "arrows" = dontDistribute super."arrows"; + "artery" = dontDistribute super."artery"; + "arx" = dontDistribute super."arx"; + "arxiv" = dontDistribute super."arxiv"; + "ascetic" = dontDistribute super."ascetic"; + "ascii" = dontDistribute super."ascii"; + "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; + "ascii85-conduit" = dontDistribute super."ascii85-conduit"; + "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; + "asic" = dontDistribute super."asic"; + "asil" = dontDistribute super."asil"; + "asn1-data" = dontDistribute super."asn1-data"; + "asn1dump" = dontDistribute super."asn1dump"; + "assembler" = dontDistribute super."assembler"; + "assert" = dontDistribute super."assert"; + "assert-failure" = dontDistribute super."assert-failure"; + "assertions" = dontDistribute super."assertions"; + "assimp" = dontDistribute super."assimp"; + "astar" = dontDistribute super."astar"; + "astrds" = dontDistribute super."astrds"; + "astview" = dontDistribute super."astview"; + "astview-utils" = dontDistribute super."astview-utils"; + "async-extras" = dontDistribute super."async-extras"; + "async-manager" = dontDistribute super."async-manager"; + "async-pool" = dontDistribute super."async-pool"; + "asynchronous-exceptions" = dontDistribute super."asynchronous-exceptions"; + "aterm" = dontDistribute super."aterm"; + "aterm-utils" = dontDistribute super."aterm-utils"; + "atl" = dontDistribute super."atl"; + "atlassian-connect-core" = dontDistribute super."atlassian-connect-core"; + "atlassian-connect-descriptor" = dontDistribute super."atlassian-connect-descriptor"; + "atmos" = dontDistribute super."atmos"; + "atmos-dimensional" = dontDistribute super."atmos-dimensional"; + "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; + "atom" = dontDistribute super."atom"; + "atom-basic" = dontDistribute super."atom-basic"; + "atom-conduit" = dontDistribute super."atom-conduit"; + "atom-msp430" = dontDistribute super."atom-msp430"; + "atomic-primops-foreign" = dontDistribute super."atomic-primops-foreign"; + "atomic-primops-vector" = dontDistribute super."atomic-primops-vector"; + "atomic-write" = dontDistribute super."atomic-write"; + "atomo" = dontDistribute super."atomo"; + "atp-haskell" = dontDistribute super."atp-haskell"; + "atrans" = dontDistribute super."atrans"; + "attempt" = dontDistribute super."attempt"; + "atto-lisp" = dontDistribute super."atto-lisp"; + "attoparsec-arff" = dontDistribute super."attoparsec-arff"; + "attoparsec-binary" = dontDistribute super."attoparsec-binary"; + "attoparsec-conduit" = dontDistribute super."attoparsec-conduit"; + "attoparsec-csv" = dontDistribute super."attoparsec-csv"; + "attoparsec-iteratee" = dontDistribute super."attoparsec-iteratee"; + "attoparsec-parsec" = dontDistribute super."attoparsec-parsec"; + "attoparsec-text" = dontDistribute super."attoparsec-text"; + "attoparsec-text-enumerator" = dontDistribute super."attoparsec-text-enumerator"; + "attosplit" = dontDistribute super."attosplit"; + "atuin" = dontDistribute super."atuin"; + "audacity" = dontDistribute super."audacity"; + "audiovisual" = dontDistribute super."audiovisual"; + "augeas" = dontDistribute super."augeas"; + "augur" = dontDistribute super."augur"; + "aur" = dontDistribute super."aur"; + "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; + "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authinfo-hs" = dontDistribute super."authinfo-hs"; + "authoring" = dontDistribute super."authoring"; + "autoexporter" = dontDistribute super."autoexporter"; + "autonix-deps" = dontDistribute super."autonix-deps"; + "autonix-deps-kf5" = dontDistribute super."autonix-deps-kf5"; + "autoproc" = dontDistribute super."autoproc"; + "avahi" = dontDistribute super."avahi"; + "avatar-generator" = dontDistribute super."avatar-generator"; + "average" = dontDistribute super."average"; + "avl-static" = dontDistribute super."avl-static"; + "avr-shake" = dontDistribute super."avr-shake"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "babylon" = dontDistribute super."babylon"; + "backdropper" = dontDistribute super."backdropper"; + "backtracking-exceptions" = dontDistribute super."backtracking-exceptions"; + "backward-state" = dontDistribute super."backward-state"; + "bacteria" = dontDistribute super."bacteria"; + "bag" = dontDistribute super."bag"; + "bamboo" = dontDistribute super."bamboo"; + "bamboo-launcher" = dontDistribute super."bamboo-launcher"; + "bamboo-plugin-highlight" = dontDistribute super."bamboo-plugin-highlight"; + "bamboo-plugin-photo" = dontDistribute super."bamboo-plugin-photo"; + "bamboo-theme-blueprint" = dontDistribute super."bamboo-theme-blueprint"; + "bamboo-theme-mini-html5" = dontDistribute super."bamboo-theme-mini-html5"; + "bamse" = dontDistribute super."bamse"; + "bamstats" = dontDistribute super."bamstats"; + "bank-holiday-usa" = dontDistribute super."bank-holiday-usa"; + "banwords" = dontDistribute super."banwords"; + "barchart" = dontDistribute super."barchart"; + "barcodes-code128" = dontDistribute super."barcodes-code128"; + "barecheck" = dontDistribute super."barecheck"; + "barley" = dontDistribute super."barley"; + "barrie" = dontDistribute super."barrie"; + "barrier-monad" = dontDistribute super."barrier-monad"; + "base-generics" = dontDistribute super."base-generics"; + "base-io-access" = dontDistribute super."base-io-access"; + "base-prelude" = doDistribute super."base-prelude_0_1_21"; + "base32-bytestring" = dontDistribute super."base32-bytestring"; + "base58-bytestring" = dontDistribute super."base58-bytestring"; + "base58address" = dontDistribute super."base58address"; + "base64-conduit" = dontDistribute super."base64-conduit"; + "base91" = dontDistribute super."base91"; + "basex-client" = dontDistribute super."basex-client"; + "bash" = dontDistribute super."bash"; + "basic-lens" = dontDistribute super."basic-lens"; + "basic-sop" = dontDistribute super."basic-sop"; + "baskell" = dontDistribute super."baskell"; + "battlenet" = dontDistribute super."battlenet"; + "battlenet-yesod" = dontDistribute super."battlenet-yesod"; + "battleships" = dontDistribute super."battleships"; + "bayes-stack" = dontDistribute super."bayes-stack"; + "bbdb" = dontDistribute super."bbdb"; + "bbi" = dontDistribute super."bbi"; + "bdd" = dontDistribute super."bdd"; + "bdelta" = dontDistribute super."bdelta"; + "bdo" = dontDistribute super."bdo"; + "beam" = dontDistribute super."beam"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "berkeleydb" = dontDistribute super."berkeleydb"; + "berp" = dontDistribute super."berp"; + "bert" = dontDistribute super."bert"; + "besout" = dontDistribute super."besout"; + "bet" = dontDistribute super."bet"; + "betacode" = dontDistribute super."betacode"; + "between" = dontDistribute super."between"; + "bf-cata" = dontDistribute super."bf-cata"; + "bff" = dontDistribute super."bff"; + "bff-mono" = dontDistribute super."bff-mono"; + "bgmax" = dontDistribute super."bgmax"; + "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; + "bibtex" = dontDistribute super."bibtex"; + "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; + "bidispec" = dontDistribute super."bidispec"; + "bidispec-extras" = dontDistribute super."bidispec-extras"; + "bighugethesaurus" = dontDistribute super."bighugethesaurus"; + "billboard-parser" = dontDistribute super."billboard-parser"; + "billeksah-forms" = dontDistribute super."billeksah-forms"; + "billeksah-main" = dontDistribute super."billeksah-main"; + "billeksah-main-static" = dontDistribute super."billeksah-main-static"; + "billeksah-pane" = dontDistribute super."billeksah-pane"; + "billeksah-services" = dontDistribute super."billeksah-services"; + "bimaps" = dontDistribute super."bimaps"; + "binary-bits" = dontDistribute super."binary-bits"; + "binary-communicator" = dontDistribute super."binary-communicator"; + "binary-derive" = dontDistribute super."binary-derive"; + "binary-enum" = dontDistribute super."binary-enum"; + "binary-file" = dontDistribute super."binary-file"; + "binary-generic" = dontDistribute super."binary-generic"; + "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-literal-qq" = dontDistribute super."binary-literal-qq"; + "binary-protocol" = dontDistribute super."binary-protocol"; + "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; + "binary-shared" = dontDistribute super."binary-shared"; + "binary-state" = dontDistribute super."binary-state"; + "binary-store" = dontDistribute super."binary-store"; + "binary-streams" = dontDistribute super."binary-streams"; + "binary-strict" = dontDistribute super."binary-strict"; + "binarydefer" = dontDistribute super."binarydefer"; + "bind-marshal" = dontDistribute super."bind-marshal"; + "binding-core" = dontDistribute super."binding-core"; + "binding-gtk" = dontDistribute super."binding-gtk"; + "binding-wx" = dontDistribute super."binding-wx"; + "bindings" = dontDistribute super."bindings"; + "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-K8055" = dontDistribute super."bindings-K8055"; + "bindings-apr" = dontDistribute super."bindings-apr"; + "bindings-apr-util" = dontDistribute super."bindings-apr-util"; + "bindings-audiofile" = dontDistribute super."bindings-audiofile"; + "bindings-bfd" = dontDistribute super."bindings-bfd"; + "bindings-cctools" = dontDistribute super."bindings-cctools"; + "bindings-codec2" = dontDistribute super."bindings-codec2"; + "bindings-common" = dontDistribute super."bindings-common"; + "bindings-dc1394" = dontDistribute super."bindings-dc1394"; + "bindings-directfb" = dontDistribute super."bindings-directfb"; + "bindings-eskit" = dontDistribute super."bindings-eskit"; + "bindings-fann" = dontDistribute super."bindings-fann"; + "bindings-fluidsynth" = dontDistribute super."bindings-fluidsynth"; + "bindings-friso" = dontDistribute super."bindings-friso"; + "bindings-glib" = dontDistribute super."bindings-glib"; + "bindings-gobject" = dontDistribute super."bindings-gobject"; + "bindings-gpgme" = dontDistribute super."bindings-gpgme"; + "bindings-gsl" = dontDistribute super."bindings-gsl"; + "bindings-gts" = dontDistribute super."bindings-gts"; + "bindings-hamlib" = dontDistribute super."bindings-hamlib"; + "bindings-hdf5" = dontDistribute super."bindings-hdf5"; + "bindings-levmar" = dontDistribute super."bindings-levmar"; + "bindings-libcddb" = dontDistribute super."bindings-libcddb"; + "bindings-libffi" = dontDistribute super."bindings-libffi"; + "bindings-libftdi" = dontDistribute super."bindings-libftdi"; + "bindings-librrd" = dontDistribute super."bindings-librrd"; + "bindings-libstemmer" = dontDistribute super."bindings-libstemmer"; + "bindings-libusb" = dontDistribute super."bindings-libusb"; + "bindings-libv4l2" = dontDistribute super."bindings-libv4l2"; + "bindings-linux-videodev2" = dontDistribute super."bindings-linux-videodev2"; + "bindings-lxc" = dontDistribute super."bindings-lxc"; + "bindings-mmap" = dontDistribute super."bindings-mmap"; + "bindings-mpdecimal" = dontDistribute super."bindings-mpdecimal"; + "bindings-nettle" = dontDistribute super."bindings-nettle"; + "bindings-parport" = dontDistribute super."bindings-parport"; + "bindings-portaudio" = dontDistribute super."bindings-portaudio"; + "bindings-potrace" = dontDistribute super."bindings-potrace"; + "bindings-ppdev" = dontDistribute super."bindings-ppdev"; + "bindings-saga-cmd" = dontDistribute super."bindings-saga-cmd"; + "bindings-sane" = dontDistribute super."bindings-sane"; + "bindings-sc3" = dontDistribute super."bindings-sc3"; + "bindings-sipc" = dontDistribute super."bindings-sipc"; + "bindings-sophia" = dontDistribute super."bindings-sophia"; + "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; + "bindings-svm" = dontDistribute super."bindings-svm"; + "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; + "bindings-yices" = dontDistribute super."bindings-yices"; + "bindynamic" = dontDistribute super."bindynamic"; + "binembed" = dontDistribute super."binembed"; + "binembed-example" = dontDistribute super."binembed-example"; + "bini" = dontDistribute super."bini"; + "bio" = dontDistribute super."bio"; + "biohazard" = dontDistribute super."biohazard"; + "bioinformatics-toolkit" = dontDistribute super."bioinformatics-toolkit"; + "biosff" = dontDistribute super."biosff"; + "biostockholm" = dontDistribute super."biostockholm"; + "bird" = dontDistribute super."bird"; + "bit-array" = dontDistribute super."bit-array"; + "bit-vector" = dontDistribute super."bit-vector"; + "bitarray" = dontDistribute super."bitarray"; + "bitcoin-rpc" = dontDistribute super."bitcoin-rpc"; + "bitly-cli" = dontDistribute super."bitly-cli"; + "bitmap" = dontDistribute super."bitmap"; + "bitmap-opengl" = dontDistribute super."bitmap-opengl"; + "bitmaps" = dontDistribute super."bitmaps"; + "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; + "bits-conduit" = dontDistribute super."bits-conduit"; + "bits-extras" = dontDistribute super."bits-extras"; + "bitset" = dontDistribute super."bitset"; + "bitspeak" = dontDistribute super."bitspeak"; + "bitstream" = dontDistribute super."bitstream"; + "bitstring" = dontDistribute super."bitstring"; + "bittorrent" = dontDistribute super."bittorrent"; + "bitvec" = dontDistribute super."bitvec"; + "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; + "bk-tree" = dontDistribute super."bk-tree"; + "bkr" = dontDistribute super."bkr"; + "bktrees" = dontDistribute super."bktrees"; + "bla" = dontDistribute super."bla"; + "black-jewel" = dontDistribute super."black-jewel"; + "blacktip" = dontDistribute super."blacktip"; + "blakesum" = dontDistribute super."blakesum"; + "blakesum-demo" = dontDistribute super."blakesum-demo"; + "blas" = dontDistribute super."blas"; + "blas-hs" = dontDistribute super."blas-hs"; + "blatex" = dontDistribute super."blatex"; + "blaze" = dontDistribute super."blaze"; + "blaze-builder-conduit" = dontDistribute super."blaze-builder-conduit"; + "blaze-from-html" = dontDistribute super."blaze-from-html"; + "blaze-html-contrib" = dontDistribute super."blaze-html-contrib"; + "blaze-html-hexpat" = dontDistribute super."blaze-html-hexpat"; + "blaze-html-truncate" = dontDistribute super."blaze-html-truncate"; + "blaze-json" = dontDistribute super."blaze-json"; + "blaze-shields" = dontDistribute super."blaze-shields"; + "blaze-textual-native" = dontDistribute super."blaze-textual-native"; + "blazeMarker" = dontDistribute super."blazeMarker"; + "blink1" = dontDistribute super."blink1"; + "blip" = dontDistribute super."blip"; + "bliplib" = dontDistribute super."bliplib"; + "blocking-transactions" = dontDistribute super."blocking-transactions"; + "blogination" = dontDistribute super."blogination"; + "bloodhound" = dontDistribute super."bloodhound"; + "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; + "bloxorz" = dontDistribute super."bloxorz"; + "blubber" = dontDistribute super."blubber"; + "blubber-server" = dontDistribute super."blubber-server"; + "bluetile" = dontDistribute super."bluetile"; + "bluetileutils" = dontDistribute super."bluetileutils"; + "blunt" = dontDistribute super."blunt"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "bower-json" = doDistribute super."bower-json_0_7_0_0"; + "bowntz" = dontDistribute super."bowntz"; + "bpann" = dontDistribute super."bpann"; + "braid" = dontDistribute super."braid"; + "brainfuck" = dontDistribute super."brainfuck"; + "brainfuck-monad" = dontDistribute super."brainfuck-monad"; + "brainfuck-tut" = dontDistribute super."brainfuck-tut"; + "break" = dontDistribute super."break"; + "breakout" = dontDistribute super."breakout"; + "breve" = dontDistribute super."breve"; + "brians-brain" = dontDistribute super."brians-brain"; + "brillig" = dontDistribute super."brillig"; + "broccoli" = dontDistribute super."broccoli"; + "broker-haskell" = dontDistribute super."broker-haskell"; + "bsd-sysctl" = dontDistribute super."bsd-sysctl"; + "bson-generic" = dontDistribute super."bson-generic"; + "bson-generics" = dontDistribute super."bson-generics"; + "bson-mapping" = dontDistribute super."bson-mapping"; + "bspack" = dontDistribute super."bspack"; + "bsparse" = dontDistribute super."bsparse"; + "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; + "buffer-pipe" = dontDistribute super."buffer-pipe"; + "buffon" = dontDistribute super."buffon"; + "bugzilla" = dontDistribute super."bugzilla"; + "buildable" = dontDistribute super."buildable"; + "buildbox" = dontDistribute super."buildbox"; + "buildbox-tools" = dontDistribute super."buildbox-tools"; + "buildwrapper" = dontDistribute super."buildwrapper"; + "bullet" = dontDistribute super."bullet"; + "burst-detection" = dontDistribute super."burst-detection"; + "bus-pirate" = dontDistribute super."bus-pirate"; + "buster" = dontDistribute super."buster"; + "buster-gtk" = dontDistribute super."buster-gtk"; + "buster-network" = dontDistribute super."buster-network"; + "butterflies" = dontDistribute super."butterflies"; + "bv" = dontDistribute super."bv"; + "byline" = dontDistribute super."byline"; + "bytable" = dontDistribute super."bytable"; + "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-class" = dontDistribute super."bytestring-class"; + "bytestring-csv" = dontDistribute super."bytestring-csv"; + "bytestring-delta" = dontDistribute super."bytestring-delta"; + "bytestring-from" = dontDistribute super."bytestring-from"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = dontDistribute super."bytestring-tree-builder"; + "bytestringparser" = dontDistribute super."bytestringparser"; + "bytestringparser-temporary" = dontDistribute super."bytestringparser-temporary"; + "bytestringreadp" = dontDistribute super."bytestringreadp"; + "c-dsl" = dontDistribute super."c-dsl"; + "c-io" = dontDistribute super."c-io"; + "c-storable-deriving" = dontDistribute super."c-storable-deriving"; + "c0check" = dontDistribute super."c0check"; + "c0parser" = dontDistribute super."c0parser"; + "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; + "c2hsc" = dontDistribute super."c2hsc"; + "cab" = dontDistribute super."cab"; + "cabal-audit" = dontDistribute super."cabal-audit"; + "cabal-bounds" = dontDistribute super."cabal-bounds"; + "cabal-cargs" = dontDistribute super."cabal-cargs"; + "cabal-constraints" = dontDistribute super."cabal-constraints"; + "cabal-db" = dontDistribute super."cabal-db"; + "cabal-dependency-licenses" = dontDistribute super."cabal-dependency-licenses"; + "cabal-dev" = dontDistribute super."cabal-dev"; + "cabal-dir" = dontDistribute super."cabal-dir"; + "cabal-ghc-dynflags" = dontDistribute super."cabal-ghc-dynflags"; + "cabal-ghci" = dontDistribute super."cabal-ghci"; + "cabal-graphdeps" = dontDistribute super."cabal-graphdeps"; + "cabal-info" = dontDistribute super."cabal-info"; + "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; + "cabal-install-ghc72" = dontDistribute super."cabal-install-ghc72"; + "cabal-install-ghc74" = dontDistribute super."cabal-install-ghc74"; + "cabal-lenses" = dontDistribute super."cabal-lenses"; + "cabal-macosx" = dontDistribute super."cabal-macosx"; + "cabal-meta" = dontDistribute super."cabal-meta"; + "cabal-mon" = dontDistribute super."cabal-mon"; + "cabal-nirvana" = dontDistribute super."cabal-nirvana"; + "cabal-progdeps" = dontDistribute super."cabal-progdeps"; + "cabal-query" = dontDistribute super."cabal-query"; + "cabal-scripts" = dontDistribute super."cabal-scripts"; + "cabal-setup" = dontDistribute super."cabal-setup"; + "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "cacophony" = doDistribute super."cacophony_0_4_0"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo-appbase" = dontDistribute super."cairo-appbase"; + "cake" = dontDistribute super."cake"; + "cake3" = dontDistribute super."cake3"; + "cakyrespa" = dontDistribute super."cakyrespa"; + "cal3d" = dontDistribute super."cal3d"; + "cal3d-examples" = dontDistribute super."cal3d-examples"; + "cal3d-opengl" = dontDistribute super."cal3d-opengl"; + "calc" = dontDistribute super."calc"; + "caldims" = dontDistribute super."caldims"; + "caledon" = dontDistribute super."caledon"; + "call" = dontDistribute super."call"; + "call-haskell-from-anything" = dontDistribute super."call-haskell-from-anything"; + "camfort" = dontDistribute super."camfort"; + "camh" = dontDistribute super."camh"; + "campfire" = dontDistribute super."campfire"; + "canonical-filepath" = dontDistribute super."canonical-filepath"; + "canteven-config" = dontDistribute super."canteven-config"; + "canteven-listen-http" = dontDistribute super."canteven-listen-http"; + "canteven-log" = dontDistribute super."canteven-log"; + "canteven-template" = dontDistribute super."canteven-template"; + "cantor" = dontDistribute super."cantor"; + "cao" = dontDistribute super."cao"; + "cap" = dontDistribute super."cap"; + "capped-list" = dontDistribute super."capped-list"; + "capri" = dontDistribute super."capri"; + "car-pool" = dontDistribute super."car-pool"; + "caramia" = dontDistribute super."caramia"; + "carboncopy" = dontDistribute super."carboncopy"; + "carettah" = dontDistribute super."carettah"; + "cartel" = doDistribute super."cartel_0_14_2_8"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi" = doDistribute super."cgi_3001_2_2_3"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-highlight" = dontDistribute super."cheapskate-highlight"; + "cheapskate-lucid" = dontDistribute super."cheapskate-lucid"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; + "clocked" = dontDistribute super."clocked"; + "clogparse" = dontDistribute super."clogparse"; + "clone-all" = dontDistribute super."clone-all"; + "closure" = dontDistribute super."closure"; + "cloud-haskell" = dontDistribute super."cloud-haskell"; + "cloudfront-signer" = dontDistribute super."cloudfront-signer"; + "cloudyfs" = dontDistribute super."cloudyfs"; + "cltw" = dontDistribute super."cltw"; + "clua" = dontDistribute super."clua"; + "clumpiness" = dontDistribute super."clumpiness"; + "cluss" = dontDistribute super."cluss"; + "clustertools" = dontDistribute super."clustertools"; + "clutterhs" = dontDistribute super."clutterhs"; + "cmaes" = dontDistribute super."cmaes"; + "cmath" = dontDistribute super."cmath"; + "cmathml3" = dontDistribute super."cmathml3"; + "cmd-item" = dontDistribute super."cmd-item"; + "cmdargs-browser" = dontDistribute super."cmdargs-browser"; + "cmdlib" = dontDistribute super."cmdlib"; + "cmdtheline" = dontDistribute super."cmdtheline"; + "cml" = dontDistribute super."cml"; + "cmonad" = dontDistribute super."cmonad"; + "cmu" = dontDistribute super."cmu"; + "cnc-spec-compiler" = dontDistribute super."cnc-spec-compiler"; + "cndict" = dontDistribute super."cndict"; + "codec" = dontDistribute super."codec"; + "codec-libevent" = dontDistribute super."codec-libevent"; + "codec-mbox" = dontDistribute super."codec-mbox"; + "codecov-haskell" = dontDistribute super."codecov-haskell"; + "codemonitor" = dontDistribute super."codemonitor"; + "codepad" = dontDistribute super."codepad"; + "codo-notation" = dontDistribute super."codo-notation"; + "cofunctor" = dontDistribute super."cofunctor"; + "cognimeta-utils" = dontDistribute super."cognimeta-utils"; + "coinbase-exchange" = dontDistribute super."coinbase-exchange"; + "colada" = dontDistribute super."colada"; + "colchis" = dontDistribute super."colchis"; + "collada-output" = dontDistribute super."collada-output"; + "collada-types" = dontDistribute super."collada-types"; + "collapse-util" = dontDistribute super."collapse-util"; + "collection-json" = dontDistribute super."collection-json"; + "collections" = dontDistribute super."collections"; + "collections-api" = dontDistribute super."collections-api"; + "collections-base-instances" = dontDistribute super."collections-base-instances"; + "colock" = dontDistribute super."colock"; + "colorize-haskell" = dontDistribute super."colorize-haskell"; + "colors" = dontDistribute super."colors"; + "coltrane" = dontDistribute super."coltrane"; + "com" = dontDistribute super."com"; + "combinat" = dontDistribute super."combinat"; + "combinat-diagrams" = dontDistribute super."combinat-diagrams"; + "combinator-interactive" = dontDistribute super."combinator-interactive"; + "combinatorial-problems" = dontDistribute super."combinatorial-problems"; + "combinatorics" = dontDistribute super."combinatorics"; + "combobuffer" = dontDistribute super."combobuffer"; + "comfort-graph" = dontDistribute super."comfort-graph"; + "command" = dontDistribute super."command"; + "command-qq" = dontDistribute super."command-qq"; + "commander" = dontDistribute super."commander"; + "commodities" = dontDistribute super."commodities"; + "commsec" = dontDistribute super."commsec"; + "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; + "comonad-extras" = dontDistribute super."comonad-extras"; + "comonad-random" = dontDistribute super."comonad-random"; + "compact-map" = dontDistribute super."compact-map"; + "compact-socket" = dontDistribute super."compact-socket"; + "compact-string" = dontDistribute super."compact-string"; + "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compare-type" = dontDistribute super."compare-type"; + "compdata-automata" = dontDistribute super."compdata-automata"; + "compdata-dags" = dontDistribute super."compdata-dags"; + "compdata-param" = dontDistribute super."compdata-param"; + "compensated" = dontDistribute super."compensated"; + "competition" = dontDistribute super."competition"; + "compilation" = dontDistribute super."compilation"; + "complex-generic" = dontDistribute super."complex-generic"; + "complex-integrate" = dontDistribute super."complex-integrate"; + "complexity" = dontDistribute super."complexity"; + "compose-ltr" = dontDistribute super."compose-ltr"; + "compose-trans" = dontDistribute super."compose-trans"; + "compression" = dontDistribute super."compression"; + "compstrat" = dontDistribute super."compstrat"; + "comptrans" = dontDistribute super."comptrans"; + "computational-algebra" = dontDistribute super."computational-algebra"; + "computations" = dontDistribute super."computations"; + "conceit" = dontDistribute super."conceit"; + "concorde" = dontDistribute super."concorde"; + "concraft" = dontDistribute super."concraft"; + "concraft-hr" = dontDistribute super."concraft-hr"; + "concraft-pl" = dontDistribute super."concraft-pl"; + "concrete-relaxng-parser" = dontDistribute super."concrete-relaxng-parser"; + "concrete-typerep" = dontDistribute super."concrete-typerep"; + "concurrent-barrier" = dontDistribute super."concurrent-barrier"; + "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; + "concurrent-extra" = dontDistribute super."concurrent-extra"; + "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; + "concurrent-sa" = dontDistribute super."concurrent-sa"; + "concurrent-split" = dontDistribute super."concurrent-split"; + "concurrent-state" = dontDistribute super."concurrent-state"; + "concurrent-utilities" = dontDistribute super."concurrent-utilities"; + "concurrentoutput" = dontDistribute super."concurrentoutput"; + "cond" = dontDistribute super."cond"; + "condor" = dontDistribute super."condor"; + "condorcet" = dontDistribute super."condorcet"; + "conductive-base" = dontDistribute super."conductive-base"; + "conductive-clock" = dontDistribute super."conductive-clock"; + "conductive-hsc3" = dontDistribute super."conductive-hsc3"; + "conductive-song" = dontDistribute super."conductive-song"; + "conduit-audio" = dontDistribute super."conduit-audio"; + "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; + "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; + "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-network-stream" = dontDistribute super."conduit-network-stream"; + "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; + "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; + "conf" = dontDistribute super."conf"; + "config-manager" = dontDistribute super."config-manager"; + "config-select" = dontDistribute super."config-select"; + "config-value" = dontDistribute super."config-value"; + "configifier" = dontDistribute super."configifier"; + "configuration" = dontDistribute super."configuration"; + "configuration-tools" = dontDistribute super."configuration-tools"; + "confsolve" = dontDistribute super."confsolve"; + "congruence-relation" = dontDistribute super."congruence-relation"; + "conjugateGradient" = dontDistribute super."conjugateGradient"; + "conjure" = dontDistribute super."conjure"; + "conlogger" = dontDistribute super."conlogger"; + "connection-pool" = dontDistribute super."connection-pool"; + "consistent" = dontDistribute super."consistent"; + "console-program" = dontDistribute super."console-program"; + "const-math-ghc-plugin" = dontDistribute super."const-math-ghc-plugin"; + "constrained-categories" = dontDistribute super."constrained-categories"; + "constrained-normal" = dontDistribute super."constrained-normal"; + "constraint-classes" = dontDistribute super."constraint-classes"; + "constructible" = dontDistribute super."constructible"; + "constructive-algebra" = dontDistribute super."constructive-algebra"; + "consumers" = dontDistribute super."consumers"; + "container" = dontDistribute super."container"; + "container-classes" = dontDistribute super."container-classes"; + "containers-benchmark" = dontDistribute super."containers-benchmark"; + "containers-deepseq" = dontDistribute super."containers-deepseq"; + "context-free-grammar" = dontDistribute super."context-free-grammar"; + "context-stack" = dontDistribute super."context-stack"; + "continue" = dontDistribute super."continue"; + "continued-fractions" = dontDistribute super."continued-fractions"; + "continuum" = dontDistribute super."continuum"; + "continuum-client" = dontDistribute super."continuum-client"; + "control-event" = dontDistribute super."control-event"; + "control-monad-attempt" = dontDistribute super."control-monad-attempt"; + "control-monad-exception" = dontDistribute super."control-monad-exception"; + "control-monad-exception-monadsfd" = dontDistribute super."control-monad-exception-monadsfd"; + "control-monad-exception-monadstf" = dontDistribute super."control-monad-exception-monadstf"; + "control-monad-exception-mtl" = dontDistribute super."control-monad-exception-mtl"; + "control-monad-failure" = dontDistribute super."control-monad-failure"; + "control-monad-failure-mtl" = dontDistribute super."control-monad-failure-mtl"; + "control-monad-omega" = dontDistribute super."control-monad-omega"; + "control-monad-queue" = dontDistribute super."control-monad-queue"; + "control-timeout" = dontDistribute super."control-timeout"; + "contstuff" = dontDistribute super."contstuff"; + "contstuff-monads-tf" = dontDistribute super."contstuff-monads-tf"; + "contstuff-transformers" = dontDistribute super."contstuff-transformers"; + "converge" = dontDistribute super."converge"; + "conversion" = dontDistribute super."conversion"; + "conversion-bytestring" = dontDistribute super."conversion-bytestring"; + "conversion-case-insensitive" = dontDistribute super."conversion-case-insensitive"; + "conversion-text" = dontDistribute super."conversion-text"; + "convert" = dontDistribute super."convert"; + "convertible-ascii" = dontDistribute super."convertible-ascii"; + "convertible-text" = dontDistribute super."convertible-text"; + "cookbook" = dontDistribute super."cookbook"; + "coordinate" = dontDistribute super."coordinate"; + "copilot" = dontDistribute super."copilot"; + "copilot-c99" = dontDistribute super."copilot-c99"; + "copilot-cbmc" = dontDistribute super."copilot-cbmc"; + "copilot-core" = dontDistribute super."copilot-core"; + "copilot-language" = dontDistribute super."copilot-language"; + "copilot-libraries" = dontDistribute super."copilot-libraries"; + "copilot-sbv" = dontDistribute super."copilot-sbv"; + "copilot-theorem" = dontDistribute super."copilot-theorem"; + "copr" = dontDistribute super."copr"; + "core" = dontDistribute super."core"; + "core-haskell" = dontDistribute super."core-haskell"; + "corebot-bliki" = dontDistribute super."corebot-bliki"; + "coroutine-enumerator" = dontDistribute super."coroutine-enumerator"; + "coroutine-iteratee" = dontDistribute super."coroutine-iteratee"; + "coroutine-object" = dontDistribute super."coroutine-object"; + "couch-hs" = dontDistribute super."couch-hs"; + "couch-simple" = dontDistribute super."couch-simple"; + "couchdb-conduit" = dontDistribute super."couchdb-conduit"; + "couchdb-enumerator" = dontDistribute super."couchdb-enumerator"; + "count" = dontDistribute super."count"; + "countable" = dontDistribute super."countable"; + "counter" = dontDistribute super."counter"; + "court" = dontDistribute super."court"; + "coverage" = dontDistribute super."coverage"; + "cpio-conduit" = dontDistribute super."cpio-conduit"; + "cplex-hs" = dontDistribute super."cplex-hs"; + "cplusplus-th" = dontDistribute super."cplusplus-th"; + "cpphs" = doDistribute super."cpphs_1_19_3"; + "cprng-aes-effect" = dontDistribute super."cprng-aes-effect"; + "cpsa" = dontDistribute super."cpsa"; + "cpuid" = dontDistribute super."cpuid"; + "cpuperf" = dontDistribute super."cpuperf"; + "cpython" = dontDistribute super."cpython"; + "cqrs" = dontDistribute super."cqrs"; + "cqrs-core" = dontDistribute super."cqrs-core"; + "cqrs-example" = dontDistribute super."cqrs-example"; + "cqrs-memory" = dontDistribute super."cqrs-memory"; + "cqrs-postgresql" = dontDistribute super."cqrs-postgresql"; + "cqrs-sqlite3" = dontDistribute super."cqrs-sqlite3"; + "cqrs-test" = dontDistribute super."cqrs-test"; + "cqrs-testkit" = dontDistribute super."cqrs-testkit"; + "cqrs-types" = dontDistribute super."cqrs-types"; + "cr" = dontDistribute super."cr"; + "crack" = dontDistribute super."crack"; + "craftwerk" = dontDistribute super."craftwerk"; + "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; + "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; + "crc16" = dontDistribute super."crc16"; + "crc16-table" = dontDistribute super."crc16-table"; + "creatur" = dontDistribute super."creatur"; + "crf-chain1" = dontDistribute super."crf-chain1"; + "crf-chain1-constrained" = dontDistribute super."crf-chain1-constrained"; + "crf-chain2-generic" = dontDistribute super."crf-chain2-generic"; + "crf-chain2-tiers" = dontDistribute super."crf-chain2-tiers"; + "critbit" = dontDistribute super."critbit"; + "criterion-plus" = dontDistribute super."criterion-plus"; + "criterion-to-html" = dontDistribute super."criterion-to-html"; + "crockford" = dontDistribute super."crockford"; + "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_3_2"; + "cron-compat" = dontDistribute super."cron-compat"; + "cruncher-types" = dontDistribute super."cruncher-types"; + "crunghc" = dontDistribute super."crunghc"; + "crypto-cipher-benchmarks" = dontDistribute super."crypto-cipher-benchmarks"; + "crypto-classical" = dontDistribute super."crypto-classical"; + "crypto-conduit" = dontDistribute super."crypto-conduit"; + "crypto-enigma" = dontDistribute super."crypto-enigma"; + "crypto-pubkey-openssh" = dontDistribute super."crypto-pubkey-openssh"; + "crypto-random-effect" = dontDistribute super."crypto-random-effect"; + "crypto-totp" = dontDistribute super."crypto-totp"; + "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; + "cryptonite" = doDistribute super."cryptonite_0_10"; + "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-benchmark" = dontDistribute super."darcs-benchmark"; + "darcs-beta" = dontDistribute super."darcs-beta"; + "darcs-buildpackage" = dontDistribute super."darcs-buildpackage"; + "darcs-cabalized" = dontDistribute super."darcs-cabalized"; + "darcs-fastconvert" = dontDistribute super."darcs-fastconvert"; + "darcs-graph" = dontDistribute super."darcs-graph"; + "darcs-monitor" = dontDistribute super."darcs-monitor"; + "darcs-scripts" = dontDistribute super."darcs-scripts"; + "darcs2dot" = dontDistribute super."darcs2dot"; + "darcsden" = dontDistribute super."darcsden"; + "darcswatch" = dontDistribute super."darcswatch"; + "darkplaces-demo" = dontDistribute super."darkplaces-demo"; + "darkplaces-rcon" = dontDistribute super."darkplaces-rcon"; + "darkplaces-rcon-util" = dontDistribute super."darkplaces-rcon-util"; + "darkplaces-text" = dontDistribute super."darkplaces-text"; + "dash-haskell" = dontDistribute super."dash-haskell"; + "data-accessor-monadLib" = dontDistribute super."data-accessor-monadLib"; + "data-accessor-monads-fd" = dontDistribute super."data-accessor-monads-fd"; + "data-accessor-monads-tf" = dontDistribute super."data-accessor-monads-tf"; + "data-accessor-template" = dontDistribute super."data-accessor-template"; + "data-accessor-transformers" = dontDistribute super."data-accessor-transformers"; + "data-aviary" = dontDistribute super."data-aviary"; + "data-base" = dontDistribute super."data-base"; + "data-bword" = dontDistribute super."data-bword"; + "data-carousel" = dontDistribute super."data-carousel"; + "data-category" = dontDistribute super."data-category"; + "data-cell" = dontDistribute super."data-cell"; + "data-checked" = dontDistribute super."data-checked"; + "data-clist" = dontDistribute super."data-clist"; + "data-concurrent-queue" = dontDistribute super."data-concurrent-queue"; + "data-construction" = dontDistribute super."data-construction"; + "data-cycle" = dontDistribute super."data-cycle"; + "data-default-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-interval" = dontDistribute super."data-interval"; + "data-ivar" = dontDistribute super."data-ivar"; + "data-json-token" = dontDistribute super."data-json-token"; + "data-kiln" = dontDistribute super."data-kiln"; + "data-layer" = dontDistribute super."data-layer"; + "data-layout" = dontDistribute super."data-layout"; + "data-lens" = dontDistribute super."data-lens"; + "data-lens-fd" = dontDistribute super."data-lens-fd"; + "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-template" = dontDistribute super."data-lens-template"; + "data-list-sequences" = dontDistribute super."data-list-sequences"; + "data-map-multikey" = dontDistribute super."data-map-multikey"; + "data-named" = dontDistribute super."data-named"; + "data-nat" = dontDistribute super."data-nat"; + "data-object" = dontDistribute super."data-object"; + "data-object-json" = dontDistribute super."data-object-json"; + "data-object-yaml" = dontDistribute super."data-object-yaml"; + "data-or" = dontDistribute super."data-or"; + "data-partition" = dontDistribute super."data-partition"; + "data-pprint" = dontDistribute super."data-pprint"; + "data-quotientref" = dontDistribute super."data-quotientref"; + "data-r-tree" = dontDistribute super."data-r-tree"; + "data-ref" = dontDistribute super."data-ref"; + "data-reify-cse" = dontDistribute super."data-reify-cse"; + "data-repr" = dontDistribute super."data-repr"; + "data-result" = dontDistribute super."data-result"; + "data-rev" = dontDistribute super."data-rev"; + "data-rope" = dontDistribute super."data-rope"; + "data-rtuple" = dontDistribute super."data-rtuple"; + "data-size" = dontDistribute super."data-size"; + "data-spacepart" = dontDistribute super."data-spacepart"; + "data-store" = dontDistribute super."data-store"; + "data-stringmap" = dontDistribute super."data-stringmap"; + "data-structure-inferrer" = dontDistribute super."data-structure-inferrer"; + "data-tensor" = dontDistribute super."data-tensor"; + "data-textual" = dontDistribute super."data-textual"; + "data-timeout" = dontDistribute super."data-timeout"; + "data-transform" = dontDistribute super."data-transform"; + "data-treify" = dontDistribute super."data-treify"; + "data-type" = dontDistribute super."data-type"; + "data-util" = dontDistribute super."data-util"; + "data-variant" = dontDistribute super."data-variant"; + "database-migrate" = dontDistribute super."database-migrate"; + "database-study" = dontDistribute super."database-study"; + "dataenc" = dontDistribute super."dataenc"; + "dataflow" = dontDistribute super."dataflow"; + "datalog" = dontDistribute super."datalog"; + "datapacker" = dontDistribute super."datapacker"; + "dataurl" = dontDistribute super."dataurl"; + "date-cache" = dontDistribute super."date-cache"; + "dates" = dontDistribute super."dates"; + "datetime" = dontDistribute super."datetime"; + "datetime-sb" = dontDistribute super."datetime-sb"; + "dawdle" = dontDistribute super."dawdle"; + "dawg" = dontDistribute super."dawg"; + "dbcleaner" = dontDistribute super."dbcleaner"; + "dbf" = dontDistribute super."dbf"; + "dbjava" = dontDistribute super."dbjava"; + "dbmigrations" = doDistribute super."dbmigrations_1_0"; + "dbus-client" = dontDistribute super."dbus-client"; + "dbus-core" = dontDistribute super."dbus-core"; + "dbus-qq" = dontDistribute super."dbus-qq"; + "dbus-th" = dontDistribute super."dbus-th"; + "dbus-th-introspection" = dontDistribute super."dbus-th-introspection"; + "dclabel" = dontDistribute super."dclabel"; + "dclabel-eci11" = dontDistribute super."dclabel-eci11"; + "ddc-base" = dontDistribute super."ddc-base"; + "ddc-build" = dontDistribute super."ddc-build"; + "ddc-code" = dontDistribute super."ddc-code"; + "ddc-core" = dontDistribute super."ddc-core"; + "ddc-core-eval" = dontDistribute super."ddc-core-eval"; + "ddc-core-flow" = dontDistribute super."ddc-core-flow"; + "ddc-core-llvm" = dontDistribute super."ddc-core-llvm"; + "ddc-core-salt" = dontDistribute super."ddc-core-salt"; + "ddc-core-simpl" = dontDistribute super."ddc-core-simpl"; + "ddc-core-tetra" = dontDistribute super."ddc-core-tetra"; + "ddc-driver" = dontDistribute super."ddc-driver"; + "ddc-interface" = dontDistribute super."ddc-interface"; + "ddc-source-tetra" = dontDistribute super."ddc-source-tetra"; + "ddc-tools" = dontDistribute super."ddc-tools"; + "ddc-war" = dontDistribute super."ddc-war"; + "ddci-core" = dontDistribute super."ddci-core"; + "dead-code-detection" = dontDistribute super."dead-code-detection"; + "dead-simple-json" = dontDistribute super."dead-simple-json"; + "debian-binary" = dontDistribute super."debian-binary"; + "debian-build" = dontDistribute super."debian-build"; + "debug-diff" = dontDistribute super."debug-diff"; + "debug-time" = dontDistribute super."debug-time"; + "decepticons" = dontDistribute super."decepticons"; + "decode-utf8" = dontDistribute super."decode-utf8"; + "decoder-conduit" = dontDistribute super."decoder-conduit"; + "dedukti" = dontDistribute super."dedukti"; + "deepcontrol" = dontDistribute super."deepcontrol"; + "deeplearning-hs" = dontDistribute super."deeplearning-hs"; + "deepseq-bounded" = dontDistribute super."deepseq-bounded"; + "deepseq-magic" = dontDistribute super."deepseq-magic"; + "deepseq-th" = dontDistribute super."deepseq-th"; + "deepzoom" = dontDistribute super."deepzoom"; + "defargs" = dontDistribute super."defargs"; + "definitive-base" = dontDistribute super."definitive-base"; + "definitive-filesystem" = dontDistribute super."definitive-filesystem"; + "definitive-graphics" = dontDistribute super."definitive-graphics"; + "definitive-parser" = dontDistribute super."definitive-parser"; + "definitive-reactive" = dontDistribute super."definitive-reactive"; + "definitive-sound" = dontDistribute super."definitive-sound"; + "deiko-config" = dontDistribute super."deiko-config"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "deriving-compat" = dontDistribute super."deriving-compat"; + "derp" = dontDistribute super."derp"; + "derp-lib" = dontDistribute super."derp-lib"; + "descrilo" = dontDistribute super."descrilo"; + "despair" = dontDistribute super."despair"; + "deterministic-game-engine" = dontDistribute super."deterministic-game-engine"; + "detrospector" = dontDistribute super."detrospector"; + "deunicode" = dontDistribute super."deunicode"; + "devil" = dontDistribute super."devil"; + "dewdrop" = dontDistribute super."dewdrop"; + "dfrac" = dontDistribute super."dfrac"; + "dfsbuild" = dontDistribute super."dfsbuild"; + "dgim" = dontDistribute super."dgim"; + "dgs" = dontDistribute super."dgs"; + "dia-base" = dontDistribute super."dia-base"; + "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; + "diagrams-pdf" = dontDistribute super."diagrams-pdf"; + "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-reflex" = dontDistribute super."diagrams-reflex"; + "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-tikz" = dontDistribute super."diagrams-tikz"; + "dialog" = dontDistribute super."dialog"; + "dice-entropy-conduit" = dontDistribute super."dice-entropy-conduit"; + "dicom" = dontDistribute super."dicom"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "discount" = dontDistribute super."discount"; + "discrete-space-map" = dontDistribute super."discrete-space-map"; + "discrimination" = dontDistribute super."discrimination"; + "disjoint-set" = dontDistribute super."disjoint-set"; + "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; + "dist-upload" = dontDistribute super."dist-upload"; + "distributed-closure" = dontDistribute super."distributed-closure"; + "distributed-process" = doDistribute super."distributed-process_0_5_5_1"; + "distributed-process-async" = dontDistribute super."distributed-process-async"; + "distributed-process-azure" = dontDistribute super."distributed-process-azure"; + "distributed-process-client-server" = dontDistribute super."distributed-process-client-server"; + "distributed-process-ekg" = dontDistribute super."distributed-process-ekg"; + "distributed-process-execution" = dontDistribute super."distributed-process-execution"; + "distributed-process-extras" = dontDistribute super."distributed-process-extras"; + "distributed-process-lifted" = dontDistribute super."distributed-process-lifted"; + "distributed-process-monad-control" = dontDistribute super."distributed-process-monad-control"; + "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; + "distributed-process-platform" = dontDistribute super."distributed-process-platform"; + "distributed-process-registry" = dontDistribute super."distributed-process-registry"; + "distributed-process-simplelocalnet" = dontDistribute super."distributed-process-simplelocalnet"; + "distributed-process-supervisor" = dontDistribute super."distributed-process-supervisor"; + "distributed-process-task" = dontDistribute super."distributed-process-task"; + "distributed-process-tests" = dontDistribute super."distributed-process-tests"; + "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distribution" = dontDistribute super."distribution"; + "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; + "djembe" = dontDistribute super."djembe"; + "djinn" = dontDistribute super."djinn"; + "djinn-th" = dontDistribute super."djinn-th"; + "dnscache" = dontDistribute super."dnscache"; + "dnsrbl" = dontDistribute super."dnsrbl"; + "dnssd" = dontDistribute super."dnssd"; + "doc-review" = dontDistribute super."doc-review"; + "doccheck" = dontDistribute super."doccheck"; + "docidx" = dontDistribute super."docidx"; + "docker" = dontDistribute super."docker"; + "dockercook" = dontDistribute super."dockercook"; + "doctest-discover" = dontDistribute super."doctest-discover"; + "doctest-discover-configurator" = dontDistribute super."doctest-discover-configurator"; + "doctest-prop" = dontDistribute super."doctest-prop"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotenv" = doDistribute super."dotenv_0_1_0_9"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "dotnet-timespan" = dontDistribute super."dotnet-timespan"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download" = dontDistribute super."download"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = dontDistribute super."ekg-statsd"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-build-lib" = dontDistribute super."elm-build-lib"; + "elm-compiler" = dontDistribute super."elm-compiler"; + "elm-get" = dontDistribute super."elm-get"; + "elm-init" = dontDistribute super."elm-init"; + "elm-make" = dontDistribute super."elm-make"; + "elm-package" = dontDistribute super."elm-package"; + "elm-reactor" = dontDistribute super."elm-reactor"; + "elm-repl" = dontDistribute super."elm-repl"; + "elm-server" = dontDistribute super."elm-server"; + "elm-yesod" = dontDistribute super."elm-yesod"; + "elo" = dontDistribute super."elo"; + "elocrypt" = dontDistribute super."elocrypt"; + "emacs-keys" = dontDistribute super."emacs-keys"; + "email" = dontDistribute super."email"; + "email-header" = dontDistribute super."email-header"; + "email-postmark" = dontDistribute super."email-postmark"; + "email-validator" = dontDistribute super."email-validator"; + "embeddock" = dontDistribute super."embeddock"; + "embeddock-example" = dontDistribute super."embeddock-example"; + "embroidery" = dontDistribute super."embroidery"; + "emgm" = dontDistribute super."emgm"; + "empty" = dontDistribute super."empty"; + "encoding" = dontDistribute super."encoding"; + "endo" = dontDistribute super."endo"; + "engine-io-growler" = dontDistribute super."engine-io-growler"; + "engine-io-snap" = dontDistribute super."engine-io-snap"; + "engineering-units" = dontDistribute super."engineering-units"; + "enumerable" = dontDistribute super."enumerable"; + "enumerate" = dontDistribute super."enumerate"; + "enumeration" = dontDistribute super."enumeration"; + "enumerator-fd" = dontDistribute super."enumerator-fd"; + "enumerator-tf" = dontDistribute super."enumerator-tf"; + "enumfun" = dontDistribute super."enumfun"; + "enummapmap" = dontDistribute super."enummapmap"; + "enummapset" = dontDistribute super."enummapset"; + "enummapset-th" = dontDistribute super."enummapset-th"; + "enumset" = dontDistribute super."enumset"; + "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; + "envparse" = dontDistribute super."envparse"; + "epanet-haskell" = dontDistribute super."epanet-haskell"; + "epass" = dontDistribute super."epass"; + "epic" = dontDistribute super."epic"; + "epoll" = dontDistribute super."epoll"; + "eprocess" = dontDistribute super."eprocess"; + "epub" = dontDistribute super."epub"; + "epub-metadata" = dontDistribute super."epub-metadata"; + "epub-tools" = dontDistribute super."epub-tools"; + "epubname" = dontDistribute super."epubname"; + "equal-files" = dontDistribute super."equal-files"; + "equational-reasoning" = dontDistribute super."equational-reasoning"; + "erd" = dontDistribute super."erd"; + "erf-native" = dontDistribute super."erf-native"; + "erlang" = dontDistribute super."erlang"; + "eros" = dontDistribute super."eros"; + "eros-client" = dontDistribute super."eros-client"; + "eros-http" = dontDistribute super."eros-http"; + "errno" = dontDistribute super."errno"; + "error-analyze" = dontDistribute super."error-analyze"; + "error-continuations" = dontDistribute super."error-continuations"; + "error-list" = dontDistribute super."error-list"; + "error-loc" = dontDistribute super."error-loc"; + "error-location" = dontDistribute super."error-location"; + "error-message" = dontDistribute super."error-message"; + "error-util" = dontDistribute super."error-util"; + "errorcall-eq-instance" = dontDistribute super."errorcall-eq-instance"; + "ersatz" = dontDistribute super."ersatz"; + "ersatz-toysat" = dontDistribute super."ersatz-toysat"; + "ert" = dontDistribute super."ert"; + "esotericbot" = dontDistribute super."esotericbot"; + "ess" = dontDistribute super."ess"; + "estimator" = dontDistribute super."estimator"; + "estimators" = dontDistribute super."estimators"; + "estreps" = dontDistribute super."estreps"; + "eternal" = dontDistribute super."eternal"; + "ether" = doDistribute super."ether_0_3_1_1"; + "ethereum-client-haskell" = dontDistribute super."ethereum-client-haskell"; + "ethereum-merkle-patricia-db" = dontDistribute super."ethereum-merkle-patricia-db"; + "ethereum-rlp" = dontDistribute super."ethereum-rlp"; + "ety" = dontDistribute super."ety"; + "euler" = dontDistribute super."euler"; + "euphoria" = dontDistribute super."euphoria"; + "eurofxref" = dontDistribute super."eurofxref"; + "event-driven" = dontDistribute super."event-driven"; + "event-handlers" = dontDistribute super."event-handlers"; + "event-list" = dontDistribute super."event-list"; + "event-monad" = dontDistribute super."event-monad"; + "eventloop" = dontDistribute super."eventloop"; + "eventstore" = doDistribute super."eventstore_0_10_0_2"; + "every-bit-counts" = dontDistribute super."every-bit-counts"; + "ewe" = dontDistribute super."ewe"; + "ex-pool" = dontDistribute super."ex-pool"; + "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exception-hierarchy" = dontDistribute super."exception-hierarchy"; + "exception-mailer" = dontDistribute super."exception-mailer"; + "exception-monads-fd" = dontDistribute super."exception-monads-fd"; + "exception-monads-tf" = dontDistribute super."exception-monads-tf"; + "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; + "exherbo-cabal" = dontDistribute super."exherbo-cabal"; + "exif" = dontDistribute super."exif"; + "exinst" = dontDistribute super."exinst"; + "exinst-aeson" = dontDistribute super."exinst-aeson"; + "exinst-bytes" = dontDistribute super."exinst-bytes"; + "exinst-deepseq" = dontDistribute super."exinst-deepseq"; + "exinst-hashable" = dontDistribute super."exinst-hashable"; + "existential" = dontDistribute super."existential"; + "exists" = dontDistribute super."exists"; + "exit-codes" = dontDistribute super."exit-codes"; + "exp-extended" = dontDistribute super."exp-extended"; + "exp-pairs" = dontDistribute super."exp-pairs"; + "expand" = dontDistribute super."expand"; + "expat-enumerator" = dontDistribute super."expat-enumerator"; + "expiring-mvar" = dontDistribute super."expiring-mvar"; + "explain" = dontDistribute super."explain"; + "explicit-determinant" = dontDistribute super."explicit-determinant"; + "explicit-iomodes" = dontDistribute super."explicit-iomodes"; + "explicit-iomodes-bytestring" = dontDistribute super."explicit-iomodes-bytestring"; + "explicit-iomodes-text" = dontDistribute super."explicit-iomodes-text"; + "explicit-sharing" = dontDistribute super."explicit-sharing"; + "explore" = dontDistribute super."explore"; + "exposed-containers" = dontDistribute super."exposed-containers"; + "expression-parser" = dontDistribute super."expression-parser"; + "extcore" = dontDistribute super."extcore"; + "extemp" = dontDistribute super."extemp"; + "extended-categories" = dontDistribute super."extended-categories"; + "extended-reals" = dontDistribute super."extended-reals"; + "extensible" = dontDistribute super."extensible"; + "extensible-data" = dontDistribute super."extensible-data"; + "external-sort" = dontDistribute super."external-sort"; + "extractelf" = dontDistribute super."extractelf"; + "ez-couch" = dontDistribute super."ez-couch"; + "faceted" = dontDistribute super."faceted"; + "factory" = dontDistribute super."factory"; + "factual-api" = dontDistribute super."factual-api"; + "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; + "failable-list" = dontDistribute super."failable-list"; + "failure" = dontDistribute super."failure"; + "fair-predicates" = dontDistribute super."fair-predicates"; + "fake-type" = dontDistribute super."fake-type"; + "faker" = dontDistribute super."faker"; + "falling-turnip" = dontDistribute super."falling-turnip"; + "fallingblocks" = dontDistribute super."fallingblocks"; + "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; + "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; + "fast-math" = dontDistribute super."fast-math"; + "fast-tags" = dontDistribute super."fast-tags"; + "fast-tagsoup" = dontDistribute super."fast-tagsoup"; + "fast-tagsoup-utf8-only" = dontDistribute super."fast-tagsoup-utf8-only"; + "fastbayes" = dontDistribute super."fastbayes"; + "fastcgi" = dontDistribute super."fastcgi"; + "fastedit" = dontDistribute super."fastedit"; + "fastirc" = dontDistribute super."fastirc"; + "fault-tree" = dontDistribute super."fault-tree"; + "fay-geoposition" = dontDistribute super."fay-geoposition"; + "fay-hsx" = dontDistribute super."fay-hsx"; + "fay-ref" = dontDistribute super."fay-ref"; + "fca" = dontDistribute super."fca"; + "fcache" = dontDistribute super."fcache"; + "fcd" = dontDistribute super."fcd"; + "fckeditor" = dontDistribute super."fckeditor"; + "fclabels-monadlib" = dontDistribute super."fclabels-monadlib"; + "fdo-trash" = dontDistribute super."fdo-trash"; + "fec" = dontDistribute super."fec"; + "fedora-packages" = dontDistribute super."fedora-packages"; + "feed-cli" = dontDistribute super."feed-cli"; + "feed-collect" = dontDistribute super."feed-collect"; + "feed-crawl" = dontDistribute super."feed-crawl"; + "feed-translator" = dontDistribute super."feed-translator"; + "feed2lj" = dontDistribute super."feed2lj"; + "feed2twitter" = dontDistribute super."feed2twitter"; + "feldspar-compiler" = dontDistribute super."feldspar-compiler"; + "feldspar-language" = dontDistribute super."feldspar-language"; + "feldspar-signal" = dontDistribute super."feldspar-signal"; + "fen2s" = dontDistribute super."fen2s"; + "fences" = dontDistribute super."fences"; + "fenfire" = dontDistribute super."fenfire"; + "fez-conf" = dontDistribute super."fez-conf"; + "ffeed" = dontDistribute super."ffeed"; + "fficxx" = dontDistribute super."fficxx"; + "fficxx-runtime" = dontDistribute super."fficxx-runtime"; + "ffmpeg-light" = dontDistribute super."ffmpeg-light"; + "ffmpeg-tutorials" = dontDistribute super."ffmpeg-tutorials"; + "fftwRaw" = dontDistribute super."fftwRaw"; + "fgl-extras-decompositions" = dontDistribute super."fgl-extras-decompositions"; + "fgl-visualize" = dontDistribute super."fgl-visualize"; + "fibon" = dontDistribute super."fibon"; + "fibonacci" = dontDistribute super."fibonacci"; + "fields" = dontDistribute super."fields"; + "fields-json" = dontDistribute super."fields-json"; + "fieldwise" = dontDistribute super."fieldwise"; + "fig" = dontDistribute super."fig"; + "file-collection" = dontDistribute super."file-collection"; + "file-command-qq" = dontDistribute super."file-command-qq"; + "filediff" = dontDistribute super."filediff"; + "filepath-io-access" = dontDistribute super."filepath-io-access"; + "filepather" = dontDistribute super."filepather"; + "filestore" = dontDistribute super."filestore"; + "filesystem-conduit" = dontDistribute super."filesystem-conduit"; + "filesystem-enumerator" = dontDistribute super."filesystem-enumerator"; + "filesystem-trees" = dontDistribute super."filesystem-trees"; + "filtrable" = dontDistribute super."filtrable"; + "final" = dontDistribute super."final"; + "find-clumpiness" = dontDistribute super."find-clumpiness"; + "find-conduit" = dontDistribute super."find-conduit"; + "fingertree-tf" = dontDistribute super."fingertree-tf"; + "finite-field" = dontDistribute super."finite-field"; + "finite-typelits" = dontDistribute super."finite-typelits"; + "first-and-last" = dontDistribute super."first-and-last"; + "first-class-patterns" = dontDistribute super."first-class-patterns"; + "firstify" = dontDistribute super."firstify"; + "fishfood" = dontDistribute super."fishfood"; + "fit" = dontDistribute super."fit"; + "fitsio" = dontDistribute super."fitsio"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-mcmc" = dontDistribute super."flat-mcmc"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock-api" = dontDistribute super."flowdock-api"; + "flowdock-rest" = dontDistribute super."flowdock-rest"; + "flower" = dontDistribute super."flower"; + "flowlocks-framework" = dontDistribute super."flowlocks-framework"; + "flowsim" = dontDistribute super."flowsim"; + "fltkhs" = dontDistribute super."fltkhs"; + "fltkhs-demos" = dontDistribute super."fltkhs-demos"; + "fltkhs-fluid-demos" = dontDistribute super."fltkhs-fluid-demos"; + "fltkhs-fluid-examples" = dontDistribute super."fltkhs-fluid-examples"; + "fltkhs-hello-world" = dontDistribute super."fltkhs-hello-world"; + "fluent-logger" = dontDistribute super."fluent-logger"; + "fluent-logger-conduit" = dontDistribute super."fluent-logger-conduit"; + "fluidsynth" = dontDistribute super."fluidsynth"; + "fmark" = dontDistribute super."fmark"; + "fn" = doDistribute super."fn_0_2_0_2"; + "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; + "fold-debounce" = dontDistribute super."fold-debounce"; + "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "free-concurrent" = dontDistribute super."free-concurrent"; + "free-functors" = dontDistribute super."free-functors"; + "free-game" = dontDistribute super."free-game"; + "free-http" = dontDistribute super."free-http"; + "free-operational" = dontDistribute super."free-operational"; + "free-theorems" = dontDistribute super."free-theorems"; + "free-theorems-counterexamples" = dontDistribute super."free-theorems-counterexamples"; + "free-theorems-seq" = dontDistribute super."free-theorems-seq"; + "free-theorems-seq-webui" = dontDistribute super."free-theorems-seq-webui"; + "free-theorems-webui" = dontDistribute super."free-theorems-webui"; + "free-vl" = dontDistribute super."free-vl"; + "freekick2" = dontDistribute super."freekick2"; + "freer" = dontDistribute super."freer"; + "freesect" = dontDistribute super."freesect"; + "freesound" = dontDistribute super."freesound"; + "freetype-simple" = dontDistribute super."freetype-simple"; + "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; + "fresh" = dontDistribute super."fresh"; + "friday" = dontDistribute super."friday"; + "friday-devil" = dontDistribute super."friday-devil"; + "friday-juicypixels" = dontDistribute super."friday-juicypixels"; + "friday-scale-dct" = dontDistribute super."friday-scale-dct"; + "friendly-time" = dontDistribute super."friendly-time"; + "frown" = dontDistribute super."frown"; + "frp-arduino" = dontDistribute super."frp-arduino"; + "frpnow" = dontDistribute super."frpnow"; + "frpnow-gloss" = dontDistribute super."frpnow-gloss"; + "frpnow-gtk" = dontDistribute super."frpnow-gtk"; + "frquotes" = dontDistribute super."frquotes"; + "fs-events" = dontDistribute super."fs-events"; + "fsharp" = dontDistribute super."fsharp"; + "fsmActions" = dontDistribute super."fsmActions"; + "fst" = dontDistribute super."fst"; + "fsutils" = dontDistribute super."fsutils"; + "fswatcher" = dontDistribute super."fswatcher"; + "ftdi" = dontDistribute super."ftdi"; + "ftp-conduit" = dontDistribute super."ftp-conduit"; + "ftphs" = dontDistribute super."ftphs"; + "ftree" = dontDistribute super."ftree"; + "ftshell" = dontDistribute super."ftshell"; + "fugue" = dontDistribute super."fugue"; + "full-sessions" = dontDistribute super."full-sessions"; + "full-text-search" = dontDistribute super."full-text-search"; + "fullstop" = dontDistribute super."fullstop"; + "funbot" = dontDistribute super."funbot"; + "funbot-client" = dontDistribute super."funbot-client"; + "funbot-ext-events" = dontDistribute super."funbot-ext-events"; + "funbot-git-hook" = dontDistribute super."funbot-git-hook"; + "funcons-tools" = dontDistribute super."funcons-tools"; + "function-combine" = dontDistribute super."function-combine"; + "function-instances-algebra" = dontDistribute super."function-instances-algebra"; + "functional-arrow" = dontDistribute super."functional-arrow"; + "functional-kmp" = dontDistribute super."functional-kmp"; + "functor-apply" = dontDistribute super."functor-apply"; + "functor-combo" = dontDistribute super."functor-combo"; + "functor-infix" = dontDistribute super."functor-infix"; + "functor-monadic" = dontDistribute super."functor-monadic"; + "functor-utils" = dontDistribute super."functor-utils"; + "functorm" = dontDistribute super."functorm"; + "functors" = dontDistribute super."functors"; + "funion" = dontDistribute super."funion"; + "funpat" = dontDistribute super."funpat"; + "funsat" = dontDistribute super."funsat"; + "fusion" = dontDistribute super."fusion"; + "futun" = dontDistribute super."futun"; + "future" = dontDistribute super."future"; + "future-resource" = dontDistribute super."future-resource"; + "fuzzy" = dontDistribute super."fuzzy"; + "fuzzy-timings" = dontDistribute super."fuzzy-timings"; + "fuzzytime" = dontDistribute super."fuzzytime"; + "fwgl" = dontDistribute super."fwgl"; + "fwgl-glfw" = dontDistribute super."fwgl-glfw"; + "fwgl-javascript" = dontDistribute super."fwgl-javascript"; + "g-npm" = dontDistribute super."g-npm"; + "gact" = dontDistribute super."gact"; + "game-of-life" = dontDistribute super."game-of-life"; + "game-probability" = dontDistribute super."game-probability"; + "game-tree" = dontDistribute super."game-tree"; + "gameclock" = dontDistribute super."gameclock"; + "gamma" = dontDistribute super."gamma"; + "gang-of-threads" = dontDistribute super."gang-of-threads"; + "garepinoh" = dontDistribute super."garepinoh"; + "garsia-wachs" = dontDistribute super."garsia-wachs"; + "gbu" = dontDistribute super."gbu"; + "gc" = dontDistribute super."gc"; + "gc-monitoring-wai" = dontDistribute super."gc-monitoring-wai"; + "gconf" = dontDistribute super."gconf"; + "gdiff" = dontDistribute super."gdiff"; + "gdiff-ig" = dontDistribute super."gdiff-ig"; + "gdiff-th" = dontDistribute super."gdiff-th"; + "gdo" = dontDistribute super."gdo"; + "gearbox" = dontDistribute super."gearbox"; + "geek" = dontDistribute super."geek"; + "geek-server" = dontDistribute super."geek-server"; + "gelatin" = dontDistribute super."gelatin"; + "gemstone" = dontDistribute super."gemstone"; + "gencheck" = dontDistribute super."gencheck"; + "gender" = dontDistribute super."gender"; + "genders" = dontDistribute super."genders"; + "general-prelude" = dontDistribute super."general-prelude"; + "generator" = dontDistribute super."generator"; + "generators" = dontDistribute super."generators"; + "generic-accessors" = dontDistribute super."generic-accessors"; + "generic-binary" = dontDistribute super."generic-binary"; + "generic-church" = dontDistribute super."generic-church"; + "generic-deepseq" = dontDistribute super."generic-deepseq"; + "generic-deriving" = doDistribute super."generic-deriving_1_9_0"; + "generic-lucid-scaffold" = dontDistribute super."generic-lucid-scaffold"; + "generic-maybe" = dontDistribute super."generic-maybe"; + "generic-pretty" = dontDistribute super."generic-pretty"; + "generic-server" = dontDistribute super."generic-server"; + "generic-storable" = dontDistribute super."generic-storable"; + "generic-tree" = dontDistribute super."generic-tree"; + "generic-xml" = dontDistribute super."generic-xml"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geom2d" = dontDistribute super."geom2d"; + "getemx" = dontDistribute super."getemx"; + "getflag" = dontDistribute super."getflag"; + "getopt-simple" = dontDistribute super."getopt-simple"; + "gf" = dontDistribute super."gf"; + "ggtsTC" = dontDistribute super."ggtsTC"; + "ghc-core" = dontDistribute super."ghc-core"; + "ghc-core-html" = dontDistribute super."ghc-core-html"; + "ghc-datasize" = dontDistribute super."ghc-datasize"; + "ghc-dump-tree" = dontDistribute super."ghc-dump-tree"; + "ghc-dup" = dontDistribute super."ghc-dup"; + "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; + "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; + "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = dontDistribute super."ghc-imported-from"; + "ghc-make" = dontDistribute super."ghc-make"; + "ghc-man-completion" = dontDistribute super."ghc-man-completion"; + "ghc-options" = dontDistribute super."ghc-options"; + "ghc-parmake" = dontDistribute super."ghc-parmake"; + "ghc-pkg-autofix" = dontDistribute super."ghc-pkg-autofix"; + "ghc-pkg-lib" = dontDistribute super."ghc-pkg-lib"; + "ghc-prof-flamegraph" = dontDistribute super."ghc-prof-flamegraph"; + "ghc-server" = dontDistribute super."ghc-server"; + "ghc-simple" = dontDistribute super."ghc-simple"; + "ghc-srcspan-plugin" = dontDistribute super."ghc-srcspan-plugin"; + "ghc-syb" = dontDistribute super."ghc-syb"; + "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; + "ghc-vis" = dontDistribute super."ghc-vis"; + "ghci-diagrams" = dontDistribute super."ghci-diagrams"; + "ghci-haskeline" = dontDistribute super."ghci-haskeline"; + "ghci-lib" = dontDistribute super."ghci-lib"; + "ghci-ng" = dontDistribute super."ghci-ng"; + "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; + "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; + "ghcjs-dom" = dontDistribute super."ghcjs-dom"; + "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; + "ghcjs-websockets" = dontDistribute super."ghcjs-websockets"; + "ghclive" = dontDistribute super."ghclive"; + "ghczdecode" = dontDistribute super."ghczdecode"; + "ght" = dontDistribute super."ght"; + "gi-atk" = dontDistribute super."gi-atk"; + "gi-cairo" = dontDistribute super."gi-cairo"; + "gi-gdk" = dontDistribute super."gi-gdk"; + "gi-gdkpixbuf" = dontDistribute super."gi-gdkpixbuf"; + "gi-gio" = dontDistribute super."gi-gio"; + "gi-girepository" = dontDistribute super."gi-girepository"; + "gi-glib" = dontDistribute super."gi-glib"; + "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; + "gi-gtk" = dontDistribute super."gi-gtk"; + "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; + "gi-notify" = dontDistribute super."gi-notify"; + "gi-pango" = dontDistribute super."gi-pango"; + "gi-poppler" = dontDistribute super."gi-poppler"; + "gi-soup" = dontDistribute super."gi-soup"; + "gi-vte" = dontDistribute super."gi-vte"; + "gi-webkit" = dontDistribute super."gi-webkit"; + "gi-webkit2" = dontDistribute super."gi-webkit2"; + "gi-webkit2webextension" = dontDistribute super."gi-webkit2webextension"; + "gimlh" = dontDistribute super."gimlh"; + "ginger" = dontDistribute super."ginger"; + "ginsu" = dontDistribute super."ginsu"; + "giphy-api" = dontDistribute super."giphy-api"; + "gist" = dontDistribute super."gist"; + "git-all" = dontDistribute super."git-all"; + "git-annex" = doDistribute super."git-annex_6_20160114"; + "git-checklist" = dontDistribute super."git-checklist"; + "git-date" = dontDistribute super."git-date"; + "git-embed" = dontDistribute super."git-embed"; + "git-freq" = dontDistribute super."git-freq"; + "git-gpush" = dontDistribute super."git-gpush"; + "git-jump" = dontDistribute super."git-jump"; + "git-monitor" = dontDistribute super."git-monitor"; + "git-object" = dontDistribute super."git-object"; + "git-repair" = dontDistribute super."git-repair"; + "git-sanity" = dontDistribute super."git-sanity"; + "git-vogue" = dontDistribute super."git-vogue"; + "gitHUD" = dontDistribute super."gitHUD"; + "gitcache" = dontDistribute super."gitcache"; + "gitdo" = dontDistribute super."gitdo"; + "github-backup" = dontDistribute super."github-backup"; + "github-post-receive" = dontDistribute super."github-post-receive"; + "github-utils" = dontDistribute super."github-utils"; + "gitignore" = dontDistribute super."gitignore"; + "gitit" = dontDistribute super."gitit"; + "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; + "gitlib-cross" = dontDistribute super."gitlib-cross"; + "gitlib-s3" = dontDistribute super."gitlib-s3"; + "gitlib-sample" = dontDistribute super."gitlib-sample"; + "gitlib-utils" = dontDistribute super."gitlib-utils"; + "gitter" = dontDistribute super."gitter"; + "gl-capture" = dontDistribute super."gl-capture"; + "glade" = dontDistribute super."glade"; + "gladexml-accessor" = dontDistribute super."gladexml-accessor"; + "glambda" = dontDistribute super."glambda"; + "glapp" = dontDistribute super."glapp"; + "glasso" = dontDistribute super."glasso"; + "glicko" = dontDistribute super."glicko"; + "glider-nlp" = dontDistribute super."glider-nlp"; + "glintcollider" = dontDistribute super."glintcollider"; + "gll" = dontDistribute super."gll"; + "global" = dontDistribute super."global"; + "global-config" = dontDistribute super."global-config"; + "global-lock" = dontDistribute super."global-lock"; + "global-variables" = dontDistribute super."global-variables"; + "glome-hs" = dontDistribute super."glome-hs"; + "gloss" = dontDistribute super."gloss"; + "gloss-accelerate" = dontDistribute super."gloss-accelerate"; + "gloss-algorithms" = dontDistribute super."gloss-algorithms"; + "gloss-banana" = dontDistribute super."gloss-banana"; + "gloss-devil" = dontDistribute super."gloss-devil"; + "gloss-examples" = dontDistribute super."gloss-examples"; + "gloss-game" = dontDistribute super."gloss-game"; + "gloss-juicy" = dontDistribute super."gloss-juicy"; + "gloss-raster" = dontDistribute super."gloss-raster"; + "gloss-raster-accelerate" = dontDistribute super."gloss-raster-accelerate"; + "gloss-rendering" = dontDistribute super."gloss-rendering"; + "gloss-sodium" = dontDistribute super."gloss-sodium"; + "glpk-hs" = dontDistribute super."glpk-hs"; + "glue" = dontDistribute super."glue"; + "glue-common" = dontDistribute super."glue-common"; + "glue-core" = dontDistribute super."glue-core"; + "glue-ekg" = dontDistribute super."glue-ekg"; + "glue-example" = dontDistribute super."glue-example"; + "gluturtle" = dontDistribute super."gluturtle"; + "gmap" = dontDistribute super."gmap"; + "gmndl" = dontDistribute super."gmndl"; + "gnome-desktop" = dontDistribute super."gnome-desktop"; + "gnome-keyring" = dontDistribute super."gnome-keyring"; + "gnomevfs" = dontDistribute super."gnomevfs"; + "gnss-converters" = dontDistribute super."gnss-converters"; + "gnuplot" = dontDistribute super."gnuplot"; + "goa" = dontDistribute super."goa"; + "goal-core" = dontDistribute super."goal-core"; + "goal-geometry" = dontDistribute super."goal-geometry"; + "goal-probability" = dontDistribute super."goal-probability"; + "goal-simulation" = dontDistribute super."goal-simulation"; + "goatee" = dontDistribute super."goatee"; + "goatee-gtk" = dontDistribute super."goatee-gtk"; + "gofer-prelude" = dontDistribute super."gofer-prelude"; + "gogol" = dontDistribute super."gogol"; + "gogol-adexchange-buyer" = dontDistribute super."gogol-adexchange-buyer"; + "gogol-adexchange-seller" = dontDistribute super."gogol-adexchange-seller"; + "gogol-admin-datatransfer" = dontDistribute super."gogol-admin-datatransfer"; + "gogol-admin-directory" = dontDistribute super."gogol-admin-directory"; + "gogol-admin-emailmigration" = dontDistribute super."gogol-admin-emailmigration"; + "gogol-admin-reports" = dontDistribute super."gogol-admin-reports"; + "gogol-adsense" = dontDistribute super."gogol-adsense"; + "gogol-adsense-host" = dontDistribute super."gogol-adsense-host"; + "gogol-affiliates" = dontDistribute super."gogol-affiliates"; + "gogol-analytics" = dontDistribute super."gogol-analytics"; + "gogol-android-enterprise" = dontDistribute super."gogol-android-enterprise"; + "gogol-android-publisher" = dontDistribute super."gogol-android-publisher"; + "gogol-appengine" = dontDistribute super."gogol-appengine"; + "gogol-apps-activity" = dontDistribute super."gogol-apps-activity"; + "gogol-apps-calendar" = dontDistribute super."gogol-apps-calendar"; + "gogol-apps-licensing" = dontDistribute super."gogol-apps-licensing"; + "gogol-apps-reseller" = dontDistribute super."gogol-apps-reseller"; + "gogol-apps-tasks" = dontDistribute super."gogol-apps-tasks"; + "gogol-appstate" = dontDistribute super."gogol-appstate"; + "gogol-autoscaler" = dontDistribute super."gogol-autoscaler"; + "gogol-bigquery" = dontDistribute super."gogol-bigquery"; + "gogol-billing" = dontDistribute super."gogol-billing"; + "gogol-blogger" = dontDistribute super."gogol-blogger"; + "gogol-books" = dontDistribute super."gogol-books"; + "gogol-civicinfo" = dontDistribute super."gogol-civicinfo"; + "gogol-classroom" = dontDistribute super."gogol-classroom"; + "gogol-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "googleplus" = dontDistribute super."googleplus"; + "googlepolyline" = dontDistribute super."googlepolyline"; + "gopherbot" = dontDistribute super."gopherbot"; + "gore-and-ash" = dontDistribute super."gore-and-ash"; + "gore-and-ash-actor" = dontDistribute super."gore-and-ash-actor"; + "gore-and-ash-async" = dontDistribute super."gore-and-ash-async"; + "gore-and-ash-demo" = dontDistribute super."gore-and-ash-demo"; + "gore-and-ash-glfw" = dontDistribute super."gore-and-ash-glfw"; + "gore-and-ash-logging" = dontDistribute super."gore-and-ash-logging"; + "gore-and-ash-network" = dontDistribute super."gore-and-ash-network"; + "gore-and-ash-sdl" = dontDistribute super."gore-and-ash-sdl"; + "gore-and-ash-sync" = dontDistribute super."gore-and-ash-sync"; + "gpah" = dontDistribute super."gpah"; + "gpcsets" = dontDistribute super."gpcsets"; + "gpolyline" = dontDistribute super."gpolyline"; + "gps" = dontDistribute super."gps"; + "gps2htmlReport" = dontDistribute super."gps2htmlReport"; + "gpx-conduit" = dontDistribute super."gpx-conduit"; + "graceful" = dontDistribute super."graceful"; + "grammar-combinators" = dontDistribute super."grammar-combinators"; + "grapefruit-examples" = dontDistribute super."grapefruit-examples"; + "grapefruit-frp" = dontDistribute super."grapefruit-frp"; + "grapefruit-records" = dontDistribute super."grapefruit-records"; + "grapefruit-ui" = dontDistribute super."grapefruit-ui"; + "grapefruit-ui-gtk" = dontDistribute super."grapefruit-ui-gtk"; + "graph-core" = doDistribute super."graph-core_0_2_2_0"; + "graph-generators" = dontDistribute super."graph-generators"; + "graph-matchings" = dontDistribute super."graph-matchings"; + "graph-rewriting" = dontDistribute super."graph-rewriting"; + "graph-rewriting-cl" = dontDistribute super."graph-rewriting-cl"; + "graph-rewriting-gl" = dontDistribute super."graph-rewriting-gl"; + "graph-rewriting-lambdascope" = dontDistribute super."graph-rewriting-lambdascope"; + "graph-rewriting-layout" = dontDistribute super."graph-rewriting-layout"; + "graph-rewriting-ski" = dontDistribute super."graph-rewriting-ski"; + "graph-rewriting-strategies" = dontDistribute super."graph-rewriting-strategies"; + "graph-rewriting-trs" = dontDistribute super."graph-rewriting-trs"; + "graph-rewriting-ww" = dontDistribute super."graph-rewriting-ww"; + "graph-serialize" = dontDistribute super."graph-serialize"; + "graph-utils" = dontDistribute super."graph-utils"; + "graph-visit" = dontDistribute super."graph-visit"; + "graphbuilder" = dontDistribute super."graphbuilder"; + "graphene" = dontDistribute super."graphene"; + "graphics-drawingcombinators" = dontDistribute super."graphics-drawingcombinators"; + "graphics-formats-collada" = dontDistribute super."graphics-formats-collada"; + "graphicsFormats" = dontDistribute super."graphicsFormats"; + "graphicstools" = dontDistribute super."graphicstools"; + "graphmod" = dontDistribute super."graphmod"; + "graphql" = dontDistribute super."graphql"; + "graphtype" = dontDistribute super."graphtype"; + "grasp" = dontDistribute super."grasp"; + "gray-code" = dontDistribute super."gray-code"; + "gray-extended" = dontDistribute super."gray-extended"; + "graylog" = dontDistribute super."graylog"; + "greencard" = dontDistribute super."greencard"; + "greencard-lib" = dontDistribute super."greencard-lib"; + "greg-client" = dontDistribute super."greg-client"; + "gremlin-haskell" = dontDistribute super."gremlin-haskell"; + "greplicate" = dontDistribute super."greplicate"; + "grid" = dontDistribute super."grid"; + "gridfs" = dontDistribute super."gridfs"; + "gridland" = dontDistribute super."gridland"; + "grm" = dontDistribute super."grm"; + "groundhog-converters" = dontDistribute super."groundhog-converters"; + "groundhog-inspector" = dontDistribute super."groundhog-inspector"; + "group-with" = dontDistribute super."group-with"; + "groupoid" = dontDistribute super."groupoid"; + "gruff" = dontDistribute super."gruff"; + "gruff-examples" = dontDistribute super."gruff-examples"; + "gsc-weighting" = dontDistribute super."gsc-weighting"; + "gsl-random" = dontDistribute super."gsl-random"; + "gsl-random-fu" = dontDistribute super."gsl-random-fu"; + "gsmenu" = dontDistribute super."gsmenu"; + "gstreamer" = dontDistribute super."gstreamer"; + "gt-tools" = dontDistribute super."gt-tools"; + "gtfs" = dontDistribute super."gtfs"; + "gtk-helpers" = dontDistribute super."gtk-helpers"; + "gtk-jsinput" = dontDistribute super."gtk-jsinput"; + "gtk-largeTreeStore" = dontDistribute super."gtk-largeTreeStore"; + "gtk-mac-integration" = dontDistribute super."gtk-mac-integration"; + "gtk-serialized-event" = dontDistribute super."gtk-serialized-event"; + "gtk-simple-list-view" = dontDistribute super."gtk-simple-list-view"; + "gtk-toggle-button-list" = dontDistribute super."gtk-toggle-button-list"; + "gtk-toy" = dontDistribute super."gtk-toy"; + "gtk-traymanager" = dontDistribute super."gtk-traymanager"; + "gtk2hs-cast-glade" = dontDistribute super."gtk2hs-cast-glade"; + "gtk2hs-cast-glib" = dontDistribute super."gtk2hs-cast-glib"; + "gtk2hs-cast-gnomevfs" = dontDistribute super."gtk2hs-cast-gnomevfs"; + "gtk2hs-cast-gtk" = dontDistribute super."gtk2hs-cast-gtk"; + "gtk2hs-cast-gtkglext" = dontDistribute super."gtk2hs-cast-gtkglext"; + "gtk2hs-cast-gtksourceview2" = dontDistribute super."gtk2hs-cast-gtksourceview2"; + "gtk2hs-cast-th" = dontDistribute super."gtk2hs-cast-th"; + "gtk2hs-hello" = dontDistribute super."gtk2hs-hello"; + "gtk2hs-rpn" = dontDistribute super."gtk2hs-rpn"; + "gtk3-mac-integration" = dontDistribute super."gtk3-mac-integration"; + "gtkglext" = dontDistribute super."gtkglext"; + "gtkimageview" = dontDistribute super."gtkimageview"; + "gtkrsync" = dontDistribute super."gtkrsync"; + "gtksourceview2" = dontDistribute super."gtksourceview2"; + "gtksourceview3" = dontDistribute super."gtksourceview3"; + "guarded-rewriting" = dontDistribute super."guarded-rewriting"; + "guess-combinator" = dontDistribute super."guess-combinator"; + "gulcii" = dontDistribute super."gulcii"; + "gutenberg-fibonaccis" = dontDistribute super."gutenberg-fibonaccis"; + "gyah-bin" = dontDistribute super."gyah-bin"; + "h-booru" = dontDistribute super."h-booru"; + "h-gpgme" = dontDistribute super."h-gpgme"; + "h2048" = dontDistribute super."h2048"; + "hArduino" = dontDistribute super."hArduino"; + "hBDD" = dontDistribute super."hBDD"; + "hBDD-CMUBDD" = dontDistribute super."hBDD-CMUBDD"; + "hBDD-CUDD" = dontDistribute super."hBDD-CUDD"; + "hCsound" = dontDistribute super."hCsound"; + "hDFA" = dontDistribute super."hDFA"; + "hF2" = dontDistribute super."hF2"; + "hGelf" = dontDistribute super."hGelf"; + "hLLVM" = dontDistribute super."hLLVM"; + "hMollom" = dontDistribute super."hMollom"; + "hPDB-examples" = dontDistribute super."hPDB-examples"; + "hPushover" = dontDistribute super."hPushover"; + "hR" = dontDistribute super."hR"; + "hRESP" = dontDistribute super."hRESP"; + "hS3" = dontDistribute super."hS3"; + "hScraper" = dontDistribute super."hScraper"; + "hSimpleDB" = dontDistribute super."hSimpleDB"; + "hTalos" = dontDistribute super."hTalos"; + "hTensor" = dontDistribute super."hTensor"; + "hVOIDP" = dontDistribute super."hVOIDP"; + "hXmixer" = dontDistribute super."hXmixer"; + "haar" = dontDistribute super."haar"; + "hacanon-light" = dontDistribute super."hacanon-light"; + "hack" = dontDistribute super."hack"; + "hack-contrib" = dontDistribute super."hack-contrib"; + "hack-contrib-press" = dontDistribute super."hack-contrib-press"; + "hack-frontend-happstack" = dontDistribute super."hack-frontend-happstack"; + "hack-frontend-monadcgi" = dontDistribute super."hack-frontend-monadcgi"; + "hack-handler-cgi" = dontDistribute super."hack-handler-cgi"; + "hack-handler-epoll" = dontDistribute super."hack-handler-epoll"; + "hack-handler-evhttp" = dontDistribute super."hack-handler-evhttp"; + "hack-handler-fastcgi" = dontDistribute super."hack-handler-fastcgi"; + "hack-handler-happstack" = dontDistribute super."hack-handler-happstack"; + "hack-handler-hyena" = dontDistribute super."hack-handler-hyena"; + "hack-handler-kibro" = dontDistribute super."hack-handler-kibro"; + "hack-handler-simpleserver" = dontDistribute super."hack-handler-simpleserver"; + "hack-middleware-cleanpath" = dontDistribute super."hack-middleware-cleanpath"; + "hack-middleware-clientsession" = dontDistribute super."hack-middleware-clientsession"; + "hack-middleware-gzip" = dontDistribute super."hack-middleware-gzip"; + "hack-middleware-jsonp" = dontDistribute super."hack-middleware-jsonp"; + "hack2" = dontDistribute super."hack2"; + "hack2-contrib" = dontDistribute super."hack2-contrib"; + "hack2-contrib-extra" = dontDistribute super."hack2-contrib-extra"; + "hack2-handler-happstack-server" = dontDistribute super."hack2-handler-happstack-server"; + "hack2-handler-mongrel2-http" = dontDistribute super."hack2-handler-mongrel2-http"; + "hack2-handler-snap-server" = dontDistribute super."hack2-handler-snap-server"; + "hack2-handler-warp" = dontDistribute super."hack2-handler-warp"; + "hack2-interface-wai" = dontDistribute super."hack2-interface-wai"; + "hackage-diff" = dontDistribute super."hackage-diff"; + "hackage-plot" = dontDistribute super."hackage-plot"; + "hackage-proxy" = dontDistribute super."hackage-proxy"; + "hackage-repo-tool" = dontDistribute super."hackage-repo-tool"; + "hackage-security" = dontDistribute super."hackage-security"; + "hackage-security-HTTP" = dontDistribute super."hackage-security-HTTP"; + "hackage-server" = dontDistribute super."hackage-server"; + "hackage-sparks" = dontDistribute super."hackage-sparks"; + "hackage2hwn" = dontDistribute super."hackage2hwn"; + "hackage2twitter" = dontDistribute super."hackage2twitter"; + "hackager" = dontDistribute super."hackager"; + "hackernews" = dontDistribute super."hackernews"; + "hackertyper" = dontDistribute super."hackertyper"; + "hackport" = dontDistribute super."hackport"; + "hactor" = dontDistribute super."hactor"; + "hactors" = dontDistribute super."hactors"; + "haddock" = dontDistribute super."haddock"; + "haddock-leksah" = dontDistribute super."haddock-leksah"; + "hadoop-formats" = dontDistribute super."hadoop-formats"; + "hadoop-rpc" = dontDistribute super."hadoop-rpc"; + "hadoop-tools" = dontDistribute super."hadoop-tools"; + "haeredes" = dontDistribute super."haeredes"; + "haggis" = dontDistribute super."haggis"; + "haha" = dontDistribute super."haha"; + "hahp" = dontDistribute super."hahp"; + "haiji" = dontDistribute super."haiji"; + "hailgun" = dontDistribute super."hailgun"; + "hailgun-send" = dontDistribute super."hailgun-send"; + "hails" = dontDistribute super."hails"; + "hails-bin" = dontDistribute super."hails-bin"; + "hairy" = dontDistribute super."hairy"; + "hakaru" = dontDistribute super."hakaru"; + "hake" = dontDistribute super."hake"; + "hakismet" = dontDistribute super."hakismet"; + "hako" = dontDistribute super."hako"; + "hakyll-R" = dontDistribute super."hakyll-R"; + "hakyll-agda" = dontDistribute super."hakyll-agda"; + "hakyll-blaze-templates" = dontDistribute super."hakyll-blaze-templates"; + "hakyll-contrib" = dontDistribute super."hakyll-contrib"; + "hakyll-contrib-hyphenation" = dontDistribute super."hakyll-contrib-hyphenation"; + "hakyll-contrib-links" = dontDistribute super."hakyll-contrib-links"; + "hakyll-convert" = dontDistribute super."hakyll-convert"; + "hakyll-elm" = dontDistribute super."hakyll-elm"; + "hakyll-filestore" = dontDistribute super."hakyll-filestore"; + "hakyll-sass" = dontDistribute super."hakyll-sass"; + "halberd" = dontDistribute super."halberd"; + "halfs" = dontDistribute super."halfs"; + "halipeto" = dontDistribute super."halipeto"; + "halive" = dontDistribute super."halive"; + "halma" = dontDistribute super."halma"; + "haltavista" = dontDistribute super."haltavista"; + "hamid" = dontDistribute super."hamid"; + "hampp" = dontDistribute super."hampp"; + "hamtmap" = dontDistribute super."hamtmap"; + "hamusic" = dontDistribute super."hamusic"; + "handa-gdata" = dontDistribute super."handa-gdata"; + "handa-geodata" = dontDistribute super."handa-geodata"; + "handa-opengl" = dontDistribute super."handa-opengl"; + "handle-like" = dontDistribute super."handle-like"; + "handsy" = dontDistribute super."handsy"; + "handwriting" = dontDistribute super."handwriting"; + "hangman" = dontDistribute super."hangman"; + "hannahci" = dontDistribute super."hannahci"; + "hans" = dontDistribute super."hans"; + "hans-pcap" = dontDistribute super."hans-pcap"; + "hans-pfq" = dontDistribute super."hans-pfq"; + "haphviz" = dontDistribute super."haphviz"; + "happindicator" = dontDistribute super."happindicator"; + "happindicator3" = dontDistribute super."happindicator3"; + "happraise" = dontDistribute super."happraise"; + "happs-hsp" = dontDistribute super."happs-hsp"; + "happs-hsp-template" = dontDistribute super."happs-hsp-template"; + "happs-tutorial" = dontDistribute super."happs-tutorial"; + "happstack" = dontDistribute super."happstack"; + "happstack-auth" = dontDistribute super."happstack-auth"; + "happstack-contrib" = dontDistribute super."happstack-contrib"; + "happstack-data" = dontDistribute super."happstack-data"; + "happstack-dlg" = dontDistribute super."happstack-dlg"; + "happstack-facebook" = dontDistribute super."happstack-facebook"; + "happstack-fastcgi" = dontDistribute super."happstack-fastcgi"; + "happstack-fay" = dontDistribute super."happstack-fay"; + "happstack-fay-ajax" = dontDistribute super."happstack-fay-ajax"; + "happstack-foundation" = dontDistribute super."happstack-foundation"; + "happstack-hamlet" = dontDistribute super."happstack-hamlet"; + "happstack-heist" = dontDistribute super."happstack-heist"; + "happstack-helpers" = dontDistribute super."happstack-helpers"; + "happstack-hstringtemplate" = dontDistribute super."happstack-hstringtemplate"; + "happstack-ixset" = dontDistribute super."happstack-ixset"; + "happstack-lite" = dontDistribute super."happstack-lite"; + "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; + "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; + "happstack-state" = dontDistribute super."happstack-state"; + "happstack-static-routing" = dontDistribute super."happstack-static-routing"; + "happstack-util" = dontDistribute super."happstack-util"; + "happstack-yui" = dontDistribute super."happstack-yui"; + "happy-meta" = dontDistribute super."happy-meta"; + "happybara" = dontDistribute super."happybara"; + "happybara-webkit" = dontDistribute super."happybara-webkit"; + "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; + "har" = dontDistribute super."har"; + "harchive" = dontDistribute super."harchive"; + "hardware-edsl" = dontDistribute super."hardware-edsl"; + "hark" = dontDistribute super."hark"; + "harmony" = dontDistribute super."harmony"; + "haroonga" = dontDistribute super."haroonga"; + "haroonga-httpd" = dontDistribute super."haroonga-httpd"; + "harpy" = dontDistribute super."harpy"; + "has" = dontDistribute super."has"; + "has-th" = dontDistribute super."has-th"; + "hascal" = dontDistribute super."hascal"; + "hascat" = dontDistribute super."hascat"; + "hascat-lib" = dontDistribute super."hascat-lib"; + "hascat-setup" = dontDistribute super."hascat-setup"; + "hascat-system" = dontDistribute super."hascat-system"; + "hash" = dontDistribute super."hash"; + "hashable-generics" = dontDistribute super."hashable-generics"; + "hashabler" = dontDistribute super."hashabler"; + "hashed-storage" = dontDistribute super."hashed-storage"; + "hashids" = dontDistribute super."hashids"; + "hashring" = dontDistribute super."hashring"; + "hashtables-plus" = dontDistribute super."hashtables-plus"; + "hasim" = dontDistribute super."hasim"; + "hask" = dontDistribute super."hask"; + "hask-home" = dontDistribute super."hask-home"; + "haskades" = dontDistribute super."haskades"; + "haskakafka" = dontDistribute super."haskakafka"; + "haskanoid" = dontDistribute super."haskanoid"; + "haskarrow" = dontDistribute super."haskarrow"; + "haskbot-core" = dontDistribute super."haskbot-core"; + "haskdeep" = dontDistribute super."haskdeep"; + "haskdogs" = dontDistribute super."haskdogs"; + "haskeem" = dontDistribute super."haskeem"; + "haskeline" = doDistribute super."haskeline_0_7_2_2"; + "haskeline-class" = dontDistribute super."haskeline-class"; + "haskell-aliyun" = dontDistribute super."haskell-aliyun"; + "haskell-awk" = dontDistribute super."haskell-awk"; + "haskell-bcrypt" = dontDistribute super."haskell-bcrypt"; + "haskell-brainfuck" = dontDistribute super."haskell-brainfuck"; + "haskell-cnc" = dontDistribute super."haskell-cnc"; + "haskell-coffee" = dontDistribute super."haskell-coffee"; + "haskell-compression" = dontDistribute super."haskell-compression"; + "haskell-course-preludes" = dontDistribute super."haskell-course-preludes"; + "haskell-docs" = dontDistribute super."haskell-docs"; + "haskell-exp-parser" = dontDistribute super."haskell-exp-parser"; + "haskell-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-gi" = dontDistribute super."haskell-gi"; + "haskell-gi-base" = dontDistribute super."haskell-gi-base"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; + "haskell-modbus" = dontDistribute super."haskell-modbus"; + "haskell-mpfr" = dontDistribute super."haskell-mpfr"; + "haskell-mpi" = dontDistribute super."haskell-mpi"; + "haskell-names" = dontDistribute super."haskell-names"; + "haskell-openflow" = dontDistribute super."haskell-openflow"; + "haskell-pdf-presenter" = dontDistribute super."haskell-pdf-presenter"; + "haskell-platform-test" = dontDistribute super."haskell-platform-test"; + "haskell-plot" = dontDistribute super."haskell-plot"; + "haskell-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql" = doDistribute super."hasql_0_19_6"; + "hasql-optparse-applicative" = dontDistribute super."hasql-optparse-applicative"; + "hasql-pool" = dontDistribute super."hasql-pool"; + "hasql-postgres" = dontDistribute super."hasql-postgres"; + "hasql-postgres-options" = dontDistribute super."hasql-postgres-options"; + "hasql-th" = dontDistribute super."hasql-th"; + "hasql-transaction" = dontDistribute super."hasql-transaction"; + "hastache-aeson" = dontDistribute super."hastache-aeson"; + "haste" = dontDistribute super."haste"; + "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; + "haste-markup" = dontDistribute super."haste-markup"; + "haste-perch" = dontDistribute super."haste-perch"; + "hastily" = dontDistribute super."hastily"; + "hat" = dontDistribute super."hat"; + "hatex-guide" = dontDistribute super."hatex-guide"; + "hath" = dontDistribute super."hath"; + "hatt" = dontDistribute super."hatt"; + "haverer" = dontDistribute super."haverer"; + "hawitter" = dontDistribute super."hawitter"; + "haxl-amazonka" = dontDistribute super."haxl-amazonka"; + "haxl-facebook" = dontDistribute super."haxl-facebook"; + "haxparse" = dontDistribute super."haxparse"; + "haxr-th" = dontDistribute super."haxr-th"; + "haxy" = dontDistribute super."haxy"; + "hayland" = dontDistribute super."hayland"; + "hayoo-cli" = dontDistribute super."hayoo-cli"; + "hback" = dontDistribute super."hback"; + "hbayes" = dontDistribute super."hbayes"; + "hbb" = dontDistribute super."hbb"; + "hbcd" = dontDistribute super."hbcd"; + "hbeat" = dontDistribute super."hbeat"; + "hblas" = dontDistribute super."hblas"; + "hblock" = dontDistribute super."hblock"; + "hbro" = dontDistribute super."hbro"; + "hbro-contrib" = dontDistribute super."hbro-contrib"; + "hburg" = dontDistribute super."hburg"; + "hcc" = dontDistribute super."hcc"; + "hcg-minus" = dontDistribute super."hcg-minus"; + "hcg-minus-cairo" = dontDistribute super."hcg-minus-cairo"; + "hcheat" = dontDistribute super."hcheat"; + "hchesslib" = dontDistribute super."hchesslib"; + "hcltest" = dontDistribute super."hcltest"; + "hcoap" = dontDistribute super."hcoap"; + "hcron" = dontDistribute super."hcron"; + "hcube" = dontDistribute super."hcube"; + "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; + "hdbc-aeson" = dontDistribute super."hdbc-aeson"; + "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; + "hdbc-tuple" = dontDistribute super."hdbc-tuple"; + "hdbi" = dontDistribute super."hdbi"; + "hdbi-conduit" = dontDistribute super."hdbi-conduit"; + "hdbi-postgresql" = dontDistribute super."hdbi-postgresql"; + "hdbi-sqlite" = dontDistribute super."hdbi-sqlite"; + "hdbi-tests" = dontDistribute super."hdbi-tests"; + "hdf" = dontDistribute super."hdf"; + "hdigest" = dontDistribute super."hdigest"; + "hdirect" = dontDistribute super."hdirect"; + "hdis86" = dontDistribute super."hdis86"; + "hdiscount" = dontDistribute super."hdiscount"; + "hdm" = dontDistribute super."hdm"; + "hdph" = dontDistribute super."hdph"; + "hdph-closure" = dontDistribute super."hdph-closure"; + "hdr-histogram" = dontDistribute super."hdr-histogram"; + "headergen" = dontDistribute super."headergen"; + "heapsort" = dontDistribute super."heapsort"; + "hecc" = dontDistribute super."hecc"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_2"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "hformat" = dontDistribute super."hformat"; + "hfov" = dontDistribute super."hfov"; + "hfractal" = dontDistribute super."hfractal"; + "hfusion" = dontDistribute super."hfusion"; + "hg-buildpackage" = dontDistribute super."hg-buildpackage"; + "hgal" = dontDistribute super."hgal"; + "hgalib" = dontDistribute super."hgalib"; + "hgdbmi" = dontDistribute super."hgdbmi"; + "hgearman" = dontDistribute super."hgearman"; + "hgen" = dontDistribute super."hgen"; + "hgeometric" = dontDistribute super."hgeometric"; + "hgeometry" = dontDistribute super."hgeometry"; + "hgithub" = dontDistribute super."hgithub"; + "hgl-example" = dontDistribute super."hgl-example"; + "hgom" = dontDistribute super."hgom"; + "hgopher" = dontDistribute super."hgopher"; + "hgrev" = dontDistribute super."hgrev"; + "hgrib" = dontDistribute super."hgrib"; + "hharp" = dontDistribute super."hharp"; + "hi" = dontDistribute super."hi"; + "hi3status" = dontDistribute super."hi3status"; + "hiccup" = dontDistribute super."hiccup"; + "hichi" = dontDistribute super."hichi"; + "hieraclus" = dontDistribute super."hieraclus"; + "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; + "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; + "hierarchy" = dontDistribute super."hierarchy"; + "hiernotify" = dontDistribute super."hiernotify"; + "highWaterMark" = dontDistribute super."highWaterMark"; + "higher-leveldb" = dontDistribute super."higher-leveldb"; + "higherorder" = dontDistribute super."higherorder"; + "highlight-versions" = dontDistribute super."highlight-versions"; + "highlighter" = dontDistribute super."highlighter"; + "highlighter2" = dontDistribute super."highlighter2"; + "hills" = dontDistribute super."hills"; + "himerge" = dontDistribute super."himerge"; + "himg" = dontDistribute super."himg"; + "himpy" = dontDistribute super."himpy"; + "hinduce-associations-apriori" = dontDistribute super."hinduce-associations-apriori"; + "hinduce-classifier" = dontDistribute super."hinduce-classifier"; + "hinduce-classifier-decisiontree" = dontDistribute super."hinduce-classifier-decisiontree"; + "hinduce-examples" = dontDistribute super."hinduce-examples"; + "hinduce-missingh" = dontDistribute super."hinduce-missingh"; + "hinquire" = dontDistribute super."hinquire"; + "hinstaller" = dontDistribute super."hinstaller"; + "hint" = doDistribute super."hint_0_4_3"; + "hint-server" = dontDistribute super."hint-server"; + "hinvaders" = dontDistribute super."hinvaders"; + "hinze-streams" = dontDistribute super."hinze-streams"; + "hip" = dontDistribute super."hip"; + "hipbot" = dontDistribute super."hipbot"; + "hipchat-hs" = dontDistribute super."hipchat-hs"; + "hipe" = dontDistribute super."hipe"; + "hips" = dontDistribute super."hips"; + "hircules" = dontDistribute super."hircules"; + "hirt" = dontDistribute super."hirt"; + "hissmetrics" = dontDistribute super."hissmetrics"; + "hist-pl" = dontDistribute super."hist-pl"; + "hist-pl-dawg" = dontDistribute super."hist-pl-dawg"; + "hist-pl-fusion" = dontDistribute super."hist-pl-fusion"; + "hist-pl-lexicon" = dontDistribute super."hist-pl-lexicon"; + "hist-pl-lmf" = dontDistribute super."hist-pl-lmf"; + "hist-pl-transliter" = dontDistribute super."hist-pl-transliter"; + "hist-pl-types" = dontDistribute super."hist-pl-types"; + "histogram-fill-binary" = dontDistribute super."histogram-fill-binary"; + "histogram-fill-cereal" = dontDistribute super."histogram-fill-cereal"; + "historian" = dontDistribute super."historian"; + "hjcase" = dontDistribute super."hjcase"; + "hjpath" = dontDistribute super."hjpath"; + "hjs" = dontDistribute super."hjs"; + "hjson" = dontDistribute super."hjson"; + "hjson-query" = dontDistribute super."hjson-query"; + "hjsonpointer" = dontDistribute super."hjsonpointer"; + "hjsonschema" = dontDistribute super."hjsonschema"; + "hkdf" = dontDistribute super."hkdf"; + "hlatex" = dontDistribute super."hlatex"; + "hlbfgsb" = dontDistribute super."hlbfgsb"; + "hlcm" = dontDistribute super."hlcm"; + "hleap" = dontDistribute super."hleap"; + "hledger-chart" = dontDistribute super."hledger-chart"; + "hledger-diff" = dontDistribute super."hledger-diff"; + "hledger-irr" = dontDistribute super."hledger-irr"; + "hledger-vty" = dontDistribute super."hledger-vty"; + "hlibBladeRF" = dontDistribute super."hlibBladeRF"; + "hlibev" = dontDistribute super."hlibev"; + "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix-banded" = dontDistribute super."hmatrix-banded"; + "hmatrix-csv" = dontDistribute super."hmatrix-csv"; + "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; + "hmatrix-mmap" = dontDistribute super."hmatrix-mmap"; + "hmatrix-nipals" = dontDistribute super."hmatrix-nipals"; + "hmatrix-quadprogpp" = dontDistribute super."hmatrix-quadprogpp"; + "hmatrix-repa" = dontDistribute super."hmatrix-repa"; + "hmatrix-special" = dontDistribute super."hmatrix-special"; + "hmatrix-static" = dontDistribute super."hmatrix-static"; + "hmatrix-svdlibc" = dontDistribute super."hmatrix-svdlibc"; + "hmatrix-syntax" = dontDistribute super."hmatrix-syntax"; + "hmatrix-tests" = dontDistribute super."hmatrix-tests"; + "hmeap" = dontDistribute super."hmeap"; + "hmeap-utils" = dontDistribute super."hmeap-utils"; + "hmemdb" = dontDistribute super."hmemdb"; + "hmenu" = dontDistribute super."hmenu"; + "hmidi" = dontDistribute super."hmidi"; + "hmk" = dontDistribute super."hmk"; + "hmm" = dontDistribute super."hmm"; + "hmm-hmatrix" = dontDistribute super."hmm-hmatrix"; + "hmp3" = dontDistribute super."hmp3"; + "hmpfr" = dontDistribute super."hmpfr"; + "hmt" = dontDistribute super."hmt"; + "hmt-diagrams" = dontDistribute super."hmt-diagrams"; + "hmumps" = dontDistribute super."hmumps"; + "hnetcdf" = dontDistribute super."hnetcdf"; + "hnix" = dontDistribute super."hnix"; + "hnn" = dontDistribute super."hnn"; + "hnop" = dontDistribute super."hnop"; + "ho-rewriting" = dontDistribute super."ho-rewriting"; + "hoauth" = dontDistribute super."hoauth"; + "hob" = dontDistribute super."hob"; + "hobbes" = dontDistribute super."hobbes"; + "hobbits" = dontDistribute super."hobbits"; + "hoe" = dontDistribute super."hoe"; + "hofix-mtl" = dontDistribute super."hofix-mtl"; + "hog" = dontDistribute super."hog"; + "hogg" = dontDistribute super."hogg"; + "hogre" = dontDistribute super."hogre"; + "hogre-examples" = dontDistribute super."hogre-examples"; + "hois" = dontDistribute super."hois"; + "hoist-error" = dontDistribute super."hoist-error"; + "hold-em" = dontDistribute super."hold-em"; + "hole" = dontDistribute super."hole"; + "holey-format" = dontDistribute super."holey-format"; + "homeomorphic" = dontDistribute super."homeomorphic"; + "hommage" = dontDistribute super."hommage"; + "hommage-ds" = dontDistribute super."hommage-ds"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "hoppy-generator" = dontDistribute super."hoppy-generator"; + "hoppy-runtime" = dontDistribute super."hoppy-runtime"; + "hoppy-std" = dontDistribute super."hoppy-std"; + "hops" = dontDistribute super."hops"; + "hoq" = dontDistribute super."hoq"; + "horizon" = dontDistribute super."horizon"; + "hosc" = dontDistribute super."hosc"; + "hosc-json" = dontDistribute super."hosc-json"; + "hosc-utils" = dontDistribute super."hosc-utils"; + "hosts-server" = dontDistribute super."hosts-server"; + "hothasktags" = dontDistribute super."hothasktags"; + "hotswap" = dontDistribute super."hotswap"; + "hourglass-fuzzy-parsing" = dontDistribute super."hourglass-fuzzy-parsing"; + "hp2any-core" = dontDistribute super."hp2any-core"; + "hp2any-graph" = dontDistribute super."hp2any-graph"; + "hp2any-manager" = dontDistribute super."hp2any-manager"; + "hp2html" = dontDistribute super."hp2html"; + "hp2pretty" = dontDistribute super."hp2pretty"; + "hpack" = dontDistribute super."hpack"; + "hpaco" = dontDistribute super."hpaco"; + "hpaco-lib" = dontDistribute super."hpaco-lib"; + "hpage" = dontDistribute super."hpage"; + "hpapi" = dontDistribute super."hpapi"; + "hpaste" = dontDistribute super."hpaste"; + "hpasteit" = dontDistribute super."hpasteit"; + "hpc-strobe" = dontDistribute super."hpc-strobe"; + "hpc-tracer" = dontDistribute super."hpc-tracer"; + "hpdft" = dontDistribute super."hpdft"; + "hplayground" = dontDistribute super."hplayground"; + "hplaylist" = dontDistribute super."hplaylist"; + "hpodder" = dontDistribute super."hpodder"; + "hpp" = dontDistribute super."hpp"; + "hpqtypes" = dontDistribute super."hpqtypes"; + "hprotoc" = doDistribute super."hprotoc_2_1_12"; + "hprotoc-fork" = dontDistribute super."hprotoc-fork"; + "hps" = dontDistribute super."hps"; + "hps-cairo" = dontDistribute super."hps-cairo"; + "hps-kmeans" = dontDistribute super."hps-kmeans"; + "hpuz" = dontDistribute super."hpuz"; + "hpygments" = dontDistribute super."hpygments"; + "hpylos" = dontDistribute super."hpylos"; + "hpyrg" = dontDistribute super."hpyrg"; + "hquantlib" = dontDistribute super."hquantlib"; + "hquery" = dontDistribute super."hquery"; + "hranker" = dontDistribute super."hranker"; + "hreader" = dontDistribute super."hreader"; + "hricket" = dontDistribute super."hricket"; + "hruby" = dontDistribute super."hruby"; + "hs-GeoIP" = dontDistribute super."hs-GeoIP"; + "hs-blake2" = dontDistribute super."hs-blake2"; + "hs-captcha" = dontDistribute super."hs-captcha"; + "hs-carbon" = dontDistribute super."hs-carbon"; + "hs-carbon-examples" = dontDistribute super."hs-carbon-examples"; + "hs-cdb" = dontDistribute super."hs-cdb"; + "hs-dotnet" = dontDistribute super."hs-dotnet"; + "hs-duktape" = dontDistribute super."hs-duktape"; + "hs-excelx" = dontDistribute super."hs-excelx"; + "hs-ffmpeg" = dontDistribute super."hs-ffmpeg"; + "hs-fltk" = dontDistribute super."hs-fltk"; + "hs-gchart" = dontDistribute super."hs-gchart"; + "hs-gen-iface" = dontDistribute super."hs-gen-iface"; + "hs-gizapp" = dontDistribute super."hs-gizapp"; + "hs-inspector" = dontDistribute super."hs-inspector"; + "hs-java" = dontDistribute super."hs-java"; + "hs-json-rpc" = dontDistribute super."hs-json-rpc"; + "hs-logo" = dontDistribute super."hs-logo"; + "hs-mesos" = dontDistribute super."hs-mesos"; + "hs-nombre-generator" = dontDistribute super."hs-nombre-generator"; + "hs-pgms" = dontDistribute super."hs-pgms"; + "hs-php-session" = dontDistribute super."hs-php-session"; + "hs-pkg-config" = dontDistribute super."hs-pkg-config"; + "hs-pkpass" = dontDistribute super."hs-pkpass"; + "hs-re" = dontDistribute super."hs-re"; + "hs-scrape" = dontDistribute super."hs-scrape"; + "hs-twitter" = dontDistribute super."hs-twitter"; + "hs-twitterarchiver" = dontDistribute super."hs-twitterarchiver"; + "hs-vcard" = dontDistribute super."hs-vcard"; + "hs2048" = dontDistribute super."hs2048"; + "hs2bf" = dontDistribute super."hs2bf"; + "hs2dot" = dontDistribute super."hs2dot"; + "hsConfigure" = dontDistribute super."hsConfigure"; + "hsSqlite3" = dontDistribute super."hsSqlite3"; + "hsXenCtrl" = dontDistribute super."hsXenCtrl"; + "hsay" = dontDistribute super."hsay"; + "hsb2hs" = dontDistribute super."hsb2hs"; + "hsbackup" = dontDistribute super."hsbackup"; + "hsbencher" = dontDistribute super."hsbencher"; + "hsbencher-codespeed" = dontDistribute super."hsbencher-codespeed"; + "hsbencher-fusion" = dontDistribute super."hsbencher-fusion"; + "hsc2hs" = dontDistribute super."hsc2hs"; + "hsc3" = dontDistribute super."hsc3"; + "hsc3-auditor" = dontDistribute super."hsc3-auditor"; + "hsc3-cairo" = dontDistribute super."hsc3-cairo"; + "hsc3-data" = dontDistribute super."hsc3-data"; + "hsc3-db" = dontDistribute super."hsc3-db"; + "hsc3-dot" = dontDistribute super."hsc3-dot"; + "hsc3-forth" = dontDistribute super."hsc3-forth"; + "hsc3-graphs" = dontDistribute super."hsc3-graphs"; + "hsc3-lang" = dontDistribute super."hsc3-lang"; + "hsc3-lisp" = dontDistribute super."hsc3-lisp"; + "hsc3-plot" = dontDistribute super."hsc3-plot"; + "hsc3-process" = dontDistribute super."hsc3-process"; + "hsc3-rec" = dontDistribute super."hsc3-rec"; + "hsc3-rw" = dontDistribute super."hsc3-rw"; + "hsc3-server" = dontDistribute super."hsc3-server"; + "hsc3-sf" = dontDistribute super."hsc3-sf"; + "hsc3-sf-hsndfile" = dontDistribute super."hsc3-sf-hsndfile"; + "hsc3-unsafe" = dontDistribute super."hsc3-unsafe"; + "hsc3-utils" = dontDistribute super."hsc3-utils"; + "hscamwire" = dontDistribute super."hscamwire"; + "hscassandra" = dontDistribute super."hscassandra"; + "hscd" = dontDistribute super."hscd"; + "hsclock" = dontDistribute super."hsclock"; + "hscolour" = doDistribute super."hscolour_1_23"; + "hscope" = dontDistribute super."hscope"; + "hscrtmpl" = dontDistribute super."hscrtmpl"; + "hscuid" = dontDistribute super."hscuid"; + "hscurses" = dontDistribute super."hscurses"; + "hscurses-fish-ex" = dontDistribute super."hscurses-fish-ex"; + "hsdev" = dontDistribute super."hsdev"; + "hsdif" = dontDistribute super."hsdif"; + "hsdip" = dontDistribute super."hsdip"; + "hsdns" = dontDistribute super."hsdns"; + "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsemail-ns" = dontDistribute super."hsemail-ns"; + "hsenv" = dontDistribute super."hsenv"; + "hserv" = dontDistribute super."hserv"; + "hset" = dontDistribute super."hset"; + "hsfacter" = dontDistribute super."hsfacter"; + "hsfcsh" = dontDistribute super."hsfcsh"; + "hsfilt" = dontDistribute super."hsfilt"; + "hsgnutls" = dontDistribute super."hsgnutls"; + "hsgnutls-yj" = dontDistribute super."hsgnutls-yj"; + "hsgsom" = dontDistribute super."hsgsom"; + "hsgtd" = dontDistribute super."hsgtd"; + "hsharc" = dontDistribute super."hsharc"; + "hsilop" = dontDistribute super."hsilop"; + "hsimport" = dontDistribute super."hsimport"; + "hsini" = dontDistribute super."hsini"; + "hskeleton" = dontDistribute super."hskeleton"; + "hslackbuilder" = dontDistribute super."hslackbuilder"; + "hslibsvm" = dontDistribute super."hslibsvm"; + "hslinks" = dontDistribute super."hslinks"; + "hslogger-reader" = dontDistribute super."hslogger-reader"; + "hslogger-template" = dontDistribute super."hslogger-template"; + "hslogger4j" = dontDistribute super."hslogger4j"; + "hslogstash" = dontDistribute super."hslogstash"; + "hsmagick" = dontDistribute super."hsmagick"; + "hsmisc" = dontDistribute super."hsmisc"; + "hsmtpclient" = dontDistribute super."hsmtpclient"; + "hsndfile-storablevector" = dontDistribute super."hsndfile-storablevector"; + "hsnock" = dontDistribute super."hsnock"; + "hsnoise" = dontDistribute super."hsnoise"; + "hsns" = dontDistribute super."hsns"; + "hsnsq" = dontDistribute super."hsnsq"; + "hsntp" = dontDistribute super."hsntp"; + "hsoptions" = dontDistribute super."hsoptions"; + "hsp-cgi" = dontDistribute super."hsp-cgi"; + "hsparklines" = dontDistribute super."hsparklines"; + "hsparql" = dontDistribute super."hsparql"; + "hspear" = dontDistribute super."hspear"; + "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; + "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; + "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-experimental" = dontDistribute super."hspec-experimental"; + "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-monad-control" = dontDistribute super."hspec-monad-control"; + "hspec-server" = dontDistribute super."hspec-server"; + "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; + "hspec-test-framework" = dontDistribute super."hspec-test-framework"; + "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; + "hspec-test-sandbox" = dontDistribute super."hspec-test-sandbox"; + "hspec-wai" = doDistribute super."hspec-wai_0_6_5"; + "hspec2" = dontDistribute super."hspec2"; + "hspr-sh" = dontDistribute super."hspr-sh"; + "hspread" = dontDistribute super."hspread"; + "hspresent" = dontDistribute super."hspresent"; + "hsprocess" = dontDistribute super."hsprocess"; + "hsql" = dontDistribute super."hsql"; + "hsql-mysql" = dontDistribute super."hsql-mysql"; + "hsql-odbc" = dontDistribute super."hsql-odbc"; + "hsql-postgresql" = dontDistribute super."hsql-postgresql"; + "hsql-sqlite3" = dontDistribute super."hsql-sqlite3"; + "hsqml" = dontDistribute super."hsqml"; + "hsqml-datamodel" = dontDistribute super."hsqml-datamodel"; + "hsqml-datamodel-vinyl" = dontDistribute super."hsqml-datamodel-vinyl"; + "hsqml-demo-morris" = dontDistribute super."hsqml-demo-morris"; + "hsqml-demo-notes" = dontDistribute super."hsqml-demo-notes"; + "hsqml-demo-samples" = dontDistribute super."hsqml-demo-samples"; + "hsqml-morris" = dontDistribute super."hsqml-morris"; + "hsreadability" = dontDistribute super."hsreadability"; + "hsseccomp" = dontDistribute super."hsseccomp"; + "hsshellscript" = dontDistribute super."hsshellscript"; + "hssourceinfo" = dontDistribute super."hssourceinfo"; + "hssqlppp" = dontDistribute super."hssqlppp"; + "hstats" = dontDistribute super."hstats"; + "hstest" = dontDistribute super."hstest"; + "hstidy" = dontDistribute super."hstidy"; + "hstorchat" = dontDistribute super."hstorchat"; + "hstradeking" = dontDistribute super."hstradeking"; + "hstyle" = dontDistribute super."hstyle"; + "hstzaar" = dontDistribute super."hstzaar"; + "hsubconvert" = dontDistribute super."hsubconvert"; + "hsverilog" = dontDistribute super."hsverilog"; + "hswip" = dontDistribute super."hswip"; + "hsx" = dontDistribute super."hsx"; + "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htoml" = dontDistribute super."htoml"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "http2" = doDistribute super."http2_1_4_5"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; + "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; + "hws" = dontDistribute super."hws"; + "hwsl2" = dontDistribute super."hwsl2"; + "hwsl2-bytevector" = dontDistribute super."hwsl2-bytevector"; + "hwsl2-reducers" = dontDistribute super."hwsl2-reducers"; + "hx" = dontDistribute super."hx"; + "hxmppc" = dontDistribute super."hxmppc"; + "hxournal" = dontDistribute super."hxournal"; + "hxt-binary" = dontDistribute super."hxt-binary"; + "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-extras" = dontDistribute super."hxt-extras"; + "hxt-filter" = dontDistribute super."hxt-filter"; + "hxt-xpath" = dontDistribute super."hxt-xpath"; + "hxt-xslt" = dontDistribute super."hxt-xslt"; + "hxthelper" = dontDistribute super."hxthelper"; + "hxweb" = dontDistribute super."hxweb"; + "hyahtzee" = dontDistribute super."hyahtzee"; + "hyakko" = dontDistribute super."hyakko"; + "hybrid" = dontDistribute super."hybrid"; + "hydra-hs" = dontDistribute super."hydra-hs"; + "hydra-print" = dontDistribute super."hydra-print"; + "hydrogen" = dontDistribute super."hydrogen"; + "hydrogen-cli" = dontDistribute super."hydrogen-cli"; + "hydrogen-cli-args" = dontDistribute super."hydrogen-cli-args"; + "hydrogen-data" = dontDistribute super."hydrogen-data"; + "hydrogen-multimap" = dontDistribute super."hydrogen-multimap"; + "hydrogen-parsing" = dontDistribute super."hydrogen-parsing"; + "hydrogen-prelude" = dontDistribute super."hydrogen-prelude"; + "hydrogen-prelude-parsec" = dontDistribute super."hydrogen-prelude-parsec"; + "hydrogen-syntax" = dontDistribute super."hydrogen-syntax"; + "hydrogen-util" = dontDistribute super."hydrogen-util"; + "hydrogen-version" = dontDistribute super."hydrogen-version"; + "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "idris" = dontDistribute super."idris"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ig" = doDistribute super."ig_0_6_1"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-inline-r" = dontDistribute super."ihaskell-inline-r"; + "ihaskell-parsec" = dontDistribute super."ihaskell-parsec"; + "ihaskell-plot" = dontDistribute super."ihaskell-plot"; + "ihaskell-widgets" = dontDistribute super."ihaskell-widgets"; + "ihttp" = dontDistribute super."ihttp"; + "illuminate" = dontDistribute super."illuminate"; + "image-type" = dontDistribute super."image-type"; + "imagefilters" = dontDistribute super."imagefilters"; + "imagemagick" = dontDistribute super."imagemagick"; + "imagepaste" = dontDistribute super."imagepaste"; + "imap" = dontDistribute super."imap"; + "imapget" = dontDistribute super."imapget"; + "imbib" = dontDistribute super."imbib"; + "imgurder" = dontDistribute super."imgurder"; + "imm" = dontDistribute super."imm"; + "imparse" = dontDistribute super."imparse"; + "imperative-edsl" = dontDistribute super."imperative-edsl"; + "imperative-edsl-vhdl" = dontDistribute super."imperative-edsl-vhdl"; + "implicit" = dontDistribute super."implicit"; + "implicit-logging" = dontDistribute super."implicit-logging"; + "implicit-params" = dontDistribute super."implicit-params"; + "imports" = dontDistribute super."imports"; + "impossible" = dontDistribute super."impossible"; + "improve" = dontDistribute super."improve"; + "inc-ref" = dontDistribute super."inc-ref"; + "inch" = dontDistribute super."inch"; + "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-sat-solver" = dontDistribute super."incremental-sat-solver"; + "increments" = dontDistribute super."increments"; + "indentation" = dontDistribute super."indentation"; + "indentparser" = dontDistribute super."indentparser"; + "index-core" = dontDistribute super."index-core"; + "indexed" = dontDistribute super."indexed"; + "indexed-do-notation" = dontDistribute super."indexed-do-notation"; + "indexed-extras" = dontDistribute super."indexed-extras"; + "indexed-free" = dontDistribute super."indexed-free"; + "indian-language-font-converter" = dontDistribute super."indian-language-font-converter"; + "indices" = dontDistribute super."indices"; + "indieweb-algorithms" = dontDistribute super."indieweb-algorithms"; + "inf-interval" = dontDistribute super."inf-interval"; + "infer-upstream" = dontDistribute super."infer-upstream"; + "infernu" = dontDistribute super."infernu"; + "infinite-search" = dontDistribute super."infinite-search"; + "infinity" = dontDistribute super."infinity"; + "infix" = dontDistribute super."infix"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inquire" = dontDistribute super."inquire"; + "insert-ordered-containers" = dontDistribute super."insert-ordered-containers"; + "inserts" = dontDistribute super."inserts"; + "inspection-proxy" = dontDistribute super."inspection-proxy"; + "instant-aeson" = dontDistribute super."instant-aeson"; + "instant-bytes" = dontDistribute super."instant-bytes"; + "instant-deepseq" = dontDistribute super."instant-deepseq"; + "instant-generics" = dontDistribute super."instant-generics"; + "instant-hashable" = dontDistribute super."instant-hashable"; + "instant-zipper" = dontDistribute super."instant-zipper"; + "instinct" = dontDistribute super."instinct"; + "instrument-chord" = dontDistribute super."instrument-chord"; + "int-cast" = dontDistribute super."int-cast"; + "integer-pure" = dontDistribute super."integer-pure"; + "intel-aes" = dontDistribute super."intel-aes"; + "interchangeable" = dontDistribute super."interchangeable"; + "interleavableGen" = dontDistribute super."interleavableGen"; + "interleavableIO" = dontDistribute super."interleavableIO"; + "interleave" = dontDistribute super."interleave"; + "interlude" = dontDistribute super."interlude"; + "intern" = dontDistribute super."intern"; + "internetmarke" = dontDistribute super."internetmarke"; + "interpol" = dontDistribute super."interpol"; + "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; + "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; + "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; + "intricacy" = dontDistribute super."intricacy"; + "intset" = dontDistribute super."intset"; + "invertible-syntax" = dontDistribute super."invertible-syntax"; + "io-capture" = dontDistribute super."io-capture"; + "io-reactive" = dontDistribute super."io-reactive"; + "io-streams-http" = dontDistribute super."io-streams-http"; + "io-throttle" = dontDistribute super."io-throttle"; + "ioctl" = dontDistribute super."ioctl"; + "ioref-stable" = dontDistribute super."ioref-stable"; + "iothread" = dontDistribute super."iothread"; + "iotransaction" = dontDistribute super."iotransaction"; + "ip-quoter" = dontDistribute super."ip-quoter"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = dontDistribute super."irc-dcc"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "irc-fun-types" = dontDistribute super."irc-fun-types"; + "ircbot" = dontDistribute super."ircbot"; + "ircbouncer" = dontDistribute super."ircbouncer"; + "ireal" = dontDistribute super."ireal"; + "iridium" = dontDistribute super."iridium"; + "iron-mq" = dontDistribute super."iron-mq"; + "ironforge" = dontDistribute super."ironforge"; + "is" = dontDistribute super."is"; + "isdicom" = dontDistribute super."isdicom"; + "isevaluated" = dontDistribute super."isevaluated"; + "isiz" = dontDistribute super."isiz"; + "ismtp" = dontDistribute super."ismtp"; + "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; + "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; + "itanium-abi" = dontDistribute super."itanium-abi"; + "iter-stats" = dontDistribute super."iter-stats"; + "iterIO" = dontDistribute super."iterIO"; + "iteratee" = dontDistribute super."iteratee"; + "iteratee-compress" = dontDistribute super."iteratee-compress"; + "iteratee-mtl" = dontDistribute super."iteratee-mtl"; + "iteratee-parsec" = dontDistribute super."iteratee-parsec"; + "iteratee-stm" = dontDistribute super."iteratee-stm"; + "iterio-server" = dontDistribute super."iterio-server"; + "ivar-simple" = dontDistribute super."ivar-simple"; + "ivor" = dontDistribute super."ivor"; + "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; + "ivory-backend-c" = dontDistribute super."ivory-backend-c"; + "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; + "ivory-examples" = dontDistribute super."ivory-examples"; + "ivory-hw" = dontDistribute super."ivory-hw"; + "ivory-opts" = dontDistribute super."ivory-opts"; + "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; + "ivory-stdlib" = dontDistribute super."ivory-stdlib"; + "ivy-web" = dontDistribute super."ivy-web"; + "ixdopp" = dontDistribute super."ixdopp"; + "ixmonad" = dontDistribute super."ixmonad"; + "iyql" = dontDistribute super."iyql"; + "j2hs" = dontDistribute super."j2hs"; + "ja-base-extra" = dontDistribute super."ja-base-extra"; + "jack" = dontDistribute super."jack"; + "jack-bindings" = dontDistribute super."jack-bindings"; + "jackminimix" = dontDistribute super."jackminimix"; + "jacobi-roots" = dontDistribute super."jacobi-roots"; + "jail" = dontDistribute super."jail"; + "jailbreak-cabal" = dontDistribute super."jailbreak-cabal"; + "jalaali" = dontDistribute super."jalaali"; + "jalla" = dontDistribute super."jalla"; + "jammittools" = dontDistribute super."jammittools"; + "jarfind" = dontDistribute super."jarfind"; + "java-bridge" = dontDistribute super."java-bridge"; + "java-bridge-extras" = dontDistribute super."java-bridge-extras"; + "java-character" = dontDistribute super."java-character"; + "java-poker" = dontDistribute super."java-poker"; + "java-reflect" = dontDistribute super."java-reflect"; + "javaclass" = dontDistribute super."javaclass"; + "javasf" = dontDistribute super."javasf"; + "javav" = dontDistribute super."javav"; + "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; + "jdi" = dontDistribute super."jdi"; + "jespresso" = dontDistribute super."jespresso"; + "jobqueue" = dontDistribute super."jobqueue"; + "join" = dontDistribute super."join"; + "joinlist" = dontDistribute super."joinlist"; + "jonathanscard" = dontDistribute super."jonathanscard"; + "jort" = dontDistribute super."jort"; + "jose" = dontDistribute super."jose"; + "jpeg" = dontDistribute super."jpeg"; + "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_2"; + "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-hello" = dontDistribute super."jsaddle-hello"; + "jsc" = dontDistribute super."jsc"; + "jsmw" = dontDistribute super."jsmw"; + "json-assertions" = dontDistribute super."json-assertions"; + "json-ast" = dontDistribute super."json-ast"; + "json-ast-quickcheck" = dontDistribute super."json-ast-quickcheck"; + "json-b" = dontDistribute super."json-b"; + "json-encoder" = dontDistribute super."json-encoder"; + "json-enumerator" = dontDistribute super."json-enumerator"; + "json-extra" = dontDistribute super."json-extra"; + "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; + "json-litobj" = dontDistribute super."json-litobj"; + "json-pointer" = dontDistribute super."json-pointer"; + "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; + "json-python" = dontDistribute super."json-python"; + "json-qq" = dontDistribute super."json-qq"; + "json-rpc" = dontDistribute super."json-rpc"; + "json-rpc-client" = dontDistribute super."json-rpc-client"; + "json-rpc-server" = dontDistribute super."json-rpc-server"; + "json-sop" = dontDistribute super."json-sop"; + "json-state" = dontDistribute super."json-state"; + "json-stream" = dontDistribute super."json-stream"; + "json-togo" = dontDistribute super."json-togo"; + "json-tools" = dontDistribute super."json-tools"; + "json-types" = dontDistribute super."json-types"; + "json2" = dontDistribute super."json2"; + "json2-hdbc" = dontDistribute super."json2-hdbc"; + "json2-types" = dontDistribute super."json2-types"; + "json2yaml" = dontDistribute super."json2yaml"; + "jsonresume" = dontDistribute super."jsonresume"; + "jsonrpc-conduit" = dontDistribute super."jsonrpc-conduit"; + "jsonschema-gen" = dontDistribute super."jsonschema-gen"; + "jsonsql" = dontDistribute super."jsonsql"; + "jsontsv" = dontDistribute super."jsontsv"; + "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; + "judy" = dontDistribute super."judy"; + "jukebox" = dontDistribute super."jukebox"; + "jump" = dontDistribute super."jump"; + "jumpthefive" = dontDistribute super."jumpthefive"; + "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_6_0"; + "kademlia" = dontDistribute super."kademlia"; + "kafka-client" = dontDistribute super."kafka-client"; + "kangaroo" = dontDistribute super."kangaroo"; + "kanji" = dontDistribute super."kanji"; + "kansas-lava" = dontDistribute super."kansas-lava"; + "kansas-lava-cores" = dontDistribute super."kansas-lava-cores"; + "kansas-lava-papilio" = dontDistribute super."kansas-lava-papilio"; + "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; + "karakuri" = dontDistribute super."karakuri"; + "karver" = dontDistribute super."karver"; + "katip" = dontDistribute super."katip"; + "katip-elasticsearch" = dontDistribute super."katip-elasticsearch"; + "katt" = dontDistribute super."katt"; + "kazura-queue" = dontDistribute super."kazura-queue"; + "kbq-gu" = dontDistribute super."kbq-gu"; + "kd-tree" = dontDistribute super."kd-tree"; + "kdesrc-build-extra" = dontDistribute super."kdesrc-build-extra"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "lackey" = dontDistribute super."lackey"; + "lagrangian" = dontDistribute super."lagrangian"; + "laika" = dontDistribute super."laika"; + "lambda-ast" = dontDistribute super."lambda-ast"; + "lambda-bridge" = dontDistribute super."lambda-bridge"; + "lambda-canvas" = dontDistribute super."lambda-canvas"; + "lambda-devs" = dontDistribute super."lambda-devs"; + "lambda-options" = dontDistribute super."lambda-options"; + "lambda-placeholders" = dontDistribute super."lambda-placeholders"; + "lambda-toolbox" = dontDistribute super."lambda-toolbox"; + "lambda2js" = dontDistribute super."lambda2js"; + "lambdaBase" = dontDistribute super."lambdaBase"; + "lambdaFeed" = dontDistribute super."lambdaFeed"; + "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = dontDistribute super."lambdabot"; + "lambdabot-core" = dontDistribute super."lambdabot-core"; + "lambdabot-haskell-plugins" = dontDistribute super."lambdabot-haskell-plugins"; + "lambdabot-irc-plugins" = dontDistribute super."lambdabot-irc-plugins"; + "lambdabot-misc-plugins" = dontDistribute super."lambdabot-misc-plugins"; + "lambdabot-novelty-plugins" = dontDistribute super."lambdabot-novelty-plugins"; + "lambdabot-reference-plugins" = dontDistribute super."lambdabot-reference-plugins"; + "lambdabot-social-plugins" = dontDistribute super."lambdabot-social-plugins"; + "lambdabot-trusted" = dontDistribute super."lambdabot-trusted"; + "lambdabot-utils" = dontDistribute super."lambdabot-utils"; + "lambdacat" = dontDistribute super."lambdacat"; + "lambdacms-core" = dontDistribute super."lambdacms-core"; + "lambdacms-media" = dontDistribute super."lambdacms-media"; + "lambdacube" = dontDistribute super."lambdacube"; + "lambdacube-bullet" = dontDistribute super."lambdacube-bullet"; + "lambdacube-compiler" = dontDistribute super."lambdacube-compiler"; + "lambdacube-core" = dontDistribute super."lambdacube-core"; + "lambdacube-edsl" = dontDistribute super."lambdacube-edsl"; + "lambdacube-engine" = dontDistribute super."lambdacube-engine"; + "lambdacube-examples" = dontDistribute super."lambdacube-examples"; + "lambdacube-gl" = dontDistribute super."lambdacube-gl"; + "lambdacube-ir" = dontDistribute super."lambdacube-ir"; + "lambdacube-samples" = dontDistribute super."lambdacube-samples"; + "lambdatex" = dontDistribute super."lambdatex"; + "lambdatwit" = dontDistribute super."lambdatwit"; + "lambdiff" = dontDistribute super."lambdiff"; + "lame-tester" = dontDistribute super."lame-tester"; + "language-asn1" = dontDistribute super."language-asn1"; + "language-bash" = dontDistribute super."language-bash"; + "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; + "language-c-comments" = dontDistribute super."language-c-comments"; + "language-c-inline" = dontDistribute super."language-c-inline"; + "language-c-quote" = dontDistribute super."language-c-quote"; + "language-cil" = dontDistribute super."language-cil"; + "language-css" = dontDistribute super."language-css"; + "language-dot" = dontDistribute super."language-dot"; + "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; + "language-eiffel" = dontDistribute super."language-eiffel"; + "language-fortran" = dontDistribute super."language-fortran"; + "language-gcl" = dontDistribute super."language-gcl"; + "language-go" = dontDistribute super."language-go"; + "language-guess" = dontDistribute super."language-guess"; + "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-kort" = dontDistribute super."language-kort"; + "language-lua" = dontDistribute super."language-lua"; + "language-lua-qq" = dontDistribute super."language-lua-qq"; + "language-mixal" = dontDistribute super."language-mixal"; + "language-objc" = dontDistribute super."language-objc"; + "language-openscad" = dontDistribute super."language-openscad"; + "language-pig" = dontDistribute super."language-pig"; + "language-puppet" = dontDistribute super."language-puppet"; + "language-python" = dontDistribute super."language-python"; + "language-python-colour" = dontDistribute super."language-python-colour"; + "language-python-test" = dontDistribute super."language-python-test"; + "language-qux" = dontDistribute super."language-qux"; + "language-sh" = dontDistribute super."language-sh"; + "language-slice" = dontDistribute super."language-slice"; + "language-spelling" = dontDistribute super."language-spelling"; + "language-sqlite" = dontDistribute super."language-sqlite"; + "language-thrift" = doDistribute super."language-thrift_0_7_0_1"; + "language-typescript" = dontDistribute super."language-typescript"; + "language-vhdl" = dontDistribute super."language-vhdl"; + "lat" = dontDistribute super."lat"; + "latest-npm-version" = dontDistribute super."latest-npm-version"; + "latex" = dontDistribute super."latex"; + "launchpad-control" = dontDistribute super."launchpad-control"; + "lax" = dontDistribute super."lax"; + "layers" = dontDistribute super."layers"; + "layers-game" = dontDistribute super."layers-game"; + "layout" = dontDistribute super."layout"; + "layout-bootstrap" = dontDistribute super."layout-bootstrap"; + "lazy-io" = dontDistribute super."lazy-io"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "leksah-server" = dontDistribute super."leksah-server"; + "lendingclub" = dontDistribute super."lendingclub"; + "lens-datetime" = dontDistribute super."lens-datetime"; + "lens-prelude" = dontDistribute super."lens-prelude"; + "lens-properties" = dontDistribute super."lens-properties"; + "lens-sop" = dontDistribute super."lens-sop"; + "lens-text-encoding" = dontDistribute super."lens-text-encoding"; + "lens-time" = dontDistribute super."lens-time"; + "lens-tutorial" = dontDistribute super."lens-tutorial"; + "lens-utils" = dontDistribute super."lens-utils"; + "lenses" = dontDistribute super."lenses"; + "lensref" = dontDistribute super."lensref"; + "lenz" = dontDistribute super."lenz"; + "lenz-template" = dontDistribute super."lenz-template"; + "level-monad" = dontDistribute super."level-monad"; + "leveldb-haskell-fork" = dontDistribute super."leveldb-haskell-fork"; + "levmar" = dontDistribute super."levmar"; + "levmar-chart" = dontDistribute super."levmar-chart"; + "lfst" = dontDistribute super."lfst"; + "lgtk" = dontDistribute super."lgtk"; + "lha" = dontDistribute super."lha"; + "lhae" = dontDistribute super."lhae"; + "lhc" = dontDistribute super."lhc"; + "lhe" = dontDistribute super."lhe"; + "lhs2TeX-hl" = dontDistribute super."lhs2TeX-hl"; + "lhs2html" = dontDistribute super."lhs2html"; + "lhslatex" = dontDistribute super."lhslatex"; + "libGenI" = dontDistribute super."libGenI"; + "libarchive-conduit" = dontDistribute super."libarchive-conduit"; + "libconfig" = dontDistribute super."libconfig"; + "libcspm" = dontDistribute super."libcspm"; + "libexpect" = dontDistribute super."libexpect"; + "libffi" = dontDistribute super."libffi"; + "libgraph" = dontDistribute super."libgraph"; + "libhbb" = dontDistribute super."libhbb"; + "libjenkins" = dontDistribute super."libjenkins"; + "liblastfm" = dontDistribute super."liblastfm"; + "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; + "libltdl" = dontDistribute super."libltdl"; + "libmpd" = dontDistribute super."libmpd"; + "libnvvm" = dontDistribute super."libnvvm"; + "liboleg" = dontDistribute super."liboleg"; + "libpafe" = dontDistribute super."libpafe"; + "libpq" = dontDistribute super."libpq"; + "librandomorg" = dontDistribute super."librandomorg"; + "libravatar" = dontDistribute super."libravatar"; + "libssh2" = dontDistribute super."libssh2"; + "libssh2-conduit" = dontDistribute super."libssh2-conduit"; + "libstackexchange" = dontDistribute super."libstackexchange"; + "libsystemd-daemon" = dontDistribute super."libsystemd-daemon"; + "libtagc" = dontDistribute super."libtagc"; + "libvirt-hs" = dontDistribute super."libvirt-hs"; + "libvorbis" = dontDistribute super."libvorbis"; + "libxls" = dontDistribute super."libxls"; + "libxml" = dontDistribute super."libxml"; + "libxml-enumerator" = dontDistribute super."libxml-enumerator"; + "libxslt" = dontDistribute super."libxslt"; + "life" = dontDistribute super."life"; + "lift-generics" = dontDistribute super."lift-generics"; + "lifted-threads" = dontDistribute super."lifted-threads"; + "lifter" = dontDistribute super."lifter"; + "ligature" = dontDistribute super."ligature"; + "ligd" = dontDistribute super."ligd"; + "lighttpd-conf" = dontDistribute super."lighttpd-conf"; + "lighttpd-conf-qq" = dontDistribute super."lighttpd-conf-qq"; + "lilypond" = dontDistribute super."lilypond"; + "limp" = dontDistribute super."limp"; + "limp-cbc" = dontDistribute super."limp-cbc"; + "lin-alg" = dontDistribute super."lin-alg"; + "linda" = dontDistribute super."linda"; + "lindenmayer" = dontDistribute super."lindenmayer"; + "line-break" = dontDistribute super."line-break"; + "line2pdf" = dontDistribute super."line2pdf"; + "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; + "linear-circuit" = dontDistribute super."linear-circuit"; + "linear-grammar" = dontDistribute super."linear-grammar"; + "linear-maps" = dontDistribute super."linear-maps"; + "linear-opengl" = dontDistribute super."linear-opengl"; + "linear-vect" = dontDistribute super."linear-vect"; + "linearEqSolver" = dontDistribute super."linearEqSolver"; + "linearscan" = dontDistribute super."linearscan"; + "linearscan-hoopl" = dontDistribute super."linearscan-hoopl"; + "linebreak" = dontDistribute super."linebreak"; + "linguistic-ordinals" = dontDistribute super."linguistic-ordinals"; + "link-relations" = dontDistribute super."link-relations"; + "linkchk" = dontDistribute super."linkchk"; + "linkcore" = dontDistribute super."linkcore"; + "linkedhashmap" = dontDistribute super."linkedhashmap"; + "linklater" = dontDistribute super."linklater"; + "linode" = dontDistribute super."linode"; + "linux-blkid" = dontDistribute super."linux-blkid"; + "linux-cgroup" = dontDistribute super."linux-cgroup"; + "linux-evdev" = dontDistribute super."linux-evdev"; + "linux-inotify" = dontDistribute super."linux-inotify"; + "linux-kmod" = dontDistribute super."linux-kmod"; + "linux-mount" = dontDistribute super."linux-mount"; + "linux-perf" = dontDistribute super."linux-perf"; + "linux-ptrace" = dontDistribute super."linux-ptrace"; + "linux-xattr" = dontDistribute super."linux-xattr"; + "linx-gateway" = dontDistribute super."linx-gateway"; + "lio" = dontDistribute super."lio"; + "lio-eci11" = dontDistribute super."lio-eci11"; + "lio-fs" = dontDistribute super."lio-fs"; + "lio-simple" = dontDistribute super."lio-simple"; + "lipsum-gen" = dontDistribute super."lipsum-gen"; + "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; + "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; + "lispparser" = dontDistribute super."lispparser"; + "list-extras" = dontDistribute super."list-extras"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "logfloat" = dontDistribute super."logfloat"; + "logger" = dontDistribute super."logger"; + "logging" = dontDistribute super."logging"; + "logging-effect" = dontDistribute super."logging-effect"; + "logging-facade-journald" = dontDistribute super."logging-facade-journald"; + "logic-TPTP" = dontDistribute super."logic-TPTP"; + "logic-classes" = dontDistribute super."logic-classes"; + "logicst" = dontDistribute super."logicst"; + "logict-state" = dontDistribute super."logict-state"; + "logplex-parse" = dontDistribute super."logplex-parse"; + "logsink" = dontDistribute super."logsink"; + "lojban" = dontDistribute super."lojban"; + "lojbanParser" = dontDistribute super."lojbanParser"; + "lojbanXiragan" = dontDistribute super."lojbanXiragan"; + "lojysamban" = dontDistribute super."lojysamban"; + "lol" = dontDistribute super."lol"; + "lol-apps" = dontDistribute super."lol-apps"; + "loli" = dontDistribute super."loli"; + "lookup-tables" = dontDistribute super."lookup-tables"; + "loop-effin" = dontDistribute super."loop-effin"; + "loop-while" = dontDistribute super."loop-while"; + "loops" = dontDistribute super."loops"; + "loopy" = dontDistribute super."loopy"; + "lord" = dontDistribute super."lord"; + "lorem" = dontDistribute super."lorem"; + "loris" = dontDistribute super."loris"; + "loshadka" = dontDistribute super."loshadka"; + "lostcities" = dontDistribute super."lostcities"; + "lowgl" = dontDistribute super."lowgl"; + "lp-diagrams" = dontDistribute super."lp-diagrams"; + "lp-diagrams-svg" = dontDistribute super."lp-diagrams-svg"; + "ls-usb" = dontDistribute super."ls-usb"; + "lscabal" = dontDistribute super."lscabal"; + "lss" = dontDistribute super."lss"; + "lsystem" = dontDistribute super."lsystem"; + "ltk" = dontDistribute super."ltk"; + "ltl" = dontDistribute super."ltl"; + "lua-bytecode" = dontDistribute super."lua-bytecode"; + "luachunk" = dontDistribute super."luachunk"; + "luautils" = dontDistribute super."luautils"; + "lub" = dontDistribute super."lub"; + "lucid-foundation" = dontDistribute super."lucid-foundation"; + "lucienne" = dontDistribute super."lucienne"; + "luhn" = dontDistribute super."luhn"; + "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; + "luka" = dontDistribute super."luka"; + "luminance" = doDistribute super."luminance_0_9_1_2"; + "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; + "lushtags" = dontDistribute super."lushtags"; + "luthor" = dontDistribute super."luthor"; + "lvish" = dontDistribute super."lvish"; + "lvmlib" = dontDistribute super."lvmlib"; + "lvmrun" = dontDistribute super."lvmrun"; + "lxc" = dontDistribute super."lxc"; + "lye" = dontDistribute super."lye"; + "lz4" = dontDistribute super."lz4"; + "lzma" = dontDistribute super."lzma"; + "lzma-clib" = dontDistribute super."lzma-clib"; + "lzma-enumerator" = dontDistribute super."lzma-enumerator"; + "lzma-streams" = dontDistribute super."lzma-streams"; + "maam" = dontDistribute super."maam"; + "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; + "maccatcher" = dontDistribute super."maccatcher"; + "machinecell" = dontDistribute super."machinecell"; + "machines-binary" = dontDistribute super."machines-binary"; + "machines-zlib" = dontDistribute super."machines-zlib"; + "macho" = dontDistribute super."macho"; + "maclight" = dontDistribute super."maclight"; + "macosx-make-standalone" = dontDistribute super."macosx-make-standalone"; + "mage" = dontDistribute super."mage"; + "magico" = dontDistribute super."magico"; + "magma" = dontDistribute super."magma"; + "mahoro" = dontDistribute super."mahoro"; + "maid" = dontDistribute super."maid"; + "mailbox-count" = dontDistribute super."mailbox-count"; + "mailchimp-subscribe" = dontDistribute super."mailchimp-subscribe"; + "mailgun" = dontDistribute super."mailgun"; + "mainland-pretty" = dontDistribute super."mainland-pretty"; + "majordomo" = dontDistribute super."majordomo"; + "majority" = dontDistribute super."majority"; + "make-hard-links" = dontDistribute super."make-hard-links"; + "make-package" = dontDistribute super."make-package"; + "makedo" = dontDistribute super."makedo"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "manifold-random" = dontDistribute super."manifold-random"; + "manifolds" = dontDistribute super."manifolds"; + "mappy" = dontDistribute super."mappy"; + "marionetta" = dontDistribute super."marionetta"; + "markdown-kate" = dontDistribute super."markdown-kate"; + "markdown-pap" = dontDistribute super."markdown-pap"; + "markdown2svg" = dontDistribute super."markdown2svg"; + "marked-pretty" = dontDistribute super."marked-pretty"; + "markov" = dontDistribute super."markov"; + "markov-chain" = dontDistribute super."markov-chain"; + "markov-processes" = dontDistribute super."markov-processes"; + "markup-preview" = dontDistribute super."markup-preview"; + "marmalade-upload" = dontDistribute super."marmalade-upload"; + "marquise" = dontDistribute super."marquise"; + "marxup" = dontDistribute super."marxup"; + "masakazu-bot" = dontDistribute super."masakazu-bot"; + "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; + "matchers" = dontDistribute super."matchers"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_3_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midair" = dontDistribute super."midair"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "moan" = dontDistribute super."moan"; + "modbus-tcp" = dontDistribute super."modbus-tcp"; + "modelicaparser" = dontDistribute super."modelicaparser"; + "modsplit" = dontDistribute super."modsplit"; + "modular-arithmetic" = dontDistribute super."modular-arithmetic"; + "modular-prelude" = dontDistribute super."modular-prelude"; + "modular-prelude-classy" = dontDistribute super."modular-prelude-classy"; + "module-management" = dontDistribute super."module-management"; + "modulespection" = dontDistribute super."modulespection"; + "modulo" = dontDistribute super."modulo"; + "moe" = dontDistribute super."moe"; + "mohws" = dontDistribute super."mohws"; + "monad-abort-fd" = dontDistribute super."monad-abort-fd"; + "monad-atom" = dontDistribute super."monad-atom"; + "monad-atom-simple" = dontDistribute super."monad-atom-simple"; + "monad-bool" = dontDistribute super."monad-bool"; + "monad-classes" = dontDistribute super."monad-classes"; + "monad-codec" = dontDistribute super."monad-codec"; + "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-exception" = dontDistribute super."monad-exception"; + "monad-fork" = dontDistribute super."monad-fork"; + "monad-gen" = dontDistribute super."monad-gen"; + "monad-interleave" = dontDistribute super."monad-interleave"; + "monad-levels" = dontDistribute super."monad-levels"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-stlike-io" = dontDistribute super."monad-stlike-io"; + "monad-stlike-stm" = dontDistribute super."monad-stlike-stm"; + "monad-supply" = dontDistribute super."monad-supply"; + "monad-task" = dontDistribute super."monad-task"; + "monad-tx" = dontDistribute super."monad-tx"; + "monad-unify" = dontDistribute super."monad-unify"; + "monad-wrap" = dontDistribute super."monad-wrap"; + "monadIO" = dontDistribute super."monadIO"; + "monadLib-compose" = dontDistribute super."monadLib-compose"; + "monadacme" = dontDistribute super."monadacme"; + "monadbi" = dontDistribute super."monadbi"; + "monadfibre" = dontDistribute super."monadfibre"; + "monadiccp" = dontDistribute super."monadiccp"; + "monadiccp-gecode" = dontDistribute super."monadiccp-gecode"; + "monadio-unwrappable" = dontDistribute super."monadio-unwrappable"; + "monadlist" = dontDistribute super."monadlist"; + "monadloc-pp" = dontDistribute super."monadloc-pp"; + "monadplus" = dontDistribute super."monadplus"; + "monads-fd" = dontDistribute super."monads-fd"; + "monadtransform" = dontDistribute super."monadtransform"; + "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; + "mongodb-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mountpoints" = dontDistribute super."mountpoints"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "mrm" = dontDistribute super."mrm"; + "ms" = dontDistribute super."ms"; + "msgpack" = dontDistribute super."msgpack"; + "msgpack-aeson" = dontDistribute super."msgpack-aeson"; + "msgpack-idl" = dontDistribute super."msgpack-idl"; + "msgpack-rpc" = dontDistribute super."msgpack-rpc"; + "msh" = dontDistribute super."msh"; + "msu" = dontDistribute super."msu"; + "mtgoxapi" = dontDistribute super."mtgoxapi"; + "mtl-c" = dontDistribute super."mtl-c"; + "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-tf" = dontDistribute super."mtl-tf"; + "mtl-unleashed" = dontDistribute super."mtl-unleashed"; + "mtlparse" = dontDistribute super."mtlparse"; + "mtlx" = dontDistribute super."mtlx"; + "mtp" = dontDistribute super."mtp"; + "mtree" = dontDistribute super."mtree"; + "mucipher" = dontDistribute super."mucipher"; + "mudbath" = dontDistribute super."mudbath"; + "muesli" = dontDistribute super."muesli"; + "mueval" = dontDistribute super."mueval"; + "mulang" = dontDistribute super."mulang"; + "multext-east-msd" = dontDistribute super."multext-east-msd"; + "multi-cabal" = dontDistribute super."multi-cabal"; + "multiaddr" = dontDistribute super."multiaddr"; + "multifocal" = dontDistribute super."multifocal"; + "multihash" = dontDistribute super."multihash"; + "multipart-names" = dontDistribute super."multipart-names"; + "multipass" = dontDistribute super."multipass"; + "multiplate-simplified" = dontDistribute super."multiplate-simplified"; + "multiplicity" = dontDistribute super."multiplicity"; + "multirec" = dontDistribute super."multirec"; + "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; + "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset-comb" = dontDistribute super."multiset-comb"; + "multisetrewrite" = dontDistribute super."multisetrewrite"; + "multistate" = dontDistribute super."multistate"; + "muon" = dontDistribute super."muon"; + "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; + "murmur3" = dontDistribute super."murmur3"; + "murmurhash3" = dontDistribute super."murmurhash3"; + "music-articulation" = dontDistribute super."music-articulation"; + "music-diatonic" = dontDistribute super."music-diatonic"; + "music-dynamics" = dontDistribute super."music-dynamics"; + "music-dynamics-literal" = dontDistribute super."music-dynamics-literal"; + "music-graphics" = dontDistribute super."music-graphics"; + "music-parts" = dontDistribute super."music-parts"; + "music-pitch" = dontDistribute super."music-pitch"; + "music-pitch-literal" = dontDistribute super."music-pitch-literal"; + "music-preludes" = dontDistribute super."music-preludes"; + "music-score" = dontDistribute super."music-score"; + "music-sibelius" = dontDistribute super."music-sibelius"; + "music-suite" = dontDistribute super."music-suite"; + "music-util" = dontDistribute super."music-util"; + "musicbrainz-email" = dontDistribute super."musicbrainz-email"; + "musicxml" = dontDistribute super."musicxml"; + "musicxml2" = dontDistribute super."musicxml2"; + "mustache-haskell" = dontDistribute super."mustache-haskell"; + "mustache2hs" = dontDistribute super."mustache2hs"; + "mutable-iter" = dontDistribute super."mutable-iter"; + "mute-unmute" = dontDistribute super."mute-unmute"; + "mvc" = dontDistribute super."mvc"; + "mvc-updates" = dontDistribute super."mvc-updates"; + "mvclient" = dontDistribute super."mvclient"; + "mwc-probability" = doDistribute super."mwc-probability_1_0_3"; + "mwc-random-monad" = dontDistribute super."mwc-random-monad"; + "myTestlll" = dontDistribute super."myTestlll"; + "mybitcoin-sci" = dontDistribute super."mybitcoin-sci"; + "myo" = dontDistribute super."myo"; + "mysnapsession" = dontDistribute super."mysnapsession"; + "mysnapsession-example" = dontDistribute super."mysnapsession-example"; + "mysql-effect" = dontDistribute super."mysql-effect"; + "mysql-simple-quasi" = dontDistribute super."mysql-simple-quasi"; + "mysql-simple-typed" = dontDistribute super."mysql-simple-typed"; + "mzv" = dontDistribute super."mzv"; + "n-m" = dontDistribute super."n-m"; + "nagios-perfdata" = dontDistribute super."nagios-perfdata"; + "nagios-plugin-ekg" = dontDistribute super."nagios-plugin-ekg"; + "named-formlet" = dontDistribute super."named-formlet"; + "named-lock" = dontDistribute super."named-lock"; + "named-records" = dontDistribute super."named-records"; + "namelist" = dontDistribute super."namelist"; + "names" = dontDistribute super."names"; + "names-th" = dontDistribute super."names-th"; + "nano-cryptr" = dontDistribute super."nano-cryptr"; + "nano-erl" = dontDistribute super."nano-erl"; + "nano-hmac" = dontDistribute super."nano-hmac"; + "nano-md5" = dontDistribute super."nano-md5"; + "nanoAgda" = dontDistribute super."nanoAgda"; + "nanocurses" = dontDistribute super."nanocurses"; + "nanomsg" = dontDistribute super."nanomsg"; + "nanomsg-haskell" = dontDistribute super."nanomsg-haskell"; + "nanoparsec" = dontDistribute super."nanoparsec"; + "nanq" = dontDistribute super."nanq"; + "narc" = dontDistribute super."narc"; + "nat" = dontDistribute super."nat"; + "nats-queue" = dontDistribute super."nats-queue"; + "natural-number" = dontDistribute super."natural-number"; + "natural-numbers" = dontDistribute super."natural-numbers"; + "natural-transformation" = dontDistribute super."natural-transformation"; + "naturalcomp" = dontDistribute super."naturalcomp"; + "naturals" = dontDistribute super."naturals"; + "naver-translate" = dontDistribute super."naver-translate"; + "nbt" = dontDistribute super."nbt"; + "nc-indicators" = dontDistribute super."nc-indicators"; + "ncurses" = dontDistribute super."ncurses"; + "neat" = dontDistribute super."neat"; + "needle" = dontDistribute super."needle"; + "neet" = dontDistribute super."neet"; + "nehe-tuts" = dontDistribute super."nehe-tuts"; + "neil" = dontDistribute super."neil"; + "neither" = dontDistribute super."neither"; + "nemesis" = dontDistribute super."nemesis"; + "nemesis-titan" = dontDistribute super."nemesis-titan"; + "nerf" = dontDistribute super."nerf"; + "nero" = dontDistribute super."nero"; + "nero-wai" = dontDistribute super."nero-wai"; + "nero-warp" = dontDistribute super."nero-warp"; + "nested-routes" = dontDistribute super."nested-routes"; + "nested-sets" = dontDistribute super."nested-sets"; + "nestedmap" = dontDistribute super."nestedmap"; + "net-concurrent" = dontDistribute super."net-concurrent"; + "netclock" = dontDistribute super."netclock"; + "netcore" = dontDistribute super."netcore"; + "netlines" = dontDistribute super."netlines"; + "netlink" = dontDistribute super."netlink"; + "netlist" = dontDistribute super."netlist"; + "netlist-to-vhdl" = dontDistribute super."netlist-to-vhdl"; + "netpbm" = dontDistribute super."netpbm"; + "netrc" = dontDistribute super."netrc"; + "netspec" = dontDistribute super."netspec"; + "netstring-enumerator" = dontDistribute super."netstring-enumerator"; + "nettle-frp" = dontDistribute super."nettle-frp"; + "nettle-netkit" = dontDistribute super."nettle-netkit"; + "nettle-openflow" = dontDistribute super."nettle-openflow"; + "netwire" = dontDistribute super."netwire"; + "netwire-input" = dontDistribute super."netwire-input"; + "netwire-input-glfw" = dontDistribute super."netwire-input-glfw"; + "network-address" = dontDistribute super."network-address"; + "network-api-support" = dontDistribute super."network-api-support"; + "network-bitcoin" = dontDistribute super."network-bitcoin"; + "network-builder" = dontDistribute super."network-builder"; + "network-bytestring" = dontDistribute super."network-bytestring"; + "network-conduit" = dontDistribute super."network-conduit"; + "network-connection" = dontDistribute super."network-connection"; + "network-data" = dontDistribute super."network-data"; + "network-dbus" = dontDistribute super."network-dbus"; + "network-dns" = dontDistribute super."network-dns"; + "network-enumerator" = dontDistribute super."network-enumerator"; + "network-fancy" = dontDistribute super."network-fancy"; + "network-interfacerequest" = dontDistribute super."network-interfacerequest"; + "network-ip" = dontDistribute super."network-ip"; + "network-metrics" = dontDistribute super."network-metrics"; + "network-minihttp" = dontDistribute super."network-minihttp"; + "network-msg" = dontDistribute super."network-msg"; + "network-netpacket" = dontDistribute super."network-netpacket"; + "network-pgi" = dontDistribute super."network-pgi"; + "network-rpca" = dontDistribute super."network-rpca"; + "network-server" = dontDistribute super."network-server"; + "network-service" = dontDistribute super."network-service"; + "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; + "network-simple-tls" = dontDistribute super."network-simple-tls"; + "network-socket-options" = dontDistribute super."network-socket-options"; + "network-stream" = dontDistribute super."network-stream"; + "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport-amqp" = dontDistribute super."network-transport-amqp"; + "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; + "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; + "network-uri-static" = dontDistribute super."network-uri-static"; + "network-wai-router" = dontDistribute super."network-wai-router"; + "network-websocket" = dontDistribute super."network-websocket"; + "networked-game" = dontDistribute super."networked-game"; + "newports" = dontDistribute super."newports"; + "newsynth" = dontDistribute super."newsynth"; + "newt" = dontDistribute super."newt"; + "newtype-deriving" = dontDistribute super."newtype-deriving"; + "newtype-th" = dontDistribute super."newtype-th"; + "newtyper" = dontDistribute super."newtyper"; + "nextstep-plist" = dontDistribute super."nextstep-plist"; + "nf" = dontDistribute super."nf"; + "ngrams-loader" = dontDistribute super."ngrams-loader"; + "niagra" = dontDistribute super."niagra"; + "nibblestring" = dontDistribute super."nibblestring"; + "nicify" = dontDistribute super."nicify"; + "nicovideo-translator" = dontDistribute super."nicovideo-translator"; + "nikepub" = dontDistribute super."nikepub"; + "nimber" = dontDistribute super."nimber"; + "nist-beacon" = dontDistribute super."nist-beacon"; + "nitro" = dontDistribute super."nitro"; + "nix-eval" = dontDistribute super."nix-eval"; + "nixfromnpm" = dontDistribute super."nixfromnpm"; + "nixos-types" = dontDistribute super."nixos-types"; + "nkjp" = dontDistribute super."nkjp"; + "nlp-scores" = dontDistribute super."nlp-scores"; + "nlp-scores-scripts" = dontDistribute super."nlp-scores-scripts"; + "nm" = dontDistribute super."nm"; + "nme" = dontDistribute super."nme"; + "nntp" = dontDistribute super."nntp"; + "no-buffering-workaround" = dontDistribute super."no-buffering-workaround"; + "no-role-annots" = dontDistribute super."no-role-annots"; + "nofib-analyse" = dontDistribute super."nofib-analyse"; + "nofib-analyze" = dontDistribute super."nofib-analyze"; + "noise" = dontDistribute super."noise"; + "non-empty" = dontDistribute super."non-empty"; + "non-negative" = dontDistribute super."non-negative"; + "nondeterminism" = dontDistribute super."nondeterminism"; + "nonempty-alternative" = dontDistribute super."nonempty-alternative"; + "nonfree" = dontDistribute super."nonfree"; + "nonlinear-optimization" = dontDistribute super."nonlinear-optimization"; + "nonlinear-optimization-ad" = dontDistribute super."nonlinear-optimization-ad"; + "noodle" = dontDistribute super."noodle"; + "normaldistribution" = dontDistribute super."normaldistribution"; + "not-gloss" = dontDistribute super."not-gloss"; + "not-gloss-examples" = dontDistribute super."not-gloss-examples"; + "not-in-base" = dontDistribute super."not-in-base"; + "notcpp" = dontDistribute super."notcpp"; + "notmuch-haskell" = dontDistribute super."notmuch-haskell"; + "notmuch-web" = dontDistribute super."notmuch-web"; + "notzero" = dontDistribute super."notzero"; + "np-extras" = dontDistribute super."np-extras"; + "np-linear" = dontDistribute super."np-linear"; + "nptools" = dontDistribute super."nptools"; + "nth-prime" = dontDistribute super."nth-prime"; + "nthable" = dontDistribute super."nthable"; + "ntp-control" = dontDistribute super."ntp-control"; + "null-canvas" = dontDistribute super."null-canvas"; + "nullary" = dontDistribute super."nullary"; + "number" = dontDistribute super."number"; + "number-length" = dontDistribute super."number-length"; + "numbering" = dontDistribute super."numbering"; + "numerals" = dontDistribute super."numerals"; + "numerals-base" = dontDistribute super."numerals-base"; + "numeric-limits" = dontDistribute super."numeric-limits"; + "numeric-prelude" = dontDistribute super."numeric-prelude"; + "numeric-qq" = dontDistribute super."numeric-qq"; + "numeric-quest" = dontDistribute super."numeric-quest"; + "numeric-ranges" = dontDistribute super."numeric-ranges"; + "numeric-tools" = dontDistribute super."numeric-tools"; + "numericpeano" = dontDistribute super."numericpeano"; + "nums" = dontDistribute super."nums"; + "numtype" = dontDistribute super."numtype"; + "numtype-tf" = dontDistribute super."numtype-tf"; + "nurbs" = dontDistribute super."nurbs"; + "nvim-hs" = dontDistribute super."nvim-hs"; + "nvim-hs-contrib" = dontDistribute super."nvim-hs-contrib"; + "nyan" = dontDistribute super."nyan"; + "nylas" = dontDistribute super."nylas"; + "nymphaea" = dontDistribute super."nymphaea"; + "oanda-rest-api" = dontDistribute super."oanda-rest-api"; + "oauthenticated" = dontDistribute super."oauthenticated"; + "obdd" = dontDistribute super."obdd"; + "oberon0" = dontDistribute super."oberon0"; + "obj" = dontDistribute super."obj"; + "objectid" = dontDistribute super."objectid"; + "objective" = doDistribute super."objective_1_0_5"; + "observable-sharing" = dontDistribute super."observable-sharing"; + "octane" = dontDistribute super."octane"; + "octohat" = dontDistribute super."octohat"; + "octopus" = dontDistribute super."octopus"; + "oculus" = dontDistribute super."oculus"; + "oden-go-packages" = dontDistribute super."oden-go-packages"; + "oeis" = dontDistribute super."oeis"; + "off-simple" = dontDistribute super."off-simple"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye-classy" = dontDistribute super."opaleye-classy"; + "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = dontDistribute super."opaleye-trans"; + "open-haddock" = dontDistribute super."open-haddock"; + "open-pandoc" = dontDistribute super."open-pandoc"; + "open-symbology" = dontDistribute super."open-symbology"; + "open-typerep" = dontDistribute super."open-typerep"; + "open-union" = dontDistribute super."open-union"; + "open-witness" = dontDistribute super."open-witness"; + "opencog-atomspace" = dontDistribute super."opencog-atomspace"; + "opencv-raw" = dontDistribute super."opencv-raw"; + "opendatatable" = dontDistribute super."opendatatable"; + "openexchangerates" = dontDistribute super."openexchangerates"; + "openflow" = dontDistribute super."openflow"; + "opengl-dlp-stereo" = dontDistribute super."opengl-dlp-stereo"; + "opengl-spacenavigator" = dontDistribute super."opengl-spacenavigator"; + "opengles" = dontDistribute super."opengles"; + "openid" = dontDistribute super."openid"; + "openpgp" = dontDistribute super."openpgp"; + "openpgp-Crypto" = dontDistribute super."openpgp-Crypto"; + "openpgp-crypto-api" = dontDistribute super."openpgp-crypto-api"; + "opensoundcontrol-ht" = dontDistribute super."opensoundcontrol-ht"; + "openssh-github-keys" = dontDistribute super."openssh-github-keys"; + "openssl-createkey" = dontDistribute super."openssl-createkey"; + "opentheory" = dontDistribute super."opentheory"; + "opentheory-bits" = dontDistribute super."opentheory-bits"; + "opentheory-byte" = dontDistribute super."opentheory-byte"; + "opentheory-char" = dontDistribute super."opentheory-char"; + "opentheory-divides" = dontDistribute super."opentheory-divides"; + "opentheory-fibonacci" = dontDistribute super."opentheory-fibonacci"; + "opentheory-parser" = dontDistribute super."opentheory-parser"; + "opentheory-prime" = dontDistribute super."opentheory-prime"; + "opentheory-primitive" = dontDistribute super."opentheory-primitive"; + "opentheory-probability" = dontDistribute super."opentheory-probability"; + "opentheory-stream" = dontDistribute super."opentheory-stream"; + "opentheory-unicode" = dontDistribute super."opentheory-unicode"; + "operational-alacarte" = dontDistribute super."operational-alacarte"; + "operational-extra" = dontDistribute super."operational-extra"; + "opml" = dontDistribute super."opml"; + "opml-conduit" = doDistribute super."opml-conduit_0_4_0_1"; + "opn" = dontDistribute super."opn"; + "optimal-blocks" = dontDistribute super."optimal-blocks"; + "optimization" = dontDistribute super."optimization"; + "optimusprime" = dontDistribute super."optimusprime"; + "option" = dontDistribute super."option"; + "optional" = dontDistribute super."optional"; + "options-time" = dontDistribute super."options-time"; + "optparse-declarative" = dontDistribute super."optparse-declarative"; + "optparse-generic" = dontDistribute super."optparse-generic"; + "orc" = dontDistribute super."orc"; + "orchestrate" = dontDistribute super."orchestrate"; + "orchid" = dontDistribute super."orchid"; + "orchid-demo" = dontDistribute super."orchid-demo"; + "ord-adhoc" = dontDistribute super."ord-adhoc"; + "order-maintenance" = dontDistribute super."order-maintenance"; + "order-statistic-tree" = dontDistribute super."order-statistic-tree"; + "order-statistics" = dontDistribute super."order-statistics"; + "ordered" = dontDistribute super."ordered"; + "orders" = dontDistribute super."orders"; + "ordrea" = dontDistribute super."ordrea"; + "organize-imports" = dontDistribute super."organize-imports"; + "orgmode" = dontDistribute super."orgmode"; + "orgmode-parse" = dontDistribute super."orgmode-parse"; + "origami" = dontDistribute super."origami"; + "os-release" = dontDistribute super."os-release"; + "osc" = dontDistribute super."osc"; + "osm-conduit" = dontDistribute super."osm-conduit"; + "osm-download" = dontDistribute super."osm-download"; + "oso2pdf" = dontDistribute super."oso2pdf"; + "osx-ar" = dontDistribute super."osx-ar"; + "ot" = dontDistribute super."ot"; + "ottparse-pretty" = dontDistribute super."ottparse-pretty"; + "overloaded-records" = dontDistribute super."overloaded-records"; + "overture" = dontDistribute super."overture"; + "pack" = dontDistribute super."pack"; + "package-o-tron" = dontDistribute super."package-o-tron"; + "package-vt" = dontDistribute super."package-vt"; + "packdeps" = dontDistribute super."packdeps"; + "packed-dawg" = dontDistribute super."packed-dawg"; + "packedstring" = dontDistribute super."packedstring"; + "packer" = dontDistribute super."packer"; + "packman" = dontDistribute super."packman"; + "packunused" = dontDistribute super."packunused"; + "pacman-memcache" = dontDistribute super."pacman-memcache"; + "padKONTROL" = dontDistribute super."padKONTROL"; + "pagarme" = dontDistribute super."pagarme"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "papillon" = dontDistribute super."papillon"; + "pappy" = dontDistribute super."pappy"; + "para" = dontDistribute super."para"; + "paragon" = dontDistribute super."paragon"; + "parallel-tasks" = dontDistribute super."parallel-tasks"; + "parallel-tree-search" = dontDistribute super."parallel-tree-search"; + "parameterized-data" = dontDistribute super."parameterized-data"; + "parco" = dontDistribute super."parco"; + "parco-attoparsec" = dontDistribute super."parco-attoparsec"; + "parco-parsec" = dontDistribute super."parco-parsec"; + "parcom-lib" = dontDistribute super."parcom-lib"; + "parconc-examples" = dontDistribute super."parconc-examples"; + "parport" = dontDistribute super."parport"; + "parse-dimacs" = dontDistribute super."parse-dimacs"; + "parse-help" = dontDistribute super."parse-help"; + "parsec-extra" = dontDistribute super."parsec-extra"; + "parsec-numbers" = dontDistribute super."parsec-numbers"; + "parsec-parsers" = dontDistribute super."parsec-parsers"; + "parsec-permutation" = dontDistribute super."parsec-permutation"; + "parsec-tagsoup" = dontDistribute super."parsec-tagsoup"; + "parsec-trace" = dontDistribute super."parsec-trace"; + "parsec-utils" = dontDistribute super."parsec-utils"; + "parsec1" = dontDistribute super."parsec1"; + "parsec2" = dontDistribute super."parsec2"; + "parsec3" = dontDistribute super."parsec3"; + "parsec3-numbers" = dontDistribute super."parsec3-numbers"; + "parsedate" = dontDistribute super."parsedate"; + "parsek" = dontDistribute super."parsek"; + "parsely" = dontDistribute super."parsely"; + "parser-helper" = dontDistribute super."parser-helper"; + "parser241" = dontDistribute super."parser241"; + "parsergen" = dontDistribute super."parsergen"; + "parsestar" = dontDistribute super."parsestar"; + "parsimony" = dontDistribute super."parsimony"; + "partage" = dontDistribute super."partage"; + "partial" = dontDistribute super."partial"; + "partial-lens" = dontDistribute super."partial-lens"; + "partial-uri" = dontDistribute super."partial-uri"; + "partly" = dontDistribute super."partly"; + "passage" = dontDistribute super."passage"; + "passwords" = dontDistribute super."passwords"; + "pastis" = dontDistribute super."pastis"; + "pasty" = dontDistribute super."pasty"; + "patch-combinators" = dontDistribute super."patch-combinators"; + "patch-image" = dontDistribute super."patch-image"; + "path-io" = doDistribute super."path-io_0_2_0"; + "pathfinding" = dontDistribute super."pathfinding"; + "pathfindingcore" = dontDistribute super."pathfindingcore"; + "pathtype" = dontDistribute super."pathtype"; + "patronscraper" = dontDistribute super."patronscraper"; + "patterns" = dontDistribute super."patterns"; + "paymill" = dontDistribute super."paymill"; + "paypal-adaptive-hoops" = dontDistribute super."paypal-adaptive-hoops"; + "paypal-api" = dontDistribute super."paypal-api"; + "pb" = dontDistribute super."pb"; + "pbc4hs" = dontDistribute super."pbc4hs"; + "pbkdf" = dontDistribute super."pbkdf"; + "pcap-conduit" = dontDistribute super."pcap-conduit"; + "pcap-enumerator" = dontDistribute super."pcap-enumerator"; + "pcd-loader" = dontDistribute super."pcd-loader"; + "pcf" = dontDistribute super."pcf"; + "pcg-random" = dontDistribute super."pcg-random"; + "pcre-less" = dontDistribute super."pcre-less"; + "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; + "pdf2line" = dontDistribute super."pdf2line"; + "pdfsplit" = dontDistribute super."pdfsplit"; + "pdynload" = dontDistribute super."pdynload"; + "peakachu" = dontDistribute super."peakachu"; + "peano" = dontDistribute super."peano"; + "peano-inf" = dontDistribute super."peano-inf"; + "pec" = dontDistribute super."pec"; + "pecoff" = dontDistribute super."pecoff"; + "peg" = dontDistribute super."peg"; + "peggy" = dontDistribute super."peggy"; + "pell" = dontDistribute super."pell"; + "penn-treebank" = dontDistribute super."penn-treebank"; + "penny" = dontDistribute super."penny"; + "penny-bin" = dontDistribute super."penny-bin"; + "penny-lib" = dontDistribute super."penny-lib"; + "peparser" = dontDistribute super."peparser"; + "perceptron" = dontDistribute super."perceptron"; + "perdure" = dontDistribute super."perdure"; + "period" = dontDistribute super."period"; + "perm" = dontDistribute super."perm"; + "permutation" = dontDistribute super."permutation"; + "permute" = dontDistribute super."permute"; + "persist2er" = dontDistribute super."persist2er"; + "persistable-record" = dontDistribute super."persistable-record"; + "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "persistent-cereal" = dontDistribute super."persistent-cereal"; + "persistent-equivalence" = dontDistribute super."persistent-equivalence"; + "persistent-hssqlppp" = dontDistribute super."persistent-hssqlppp"; + "persistent-instances-iproute" = dontDistribute super."persistent-instances-iproute"; + "persistent-iproute" = dontDistribute super."persistent-iproute"; + "persistent-map" = dontDistribute super."persistent-map"; + "persistent-odbc" = dontDistribute super."persistent-odbc"; + "persistent-protobuf" = dontDistribute super."persistent-protobuf"; + "persistent-ratelimit" = dontDistribute super."persistent-ratelimit"; + "persistent-redis" = dontDistribute super."persistent-redis"; + "persistent-vector" = dontDistribute super."persistent-vector"; + "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; + "persona" = dontDistribute super."persona"; + "persona-idp" = dontDistribute super."persona-idp"; + "pesca" = dontDistribute super."pesca"; + "peyotls" = dontDistribute super."peyotls"; + "peyotls-codec" = dontDistribute super."peyotls-codec"; + "pez" = dontDistribute super."pez"; + "pg-harness" = dontDistribute super."pg-harness"; + "pg-harness-client" = dontDistribute super."pg-harness-client"; + "pg-harness-server" = dontDistribute super."pg-harness-server"; + "pgdl" = dontDistribute super."pgdl"; + "pgm" = dontDistribute super."pgm"; + "pgsql-simple" = dontDistribute super."pgsql-simple"; + "pgstream" = dontDistribute super."pgstream"; + "phasechange" = dontDistribute super."phasechange"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_6_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_1_3"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-transduce" = dontDistribute super."pipes-transduce"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "plan-b" = dontDistribute super."plan-b"; + "planar-graph" = dontDistribute super."planar-graph"; + "plat" = dontDistribute super."plat"; + "playlists" = dontDistribute super."playlists"; + "plist" = dontDistribute super."plist"; + "plist-buddy" = dontDistribute super."plist-buddy"; + "plivo" = dontDistribute super."plivo"; + "plot-lab" = dontDistribute super."plot-lab"; + "plotfont" = dontDistribute super."plotfont"; + "plotserver-api" = dontDistribute super."plotserver-api"; + "plugins" = dontDistribute super."plugins"; + "plugins-auto" = dontDistribute super."plugins-auto"; + "plugins-multistage" = dontDistribute super."plugins-multistage"; + "plumbers" = dontDistribute super."plumbers"; + "ply-loader" = dontDistribute super."ply-loader"; + "png-file" = dontDistribute super."png-file"; + "pngload" = dontDistribute super."pngload"; + "pngload-fixed" = dontDistribute super."pngload-fixed"; + "pnm" = dontDistribute super."pnm"; + "pocket-dns" = dontDistribute super."pocket-dns"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = dontDistribute super."pointful"; + "pointless-fun" = dontDistribute super."pointless-fun"; + "pointless-haskell" = dontDistribute super."pointless-haskell"; + "pointless-lenses" = dontDistribute super."pointless-lenses"; + "pointless-rewrite" = dontDistribute super."pointless-rewrite"; + "poker-eval" = dontDistribute super."poker-eval"; + "pokitdok" = dontDistribute super."pokitdok"; + "polar" = dontDistribute super."polar"; + "polar-configfile" = dontDistribute super."polar-configfile"; + "polar-shader" = dontDistribute super."polar-shader"; + "polh-lexicon" = dontDistribute super."polh-lexicon"; + "polimorf" = dontDistribute super."polimorf"; + "poll" = dontDistribute super."poll"; + "poly-control" = dontDistribute super."poly-control"; + "polyToMonoid" = dontDistribute super."polyToMonoid"; + "polymap" = dontDistribute super."polymap"; + "polynom" = dontDistribute super."polynom"; + "polynomial" = dontDistribute super."polynomial"; + "polynomials-bernstein" = dontDistribute super."polynomials-bernstein"; + "polyseq" = dontDistribute super."polyseq"; + "polysoup" = dontDistribute super."polysoup"; + "polytypeable" = dontDistribute super."polytypeable"; + "polytypeable-utils" = dontDistribute super."polytypeable-utils"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; + "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; + "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; + "postgresql-typed" = dontDistribute super."postgresql-typed"; + "postgrest" = dontDistribute super."postgrest"; + "postie" = dontDistribute super."postie"; + "postmark" = dontDistribute super."postmark"; + "postmaster" = dontDistribute super."postmaster"; + "potato-tool" = dontDistribute super."potato-tool"; + "potrace" = dontDistribute super."potrace"; + "potrace-diagrams" = dontDistribute super."potrace-diagrams"; + "powermate" = dontDistribute super."powermate"; + "powerpc" = dontDistribute super."powerpc"; + "ppm" = dontDistribute super."ppm"; + "pqc" = dontDistribute super."pqc"; + "pqueue-mtl" = dontDistribute super."pqueue-mtl"; + "practice-room" = dontDistribute super."practice-room"; + "precis" = dontDistribute super."precis"; + "predicates" = dontDistribute super."predicates"; + "prednote-test" = dontDistribute super."prednote-test"; + "prefork" = dontDistribute super."prefork"; + "pregame" = dontDistribute super."pregame"; + "prelude-edsl" = dontDistribute super."prelude-edsl"; + "prelude-generalize" = dontDistribute super."prelude-generalize"; + "prelude-plus" = dontDistribute super."prelude-plus"; + "prelude-prime" = dontDistribute super."prelude-prime"; + "prelude-safeenum" = dontDistribute super."prelude-safeenum"; + "preprocess-haskell" = dontDistribute super."preprocess-haskell"; + "preprocessor-tools" = dontDistribute super."preprocessor-tools"; + "present" = dontDistribute super."present"; + "press" = dontDistribute super."press"; + "presto-hdbc" = dontDistribute super."presto-hdbc"; + "prettify" = dontDistribute super."prettify"; + "pretty-compact" = dontDistribute super."pretty-compact"; + "pretty-error" = dontDistribute super."pretty-error"; + "pretty-hex" = dontDistribute super."pretty-hex"; + "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-sop" = dontDistribute super."pretty-sop"; + "pretty-tree" = dontDistribute super."pretty-tree"; + "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; + "prim-uniq" = dontDistribute super."prim-uniq"; + "primitive-simd" = dontDistribute super."primitive-simd"; + "primula-board" = dontDistribute super."primula-board"; + "primula-bot" = dontDistribute super."primula-bot"; + "print-debugger" = dontDistribute super."print-debugger"; + "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; + "printxosd" = dontDistribute super."printxosd"; + "priority-queue" = dontDistribute super."priority-queue"; + "priority-sync" = dontDistribute super."priority-sync"; + "privileged-concurrency" = dontDistribute super."privileged-concurrency"; + "prizm" = dontDistribute super."prizm"; + "probability" = dontDistribute super."probability"; + "probable" = dontDistribute super."probable"; + "proc" = dontDistribute super."proc"; + "process-conduit" = dontDistribute super."process-conduit"; + "process-extras" = doDistribute super."process-extras_0_3_3_7"; + "process-iterio" = dontDistribute super."process-iterio"; + "process-leksah" = dontDistribute super."process-leksah"; + "process-listlike" = dontDistribute super."process-listlike"; + "process-progress" = dontDistribute super."process-progress"; + "process-qq" = dontDistribute super."process-qq"; + "process-streaming" = dontDistribute super."process-streaming"; + "processing" = dontDistribute super."processing"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_6_3_1"; + "prof2dot" = dontDistribute super."prof2dot"; + "prof2pretty" = dontDistribute super."prof2pretty"; + "profiteur" = dontDistribute super."profiteur"; + "progress" = dontDistribute super."progress"; + "progressbar" = dontDistribute super."progressbar"; + "progression" = dontDistribute super."progression"; + "progressive" = dontDistribute super."progressive"; + "proj4-hs-bindings" = dontDistribute super."proj4-hs-bindings"; + "projection" = dontDistribute super."projection"; + "prolog" = dontDistribute super."prolog"; + "prolog-graph" = dontDistribute super."prolog-graph"; + "prolog-graph-lib" = dontDistribute super."prolog-graph-lib"; + "prologue" = dontDistribute super."prologue"; + "prometheus" = dontDistribute super."prometheus"; + "promise" = dontDistribute super."promise"; + "promises" = dontDistribute super."promises"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; + "protocol-buffers-descriptor" = doDistribute super."protocol-buffers-descriptor_2_1_12"; + "protocol-buffers-descriptor-fork" = dontDistribute super."protocol-buffers-descriptor-fork"; + "protocol-buffers-fork" = dontDistribute super."protocol-buffers-fork"; + "proton-haskell" = dontDistribute super."proton-haskell"; + "prototype" = dontDistribute super."prototype"; + "prove-everywhere-server" = dontDistribute super."prove-everywhere-server"; + "proxied" = dontDistribute super."proxied"; + "proxy-kindness" = dontDistribute super."proxy-kindness"; + "psc-ide" = doDistribute super."psc-ide_0_5_0"; + "pseudo-boolean" = dontDistribute super."pseudo-boolean"; + "pseudo-trie" = dontDistribute super."pseudo-trie"; + "pseudomacros" = dontDistribute super."pseudomacros"; + "psql-helpers" = dontDistribute super."psql-helpers"; + "pub" = dontDistribute super."pub"; + "publicsuffix" = doDistribute super."publicsuffix_0_20151212"; + "publicsuffixlist" = dontDistribute super."publicsuffixlist"; + "publicsuffixlistcreate" = dontDistribute super."publicsuffixlistcreate"; + "pubnub" = dontDistribute super."pubnub"; + "pubsub" = dontDistribute super."pubsub"; + "puffytools" = dontDistribute super."puffytools"; + "pugixml" = dontDistribute super."pugixml"; + "pugs-DrIFT" = dontDistribute super."pugs-DrIFT"; + "pugs-HsSyck" = dontDistribute super."pugs-HsSyck"; + "pugs-compat" = dontDistribute super."pugs-compat"; + "pugs-hsregex" = dontDistribute super."pugs-hsregex"; + "pulse-simple" = dontDistribute super."pulse-simple"; + "punkt" = dontDistribute super."punkt"; + "punycode" = dontDistribute super."punycode"; + "puppetresources" = dontDistribute super."puppetresources"; + "pure-fft" = dontDistribute super."pure-fft"; + "pure-priority-queue" = dontDistribute super."pure-priority-queue"; + "pure-priority-queue-tests" = dontDistribute super."pure-priority-queue-tests"; + "pure-zlib" = dontDistribute super."pure-zlib"; + "purescript" = doDistribute super."purescript_0_7_6_1"; + "purescript-bridge" = dontDistribute super."purescript-bridge"; + "purescript-bundle-fast" = dontDistribute super."purescript-bundle-fast"; + "push-notify" = dontDistribute super."push-notify"; + "push-notify-ccs" = dontDistribute super."push-notify-ccs"; + "push-notify-general" = dontDistribute super."push-notify-general"; + "pusher-haskell" = dontDistribute super."pusher-haskell"; + "pushme" = dontDistribute super."pushme"; + "putlenses" = dontDistribute super."putlenses"; + "puzzle-draw" = dontDistribute super."puzzle-draw"; + "puzzle-draw-cmdline" = dontDistribute super."puzzle-draw-cmdline"; + "pvd" = dontDistribute super."pvd"; + "pwstore-cli" = dontDistribute super."pwstore-cli"; + "pxsl-tools" = dontDistribute super."pxsl-tools"; + "pyffi" = dontDistribute super."pyffi"; + "pyfi" = dontDistribute super."pyfi"; + "python-pickle" = dontDistribute super."python-pickle"; + "qc-oi-testgenerator" = dontDistribute super."qc-oi-testgenerator"; + "qd" = dontDistribute super."qd"; + "qd-vec" = dontDistribute super."qd-vec"; + "qed" = dontDistribute super."qed"; + "qhull-simple" = dontDistribute super."qhull-simple"; + "qrcode" = dontDistribute super."qrcode"; + "qt" = dontDistribute super."qt"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "quickcheck-poly" = dontDistribute super."quickcheck-poly"; + "quickcheck-properties" = dontDistribute super."quickcheck-properties"; + "quickcheck-property-comb" = dontDistribute super."quickcheck-property-comb"; + "quickcheck-property-monad" = dontDistribute super."quickcheck-property-monad"; + "quickcheck-regex" = dontDistribute super."quickcheck-regex"; + "quickcheck-relaxng" = dontDistribute super."quickcheck-relaxng"; + "quickcheck-rematch" = dontDistribute super."quickcheck-rematch"; + "quickcheck-script" = dontDistribute super."quickcheck-script"; + "quickcheck-simple" = dontDistribute super."quickcheck-simple"; + "quickcheck-webdriver" = dontDistribute super."quickcheck-webdriver"; + "quicklz" = dontDistribute super."quicklz"; + "quickpull" = dontDistribute super."quickpull"; + "quickset" = dontDistribute super."quickset"; + "quickspec" = dontDistribute super."quickspec"; + "quicktest" = dontDistribute super."quicktest"; + "quickwebapp" = dontDistribute super."quickwebapp"; + "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; + "quiver-bytestring" = dontDistribute super."quiver-bytestring"; + "quiver-cell" = dontDistribute super."quiver-cell"; + "quiver-csv" = dontDistribute super."quiver-csv"; + "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; + "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; + "quoridor-hs" = dontDistribute super."quoridor-hs"; + "qux" = dontDistribute super."qux"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rainbox" = doDistribute super."rainbox_0_18_0_4"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-tree" = dontDistribute super."random-tree"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; + "rate-limit" = dontDistribute super."rate-limit"; + "ratel" = dontDistribute super."ratel"; + "ratel-wai" = dontDistribute super."ratel-wai"; + "ratio-int" = dontDistribute super."ratio-int"; + "raven-haskell" = dontDistribute super."raven-haskell"; + "raven-haskell-scotty" = dontDistribute super."raven-haskell-scotty"; + "rawstring-qm" = dontDistribute super."rawstring-qm"; + "razom-text-util" = dontDistribute super."razom-text-util"; + "rbr" = dontDistribute super."rbr"; + "rclient" = dontDistribute super."rclient"; + "rcu" = dontDistribute super."rcu"; + "rdf4h" = dontDistribute super."rdf4h"; + "rdioh" = dontDistribute super."rdioh"; + "rdtsc" = dontDistribute super."rdtsc"; + "rdtsc-enolan" = dontDistribute super."rdtsc-enolan"; + "re2" = dontDistribute super."re2"; + "react-flux" = dontDistribute super."react-flux"; + "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; + "reaction-logic" = dontDistribute super."reaction-logic"; + "reactive" = dontDistribute super."reactive"; + "reactive-bacon" = dontDistribute super."reactive-bacon"; + "reactive-balsa" = dontDistribute super."reactive-balsa"; + "reactive-banana" = dontDistribute super."reactive-banana"; + "reactive-banana-sdl" = dontDistribute super."reactive-banana-sdl"; + "reactive-banana-sdl2" = dontDistribute super."reactive-banana-sdl2"; + "reactive-banana-threepenny" = dontDistribute super."reactive-banana-threepenny"; + "reactive-banana-wx" = dontDistribute super."reactive-banana-wx"; + "reactive-fieldtrip" = dontDistribute super."reactive-fieldtrip"; + "reactive-glut" = dontDistribute super."reactive-glut"; + "reactive-haskell" = dontDistribute super."reactive-haskell"; + "reactive-io" = dontDistribute super."reactive-io"; + "reactive-thread" = dontDistribute super."reactive-thread"; + "reactivity" = dontDistribute super."reactivity"; + "reactor" = dontDistribute super."reactor"; + "read-bounded" = dontDistribute super."read-bounded"; + "readline-statevar" = dontDistribute super."readline-statevar"; + "readpyc" = dontDistribute super."readpyc"; + "really-simple-xml-parser" = dontDistribute super."really-simple-xml-parser"; + "reasonable-lens" = dontDistribute super."reasonable-lens"; + "reasonable-operational" = dontDistribute super."reasonable-operational"; + "rebase" = dontDistribute super."rebase"; + "recaptcha" = dontDistribute super."recaptcha"; + "record" = dontDistribute super."record"; + "record-aeson" = dontDistribute super."record-aeson"; + "record-gl" = dontDistribute super."record-gl"; + "record-preprocessor" = dontDistribute super."record-preprocessor"; + "record-syntax" = dontDistribute super."record-syntax"; + "records" = dontDistribute super."records"; + "records-th" = dontDistribute super."records-th"; + "recursive-line-count" = dontDistribute super."recursive-line-count"; + "redHandlers" = dontDistribute super."redHandlers"; + "reddit" = dontDistribute super."reddit"; + "redis" = dontDistribute super."redis"; + "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; + "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; + "redis-simple" = dontDistribute super."redis-simple"; + "redo" = dontDistribute super."redo"; + "reedsolomon" = dontDistribute super."reedsolomon"; + "reenact" = dontDistribute super."reenact"; + "reexport-crypto-random" = dontDistribute super."reexport-crypto-random"; + "ref" = dontDistribute super."ref"; + "ref-mtl" = dontDistribute super."ref-mtl"; + "ref-tf" = dontDistribute super."ref-tf"; + "refcount" = dontDistribute super."refcount"; + "reference" = dontDistribute super."reference"; + "references" = dontDistribute super."references"; + "refh" = dontDistribute super."refh"; + "refined" = dontDistribute super."refined"; + "reflection-extras" = dontDistribute super."reflection-extras"; + "reflection-without-remorse" = dontDistribute super."reflection-without-remorse"; + "reflex" = dontDistribute super."reflex"; + "reflex-animation" = dontDistribute super."reflex-animation"; + "reflex-dom" = dontDistribute super."reflex-dom"; + "reflex-dom-contrib" = dontDistribute super."reflex-dom-contrib"; + "reflex-gloss" = dontDistribute super."reflex-gloss"; + "reflex-gloss-scene" = dontDistribute super."reflex-gloss-scene"; + "reflex-orphans" = dontDistribute super."reflex-orphans"; + "reflex-transformers" = dontDistribute super."reflex-transformers"; + "regex-deriv" = dontDistribute super."regex-deriv"; + "regex-dfa" = dontDistribute super."regex-dfa"; + "regex-easy" = dontDistribute super."regex-easy"; + "regex-genex" = dontDistribute super."regex-genex"; + "regex-parsec" = dontDistribute super."regex-parsec"; + "regex-pderiv" = dontDistribute super."regex-pderiv"; + "regex-posix-unittest" = dontDistribute super."regex-posix-unittest"; + "regex-tdfa-pipes" = dontDistribute super."regex-tdfa-pipes"; + "regex-tdfa-quasiquoter" = dontDistribute super."regex-tdfa-quasiquoter"; + "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; + "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; + "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; + "regex-xmlschema" = dontDistribute super."regex-xmlschema"; + "regexchar" = dontDistribute super."regexchar"; + "regexdot" = dontDistribute super."regexdot"; + "regexp-tries" = dontDistribute super."regexp-tries"; + "regexpr" = dontDistribute super."regexpr"; + "regexpr-symbolic" = dontDistribute super."regexpr-symbolic"; + "regexqq" = dontDistribute super."regexqq"; + "regional-pointers" = dontDistribute super."regional-pointers"; + "regions" = dontDistribute super."regions"; + "regions-monadsfd" = dontDistribute super."regions-monadsfd"; + "regions-monadstf" = dontDistribute super."regions-monadstf"; + "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; + "regress" = dontDistribute super."regress"; + "regular" = dontDistribute super."regular"; + "regular-extras" = dontDistribute super."regular-extras"; + "regular-web" = dontDistribute super."regular-web"; + "regular-xmlpickler" = dontDistribute super."regular-xmlpickler"; + "reheat" = dontDistribute super."reheat"; + "rehoo" = dontDistribute super."rehoo"; + "rei" = dontDistribute super."rei"; + "reified-records" = dontDistribute super."reified-records"; + "reify" = dontDistribute super."reify"; + "relacion" = dontDistribute super."relacion"; + "relation" = dontDistribute super."relation"; + "relational-postgresql8" = dontDistribute super."relational-postgresql8"; + "relational-query" = dontDistribute super."relational-query"; + "relational-query-HDBC" = dontDistribute super."relational-query-HDBC"; + "relational-record" = dontDistribute super."relational-record"; + "relational-record-examples" = dontDistribute super."relational-record-examples"; + "relational-schemas" = dontDistribute super."relational-schemas"; + "relative-date" = dontDistribute super."relative-date"; + "relit" = dontDistribute super."relit"; + "rematch" = dontDistribute super."rematch"; + "rematch-text" = dontDistribute super."rematch-text"; + "remote" = dontDistribute super."remote"; + "remote-debugger" = dontDistribute super."remote-debugger"; + "remote-json" = dontDistribute super."remote-json"; + "remote-json-client" = dontDistribute super."remote-json-client"; + "remote-json-server" = dontDistribute super."remote-json-server"; + "remote-monad" = dontDistribute super."remote-monad"; + "remotion" = dontDistribute super."remotion"; + "renderable" = dontDistribute super."renderable"; + "reord" = dontDistribute super."reord"; + "reorderable" = dontDistribute super."reorderable"; + "repa-array" = dontDistribute super."repa-array"; + "repa-bytestring" = dontDistribute super."repa-bytestring"; + "repa-convert" = dontDistribute super."repa-convert"; + "repa-eval" = dontDistribute super."repa-eval"; + "repa-examples" = dontDistribute super."repa-examples"; + "repa-fftw" = dontDistribute super."repa-fftw"; + "repa-flow" = dontDistribute super."repa-flow"; + "repa-linear-algebra" = dontDistribute super."repa-linear-algebra"; + "repa-plugin" = dontDistribute super."repa-plugin"; + "repa-scalar" = dontDistribute super."repa-scalar"; + "repa-series" = dontDistribute super."repa-series"; + "repa-sndfile" = dontDistribute super."repa-sndfile"; + "repa-stream" = dontDistribute super."repa-stream"; + "repa-v4l2" = dontDistribute super."repa-v4l2"; + "repl" = dontDistribute super."repl"; + "repl-toolkit" = dontDistribute super."repl-toolkit"; + "repline" = dontDistribute super."repline"; + "repo-based-blog" = dontDistribute super."repo-based-blog"; + "repr" = dontDistribute super."repr"; + "repr-tree-syb" = dontDistribute super."repr-tree-syb"; + "representable-functors" = dontDistribute super."representable-functors"; + "representable-profunctors" = dontDistribute super."representable-profunctors"; + "representable-tries" = dontDistribute super."representable-tries"; + "reqcatcher" = dontDistribute super."reqcatcher"; + "request-monad" = dontDistribute super."request-monad"; + "reserve" = dontDistribute super."reserve"; + "resistor-cube" = dontDistribute super."resistor-cube"; + "resource-effect" = dontDistribute super."resource-effect"; + "resource-embed" = dontDistribute super."resource-embed"; + "resource-pool-catchio" = dontDistribute super."resource-pool-catchio"; + "resource-pool-monad" = dontDistribute super."resource-pool-monad"; + "resource-simple" = dontDistribute super."resource-simple"; + "respond" = dontDistribute super."respond"; + "rest-core" = doDistribute super."rest-core_0_37"; + "rest-example" = dontDistribute super."rest-example"; + "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "restful-snap" = dontDistribute super."restful-snap"; + "restricted-workers" = dontDistribute super."restricted-workers"; + "restyle" = dontDistribute super."restyle"; + "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb-model" = dontDistribute super."rethinkdb-model"; + "rethinkdb-wereHamster" = dontDistribute super."rethinkdb-wereHamster"; + "retryer" = dontDistribute super."retryer"; + "revdectime" = dontDistribute super."revdectime"; + "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; + "reverse-geocoding" = dontDistribute super."reverse-geocoding"; + "reversi" = dontDistribute super."reversi"; + "rewrite" = dontDistribute super."rewrite"; + "rewriting" = dontDistribute super."rewriting"; + "rex" = dontDistribute super."rex"; + "rezoom" = dontDistribute super."rezoom"; + "rfc3339" = dontDistribute super."rfc3339"; + "rhythm-game-tutorial" = dontDistribute super."rhythm-game-tutorial"; + "riak" = doDistribute super."riak_0_9_1_1"; + "riak-protobuf" = doDistribute super."riak-protobuf_0_20_0_0"; + "richreports" = dontDistribute super."richreports"; + "riemann" = dontDistribute super."riemann"; + "riff" = dontDistribute super."riff"; + "ring-buffer" = dontDistribute super."ring-buffer"; + "riot" = dontDistribute super."riot"; + "ripple" = dontDistribute super."ripple"; + "ripple-federation" = dontDistribute super."ripple-federation"; + "risc386" = dontDistribute super."risc386"; + "rivers" = dontDistribute super."rivers"; + "rivet" = dontDistribute super."rivet"; + "rivet-core" = dontDistribute super."rivet-core"; + "rivet-migration" = dontDistribute super."rivet-migration"; + "rivet-simple-deploy" = dontDistribute super."rivet-simple-deploy"; + "rlglue" = dontDistribute super."rlglue"; + "rlist" = dontDistribute super."rlist"; + "rmonad" = dontDistribute super."rmonad"; + "rncryptor" = dontDistribute super."rncryptor"; + "rng-utils" = dontDistribute super."rng-utils"; + "robin" = dontDistribute super."robin"; + "robot" = dontDistribute super."robot"; + "robots-txt" = dontDistribute super."robots-txt"; + "rocksdb-haskell" = dontDistribute super."rocksdb-haskell"; + "roguestar" = dontDistribute super."roguestar"; + "roguestar-engine" = dontDistribute super."roguestar-engine"; + "roguestar-gl" = dontDistribute super."roguestar-gl"; + "roguestar-glut" = dontDistribute super."roguestar-glut"; + "rollbar" = dontDistribute super."rollbar"; + "roller" = dontDistribute super."roller"; + "rolling-queue" = dontDistribute super."rolling-queue"; + "roman-numerals" = dontDistribute super."roman-numerals"; + "romkan" = dontDistribute super."romkan"; + "roots" = dontDistribute super."roots"; + "rope" = dontDistribute super."rope"; + "rosa" = dontDistribute super."rosa"; + "rose-trie" = dontDistribute super."rose-trie"; + "roshask" = dontDistribute super."roshask"; + "rosso" = dontDistribute super."rosso"; + "rot13" = dontDistribute super."rot13"; + "rotating-log" = dontDistribute super."rotating-log"; + "rounding" = dontDistribute super."rounding"; + "roundtrip" = dontDistribute super."roundtrip"; + "roundtrip-aeson" = dontDistribute super."roundtrip-aeson"; + "roundtrip-string" = dontDistribute super."roundtrip-string"; + "roundtrip-xml" = dontDistribute super."roundtrip-xml"; + "route-generator" = dontDistribute super."route-generator"; + "route-planning" = dontDistribute super."route-planning"; + "rowrecord" = dontDistribute super."rowrecord"; + "rpc" = dontDistribute super."rpc"; + "rpc-framework" = dontDistribute super."rpc-framework"; + "rpf" = dontDistribute super."rpf"; + "rpm" = dontDistribute super."rpm"; + "rsagl" = dontDistribute super."rsagl"; + "rsagl-frp" = dontDistribute super."rsagl-frp"; + "rsagl-math" = dontDistribute super."rsagl-math"; + "rspp" = dontDistribute super."rspp"; + "rss" = dontDistribute super."rss"; + "rss-conduit" = dontDistribute super."rss-conduit"; + "rss2irc" = dontDistribute super."rss2irc"; + "rtcm" = dontDistribute super."rtcm"; + "rtld" = dontDistribute super."rtld"; + "rtlsdr" = dontDistribute super."rtlsdr"; + "rtorrent-rpc" = dontDistribute super."rtorrent-rpc"; + "rtorrent-state" = dontDistribute super."rtorrent-state"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "sampling" = dontDistribute super."sampling"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_2_1_1"; + "scan" = dontDistribute super."scan"; + "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; + "scat" = dontDistribute super."scat"; + "scc" = dontDistribute super."scc"; + "scenegraph" = dontDistribute super."scenegraph"; + "scgi" = dontDistribute super."scgi"; + "schedevr" = dontDistribute super."schedevr"; + "schedule-planner" = dontDistribute super."schedule-planner"; + "schedyield" = dontDistribute super."schedyield"; + "scholdoc" = dontDistribute super."scholdoc"; + "scholdoc-citeproc" = dontDistribute super."scholdoc-citeproc"; + "scholdoc-texmath" = dontDistribute super."scholdoc-texmath"; + "scholdoc-types" = dontDistribute super."scholdoc-types"; + "schonfinkeling" = dontDistribute super."schonfinkeling"; + "sci-ratio" = dontDistribute super."sci-ratio"; + "science-constants" = dontDistribute super."science-constants"; + "science-constants-dimensional" = dontDistribute super."science-constants-dimensional"; + "scion" = dontDistribute super."scion"; + "scion-browser" = dontDistribute super."scion-browser"; + "scons2dot" = dontDistribute super."scons2dot"; + "scope" = dontDistribute super."scope"; + "scope-cairo" = dontDistribute super."scope-cairo"; + "scottish" = dontDistribute super."scottish"; + "scotty" = doDistribute super."scotty_0_10_2"; + "scotty-binding-play" = dontDistribute super."scotty-binding-play"; + "scotty-blaze" = dontDistribute super."scotty-blaze"; + "scotty-cookie" = dontDistribute super."scotty-cookie"; + "scotty-fay" = dontDistribute super."scotty-fay"; + "scotty-hastache" = dontDistribute super."scotty-hastache"; + "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; + "scotty-rest" = dontDistribute super."scotty-rest"; + "scotty-session" = dontDistribute super."scotty-session"; + "scotty-tls" = dontDistribute super."scotty-tls"; + "scp-streams" = dontDistribute super."scp-streams"; + "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; + "scrobble" = dontDistribute super."scrobble"; + "scroll" = dontDistribute super."scroll"; + "scrz" = dontDistribute super."scrz"; + "scyther-proof" = dontDistribute super."scyther-proof"; + "sde-solver" = dontDistribute super."sde-solver"; + "sdf2p1-parser" = dontDistribute super."sdf2p1-parser"; + "sdl2-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = doDistribute super."second-transfer_0_7_1_0"; + "secp256k1" = dontDistribute super."secp256k1"; + "secret-santa" = dontDistribute super."secret-santa"; + "secret-sharing" = dontDistribute super."secret-sharing"; + "secrm" = dontDistribute super."secrm"; + "secure-sockets" = dontDistribute super."secure-sockets"; + "sednaDBXML" = dontDistribute super."sednaDBXML"; + "select" = dontDistribute super."select"; + "selectors" = dontDistribute super."selectors"; + "selenium" = dontDistribute super."selenium"; + "selenium-server" = dontDistribute super."selenium-server"; + "selfrestart" = dontDistribute super."selfrestart"; + "selinux" = dontDistribute super."selinux"; + "semaphore-plus" = dontDistribute super."semaphore-plus"; + "semi-iso" = dontDistribute super."semi-iso"; + "semigroupoids-syntax" = dontDistribute super."semigroupoids-syntax"; + "semigroups-actions" = dontDistribute super."semigroups-actions"; + "semiring" = dontDistribute super."semiring"; + "semiring-simple" = dontDistribute super."semiring-simple"; + "semver-range" = dontDistribute super."semver-range"; + "sendgrid-haskell" = dontDistribute super."sendgrid-haskell"; + "sensei" = dontDistribute super."sensei"; + "sensenet" = dontDistribute super."sensenet"; + "sentry" = dontDistribute super."sentry"; + "senza" = dontDistribute super."senza"; + "separated" = dontDistribute super."separated"; + "seqaid" = dontDistribute super."seqaid"; + "seqid" = dontDistribute super."seqid"; + "seqid-streams" = dontDistribute super."seqid-streams"; + "seqloc-datafiles" = dontDistribute super."seqloc-datafiles"; + "sequence" = dontDistribute super."sequence"; + "sequent-core" = dontDistribute super."sequent-core"; + "sequential-index" = dontDistribute super."sequential-index"; + "sequor" = dontDistribute super."sequor"; + "serial" = dontDistribute super."serial"; + "serial-test-generators" = dontDistribute super."serial-test-generators"; + "serialport" = dontDistribute super."serialport"; + "serv" = dontDistribute super."serv"; + "serv-wai" = dontDistribute super."serv-wai"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-cassava" = dontDistribute super."servant-cassava"; + "servant-ede" = dontDistribute super."servant-ede"; + "servant-elm" = dontDistribute super."servant-elm"; + "servant-examples" = dontDistribute super."servant-examples"; + "servant-foreign" = dontDistribute super."servant-foreign"; + "servant-github" = dontDistribute super."servant-github"; + "servant-haxl-client" = dontDistribute super."servant-haxl-client"; + "servant-js" = dontDistribute super."servant-js"; + "servant-lucid" = dontDistribute super."servant-lucid"; + "servant-mock" = dontDistribute super."servant-mock"; + "servant-pandoc" = dontDistribute super."servant-pandoc"; + "servant-pool" = dontDistribute super."servant-pool"; + "servant-postgresql" = dontDistribute super."servant-postgresql"; + "servant-response" = dontDistribute super."servant-response"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-extra" = doDistribute super."set-extra_1_3_2"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "shivers-cfg" = dontDistribute super."shivers-cfg"; + "shoap" = dontDistribute super."shoap"; + "shortcircuit" = dontDistribute super."shortcircuit"; + "shorten-strings" = dontDistribute super."shorten-strings"; + "show" = dontDistribute super."show"; + "show-type" = dontDistribute super."show-type"; + "showdown" = dontDistribute super."showdown"; + "shpider" = dontDistribute super."shpider"; + "shplit" = dontDistribute super."shplit"; + "shqq" = dontDistribute super."shqq"; + "shuffle" = dontDistribute super."shuffle"; + "sieve" = dontDistribute super."sieve"; + "sifflet" = dontDistribute super."sifflet"; + "sifflet-lib" = dontDistribute super."sifflet-lib"; + "sign" = dontDistribute super."sign"; + "signals" = dontDistribute super."signals"; + "signed-multiset" = dontDistribute super."signed-multiset"; + "simd" = dontDistribute super."simd"; + "simgi" = dontDistribute super."simgi"; + "simple-actors" = dontDistribute super."simple-actors"; + "simple-atom" = dontDistribute super."simple-atom"; + "simple-bluetooth" = dontDistribute super."simple-bluetooth"; + "simple-c-value" = dontDistribute super."simple-c-value"; + "simple-conduit" = dontDistribute super."simple-conduit"; + "simple-config" = dontDistribute super."simple-config"; + "simple-css" = dontDistribute super."simple-css"; + "simple-eval" = dontDistribute super."simple-eval"; + "simple-firewire" = dontDistribute super."simple-firewire"; + "simple-form" = dontDistribute super."simple-form"; + "simple-genetic-algorithm" = dontDistribute super."simple-genetic-algorithm"; + "simple-genetic-algorithm-mr" = dontDistribute super."simple-genetic-algorithm-mr"; + "simple-get-opt" = dontDistribute super."simple-get-opt"; + "simple-index" = dontDistribute super."simple-index"; + "simple-log" = dontDistribute super."simple-log"; + "simple-log-syslog" = dontDistribute super."simple-log-syslog"; + "simple-neural-networks" = dontDistribute super."simple-neural-networks"; + "simple-nix" = dontDistribute super."simple-nix"; + "simple-observer" = dontDistribute super."simple-observer"; + "simple-pascal" = dontDistribute super."simple-pascal"; + "simple-pipe" = dontDistribute super."simple-pipe"; + "simple-rope" = dontDistribute super."simple-rope"; + "simple-server" = dontDistribute super."simple-server"; + "simple-sessions" = dontDistribute super."simple-sessions"; + "simple-sql-parser" = dontDistribute super."simple-sql-parser"; + "simple-stacked-vm" = dontDistribute super."simple-stacked-vm"; + "simple-tabular" = dontDistribute super."simple-tabular"; + "simple-vec3" = dontDistribute super."simple-vec3"; + "simpleargs" = dontDistribute super."simpleargs"; + "simpleirc" = dontDistribute super."simpleirc"; + "simpleirc-lens" = dontDistribute super."simpleirc-lens"; + "simplenote" = dontDistribute super."simplenote"; + "simpleprelude" = dontDistribute super."simpleprelude"; + "simplesmtpclient" = dontDistribute super."simplesmtpclient"; + "simplessh" = dontDistribute super."simplessh"; + "simplest-sqlite" = dontDistribute super."simplest-sqlite"; + "simplex" = dontDistribute super."simplex"; + "simplex-basic" = dontDistribute super."simplex-basic"; + "simseq" = dontDistribute super."simseq"; + "simtreelo" = dontDistribute super."simtreelo"; + "sindre" = dontDistribute super."sindre"; + "singleton-nats" = dontDistribute super."singleton-nats"; + "sink" = dontDistribute super."sink"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "smt-lib" = dontDistribute super."smt-lib"; + "smtlib2" = dontDistribute super."smtlib2"; + "smtp-mail-ng" = dontDistribute super."smtp-mail-ng"; + "smtp2mta" = dontDistribute super."smtp2mta"; + "smtps-gmail" = dontDistribute super."smtps-gmail"; + "snake-game" = dontDistribute super."snake-game"; + "snap-accept" = dontDistribute super."snap-accept"; + "snap-app" = dontDistribute super."snap-app"; + "snap-auth-cli" = dontDistribute super."snap-auth-cli"; + "snap-blaze" = dontDistribute super."snap-blaze"; + "snap-blaze-clay" = dontDistribute super."snap-blaze-clay"; + "snap-configuration-utilities" = dontDistribute super."snap-configuration-utilities"; + "snap-cors" = dontDistribute super."snap-cors"; + "snap-elm" = dontDistribute super."snap-elm"; + "snap-error-collector" = dontDistribute super."snap-error-collector"; + "snap-extras" = dontDistribute super."snap-extras"; + "snap-language" = dontDistribute super."snap-language"; + "snap-loader-dynamic" = dontDistribute super."snap-loader-dynamic"; + "snap-loader-static" = dontDistribute super."snap-loader-static"; + "snap-predicates" = dontDistribute super."snap-predicates"; + "snap-testing" = dontDistribute super."snap-testing"; + "snap-utils" = dontDistribute super."snap-utils"; + "snap-web-routes" = dontDistribute super."snap-web-routes"; + "snaplet-acid-state" = dontDistribute super."snaplet-acid-state"; + "snaplet-actionlog" = dontDistribute super."snaplet-actionlog"; + "snaplet-amqp" = dontDistribute super."snaplet-amqp"; + "snaplet-auth-acid" = dontDistribute super."snaplet-auth-acid"; + "snaplet-coffee" = dontDistribute super."snaplet-coffee"; + "snaplet-css-min" = dontDistribute super."snaplet-css-min"; + "snaplet-environments" = dontDistribute super."snaplet-environments"; + "snaplet-ghcjs" = dontDistribute super."snaplet-ghcjs"; + "snaplet-hasql" = dontDistribute super."snaplet-hasql"; + "snaplet-haxl" = dontDistribute super."snaplet-haxl"; + "snaplet-hdbc" = dontDistribute super."snaplet-hdbc"; + "snaplet-hslogger" = dontDistribute super."snaplet-hslogger"; + "snaplet-i18n" = dontDistribute super."snaplet-i18n"; + "snaplet-influxdb" = dontDistribute super."snaplet-influxdb"; + "snaplet-lss" = dontDistribute super."snaplet-lss"; + "snaplet-mandrill" = dontDistribute super."snaplet-mandrill"; + "snaplet-mongoDB" = dontDistribute super."snaplet-mongoDB"; + "snaplet-mongodb-minimalistic" = dontDistribute super."snaplet-mongodb-minimalistic"; + "snaplet-mysql-simple" = dontDistribute super."snaplet-mysql-simple"; + "snaplet-oauth" = dontDistribute super."snaplet-oauth"; + "snaplet-persistent" = dontDistribute super."snaplet-persistent"; + "snaplet-postgresql-simple" = dontDistribute super."snaplet-postgresql-simple"; + "snaplet-postmark" = dontDistribute super."snaplet-postmark"; + "snaplet-purescript" = dontDistribute super."snaplet-purescript"; + "snaplet-recaptcha" = dontDistribute super."snaplet-recaptcha"; + "snaplet-redis" = dontDistribute super."snaplet-redis"; + "snaplet-redson" = dontDistribute super."snaplet-redson"; + "snaplet-rest" = dontDistribute super."snaplet-rest"; + "snaplet-riak" = dontDistribute super."snaplet-riak"; + "snaplet-sass" = dontDistribute super."snaplet-sass"; + "snaplet-sedna" = dontDistribute super."snaplet-sedna"; + "snaplet-ses-html" = dontDistribute super."snaplet-ses-html"; + "snaplet-sqlite-simple" = dontDistribute super."snaplet-sqlite-simple"; + "snaplet-stripe" = dontDistribute super."snaplet-stripe"; + "snaplet-tasks" = dontDistribute super."snaplet-tasks"; + "snaplet-typed-sessions" = dontDistribute super."snaplet-typed-sessions"; + "snaplet-wordpress" = dontDistribute super."snaplet-wordpress"; + "snappy" = dontDistribute super."snappy"; + "snappy-conduit" = dontDistribute super."snappy-conduit"; + "snappy-framing" = dontDistribute super."snappy-framing"; + "snappy-iteratee" = dontDistribute super."snappy-iteratee"; + "sndfile-enumerators" = dontDistribute super."sndfile-enumerators"; + "sneakyterm" = dontDistribute super."sneakyterm"; + "sneathlane-haste" = dontDistribute super."sneathlane-haste"; + "snippet-extractor" = dontDistribute super."snippet-extractor"; + "snm" = dontDistribute super."snm"; + "snow-white" = dontDistribute super."snow-white"; + "snowball" = dontDistribute super."snowball"; + "snowglobe" = dontDistribute super."snowglobe"; + "sock2stream" = dontDistribute super."sock2stream"; + "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; + "socket-activation" = dontDistribute super."socket-activation"; + "socket-sctp" = dontDistribute super."socket-sctp"; + "socketio" = dontDistribute super."socketio"; + "socketson" = dontDistribute super."socketson"; + "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; + "sonic-visualiser" = dontDistribute super."sonic-visualiser"; + "sophia" = dontDistribute super."sophia"; + "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; + "sorted" = dontDistribute super."sorted"; + "sorting" = dontDistribute super."sorting"; + "sorty" = dontDistribute super."sorty"; + "sound-collage" = dontDistribute super."sound-collage"; + "sounddelay" = dontDistribute super."sounddelay"; + "source-code-server" = dontDistribute super."source-code-server"; + "sousit" = dontDistribute super."sousit"; + "sox" = dontDistribute super."sox"; + "soxlib" = dontDistribute super."soxlib"; + "soyuz" = dontDistribute super."soyuz"; + "spacefill" = dontDistribute super."spacefill"; + "spacepart" = dontDistribute super."spacepart"; + "spaceprobe" = dontDistribute super."spaceprobe"; + "spanout" = dontDistribute super."spanout"; + "sparse" = dontDistribute super."sparse"; + "sparse-lin-alg" = dontDistribute super."sparse-lin-alg"; + "sparsebit" = dontDistribute super."sparsebit"; + "sparsecheck" = dontDistribute super."sparsecheck"; + "sparser" = dontDistribute super."sparser"; + "spata" = dontDistribute super."spata"; + "spatial-math" = dontDistribute super."spatial-math"; + "spawn" = dontDistribute super."spawn"; + "spe" = dontDistribute super."spe"; + "special-functors" = dontDistribute super."special-functors"; + "special-keys" = dontDistribute super."special-keys"; + "specialize-th" = dontDistribute super."specialize-th"; + "species" = dontDistribute super."species"; + "speculation-transformers" = dontDistribute super."speculation-transformers"; + "spelling-suggest" = dontDistribute super."spelling-suggest"; + "sphero" = dontDistribute super."sphero"; + "sphinx-cli" = dontDistribute super."sphinx-cli"; + "spice" = dontDistribute super."spice"; + "spike" = dontDistribute super."spike"; + "spine" = dontDistribute super."spine"; + "spir-v" = dontDistribute super."spir-v"; + "splay" = dontDistribute super."splay"; + "splaytree" = dontDistribute super."splaytree"; + "spline3" = dontDistribute super."spline3"; + "splines" = dontDistribute super."splines"; + "split-channel" = dontDistribute super."split-channel"; + "split-record" = dontDistribute super."split-record"; + "split-tchan" = dontDistribute super."split-tchan"; + "splitter" = dontDistribute super."splitter"; + "splot" = dontDistribute super."splot"; + "spool" = dontDistribute super."spool"; + "spoonutil" = dontDistribute super."spoonutil"; + "spoty" = dontDistribute super."spoty"; + "spreadsheet" = dontDistribute super."spreadsheet"; + "spritz" = dontDistribute super."spritz"; + "spsa" = dontDistribute super."spsa"; + "spy" = dontDistribute super."spy"; + "sql-simple" = dontDistribute super."sql-simple"; + "sql-simple-mysql" = dontDistribute super."sql-simple-mysql"; + "sql-simple-pool" = dontDistribute super."sql-simple-pool"; + "sql-simple-postgresql" = dontDistribute super."sql-simple-postgresql"; + "sql-simple-sqlite" = dontDistribute super."sql-simple-sqlite"; + "sql-words" = dontDistribute super."sql-words"; + "sqlite" = dontDistribute super."sqlite"; + "sqlite-simple-typed" = dontDistribute super."sqlite-simple-typed"; + "sqlvalue-list" = dontDistribute super."sqlvalue-list"; + "squeeze" = dontDistribute super."squeeze"; + "sr-extra" = dontDistribute super."sr-extra"; + "srcinst" = dontDistribute super."srcinst"; + "srec" = dontDistribute super."srec"; + "sscgi" = dontDistribute super."sscgi"; + "ssh" = dontDistribute super."ssh"; + "sshd-lint" = dontDistribute super."sshd-lint"; + "sshtun" = dontDistribute super."sshtun"; + "sssp" = dontDistribute super."sssp"; + "sstable" = dontDistribute super."sstable"; + "ssv" = dontDistribute super."ssv"; + "stable-heap" = dontDistribute super."stable-heap"; + "stable-maps" = dontDistribute super."stable-maps"; + "stable-marriage" = dontDistribute super."stable-marriage"; + "stable-memo" = dontDistribute super."stable-memo"; + "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "stopwatch" = dontDistribute super."stopwatch"; + "storable" = dontDistribute super."storable"; + "storable-record" = dontDistribute super."storable-record"; + "storable-static-array" = dontDistribute super."storable-static-array"; + "storable-tuple" = dontDistribute super."storable-tuple"; + "storablevector" = dontDistribute super."storablevector"; + "storablevector-carray" = dontDistribute super."storablevector-carray"; + "storablevector-streamfusion" = dontDistribute super."storablevector-streamfusion"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-base-types" = doDistribute super."strict-base-types_0_4_0"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-conv" = dontDistribute super."string-conv"; + "string-convert" = dontDistribute super."string-convert"; + "string-quote" = dontDistribute super."string-quote"; + "string-similarity" = dontDistribute super."string-similarity"; + "string-typelits" = dontDistribute super."string-typelits"; + "stringlike" = dontDistribute super."stringlike"; + "stringprep" = dontDistribute super."stringprep"; + "strings" = dontDistribute super."strings"; + "stringtable-atom" = dontDistribute super."stringtable-atom"; + "strio" = dontDistribute super."strio"; + "stripe" = dontDistribute super."stripe"; + "stripe-http-streams" = doDistribute super."stripe-http-streams_2_0_2"; + "strive" = dontDistribute super."strive"; + "strptime" = dontDistribute super."strptime"; + "structs" = dontDistribute super."structs"; + "structural-induction" = dontDistribute super."structural-induction"; + "structured-haskell-mode" = dontDistribute super."structured-haskell-mode"; + "structured-mongoDB" = dontDistribute super."structured-mongoDB"; + "structures" = dontDistribute super."structures"; + "stunclient" = dontDistribute super."stunclient"; + "stunts" = dontDistribute super."stunts"; + "stylized" = dontDistribute super."stylized"; + "sub-state" = dontDistribute super."sub-state"; + "subhask" = dontDistribute super."subhask"; + "subleq-toolchain" = dontDistribute super."subleq-toolchain"; + "subnet" = dontDistribute super."subnet"; + "subtitleParser" = dontDistribute super."subtitleParser"; + "subtitles" = dontDistribute super."subtitles"; + "suffixarray" = dontDistribute super."suffixarray"; + "suffixtree" = dontDistribute super."suffixtree"; + "sugarhaskell" = dontDistribute super."sugarhaskell"; + "suitable" = dontDistribute super."suitable"; + "sump" = dontDistribute super."sump"; + "sundown" = dontDistribute super."sundown"; + "sunlight" = dontDistribute super."sunlight"; + "sunroof-compiler" = dontDistribute super."sunroof-compiler"; + "sunroof-examples" = dontDistribute super."sunroof-examples"; + "sunroof-server" = dontDistribute super."sunroof-server"; + "super-user-spark" = dontDistribute super."super-user-spark"; + "supercollider-ht" = dontDistribute super."supercollider-ht"; + "supercollider-midi" = dontDistribute super."supercollider-midi"; + "superdoc" = dontDistribute super."superdoc"; + "supero" = dontDistribute super."supero"; + "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; + "suspend" = dontDistribute super."suspend"; + "svg-builder" = dontDistribute super."svg-builder"; + "svg-tree" = doDistribute super."svg-tree_0_3_2"; + "svg2q" = dontDistribute super."svg2q"; + "svgcairo" = dontDistribute super."svgcairo"; + "svgutils" = dontDistribute super."svgutils"; + "svm" = dontDistribute super."svm"; + "svm-light-utils" = dontDistribute super."svm-light-utils"; + "svm-simple" = dontDistribute super."svm-simple"; + "svndump" = dontDistribute super."svndump"; + "swagger2" = doDistribute super."swagger2_1_2_1"; + "swapper" = dontDistribute super."swapper"; + "swearjure" = dontDistribute super."swearjure"; + "swf" = dontDistribute super."swf"; + "swift-lda" = dontDistribute super."swift-lda"; + "swish" = dontDistribute super."swish"; + "sws" = dontDistribute super."sws"; + "syb-extras" = dontDistribute super."syb-extras"; + "syb-with-class-instances-text" = dontDistribute super."syb-with-class-instances-text"; + "sylvia" = dontDistribute super."sylvia"; + "sym" = dontDistribute super."sym"; + "sym-plot" = dontDistribute super."sym-plot"; + "symbol" = dontDistribute super."symbol"; + "symengine-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-time-monotonic" = dontDistribute super."system-time-monotonic"; + "system-util" = dontDistribute super."system-util"; + "system-uuid" = dontDistribute super."system-uuid"; + "systemd" = dontDistribute super."systemd"; + "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; + "ta" = dontDistribute super."ta"; + "table" = dontDistribute super."table"; + "table-tennis" = dontDistribute super."table-tennis"; + "tableaux" = dontDistribute super."tableaux"; + "tables" = dontDistribute super."tables"; + "tablestorage" = dontDistribute super."tablestorage"; + "tabloid" = dontDistribute super."tabloid"; + "taffybar" = dontDistribute super."taffybar"; + "tag-bits" = dontDistribute super."tag-bits"; + "tag-stream" = dontDistribute super."tag-stream"; + "tagchup" = dontDistribute super."tagchup"; + "tagged-exception-core" = dontDistribute super."tagged-exception-core"; + "tagged-list" = dontDistribute super."tagged-list"; + "tagged-th" = dontDistribute super."tagged-th"; + "tagged-timers" = dontDistribute super."tagged-timers"; + "tagged-transformer" = dontDistribute super."tagged-transformer"; + "tagging" = dontDistribute super."tagging"; + "taggy" = dontDistribute super."taggy"; + "taggy-lens" = dontDistribute super."taggy-lens"; + "taglib" = dontDistribute super."taglib"; + "taglib-api" = dontDistribute super."taglib-api"; + "tagset-positional" = dontDistribute super."tagset-positional"; + "tagsoup-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "telegram-api" = dontDistribute super."telegram-api"; + "teleport" = dontDistribute super."teleport"; + "template-default" = dontDistribute super."template-default"; + "template-haskell-util" = dontDistribute super."template-haskell-util"; + "template-hsml" = dontDistribute super."template-hsml"; + "template-yj" = dontDistribute super."template-yj"; + "templatepg" = dontDistribute super."templatepg"; + "templater" = dontDistribute super."templater"; + "tempodb" = dontDistribute super."tempodb"; + "temporal-csound" = dontDistribute super."temporal-csound"; + "temporal-media" = dontDistribute super."temporal-media"; + "temporal-music-notation" = dontDistribute super."temporal-music-notation"; + "temporal-music-notation-demo" = dontDistribute super."temporal-music-notation-demo"; + "temporal-music-notation-western" = dontDistribute super."temporal-music-notation-western"; + "temporary-resourcet" = dontDistribute super."temporary-resourcet"; + "tempus" = dontDistribute super."tempus"; + "tempus-fugit" = dontDistribute super."tempus-fugit"; + "tensor" = dontDistribute super."tensor"; + "term-rewriting" = dontDistribute super."term-rewriting"; + "termbox-bindings" = dontDistribute super."termbox-bindings"; + "termination-combinators" = dontDistribute super."termination-combinators"; + "terminfo" = doDistribute super."terminfo_0_4_0_2"; + "terminfo-hs" = dontDistribute super."terminfo-hs"; + "termplot" = dontDistribute super."termplot"; + "terntup" = dontDistribute super."terntup"; + "terrahs" = dontDistribute super."terrahs"; + "tersmu" = dontDistribute super."tersmu"; + "test-framework-doctest" = dontDistribute super."test-framework-doctest"; + "test-framework-golden" = dontDistribute super."test-framework-golden"; + "test-framework-program" = dontDistribute super."test-framework-program"; + "test-framework-quickcheck" = dontDistribute super."test-framework-quickcheck"; + "test-framework-sandbox" = dontDistribute super."test-framework-sandbox"; + "test-framework-skip" = dontDistribute super."test-framework-skip"; + "test-framework-testing-feat" = dontDistribute super."test-framework-testing-feat"; + "test-invariant" = dontDistribute super."test-invariant"; + "test-pkg" = dontDistribute super."test-pkg"; + "test-sandbox" = dontDistribute super."test-sandbox"; + "test-sandbox-compose" = dontDistribute super."test-sandbox-compose"; + "test-sandbox-hunit" = dontDistribute super."test-sandbox-hunit"; + "test-sandbox-quickcheck" = dontDistribute super."test-sandbox-quickcheck"; + "test-shouldbe" = dontDistribute super."test-shouldbe"; + "testPkg" = dontDistribute super."testPkg"; + "testing-type-modifiers" = dontDistribute super."testing-type-modifiers"; + "testloop" = dontDistribute super."testloop"; + "testpack" = dontDistribute super."testpack"; + "testpattern" = dontDistribute super."testpattern"; + "testrunner" = dontDistribute super."testrunner"; + "tetris" = dontDistribute super."tetris"; + "tex2txt" = dontDistribute super."tex2txt"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-ldap" = dontDistribute super."text-ldap"; + "text-locale-encoding" = dontDistribute super."text-locale-encoding"; + "text-normal" = dontDistribute super."text-normal"; + "text-position" = dontDistribute super."text-position"; + "text-postgresql" = dontDistribute super."text-postgresql"; + "text-printer" = dontDistribute super."text-printer"; + "text-regex-replace" = dontDistribute super."text-regex-replace"; + "text-region" = dontDistribute super."text-region"; + "text-register-machine" = dontDistribute super."text-register-machine"; + "text-render" = dontDistribute super."text-render"; + "text-show-instances" = dontDistribute super."text-show-instances"; + "text-stream-decode" = dontDistribute super."text-stream-decode"; + "text-utf7" = dontDistribute super."text-utf7"; + "text-xml-generic" = dontDistribute super."text-xml-generic"; + "text-xml-qq" = dontDistribute super."text-xml-qq"; + "text1" = dontDistribute super."text1"; + "textPlot" = dontDistribute super."textPlot"; + "textmatetags" = dontDistribute super."textmatetags"; + "textocat-api" = dontDistribute super."textocat-api"; + "texts" = dontDistribute super."texts"; + "textual" = dontDistribute super."textual"; + "tfp" = dontDistribute super."tfp"; + "tfp-th" = dontDistribute super."tfp-th"; + "tftp" = dontDistribute super."tftp"; + "tga" = dontDistribute super."tga"; + "th-alpha" = dontDistribute super."th-alpha"; + "th-build" = dontDistribute super."th-build"; + "th-cas" = dontDistribute super."th-cas"; + "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; + "th-fold" = dontDistribute super."th-fold"; + "th-inline-io-action" = dontDistribute super."th-inline-io-action"; + "th-instance-reification" = dontDistribute super."th-instance-reification"; + "th-instances" = dontDistribute super."th-instances"; + "th-kinds" = dontDistribute super."th-kinds"; + "th-kinds-fork" = dontDistribute super."th-kinds-fork"; + "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-printf" = dontDistribute super."th-printf"; + "th-sccs" = dontDistribute super."th-sccs"; + "th-traced" = dontDistribute super."th-traced"; + "th-typegraph" = dontDistribute super."th-typegraph"; + "themoviedb" = dontDistribute super."themoviedb"; + "themplate" = dontDistribute super."themplate"; + "theoremquest" = dontDistribute super."theoremquest"; + "theoremquest-client" = dontDistribute super."theoremquest-client"; + "thespian" = dontDistribute super."thespian"; + "theta-functions" = dontDistribute super."theta-functions"; + "thih" = dontDistribute super."thih"; + "thimk" = dontDistribute super."thimk"; + "thorn" = dontDistribute super."thorn"; + "thread-local-storage" = dontDistribute super."thread-local-storage"; + "threadPool" = dontDistribute super."threadPool"; + "threadmanager" = dontDistribute super."threadmanager"; + "threads-pool" = dontDistribute super."threads-pool"; + "threads-supervisor" = dontDistribute super."threads-supervisor"; + "threadscope" = dontDistribute super."threadscope"; + "threefish" = dontDistribute super."threefish"; + "threepenny-gui" = dontDistribute super."threepenny-gui"; + "thrift" = dontDistribute super."thrift"; + "thrist" = dontDistribute super."thrist"; + "throttle" = dontDistribute super."throttle"; + "thumbnail" = dontDistribute super."thumbnail"; + "tianbar" = dontDistribute super."tianbar"; + "tic-tac-toe" = dontDistribute super."tic-tac-toe"; + "tickle" = dontDistribute super."tickle"; + "tictactoe3d" = dontDistribute super."tictactoe3d"; + "tidal" = dontDistribute super."tidal"; + "tidal-midi" = dontDistribute super."tidal-midi"; + "tidal-vis" = dontDistribute super."tidal-vis"; + "tie-knot" = dontDistribute super."tie-knot"; + "tiempo" = dontDistribute super."tiempo"; + "tiger" = dontDistribute super."tiger"; + "tight-apply" = dontDistribute super."tight-apply"; + "tightrope" = dontDistribute super."tightrope"; + "tighttp" = dontDistribute super."tighttp"; + "tilings" = dontDistribute super."tilings"; + "timberc" = dontDistribute super."timberc"; + "time-cache" = dontDistribute super."time-cache"; + "time-extras" = dontDistribute super."time-extras"; + "time-exts" = dontDistribute super."time-exts"; + "time-http" = dontDistribute super."time-http"; + "time-interval" = dontDistribute super."time-interval"; + "time-io-access" = dontDistribute super."time-io-access"; + "time-out" = dontDistribute super."time-out"; + "time-patterns" = dontDistribute super."time-patterns"; + "time-qq" = dontDistribute super."time-qq"; + "time-recurrence" = dontDistribute super."time-recurrence"; + "time-series" = dontDistribute super."time-series"; + "time-w3c" = dontDistribute super."time-w3c"; + "timecalc" = dontDistribute super."timecalc"; + "timeconsole" = dontDistribute super."timeconsole"; + "timeless" = dontDistribute super."timeless"; + "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; + "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = dontDistribute super."timemap"; + "timeout" = dontDistribute super."timeout"; + "timeout-control" = dontDistribute super."timeout-control"; + "timeout-with-results" = dontDistribute super."timeout-with-results"; + "timeparsers" = dontDistribute super."timeparsers"; + "timeplot" = dontDistribute super."timeplot"; + "timers" = dontDistribute super."timers"; + "timers-updatable" = dontDistribute super."timers-updatable"; + "timestamp-subprocess-lines" = dontDistribute super."timestamp-subprocess-lines"; + "timestamper" = dontDistribute super."timestamper"; + "timezone-olson-th" = dontDistribute super."timezone-olson-th"; + "timing-convenience" = dontDistribute super."timing-convenience"; + "tinyMesh" = dontDistribute super."tinyMesh"; + "tinylog" = doDistribute super."tinylog_0_12_1"; + "tip-haskell-frontend" = dontDistribute super."tip-haskell-frontend"; + "tip-lib" = dontDistribute super."tip-lib"; + "tiphys" = dontDistribute super."tiphys"; + "titlecase" = dontDistribute super."titlecase"; + "tkhs" = dontDistribute super."tkhs"; + "tkyprof" = dontDistribute super."tkyprof"; + "tld" = dontDistribute super."tld"; + "tls-extra" = dontDistribute super."tls-extra"; + "tmpl" = dontDistribute super."tmpl"; + "tn" = dontDistribute super."tn"; + "tnet" = dontDistribute super."tnet"; + "to-haskell" = dontDistribute super."to-haskell"; + "to-string-class" = dontDistribute super."to-string-class"; + "to-string-instances" = dontDistribute super."to-string-instances"; + "todos" = dontDistribute super."todos"; + "tofromxml" = dontDistribute super."tofromxml"; + "toilet" = dontDistribute super."toilet"; + "tokenify" = dontDistribute super."tokenify"; + "tokenize" = dontDistribute super."tokenize"; + "toktok" = dontDistribute super."toktok"; + "tokyocabinet-haskell" = dontDistribute super."tokyocabinet-haskell"; + "tokyotyrant-haskell" = dontDistribute super."tokyotyrant-haskell"; + "tomato-rubato-openal" = dontDistribute super."tomato-rubato-openal"; + "toml" = dontDistribute super."toml"; + "toolshed" = dontDistribute super."toolshed"; + "topkata" = dontDistribute super."topkata"; + "torch" = dontDistribute super."torch"; + "total" = dontDistribute super."total"; + "total-alternative" = dontDistribute super."total-alternative"; + "total-map" = dontDistribute super."total-map"; + "total-maps" = dontDistribute super."total-maps"; + "touched" = dontDistribute super."touched"; + "toysolver" = dontDistribute super."toysolver"; + "tpdb" = dontDistribute super."tpdb"; + "trace" = dontDistribute super."trace"; + "trace-call" = dontDistribute super."trace-call"; + "trace-function-call" = dontDistribute super."trace-function-call"; + "traced" = dontDistribute super."traced"; + "tracer" = dontDistribute super."tracer"; + "tracker" = dontDistribute super."tracker"; + "trajectory" = dontDistribute super."trajectory"; + "transactional-events" = dontDistribute super."transactional-events"; + "transf" = dontDistribute super."transf"; + "transformations" = dontDistribute super."transformations"; + "transformers-abort" = dontDistribute super."transformers-abort"; + "transformers-compose" = dontDistribute super."transformers-compose"; + "transformers-convert" = dontDistribute super."transformers-convert"; + "transformers-free" = dontDistribute super."transformers-free"; + "transformers-runnable" = dontDistribute super."transformers-runnable"; + "transformers-supply" = dontDistribute super."transformers-supply"; + "transient" = dontDistribute super."transient"; + "translatable-intset" = dontDistribute super."translatable-intset"; + "translate" = dontDistribute super."translate"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-fun" = dontDistribute super."tree-fun"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "tslib" = dontDistribute super."tslib"; + "tslogger" = dontDistribute super."tslogger"; + "tsp-viz" = dontDistribute super."tsp-viz"; + "tsparse" = dontDistribute super."tsparse"; + "tst" = dontDistribute super."tst"; + "tsvsql" = dontDistribute super."tsvsql"; + "tttool" = doDistribute super."tttool_1_5_1"; + "tubes" = dontDistribute super."tubes"; + "tuntap" = dontDistribute super."tuntap"; + "tup-functor" = dontDistribute super."tup-functor"; + "tuple" = dontDistribute super."tuple"; + "tuple-gen" = dontDistribute super."tuple-gen"; + "tuple-generic" = dontDistribute super."tuple-generic"; + "tuple-hlist" = dontDistribute super."tuple-hlist"; + "tuple-lenses" = dontDistribute super."tuple-lenses"; + "tuple-morph" = dontDistribute super."tuple-morph"; + "tupleinstances" = dontDistribute super."tupleinstances"; + "turing" = dontDistribute super."turing"; + "turing-music" = dontDistribute super."turing-music"; + "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; + "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; + "turtle-options" = dontDistribute super."turtle-options"; + "tweak" = dontDistribute super."tweak"; + "twee" = dontDistribute super."twee"; + "twentefp" = dontDistribute super."twentefp"; + "twentefp-eventloop-graphics" = dontDistribute super."twentefp-eventloop-graphics"; + "twentefp-eventloop-trees" = dontDistribute super."twentefp-eventloop-trees"; + "twentefp-graphs" = dontDistribute super."twentefp-graphs"; + "twentefp-number" = dontDistribute super."twentefp-number"; + "twentefp-rosetree" = dontDistribute super."twentefp-rosetree"; + "twentefp-trees" = dontDistribute super."twentefp-trees"; + "twentefp-websockets" = dontDistribute super."twentefp-websockets"; + "twentyseven" = dontDistribute super."twentyseven"; + "twhs" = dontDistribute super."twhs"; + "twidge" = dontDistribute super."twidge"; + "twilight-stm" = dontDistribute super."twilight-stm"; + "twilio" = dontDistribute super."twilio"; + "twill" = dontDistribute super."twill"; + "twiml" = dontDistribute super."twiml"; + "twine" = dontDistribute super."twine"; + "twisty" = dontDistribute super."twisty"; + "twitch" = dontDistribute super."twitch"; + "twitter" = dontDistribute super."twitter"; + "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "tx" = dontDistribute super."tx"; + "txt-sushi" = dontDistribute super."txt-sushi"; + "txt2rtf" = dontDistribute super."txt2rtf"; + "txtblk" = dontDistribute super."txtblk"; + "ty" = dontDistribute super."ty"; + "typalyze" = dontDistribute super."typalyze"; + "type-booleans" = dontDistribute super."type-booleans"; + "type-cache" = dontDistribute super."type-cache"; + "type-cereal" = dontDistribute super."type-cereal"; + "type-combinators" = dontDistribute super."type-combinators"; + "type-combinators-quote" = dontDistribute super."type-combinators-quote"; + "type-digits" = dontDistribute super."type-digits"; + "type-equality" = dontDistribute super."type-equality"; + "type-equality-check" = dontDistribute super."type-equality-check"; + "type-fun" = dontDistribute super."type-fun"; + "type-functions" = dontDistribute super."type-functions"; + "type-hint" = dontDistribute super."type-hint"; + "type-int" = dontDistribute super."type-int"; + "type-iso" = dontDistribute super."type-iso"; + "type-level" = dontDistribute super."type-level"; + "type-level-bst" = dontDistribute super."type-level-bst"; + "type-level-natural-number" = dontDistribute super."type-level-natural-number"; + "type-level-natural-number-induction" = dontDistribute super."type-level-natural-number-induction"; + "type-level-natural-number-operations" = dontDistribute super."type-level-natural-number-operations"; + "type-level-sets" = dontDistribute super."type-level-sets"; + "type-level-tf" = dontDistribute super."type-level-tf"; + "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; + "type-ord" = dontDistribute super."type-ord"; + "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; + "type-prelude" = dontDistribute super."type-prelude"; + "type-settheory" = dontDistribute super."type-settheory"; + "type-spine" = dontDistribute super."type-spine"; + "type-structure" = dontDistribute super."type-structure"; + "type-sub-th" = dontDistribute super."type-sub-th"; + "type-unary" = dontDistribute super."type-unary"; + "typeable-th" = dontDistribute super."typeable-th"; + "typed-spreadsheet" = dontDistribute super."typed-spreadsheet"; + "typed-wire" = dontDistribute super."typed-wire"; + "typed-wire-utils" = dontDistribute super."typed-wire-utils"; + "typedquery" = dontDistribute super."typedquery"; + "typehash" = dontDistribute super."typehash"; + "typelevel" = dontDistribute super."typelevel"; + "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typeof" = dontDistribute super."typeof"; + "typeparams" = dontDistribute super."typeparams"; + "typesafe-endian" = dontDistribute super."typesafe-endian"; + "typescript-docs" = dontDistribute super."typescript-docs"; + "typical" = dontDistribute super."typical"; + "typography-geometry" = dontDistribute super."typography-geometry"; + "uAgda" = dontDistribute super."uAgda"; + "ua-parser" = dontDistribute super."ua-parser"; + "uacpid" = dontDistribute super."uacpid"; + "uberlast" = dontDistribute super."uberlast"; + "uconv" = dontDistribute super."uconv"; + "udbus" = dontDistribute super."udbus"; + "udbus-model" = dontDistribute super."udbus-model"; + "udcode" = dontDistribute super."udcode"; + "udev" = dontDistribute super."udev"; + "uhc-light" = dontDistribute super."uhc-light"; + "uhc-util" = dontDistribute super."uhc-util"; + "uhexdump" = dontDistribute super."uhexdump"; + "uhttpc" = dontDistribute super."uhttpc"; + "ui-command" = dontDistribute super."ui-command"; + "uid" = dontDistribute super."uid"; + "una" = dontDistribute super."una"; + "unagi-chan" = dontDistribute super."unagi-chan"; + "unagi-streams" = dontDistribute super."unagi-streams"; + "unamb" = dontDistribute super."unamb"; + "unamb-custom" = dontDistribute super."unamb-custom"; + "unbound" = dontDistribute super."unbound"; + "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; + "unboxed-containers" = dontDistribute super."unboxed-containers"; + "unbreak" = dontDistribute super."unbreak"; + "unfoldable" = dontDistribute super."unfoldable"; + "ungadtagger" = dontDistribute super."ungadtagger"; + "uni-events" = dontDistribute super."uni-events"; + "uni-graphs" = dontDistribute super."uni-graphs"; + "uni-htk" = dontDistribute super."uni-htk"; + "uni-posixutil" = dontDistribute super."uni-posixutil"; + "uni-reactor" = dontDistribute super."uni-reactor"; + "uni-uDrawGraph" = dontDistribute super."uni-uDrawGraph"; + "uni-util" = dontDistribute super."uni-util"; + "unicode" = dontDistribute super."unicode"; + "unicode-names" = dontDistribute super."unicode-names"; + "unicode-normalization" = dontDistribute super."unicode-normalization"; + "unicode-prelude" = dontDistribute super."unicode-prelude"; + "unicode-properties" = dontDistribute super."unicode-properties"; + "unicode-show" = dontDistribute super."unicode-show"; + "unicode-symbols" = dontDistribute super."unicode-symbols"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union" = dontDistribute super."union"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_1_9_2"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "users" = doDistribute super."users_0_4_0_0"; + "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; + "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; + "users-test" = doDistribute super."users-test_0_4_0_0"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "vado" = dontDistribute super."vado"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcsgui" = dontDistribute super."vcsgui"; + "vcswrapper" = dontDistribute super."vcswrapper"; + "vect" = dontDistribute super."vect"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "versions" = dontDistribute super."versions"; + "vhdl" = dontDistribute super."vhdl"; + "views" = dontDistribute super."views"; + "vigilance" = dontDistribute super."vigilance"; + "vimeta" = dontDistribute super."vimeta"; + "vimus" = dontDistribute super."vimus"; + "vintage-basic" = dontDistribute super."vintage-basic"; + "vinyl-gl" = dontDistribute super."vinyl-gl"; + "vinyl-json" = dontDistribute super."vinyl-json"; + "vinyl-plus" = dontDistribute super."vinyl-plus"; + "vinyl-utils" = dontDistribute super."vinyl-utils"; + "vinyl-vectors" = dontDistribute super."vinyl-vectors"; + "virthualenv" = dontDistribute super."virthualenv"; + "visibility" = dontDistribute super."visibility"; + "vision" = dontDistribute super."vision"; + "visual-graphrewrite" = dontDistribute super."visual-graphrewrite"; + "visual-prof" = dontDistribute super."visual-prof"; + "vivid" = dontDistribute super."vivid"; + "vk-aws-route53" = dontDistribute super."vk-aws-route53"; + "vk-posix-pty" = dontDistribute super."vk-posix-pty"; + "vocabulary-kadma" = dontDistribute super."vocabulary-kadma"; + "vorbiscomment" = dontDistribute super."vorbiscomment"; + "vowpal-utils" = dontDistribute super."vowpal-utils"; + "voyeur" = dontDistribute super."voyeur"; + "vrpn" = dontDistribute super."vrpn"; + "vte" = dontDistribute super."vte"; + "vtegtk3" = dontDistribute super."vtegtk3"; + "vty-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-middleware-cache" = dontDistribute super."wai-middleware-cache"; + "wai-middleware-cache-redis" = dontDistribute super."wai-middleware-cache-redis"; + "wai-middleware-catch" = dontDistribute super."wai-middleware-catch"; + "wai-middleware-content-type" = dontDistribute super."wai-middleware-content-type"; + "wai-middleware-etag" = dontDistribute super."wai-middleware-etag"; + "wai-middleware-gunzip" = dontDistribute super."wai-middleware-gunzip"; + "wai-middleware-headers" = dontDistribute super."wai-middleware-headers"; + "wai-middleware-hmac" = dontDistribute super."wai-middleware-hmac"; + "wai-middleware-hmac-client" = dontDistribute super."wai-middleware-hmac-client"; + "wai-middleware-preprocessor" = dontDistribute super."wai-middleware-preprocessor"; + "wai-middleware-route" = dontDistribute super."wai-middleware-route"; + "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; + "wai-middleware-verbs" = dontDistribute super."wai-middleware-verbs"; + "wai-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp" = doDistribute super."warp_3_2_2"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-mongrel2" = dontDistribute super."web-mongrel2"; + "web-page" = dontDistribute super."web-page"; + "web-routes-mtl" = dontDistribute super."web-routes-mtl"; + "web-routes-quasi" = dontDistribute super."web-routes-quasi"; + "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-transformers" = dontDistribute super."web-routes-transformers"; + "webapi" = dontDistribute super."webapi"; + "webapp" = dontDistribute super."webapp"; + "webcrank" = dontDistribute super."webcrank"; + "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; + "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver-snoy" = dontDistribute super."webdriver-snoy"; + "webfinger-client" = dontDistribute super."webfinger-client"; + "webidl" = dontDistribute super."webidl"; + "webify" = dontDistribute super."webify"; + "webkit" = dontDistribute super."webkit"; + "webkit-javascriptcore" = dontDistribute super."webkit-javascriptcore"; + "webkitgtk3" = dontDistribute super."webkitgtk3"; + "webkitgtk3-javascriptcore" = dontDistribute super."webkitgtk3-javascriptcore"; + "webrtc-vad" = dontDistribute super."webrtc-vad"; + "webserver" = dontDistribute super."webserver"; + "websnap" = dontDistribute super."websnap"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weighted-regexp" = dontDistribute super."weighted-regexp"; + "weighted-search" = dontDistribute super."weighted-search"; + "welshy" = dontDistribute super."welshy"; + "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; + "wheb-mongo" = dontDistribute super."wheb-mongo"; + "wheb-redis" = dontDistribute super."wheb-redis"; + "wheb-strapped" = dontDistribute super."wheb-strapped"; + "while-lang-parser" = dontDistribute super."while-lang-parser"; + "whim" = dontDistribute super."whim"; + "whiskers" = dontDistribute super."whiskers"; + "whitespace" = dontDistribute super."whitespace"; + "whois" = dontDistribute super."whois"; + "why3" = dontDistribute super."why3"; + "wigner-symbols" = dontDistribute super."wigner-symbols"; + "wikipedia4epub" = dontDistribute super."wikipedia4epub"; + "win-hp-path" = dontDistribute super."win-hp-path"; + "windowslive" = dontDistribute super."windowslive"; + "winerror" = dontDistribute super."winerror"; + "winio" = dontDistribute super."winio"; + "wiring" = dontDistribute super."wiring"; + "with-location" = doDistribute super."with-location_0_0_0"; + "witness" = dontDistribute super."witness"; + "witty" = dontDistribute super."witty"; + "wkt" = dontDistribute super."wkt"; + "wl-pprint-ansiterm" = dontDistribute super."wl-pprint-ansiterm"; + "wlc-hs" = dontDistribute super."wlc-hs"; + "wobsurv" = dontDistribute super."wobsurv"; + "woffex" = dontDistribute super."woffex"; + "wol" = dontDistribute super."wol"; + "wolf" = dontDistribute super."wolf"; + "woot" = dontDistribute super."woot"; + "word24" = dontDistribute super."word24"; + "wordcloud" = dontDistribute super."wordcloud"; + "wordexp" = dontDistribute super."wordexp"; + "words" = dontDistribute super."words"; + "wordsearch" = dontDistribute super."wordsearch"; + "wordsetdiff" = dontDistribute super."wordsetdiff"; + "workflow-osx" = dontDistribute super."workflow-osx"; + "wp-archivebot" = dontDistribute super."wp-archivebot"; + "wraparound" = dontDistribute super."wraparound"; + "wraxml" = dontDistribute super."wraxml"; + "wreq-sb" = dontDistribute super."wreq-sb"; + "wright" = dontDistribute super."wright"; + "wsdl" = dontDistribute super."wsdl"; + "wsedit" = dontDistribute super."wsedit"; + "wtk" = dontDistribute super."wtk"; + "wtk-gtk" = dontDistribute super."wtk-gtk"; + "wumpus-basic" = dontDistribute super."wumpus-basic"; + "wumpus-core" = dontDistribute super."wumpus-core"; + "wumpus-drawing" = dontDistribute super."wumpus-drawing"; + "wumpus-microprint" = dontDistribute super."wumpus-microprint"; + "wumpus-tree" = dontDistribute super."wumpus-tree"; + "wuss" = dontDistribute super."wuss"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; + "xlsx-tabular" = dontDistribute super."xlsx-tabular"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "xsact" = dontDistribute super."xsact"; + "xsd" = dontDistribute super."xsd"; + "xsha1" = dontDistribute super."xsha1"; + "xslt" = dontDistribute super."xslt"; + "xtc" = dontDistribute super."xtc"; + "xtest" = dontDistribute super."xtest"; + "xturtle" = dontDistribute super."xturtle"; + "xxhash" = dontDistribute super."xxhash"; + "y0l0bot" = dontDistribute super."y0l0bot"; + "yabi" = dontDistribute super."yabi"; + "yabi-muno" = dontDistribute super."yabi-muno"; + "yahoo-finance-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-json" = dontDistribute super."yesod-json"; + "yesod-links" = dontDistribute super."yesod-links"; + "yesod-lucid" = dontDistribute super."yesod-lucid"; + "yesod-markdown" = dontDistribute super."yesod-markdown"; + "yesod-media-simple" = dontDistribute super."yesod-media-simple"; + "yesod-newsfeed" = doDistribute super."yesod-newsfeed_1_5"; + "yesod-paginate" = dontDistribute super."yesod-paginate"; + "yesod-pagination" = dontDistribute super."yesod-pagination"; + "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-platform" = dontDistribute super."yesod-platform"; + "yesod-pnotify" = dontDistribute super."yesod-pnotify"; + "yesod-pure" = dontDistribute super."yesod-pure"; + "yesod-purescript" = dontDistribute super."yesod-purescript"; + "yesod-raml" = dontDistribute super."yesod-raml"; + "yesod-raml-bin" = dontDistribute super."yesod-raml-bin"; + "yesod-raml-docs" = dontDistribute super."yesod-raml-docs"; + "yesod-raml-mock" = dontDistribute super."yesod-raml-mock"; + "yesod-recaptcha" = dontDistribute super."yesod-recaptcha"; + "yesod-routes" = dontDistribute super."yesod-routes"; + "yesod-routes-flow" = dontDistribute super."yesod-routes-flow"; + "yesod-routes-typescript" = dontDistribute super."yesod-routes-typescript"; + "yesod-rst" = dontDistribute super."yesod-rst"; + "yesod-s3" = dontDistribute super."yesod-s3"; + "yesod-sass" = dontDistribute super."yesod-sass"; + "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test-json" = dontDistribute super."yesod-test-json"; + "yesod-tls" = dontDistribute super."yesod-tls"; + "yesod-transloadit" = dontDistribute super."yesod-transloadit"; + "yesod-vend" = dontDistribute super."yesod-vend"; + "yesod-websockets-extra" = dontDistribute super."yesod-websockets-extra"; + "yesod-worker" = dontDistribute super."yesod-worker"; + "yet-another-logger" = dontDistribute super."yet-another-logger"; + "yhccore" = dontDistribute super."yhccore"; + "yi-contrib" = dontDistribute super."yi-contrib"; + "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; + "yi-gtk" = dontDistribute super."yi-gtk"; + "yi-monokai" = dontDistribute super."yi-monokai"; + "yi-snippet" = dontDistribute super."yi-snippet"; + "yi-solarized" = dontDistribute super."yi-solarized"; + "yi-spolsky" = dontDistribute super."yi-spolsky"; + "yi-vty" = dontDistribute super."yi-vty"; + "yices" = dontDistribute super."yices"; + "yices-easy" = dontDistribute super."yices-easy"; + "yices-painless" = dontDistribute super."yices-painless"; + "yjftp" = dontDistribute super."yjftp"; + "yjftp-libs" = dontDistribute super."yjftp-libs"; + "yjsvg" = dontDistribute super."yjsvg"; + "yjtools" = dontDistribute super."yjtools"; + "yocto" = dontDistribute super."yocto"; + "yoctoparsec" = dontDistribute super."yoctoparsec"; + "yoko" = dontDistribute super."yoko"; + "york-lava" = dontDistribute super."york-lava"; + "youtube" = dontDistribute super."youtube"; + "yql" = dontDistribute super."yql"; + "yst" = dontDistribute super."yst"; + "yuiGrid" = dontDistribute super."yuiGrid"; + "yuuko" = dontDistribute super."yuuko"; + "yxdb-utils" = dontDistribute super."yxdb-utils"; + "z3" = dontDistribute super."z3"; + "zalgo" = dontDistribute super."zalgo"; + "zampolit" = dontDistribute super."zampolit"; + "zasni-gerna" = dontDistribute super."zasni-gerna"; + "zcache" = dontDistribute super."zcache"; + "zenc" = dontDistribute super."zenc"; + "zendesk-api" = dontDistribute super."zendesk-api"; + "zeno" = dontDistribute super."zeno"; + "zerobin" = dontDistribute super."zerobin"; + "zeromq-haskell" = dontDistribute super."zeromq-haskell"; + "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; + "zeromq3-haskell" = dontDistribute super."zeromq3-haskell"; + "zeroth" = dontDistribute super."zeroth"; + "zigbee-znet25" = dontDistribute super."zigbee-znet25"; + "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; + "zip" = dontDistribute super."zip"; + "zip-conduit" = dontDistribute super."zip-conduit"; + "zipedit" = dontDistribute super."zipedit"; + "zipkin" = dontDistribute super."zipkin"; + "zipper" = dontDistribute super."zipper"; + "zippers" = dontDistribute super."zippers"; + "zippo" = dontDistribute super."zippo"; + "zlib-conduit" = dontDistribute super."zlib-conduit"; + "zmcat" = dontDistribute super."zmcat"; + "zmidi-core" = dontDistribute super."zmidi-core"; + "zmidi-score" = dontDistribute super."zmidi-score"; + "zmqat" = dontDistribute super."zmqat"; + "zoneinfo" = dontDistribute super."zoneinfo"; + "zoom" = dontDistribute super."zoom"; + "zoom-cache" = dontDistribute super."zoom-cache"; + "zoom-cache-pcm" = dontDistribute super."zoom-cache-pcm"; + "zoom-cache-sndfile" = dontDistribute super."zoom-cache-sndfile"; + "zoom-refs" = dontDistribute super."zoom-refs"; + "zot" = dontDistribute super."zot"; + "zsh-battery" = dontDistribute super."zsh-battery"; + "ztail" = dontDistribute super."ztail"; + +} diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 2f1000c92450..6bf2ccc526e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -262,6 +263,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -328,6 +330,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -531,6 +534,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -886,6 +890,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -1043,6 +1048,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1080,6 +1086,7 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; @@ -1123,6 +1130,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1238,6 +1246,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1257,6 +1266,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1285,6 +1295,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1337,6 +1348,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1376,6 +1388,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1472,6 +1487,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1508,6 +1524,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1554,6 +1571,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1574,6 +1592,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1697,6 +1716,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1722,6 +1742,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1922,6 +1943,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1936,6 +1958,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1954,6 +1977,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2020,6 +2044,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2147,6 +2172,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2172,6 +2199,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2402,6 +2430,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2479,6 +2508,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2507,6 +2537,7 @@ self: super: { "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2551,6 +2582,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2619,6 +2651,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2688,6 +2721,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2743,11 +2777,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2785,6 +2821,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "fail" = dontDistribute super."fail"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; @@ -2794,7 +2831,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2982,6 +3021,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3153,6 +3193,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3600,6 +3644,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3739,6 +3784,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4028,6 +4074,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4057,6 +4104,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4156,6 +4204,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4194,16 +4243,21 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4284,6 +4338,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4317,6 +4372,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4327,6 +4383,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4350,6 +4407,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4468,6 +4526,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4510,6 +4570,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4522,12 +4583,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4578,6 +4642,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4602,6 +4667,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4721,6 +4787,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4892,6 +4959,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4994,6 +5062,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -5011,9 +5080,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5032,6 +5103,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5069,6 +5141,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5199,6 +5272,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5237,6 +5311,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5258,6 +5333,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5310,6 +5386,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5649,6 +5726,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5816,7 +5894,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5913,6 +5993,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5967,6 +6048,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6102,11 +6184,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6162,6 +6247,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6198,7 +6284,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6236,6 +6324,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6248,6 +6337,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6327,6 +6417,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6461,6 +6552,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6490,11 +6583,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6607,6 +6702,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6701,6 +6797,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6713,6 +6810,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6801,12 +6899,14 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-io" = doDistribute super."socket-io_1_3_4"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6886,6 +6986,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -7018,6 +7119,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7077,6 +7179,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7114,6 +7219,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7219,6 +7325,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7282,6 +7389,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7369,6 +7477,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7396,6 +7505,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7450,6 +7560,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7549,6 +7660,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7595,9 +7707,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7694,8 +7808,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7790,6 +7906,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7860,6 +7977,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7961,8 +8079,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7973,16 +8093,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7995,6 +8118,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -8011,7 +8135,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index f831a7ec7cf1..7c359ae979b2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -528,6 +531,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -883,6 +887,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -938,6 +943,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1039,6 +1045,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1076,9 +1083,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-extra" = doDistribute super."aeson-extra_0_3_1_0"; "aeson-filthy" = dontDistribute super."aeson-filthy"; @@ -1118,6 +1127,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1233,6 +1243,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1252,6 +1263,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1279,6 +1291,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1331,6 +1344,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1370,6 +1384,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1466,6 +1483,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1500,6 +1518,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1546,6 +1565,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1566,6 +1586,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1689,6 +1710,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1714,6 +1736,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1912,6 +1935,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1926,6 +1950,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1944,6 +1969,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2010,6 +2036,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2135,6 +2162,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2160,6 +2189,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2389,6 +2419,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2465,6 +2496,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2493,6 +2525,7 @@ self: super: { "distributed-static" = doDistribute super."distributed-static_0_3_3_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2537,6 +2570,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2604,6 +2638,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2670,6 +2705,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2724,11 +2760,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2766,6 +2804,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2774,7 +2813,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2961,6 +3002,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3131,6 +3173,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3577,6 +3623,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3716,6 +3763,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -4005,6 +4053,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4034,6 +4083,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4133,6 +4183,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4171,16 +4222,21 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-megaparsec" = doDistribute super."hspec-megaparsec_0_1_0"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4261,6 +4317,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4294,6 +4351,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4304,6 +4362,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4327,6 +4386,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4444,6 +4504,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4486,6 +4548,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4498,12 +4561,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4554,6 +4620,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4578,6 +4645,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4697,6 +4765,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4868,6 +4937,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4969,6 +5039,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4986,9 +5057,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -5007,6 +5080,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5043,6 +5117,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5171,6 +5246,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5209,6 +5285,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5230,6 +5307,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5282,6 +5360,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5621,6 +5700,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5787,7 +5867,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5883,6 +5965,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5937,6 +6020,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6071,11 +6155,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6131,6 +6218,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6167,7 +6255,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6203,6 +6293,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6215,6 +6306,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6293,6 +6385,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6427,6 +6520,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6456,11 +6551,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6573,6 +6670,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6667,6 +6765,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6678,6 +6777,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6765,11 +6865,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6849,6 +6951,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6979,6 +7082,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7038,6 +7142,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7075,6 +7182,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7180,6 +7288,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7243,6 +7352,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7330,6 +7440,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7357,6 +7468,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7411,6 +7523,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7510,6 +7623,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7556,9 +7670,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7654,8 +7770,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7747,6 +7865,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7817,6 +7936,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7918,8 +8038,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7930,16 +8052,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7952,6 +8077,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7968,7 +8094,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index fc4d8cb7798b..1eb6d9d934e7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -527,6 +530,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -882,6 +886,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -937,6 +942,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1038,6 +1044,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1075,9 +1082,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1116,6 +1125,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1231,6 +1241,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1250,6 +1261,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1277,6 +1289,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1329,6 +1342,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1368,6 +1382,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1464,6 +1481,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1498,6 +1516,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1544,6 +1563,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1564,6 +1584,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1687,6 +1708,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1712,6 +1734,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1910,6 +1933,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1924,6 +1948,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1941,6 +1966,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2007,6 +2033,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2131,6 +2158,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2156,6 +2185,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2385,6 +2415,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2457,6 +2488,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2484,6 +2516,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2528,6 +2561,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2594,6 +2628,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2659,6 +2694,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2713,11 +2749,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2755,6 +2793,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2763,7 +2802,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2949,6 +2990,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3118,6 +3160,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3564,6 +3610,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3702,6 +3749,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3989,6 +4037,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4018,6 +4067,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4117,6 +4167,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4155,15 +4206,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4244,6 +4300,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4277,6 +4334,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4287,6 +4345,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4310,6 +4369,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4427,6 +4487,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4469,6 +4531,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4481,12 +4544,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4537,6 +4603,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4561,6 +4628,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4680,6 +4748,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4851,6 +4920,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4950,6 +5020,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4967,9 +5038,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4988,6 +5061,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5024,6 +5098,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5149,6 +5224,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5187,6 +5263,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5206,6 +5283,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5258,6 +5336,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5593,6 +5672,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5758,7 +5838,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5854,6 +5936,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5908,6 +5991,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6042,11 +6126,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6101,6 +6188,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6137,7 +6225,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6173,6 +6263,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6185,6 +6276,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6263,6 +6355,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6397,6 +6490,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6426,11 +6521,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6543,6 +6640,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6637,6 +6735,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6648,6 +6747,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6735,11 +6835,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6819,6 +6921,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6949,6 +7052,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7008,6 +7112,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7045,6 +7152,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7149,6 +7257,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7212,6 +7321,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7299,6 +7409,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7326,6 +7437,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7379,6 +7491,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7478,6 +7591,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7524,9 +7638,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7581,6 +7697,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7621,8 +7738,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7714,6 +7833,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7784,6 +7904,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7884,8 +8005,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7896,16 +8019,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7918,6 +8044,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7934,7 +8061,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 62c28b5dc613..170b4b23c8e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -527,6 +530,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -882,6 +886,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -937,6 +942,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1038,6 +1044,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1075,9 +1082,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1116,6 +1125,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1231,6 +1241,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1250,6 +1261,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1277,6 +1289,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1329,6 +1342,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1368,6 +1382,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1463,6 +1480,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1497,6 +1515,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1543,6 +1562,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1563,6 +1583,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1685,6 +1706,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1710,6 +1732,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1906,6 +1929,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1920,6 +1944,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1937,6 +1962,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -2003,6 +2029,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2127,6 +2154,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2152,6 +2181,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2381,6 +2411,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2453,6 +2484,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2480,6 +2512,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2524,6 +2557,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2590,6 +2624,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2655,6 +2690,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2709,11 +2745,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2751,6 +2789,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2759,7 +2798,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2945,6 +2986,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3114,6 +3156,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3559,6 +3605,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3697,6 +3744,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3984,6 +4032,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -4012,6 +4061,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4111,6 +4161,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4149,15 +4200,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4238,6 +4294,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4271,6 +4328,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4281,6 +4339,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4304,6 +4363,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4421,6 +4481,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4463,6 +4525,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4475,12 +4538,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4517,6 +4583,7 @@ self: super: { "jose" = dontDistribute super."jose"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; @@ -4530,6 +4597,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4554,6 +4622,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4673,6 +4742,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4748,6 +4818,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_10_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4843,6 +4914,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4942,6 +5014,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4959,9 +5032,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4980,6 +5055,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5016,6 +5092,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5141,6 +5218,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5179,6 +5257,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5198,6 +5277,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5250,6 +5330,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5585,6 +5666,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5750,7 +5832,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5846,6 +5930,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5900,6 +5985,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6034,11 +6120,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6093,6 +6182,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6129,7 +6219,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6165,6 +6257,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6177,6 +6270,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6255,6 +6349,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6389,6 +6484,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6418,11 +6515,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6535,6 +6634,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6629,6 +6729,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6640,6 +6741,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6727,11 +6829,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6811,6 +6915,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6941,6 +7046,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -7000,6 +7106,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7037,6 +7146,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7141,6 +7251,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7204,6 +7315,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7291,6 +7403,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7318,6 +7431,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7371,6 +7485,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7470,6 +7585,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7515,9 +7631,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7572,6 +7690,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7611,8 +7730,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7703,6 +7824,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7773,6 +7895,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7788,6 +7911,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -7872,8 +7996,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7884,16 +8010,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7906,6 +8035,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7922,7 +8052,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index ce744723e3b5..054cffa60425 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -526,6 +529,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -881,6 +885,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -936,6 +941,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1037,6 +1043,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1074,9 +1081,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1115,6 +1124,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1230,6 +1240,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1249,6 +1260,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1276,6 +1288,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1328,6 +1341,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1366,6 +1380,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1459,6 +1476,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1493,6 +1511,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1539,6 +1558,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1559,6 +1579,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1680,6 +1701,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1704,6 +1726,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1897,6 +1920,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1911,6 +1935,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1928,6 +1953,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -1994,6 +2020,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2011,6 +2038,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2117,6 +2145,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2141,6 +2171,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2370,6 +2401,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2442,6 +2474,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2469,6 +2502,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2513,6 +2547,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2579,6 +2614,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2644,6 +2680,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2698,11 +2735,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2740,6 +2779,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2748,7 +2788,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2934,6 +2976,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3085,6 +3128,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3100,6 +3144,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3544,6 +3592,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3682,6 +3731,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3890,6 +3940,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -3966,6 +4017,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -3994,6 +4046,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4093,6 +4146,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4131,15 +4185,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4181,6 +4240,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4219,6 +4279,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4252,6 +4313,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4262,6 +4324,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4285,6 +4348,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4402,6 +4466,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4444,6 +4510,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4456,12 +4523,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4498,6 +4568,7 @@ self: super: { "jose" = dontDistribute super."jose"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; @@ -4511,6 +4582,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4535,6 +4607,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4654,6 +4727,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4728,6 +4802,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_10_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4823,6 +4898,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4921,6 +4997,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4938,9 +5015,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4959,6 +5038,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -4995,6 +5075,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5120,6 +5201,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5158,6 +5240,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5177,6 +5260,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5229,6 +5313,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5563,6 +5648,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5726,7 +5812,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5822,6 +5910,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5876,6 +5965,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6010,11 +6100,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6069,6 +6162,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6105,7 +6199,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6141,6 +6237,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6153,6 +6250,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6230,6 +6328,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6364,6 +6463,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6393,11 +6494,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6510,6 +6613,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6604,6 +6708,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6615,6 +6720,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6702,11 +6808,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6786,6 +6894,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6891,6 +7000,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_15_2"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -6914,6 +7024,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -6973,6 +7084,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -7010,6 +7124,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7114,6 +7229,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7177,6 +7293,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7263,6 +7380,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7290,6 +7408,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7343,6 +7462,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7442,6 +7562,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7487,9 +7608,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7544,6 +7667,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7583,8 +7707,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7674,6 +7800,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7743,6 +7870,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7758,6 +7886,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -7841,8 +7970,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7853,16 +7984,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7875,6 +8009,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7891,7 +8026,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 2bda8436a28c..573e6d4d2a18 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -526,6 +529,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -881,6 +885,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -936,6 +941,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1037,6 +1043,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1074,9 +1081,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1115,6 +1124,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1230,6 +1240,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1249,6 +1260,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1276,6 +1288,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1328,6 +1341,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1366,6 +1380,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1459,6 +1476,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1493,6 +1511,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1539,6 +1558,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1559,6 +1579,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1680,6 +1701,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1704,6 +1726,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1894,6 +1917,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1908,6 +1932,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1925,6 +1950,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -1991,6 +2017,7 @@ self: super: { "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; "concurrent-output" = doDistribute super."concurrent-output_1_7_3"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2007,6 +2034,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2113,6 +2141,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2137,6 +2167,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2366,6 +2397,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2438,6 +2470,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2465,6 +2498,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2509,6 +2543,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2575,6 +2610,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2640,6 +2676,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2694,11 +2731,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2736,6 +2775,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2744,7 +2784,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2930,6 +2972,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3081,6 +3124,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3096,6 +3140,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3540,6 +3588,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3678,6 +3727,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3885,6 +3935,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -3961,6 +4012,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -3989,6 +4041,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4088,6 +4141,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4125,15 +4179,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4175,6 +4234,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4213,6 +4273,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4246,6 +4307,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4256,6 +4318,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4279,6 +4342,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4396,6 +4460,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4438,6 +4504,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4450,12 +4517,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4492,6 +4562,7 @@ self: super: { "jose" = dontDistribute super."jose"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; @@ -4505,6 +4576,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4529,6 +4601,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4648,6 +4721,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4722,6 +4796,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_10_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4817,6 +4892,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4915,6 +4991,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4932,9 +5009,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4953,6 +5032,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -4989,6 +5069,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5113,6 +5194,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5151,6 +5233,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5170,6 +5253,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5222,6 +5306,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5556,6 +5641,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5716,7 +5802,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5812,6 +5900,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5866,6 +5955,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -6000,11 +6090,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6059,6 +6152,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6095,7 +6189,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6131,6 +6227,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6143,6 +6240,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6220,6 +6318,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6354,6 +6453,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6382,11 +6483,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6499,6 +6602,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6593,6 +6697,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6604,6 +6709,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6691,11 +6797,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6775,6 +6883,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6878,6 +6987,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_15_2"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -6901,6 +7011,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -6960,6 +7071,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -6997,6 +7111,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7101,6 +7216,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7164,6 +7280,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7250,6 +7367,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7277,6 +7395,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7299,7 +7418,9 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7327,6 +7448,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7426,6 +7548,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7471,9 +7594,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7528,6 +7653,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7567,8 +7693,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7658,6 +7786,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7727,6 +7856,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7742,6 +7872,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -7825,8 +7956,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7837,16 +7970,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7859,6 +7995,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7875,7 +8012,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 0f0b7a65ccf1..33846a1f0941 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -526,6 +529,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -881,6 +885,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -936,6 +941,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1037,6 +1043,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1074,9 +1081,11 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-better-errors" = doDistribute super."aeson-better-errors_0_9_0"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1115,6 +1124,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1230,6 +1240,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1249,6 +1260,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1276,6 +1288,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1328,6 +1341,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1366,6 +1380,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1459,6 +1476,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1493,6 +1511,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1539,6 +1558,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1559,6 +1579,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1680,6 +1701,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1704,6 +1726,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1894,6 +1917,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1908,6 +1932,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1925,6 +1950,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -1990,6 +2016,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2006,6 +2033,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2112,6 +2140,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2136,6 +2166,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2365,6 +2396,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2437,6 +2469,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2464,6 +2497,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2508,6 +2542,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2574,6 +2609,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2639,6 +2675,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2693,11 +2730,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2735,6 +2774,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2743,7 +2783,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2869,6 +2911,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2928,6 +2971,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3079,6 +3123,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3094,6 +3139,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3538,6 +3587,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3676,6 +3726,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3883,6 +3934,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -3959,6 +4011,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -3987,6 +4040,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4086,6 +4140,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4123,15 +4178,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4173,6 +4233,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4211,6 +4272,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4244,6 +4306,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4254,6 +4317,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4277,6 +4341,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4394,6 +4459,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4436,6 +4503,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4448,12 +4516,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4490,6 +4561,7 @@ self: super: { "jose" = dontDistribute super."jose"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; @@ -4503,6 +4575,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4527,6 +4600,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4646,6 +4720,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4720,6 +4795,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_10_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4815,6 +4891,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4913,6 +4990,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4930,9 +5008,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4951,6 +5031,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -4987,6 +5068,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5111,6 +5193,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5149,6 +5232,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5168,6 +5252,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5220,6 +5305,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5554,6 +5640,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc" = doDistribute super."pandoc-citeproc_0_9"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; @@ -5714,7 +5801,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5810,6 +5899,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5864,6 +5954,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -5998,11 +6089,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6057,6 +6151,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6093,7 +6188,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6129,6 +6226,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6141,6 +6239,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6218,6 +6317,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6352,6 +6452,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6380,11 +6482,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6497,6 +6601,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6591,6 +6696,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6602,6 +6708,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6689,11 +6796,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6773,6 +6882,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6876,6 +6986,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_15_2"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -6899,6 +7010,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -6958,6 +7070,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -6995,6 +7110,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7099,6 +7215,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7162,6 +7279,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7248,6 +7366,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7275,6 +7394,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7297,7 +7417,9 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7325,6 +7447,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7424,6 +7547,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7469,9 +7593,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7525,6 +7651,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7564,8 +7691,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7654,6 +7783,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7723,6 +7853,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7738,6 +7869,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -7821,8 +7953,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7833,16 +7967,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7855,6 +7992,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7871,7 +8009,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 86b1a521d588..f62ae9defa25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -124,6 +124,7 @@ self: super: { "Bitly" = dontDistribute super."Bitly"; "Blobs" = dontDistribute super."Blobs"; "BlogLiterately" = doDistribute super."BlogLiterately_0_8_1_5"; + "BlogLiterately-diagrams" = doDistribute super."BlogLiterately-diagrams_0_2_0_2"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -261,6 +262,7 @@ self: super: { "DysFRP-Cairo" = dontDistribute super."DysFRP-Cairo"; "DysFRP-Craftwerk" = dontDistribute super."DysFRP-Craftwerk"; "EEConfig" = dontDistribute super."EEConfig"; + "Earley" = doDistribute super."Earley_0_10_1_0"; "EdisonAPI" = dontDistribute super."EdisonAPI"; "EdisonCore" = dontDistribute super."EdisonCore"; "EditTimeReport" = dontDistribute super."EditTimeReport"; @@ -326,6 +328,7 @@ self: super: { "GHood" = dontDistribute super."GHood"; "GLFW" = dontDistribute super."GLFW"; "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b" = doDistribute super."GLFW-b_1_4_7_3"; "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; "GLFW-task" = dontDistribute super."GLFW-task"; "GLHUI" = dontDistribute super."GLHUI"; @@ -526,6 +529,7 @@ self: super: { "IOR" = dontDistribute super."IOR"; "IORefCAS" = dontDistribute super."IORefCAS"; "IOSpec" = dontDistribute super."IOSpec"; + "IPv6Addr" = doDistribute super."IPv6Addr_0_6_0_2"; "IcoGrid" = dontDistribute super."IcoGrid"; "Imlib" = dontDistribute super."Imlib"; "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; @@ -881,6 +885,7 @@ self: super: { "TableAlgebra" = dontDistribute super."TableAlgebra"; "Tables" = dontDistribute super."Tables"; "Tablify" = dontDistribute super."Tablify"; + "Tahin" = dontDistribute super."Tahin"; "Tainted" = dontDistribute super."Tainted"; "Takusen" = dontDistribute super."Takusen"; "Tape" = dontDistribute super."Tape"; @@ -936,6 +941,7 @@ self: super: { "VecN" = dontDistribute super."VecN"; "Verba" = dontDistribute super."Verba"; "ViennaRNA-bindings" = dontDistribute super."ViennaRNA-bindings"; + "ViennaRNAParser" = doDistribute super."ViennaRNAParser_1_2_8"; "Vulkan" = dontDistribute super."Vulkan"; "WAVE" = dontDistribute super."WAVE"; "WL500gPControl" = dontDistribute super."WL500gPControl"; @@ -1037,6 +1043,7 @@ self: super: { "acme-http" = dontDistribute super."acme-http"; "acme-inator" = dontDistribute super."acme-inator"; "acme-io" = dontDistribute super."acme-io"; + "acme-left-pad" = dontDistribute super."acme-left-pad"; "acme-lolcat" = dontDistribute super."acme-lolcat"; "acme-lookofdisapproval" = dontDistribute super."acme-lookofdisapproval"; "acme-memorandom" = dontDistribute super."acme-memorandom"; @@ -1074,8 +1081,10 @@ self: super: { "adobe-swatch-exchange" = dontDistribute super."adobe-swatch-exchange"; "adp-multi" = dontDistribute super."adp-multi"; "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; + "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1114,6 +1123,7 @@ self: super: { "aivika-transformers" = dontDistribute super."aivika-transformers"; "ajhc" = dontDistribute super."ajhc"; "al" = dontDistribute super."al"; + "alarmclock" = doDistribute super."alarmclock_0_2_0_8"; "alea" = dontDistribute super."alea"; "alex-meta" = dontDistribute super."alex-meta"; "alfred" = dontDistribute super."alfred"; @@ -1229,6 +1239,7 @@ self: super: { "android" = dontDistribute super."android"; "android-lint-summary" = dontDistribute super."android-lint-summary"; "animalcase" = dontDistribute super."animalcase"; + "annihilator" = dontDistribute super."annihilator"; "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; "ansi-pretty" = dontDistribute super."ansi-pretty"; "ansigraph" = dontDistribute super."ansigraph"; @@ -1248,6 +1259,7 @@ self: super: { "api-builder" = dontDistribute super."api-builder"; "api-opentheory-unicode" = dontDistribute super."api-opentheory-unicode"; "api-tools" = dontDistribute super."api-tools"; + "apiary" = doDistribute super."apiary_1_4_5"; "apiary-helics" = dontDistribute super."apiary-helics"; "apiary-http-client" = dontDistribute super."apiary-http-client"; "apiary-purescript" = dontDistribute super."apiary-purescript"; @@ -1275,6 +1287,7 @@ self: super: { "arena" = dontDistribute super."arena"; "arff" = dontDistribute super."arff"; "arghwxhaskell" = dontDistribute super."arghwxhaskell"; + "argon" = doDistribute super."argon_0_4_0_0"; "argon2" = dontDistribute super."argon2"; "argparser" = dontDistribute super."argparser"; "arguedit" = dontDistribute super."arguedit"; @@ -1327,6 +1340,7 @@ self: super: { "atmos" = dontDistribute super."atmos"; "atmos-dimensional" = dontDistribute super."atmos-dimensional"; "atmos-dimensional-tf" = dontDistribute super."atmos-dimensional-tf"; + "atndapi" = dontDistribute super."atndapi"; "atom" = dontDistribute super."atom"; "atom-basic" = dontDistribute super."atom-basic"; "atom-conduit" = dontDistribute super."atom-conduit"; @@ -1365,6 +1379,9 @@ self: super: { "avahi" = dontDistribute super."avahi"; "avatar-generator" = dontDistribute super."avatar-generator"; "average" = dontDistribute super."average"; + "avers" = doDistribute super."avers_0_0_14"; + "avers-api" = doDistribute super."avers-api_0_0_2"; + "avers-server" = doDistribute super."avers-server_0_0_2"; "avl-static" = dontDistribute super."avl-static"; "avr-shake" = dontDistribute super."avr-shake"; "awesome-prelude" = dontDistribute super."awesome-prelude"; @@ -1458,6 +1475,7 @@ self: super: { "bff-mono" = dontDistribute super."bff-mono"; "bgmax" = dontDistribute super."bgmax"; "bgzf" = dontDistribute super."bgzf"; + "bibdb" = dontDistribute super."bibdb"; "bibtex" = dontDistribute super."bibtex"; "bidirectionalization-combined" = dontDistribute super."bidirectionalization-combined"; "bidispec" = dontDistribute super."bidispec"; @@ -1492,6 +1510,7 @@ self: super: { "binding-wx" = dontDistribute super."binding-wx"; "bindings" = dontDistribute super."bindings"; "bindings-EsounD" = dontDistribute super."bindings-EsounD"; + "bindings-GLFW" = doDistribute super."bindings-GLFW_3_1_1_4"; "bindings-K8055" = dontDistribute super."bindings-K8055"; "bindings-apr" = dontDistribute super."bindings-apr"; "bindings-apr-util" = dontDistribute super."bindings-apr-util"; @@ -1538,6 +1557,7 @@ self: super: { "bindings-sqlite3" = dontDistribute super."bindings-sqlite3"; "bindings-svm" = dontDistribute super."bindings-svm"; "bindings-uname" = dontDistribute super."bindings-uname"; + "bindings-wlc" = dontDistribute super."bindings-wlc"; "bindings-yices" = dontDistribute super."bindings-yices"; "bindynamic" = dontDistribute super."bindynamic"; "binembed" = dontDistribute super."binembed"; @@ -1558,6 +1578,7 @@ self: super: { "bitmap-opengl" = dontDistribute super."bitmap-opengl"; "bitmaps" = dontDistribute super."bitmaps"; "bits-atomic" = dontDistribute super."bits-atomic"; + "bits-bytestring" = dontDistribute super."bits-bytestring"; "bits-conduit" = dontDistribute super."bits-conduit"; "bits-extras" = dontDistribute super."bits-extras"; "bitset" = dontDistribute super."bitset"; @@ -1679,6 +1700,7 @@ self: super: { "c0check" = dontDistribute super."c0check"; "c0parser" = dontDistribute super."c0parser"; "c10k" = dontDistribute super."c10k"; + "c2hs" = doDistribute super."c2hs_0_27_1"; "c2hsc" = dontDistribute super."c2hsc"; "cab" = dontDistribute super."cab"; "cabal-audit" = dontDistribute super."cabal-audit"; @@ -1703,6 +1725,7 @@ self: super: { "cabal-nirvana" = dontDistribute super."cabal-nirvana"; "cabal-progdeps" = dontDistribute super."cabal-progdeps"; "cabal-query" = dontDistribute super."cabal-query"; + "cabal-rpm" = doDistribute super."cabal-rpm_0_9_9"; "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; @@ -1889,6 +1912,7 @@ self: super: { "clipper" = dontDistribute super."clipper"; "clippings" = dontDistribute super."clippings"; "clist" = dontDistribute super."clist"; + "clock" = doDistribute super."clock_0_6_0_1"; "clocked" = dontDistribute super."clocked"; "clogparse" = dontDistribute super."clogparse"; "clone-all" = dontDistribute super."clone-all"; @@ -1903,6 +1927,7 @@ self: super: { "clustertools" = dontDistribute super."clustertools"; "clutterhs" = dontDistribute super."clutterhs"; "cmaes" = dontDistribute super."cmaes"; + "cmark" = doDistribute super."cmark_0_5_1"; "cmath" = dontDistribute super."cmath"; "cmathml3" = dontDistribute super."cmathml3"; "cmd-item" = dontDistribute super."cmd-item"; @@ -1920,6 +1945,7 @@ self: super: { "codecov-haskell" = dontDistribute super."codecov-haskell"; "codemonitor" = dontDistribute super."codemonitor"; "codepad" = dontDistribute super."codepad"; + "codex" = doDistribute super."codex_0_4_0_8"; "codo-notation" = dontDistribute super."codo-notation"; "cofunctor" = dontDistribute super."cofunctor"; "cognimeta-utils" = dontDistribute super."cognimeta-utils"; @@ -1985,6 +2011,7 @@ self: super: { "concurrent-dns-cache" = dontDistribute super."concurrent-dns-cache"; "concurrent-extra" = dontDistribute super."concurrent-extra"; "concurrent-machines" = dontDistribute super."concurrent-machines"; + "concurrent-rpc" = dontDistribute super."concurrent-rpc"; "concurrent-sa" = dontDistribute super."concurrent-sa"; "concurrent-split" = dontDistribute super."concurrent-split"; "concurrent-state" = dontDistribute super."concurrent-state"; @@ -2001,6 +2028,7 @@ self: super: { "conduit-audio-lame" = dontDistribute super."conduit-audio-lame"; "conduit-audio-samplerate" = dontDistribute super."conduit-audio-samplerate"; "conduit-audio-sndfile" = dontDistribute super."conduit-audio-sndfile"; + "conduit-extra" = doDistribute super."conduit-extra_1_1_11"; "conduit-network-stream" = dontDistribute super."conduit-network-stream"; "conduit-resumablesink" = dontDistribute super."conduit-resumablesink"; "conduit-tokenize-attoparsec" = dontDistribute super."conduit-tokenize-attoparsec"; @@ -2107,6 +2135,8 @@ self: super: { "craftwerk" = dontDistribute super."craftwerk"; "craftwerk-cairo" = dontDistribute super."craftwerk-cairo"; "craftwerk-gtk" = dontDistribute super."craftwerk-gtk"; + "craze" = dontDistribute super."craze"; + "crc" = dontDistribute super."crc"; "crc16" = dontDistribute super."crc16"; "crc16-table" = dontDistribute super."crc16-table"; "creatur" = dontDistribute super."creatur"; @@ -2131,6 +2161,7 @@ self: super: { "crypto-random-effect" = dontDistribute super."crypto-random-effect"; "crypto-totp" = dontDistribute super."crypto-totp"; "cryptohash" = doDistribute super."cryptohash_0_11_6"; + "cryptohash-cryptoapi" = doDistribute super."cryptohash-cryptoapi_0_1_3"; "cryptonite" = doDistribute super."cryptonite_0_10"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; @@ -2360,6 +2391,7 @@ self: super: { "dequeue" = dontDistribute super."dequeue"; "derangement" = dontDistribute super."derangement"; "derivation-trees" = dontDistribute super."derivation-trees"; + "derive" = doDistribute super."derive_2_5_23"; "derive-IG" = dontDistribute super."derive-IG"; "derive-enumerable" = dontDistribute super."derive-enumerable"; "derive-gadt" = dontDistribute super."derive-gadt"; @@ -2431,6 +2463,7 @@ self: super: { "dirfiles" = dontDistribute super."dirfiles"; "dirstream" = dontDistribute super."dirstream"; "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; "discordian-calendar" = dontDistribute super."discordian-calendar"; "discount" = dontDistribute super."discount"; "discrete-space-map" = dontDistribute super."discrete-space-map"; @@ -2458,6 +2491,7 @@ self: super: { "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; + "dixi" = doDistribute super."dixi_0_6_0_5"; "djembe" = dontDistribute super."djembe"; "djinn" = dontDistribute super."djinn"; "djinn-th" = dontDistribute super."djinn-th"; @@ -2502,6 +2536,7 @@ self: super: { "dph-prim-seq" = dontDistribute super."dph-prim-seq"; "dph-seq" = dontDistribute super."dph-seq"; "dpkg" = dontDistribute super."dpkg"; + "dpor" = dontDistribute super."dpor"; "drClickOn" = dontDistribute super."drClickOn"; "draw-poker" = dontDistribute super."draw-poker"; "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; @@ -2568,6 +2603,7 @@ self: super: { "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; "effect-monad" = dontDistribute super."effect-monad"; "effective-aspects" = dontDistribute super."effective-aspects"; "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; @@ -2633,6 +2669,7 @@ self: super: { "enummapset-th" = dontDistribute super."enummapset-th"; "enumset" = dontDistribute super."enumset"; "env-parser" = dontDistribute super."env-parser"; + "envelope" = dontDistribute super."envelope"; "envparse" = dontDistribute super."envparse"; "epanet-haskell" = dontDistribute super."epanet-haskell"; "epass" = dontDistribute super."epass"; @@ -2687,11 +2724,13 @@ self: super: { "ewe" = dontDistribute super."ewe"; "ex-pool" = dontDistribute super."ex-pool"; "exact-combinatorics" = dontDistribute super."exact-combinatorics"; + "exact-real" = doDistribute super."exact-real_0_12_0"; "exception-hierarchy" = dontDistribute super."exception-hierarchy"; "exception-mailer" = dontDistribute super."exception-mailer"; "exception-monads-fd" = dontDistribute super."exception-monads-fd"; "exception-monads-tf" = dontDistribute super."exception-monads-tf"; "exception-mtl" = dontDistribute super."exception-mtl"; + "exception-transformers" = doDistribute super."exception-transformers_0_4_0_3"; "exherbo-cabal" = dontDistribute super."exherbo-cabal"; "exif" = dontDistribute super."exif"; "exinst" = dontDistribute super."exinst"; @@ -2729,6 +2768,7 @@ self: super: { "factory" = dontDistribute super."factory"; "factual-api" = dontDistribute super."factual-api"; "fad" = dontDistribute super."fad"; + "fadno-braids" = dontDistribute super."fadno-braids"; "failable-list" = dontDistribute super."failable-list"; "failure" = dontDistribute super."failure"; "fair-predicates" = dontDistribute super."fair-predicates"; @@ -2737,7 +2777,9 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; + "fast-logger" = doDistribute super."fast-logger_2_4_1"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; "fast-tagsoup" = dontDistribute super."fast-tagsoup"; @@ -2843,6 +2885,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_5"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -2862,6 +2905,7 @@ self: super: { "fn-extra" = doDistribute super."fn-extra_0_2_0_1"; "fold-debounce" = dontDistribute super."fold-debounce"; "fold-debounce-conduit" = dontDistribute super."fold-debounce-conduit"; + "foldl" = doDistribute super."foldl_1_1_6"; "foldl-incremental" = dontDistribute super."foldl-incremental"; "foldl-transduce" = dontDistribute super."foldl-transduce"; "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; @@ -2921,6 +2965,7 @@ self: super: { "freesound" = dontDistribute super."freesound"; "freetype-simple" = dontDistribute super."freetype-simple"; "freetype2" = dontDistribute super."freetype2"; + "fresco-binding" = dontDistribute super."fresco-binding"; "fresh" = dontDistribute super."fresh"; "friday" = dontDistribute super."friday"; "friday-devil" = dontDistribute super."friday-devil"; @@ -3072,6 +3117,7 @@ self: super: { "ghci-lib" = dontDistribute super."ghci-lib"; "ghci-ng" = dontDistribute super."ghci-ng"; "ghci-pretty" = dontDistribute super."ghci-pretty"; + "ghcid" = doDistribute super."ghcid_0_5_1"; "ghcjs-codemirror" = dontDistribute super."ghcjs-codemirror"; "ghcjs-dom" = dontDistribute super."ghcjs-dom"; "ghcjs-dom-hello" = dontDistribute super."ghcjs-dom-hello"; @@ -3087,6 +3133,10 @@ self: super: { "gi-girepository" = dontDistribute super."gi-girepository"; "gi-glib" = dontDistribute super."gi-glib"; "gi-gobject" = dontDistribute super."gi-gobject"; + "gi-gst" = dontDistribute super."gi-gst"; + "gi-gstaudio" = dontDistribute super."gi-gstaudio"; + "gi-gstbase" = dontDistribute super."gi-gstbase"; + "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; "gi-javascriptcore" = dontDistribute super."gi-javascriptcore"; "gi-notify" = dontDistribute super."gi-notify"; @@ -3530,6 +3580,7 @@ self: super: { "happybara" = dontDistribute super."happybara"; "happybara-webkit" = dontDistribute super."happybara-webkit"; "happybara-webkit-server" = dontDistribute super."happybara-webkit-server"; + "hapstone" = dontDistribute super."hapstone"; "har" = dontDistribute super."har"; "harchive" = dontDistribute super."harchive"; "hardware-edsl" = dontDistribute super."hardware-edsl"; @@ -3667,6 +3718,7 @@ self: super: { "hastache-aeson" = dontDistribute super."hastache-aeson"; "haste" = dontDistribute super."haste"; "haste-compiler" = dontDistribute super."haste-compiler"; + "haste-gapi" = dontDistribute super."haste-gapi"; "haste-markup" = dontDistribute super."haste-markup"; "haste-perch" = dontDistribute super."haste-perch"; "hastily" = dontDistribute super."hastily"; @@ -3731,6 +3783,7 @@ self: super: { "hedis-tags" = dontDistribute super."hedis-tags"; "hedn" = dontDistribute super."hedn"; "hein" = dontDistribute super."hein"; + "heist" = doDistribute super."heist_0_14_1_2"; "heist-aeson" = dontDistribute super."heist-aeson"; "heist-async" = dontDistribute super."heist-async"; "helics" = dontDistribute super."helics"; @@ -3870,6 +3923,7 @@ self: super: { "hlibBladeRF" = dontDistribute super."hlibBladeRF"; "hlibev" = dontDistribute super."hlibev"; "hlibfam" = dontDistribute super."hlibfam"; + "hlint" = doDistribute super."hlint_1_9_31"; "hlogger" = dontDistribute super."hlogger"; "hlongurl" = dontDistribute super."hlongurl"; "hls" = dontDistribute super."hls"; @@ -3946,6 +4000,7 @@ self: super: { "hoovie" = dontDistribute super."hoovie"; "hopencc" = dontDistribute super."hopencc"; "hopencl" = dontDistribute super."hopencl"; + "hopenpgp-tools" = doDistribute super."hopenpgp-tools_0_17"; "hopfield" = dontDistribute super."hopfield"; "hopfield-networks" = dontDistribute super."hopfield-networks"; "hopfli" = dontDistribute super."hopfli"; @@ -3974,6 +4029,7 @@ self: super: { "hpapi" = dontDistribute super."hpapi"; "hpaste" = dontDistribute super."hpaste"; "hpasteit" = dontDistribute super."hpasteit"; + "hpc-coveralls" = doDistribute super."hpc-coveralls_1_0_3"; "hpc-strobe" = dontDistribute super."hpc-strobe"; "hpc-tracer" = dontDistribute super."hpc-tracer"; "hpdft" = dontDistribute super."hpdft"; @@ -4073,6 +4129,7 @@ self: super: { "hsdip" = dontDistribute super."hsdip"; "hsdns" = dontDistribute super."hsdns"; "hsdns-cache" = dontDistribute super."hsdns-cache"; + "hsebaysdk" = doDistribute super."hsebaysdk_0_3_0_1"; "hsemail-ns" = dontDistribute super."hsemail-ns"; "hsenv" = dontDistribute super."hsenv"; "hserv" = dontDistribute super."hserv"; @@ -4110,15 +4167,20 @@ self: super: { "hsparklines" = dontDistribute super."hsparklines"; "hsparql" = dontDistribute super."hsparql"; "hspear" = dontDistribute super."hspear"; + "hspec" = doDistribute super."hspec_2_2_2"; "hspec-checkers" = dontDistribute super."hspec-checkers"; + "hspec-core" = doDistribute super."hspec-core_2_2_2"; + "hspec-discover" = doDistribute super."hspec-discover_2_2_2"; "hspec-expectations-lens" = dontDistribute super."hspec-expectations-lens"; "hspec-expectations-lifted" = dontDistribute super."hspec-expectations-lifted"; "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; + "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; "hspec-monad-control" = dontDistribute super."hspec-monad-control"; "hspec-server" = dontDistribute super."hspec-server"; "hspec-shouldbe" = dontDistribute super."hspec-shouldbe"; + "hspec-snap" = doDistribute super."hspec-snap_0_4_0_0"; "hspec-structured-formatter" = dontDistribute super."hspec-structured-formatter"; "hspec-test-framework" = dontDistribute super."hspec-test-framework"; "hspec-test-framework-th" = dontDistribute super."hspec-test-framework-th"; @@ -4160,6 +4222,7 @@ self: super: { "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; + "htaglib" = doDistribute super."htaglib_1_0_2"; "htags" = dontDistribute super."htags"; "htar" = dontDistribute super."htar"; "htiled" = dontDistribute super."htiled"; @@ -4198,6 +4261,7 @@ self: super: { "http-monad" = dontDistribute super."http-monad"; "http-proxy" = dontDistribute super."http-proxy"; "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; @@ -4231,6 +4295,7 @@ self: super: { "hutton" = dontDistribute super."hutton"; "huttons-razor" = dontDistribute super."huttons-razor"; "huzzy" = dontDistribute super."huzzy"; + "hw-succinct" = dontDistribute super."hw-succinct"; "hwall-auth-iitk" = dontDistribute super."hwall-auth-iitk"; "hws" = dontDistribute super."hws"; "hwsl2" = dontDistribute super."hwsl2"; @@ -4241,6 +4306,7 @@ self: super: { "hxournal" = dontDistribute super."hxournal"; "hxt-binary" = dontDistribute super."hxt-binary"; "hxt-cache" = dontDistribute super."hxt-cache"; + "hxt-css" = doDistribute super."hxt-css_0_1_0_1"; "hxt-extras" = dontDistribute super."hxt-extras"; "hxt-filter" = dontDistribute super."hxt-filter"; "hxt-xpath" = dontDistribute super."hxt-xpath"; @@ -4264,6 +4330,7 @@ self: super: { "hydrogen-util" = dontDistribute super."hydrogen-util"; "hydrogen-version" = dontDistribute super."hydrogen-version"; "hyena" = dontDistribute super."hyena"; + "hylogen" = dontDistribute super."hylogen"; "hylolib" = dontDistribute super."hylolib"; "hylotab" = dontDistribute super."hylotab"; "hyloutils" = dontDistribute super."hyloutils"; @@ -4379,6 +4446,8 @@ self: super: { "interpolatedstring-qq" = dontDistribute super."interpolatedstring-qq"; "interpolatedstring-qq-mwotton" = dontDistribute super."interpolatedstring-qq-mwotton"; "interpolation" = dontDistribute super."interpolation"; + "interruptible" = dontDistribute super."interruptible"; + "interspersed" = dontDistribute super."interspersed"; "intricacy" = dontDistribute super."intricacy"; "intset" = dontDistribute super."intset"; "invertible-syntax" = dontDistribute super."invertible-syntax"; @@ -4420,6 +4489,7 @@ self: super: { "ismtp" = dontDistribute super."ismtp"; "iso8583-bitmaps" = dontDistribute super."iso8583-bitmaps"; "isohunt" = dontDistribute super."isohunt"; + "ispositive" = dontDistribute super."ispositive"; "itanium-abi" = dontDistribute super."itanium-abi"; "iter-stats" = dontDistribute super."iter-stats"; "iterIO" = dontDistribute super."iterIO"; @@ -4432,12 +4502,15 @@ self: super: { "ivar-simple" = dontDistribute super."ivar-simple"; "ivor" = dontDistribute super."ivor"; "ivory" = dontDistribute super."ivory"; + "ivory-artifact" = dontDistribute super."ivory-artifact"; "ivory-backend-c" = dontDistribute super."ivory-backend-c"; "ivory-bitdata" = dontDistribute super."ivory-bitdata"; + "ivory-eval" = dontDistribute super."ivory-eval"; "ivory-examples" = dontDistribute super."ivory-examples"; "ivory-hw" = dontDistribute super."ivory-hw"; "ivory-opts" = dontDistribute super."ivory-opts"; "ivory-quickcheck" = dontDistribute super."ivory-quickcheck"; + "ivory-serialize" = dontDistribute super."ivory-serialize"; "ivory-stdlib" = dontDistribute super."ivory-stdlib"; "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; @@ -4474,6 +4547,7 @@ self: super: { "jose" = dontDistribute super."jose"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; + "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; @@ -4486,6 +4560,7 @@ self: super: { "json-enumerator" = dontDistribute super."json-enumerator"; "json-extra" = dontDistribute super."json-extra"; "json-fu" = dontDistribute super."json-fu"; + "json-incremental-decoder" = dontDistribute super."json-incremental-decoder"; "json-litobj" = dontDistribute super."json-litobj"; "json-pointer" = dontDistribute super."json-pointer"; "json-pointer-hasql" = dontDistribute super."json-pointer-hasql"; @@ -4510,6 +4585,7 @@ self: super: { "jsonsql" = dontDistribute super."jsonsql"; "jsontsv" = dontDistribute super."jsontsv"; "jspath" = dontDistribute super."jspath"; + "juandelacosa" = dontDistribute super."juandelacosa"; "judy" = dontDistribute super."judy"; "jukebox" = dontDistribute super."jukebox"; "jump" = dontDistribute super."jump"; @@ -4629,6 +4705,7 @@ self: super: { "language-asn1" = dontDistribute super."language-asn1"; "language-bash" = dontDistribute super."language-bash"; "language-boogie" = dontDistribute super."language-boogie"; + "language-c" = doDistribute super."language-c_0_4_7"; "language-c-comments" = dontDistribute super."language-c-comments"; "language-c-inline" = dontDistribute super."language-c-inline"; "language-c-quote" = dontDistribute super."language-c-quote"; @@ -4642,6 +4719,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_5_14_6"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -4702,6 +4780,7 @@ self: super: { "lens-utils" = dontDistribute super."lens-utils"; "lenses" = dontDistribute super."lenses"; "lensref" = dontDistribute super."lensref"; + "lentil" = doDistribute super."lentil_0_1_10_0"; "lenz" = dontDistribute super."lenz"; "lenz-template" = dontDistribute super."lenz-template"; "level-monad" = dontDistribute super."level-monad"; @@ -4797,6 +4876,7 @@ self: super: { "lipsum-gen" = dontDistribute super."lipsum-gen"; "liquid-fixpoint" = dontDistribute super."liquid-fixpoint"; "liquidhaskell" = dontDistribute super."liquidhaskell"; + "liquidhaskell-cabal" = dontDistribute super."liquidhaskell-cabal"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; "list-grouping" = dontDistribute super."list-grouping"; @@ -4895,6 +4975,7 @@ self: super: { "lucienne" = dontDistribute super."lucienne"; "luhn" = dontDistribute super."luhn"; "lui" = dontDistribute super."lui"; + "luis-client" = dontDistribute super."luis-client"; "luka" = dontDistribute super."luka"; "luminance" = doDistribute super."luminance_0_9_1_2"; "luminance-samples" = doDistribute super."luminance-samples_0_9_1"; @@ -4912,9 +4993,11 @@ self: super: { "lzma-streams" = dontDistribute super."lzma-streams"; "maam" = dontDistribute super."maam"; "mac" = dontDistribute super."mac"; + "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; "machines-binary" = dontDistribute super."machines-binary"; + "machines-io" = doDistribute super."machines-io_0_2_0_8"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; "maclight" = dontDistribute super."maclight"; @@ -4933,6 +5016,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_2"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -4969,6 +5053,7 @@ self: super: { "marxup" = dontDistribute super."marxup"; "masakazu-bot" = dontDistribute super."masakazu-bot"; "mastermind" = dontDistribute super."mastermind"; + "matcher" = dontDistribute super."matcher"; "matchers" = dontDistribute super."matchers"; "mathblog" = dontDistribute super."mathblog"; "mathgenealogy" = dontDistribute super."mathgenealogy"; @@ -5027,6 +5112,7 @@ self: super: { "mgeneric" = dontDistribute super."mgeneric"; "mi" = dontDistribute super."mi"; "microbench" = dontDistribute super."microbench"; + "microformats2-parser" = doDistribute super."microformats2-parser_1_0_1_4"; "microformats2-types" = dontDistribute super."microformats2-types"; "microlens-each" = dontDistribute super."microlens-each"; "microtimer" = dontDistribute super."microtimer"; @@ -5092,6 +5178,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-control" = doDistribute super."monad-control_1_0_0_5"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; "monad-gen" = dontDistribute super."monad-gen"; @@ -5130,6 +5217,7 @@ self: super: { "monads-fd" = dontDistribute super."monads-fd"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; + "mondo" = dontDistribute super."mondo"; "mongodb-queue" = dontDistribute super."mongodb-queue"; "mongrel2-handler" = dontDistribute super."mongrel2-handler"; "monitor" = dontDistribute super."monitor"; @@ -5149,6 +5237,7 @@ self: super: { "moonshine" = dontDistribute super."moonshine"; "morfette" = dontDistribute super."morfette"; "morfeusz" = dontDistribute super."morfeusz"; + "morte" = doDistribute super."morte_1_4_2"; "mosaico-lib" = dontDistribute super."mosaico-lib"; "mount" = dontDistribute super."mount"; "mountpoints" = dontDistribute super."mountpoints"; @@ -5201,6 +5290,7 @@ self: super: { "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; "murder" = dontDistribute super."murder"; + "murmur" = dontDistribute super."murmur"; "murmur3" = dontDistribute super."murmur3"; "murmurhash3" = dontDistribute super."murmurhash3"; "music-articulation" = dontDistribute super."music-articulation"; @@ -5533,6 +5623,7 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_16_0_2"; "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; "pandoc-crossref" = dontDistribute super."pandoc-crossref"; "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; @@ -5691,7 +5782,9 @@ self: super: { "pipes-courier" = dontDistribute super."pipes-courier"; "pipes-errors" = dontDistribute super."pipes-errors"; "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-extras" = doDistribute super."pipes-extras_1_0_2"; "pipes-files" = dontDistribute super."pipes-files"; + "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -5787,6 +5880,7 @@ self: super: { "posix-timer" = dontDistribute super."posix-timer"; "posix-waitpid" = dontDistribute super."posix-waitpid"; "possible" = dontDistribute super."possible"; + "post-mess-age" = doDistribute super."post-mess-age_0_2_0_0"; "postcodes" = dontDistribute super."postcodes"; "postgresql-binary" = doDistribute super."postgresql-binary_0_7_9"; "postgresql-config" = dontDistribute super."postgresql-config"; @@ -5841,6 +5935,7 @@ self: super: { "primula-bot" = dontDistribute super."primula-bot"; "print-debugger" = dontDistribute super."print-debugger"; "printf-mauke" = dontDistribute super."printf-mauke"; + "printf-safe" = dontDistribute super."printf-safe"; "printxosd" = dontDistribute super."printxosd"; "priority-queue" = dontDistribute super."priority-queue"; "priority-sync" = dontDistribute super."priority-sync"; @@ -5975,11 +6070,14 @@ self: super: { "quicktest" = dontDistribute super."quicktest"; "quickwebapp" = dontDistribute super."quickwebapp"; "quiver" = dontDistribute super."quiver"; + "quiver-binary" = dontDistribute super."quiver-binary"; "quiver-bytestring" = dontDistribute super."quiver-bytestring"; "quiver-cell" = dontDistribute super."quiver-cell"; "quiver-csv" = dontDistribute super."quiver-csv"; "quiver-enumerator" = dontDistribute super."quiver-enumerator"; + "quiver-groups" = dontDistribute super."quiver-groups"; "quiver-http" = dontDistribute super."quiver-http"; + "quiver-interleave" = dontDistribute super."quiver-interleave"; "quoridor-hs" = dontDistribute super."quoridor-hs"; "qux" = dontDistribute super."qux"; "rabocsv2qif" = dontDistribute super."rabocsv2qif"; @@ -6034,6 +6132,7 @@ self: super: { "re2" = dontDistribute super."re2"; "react-flux" = dontDistribute super."react-flux"; "react-haskell" = dontDistribute super."react-haskell"; + "react-tutorial-haskell-server" = dontDistribute super."react-tutorial-haskell-server"; "reaction-logic" = dontDistribute super."reaction-logic"; "reactive" = dontDistribute super."reactive"; "reactive-bacon" = dontDistribute super."reactive-bacon"; @@ -6070,7 +6169,9 @@ self: super: { "reddit" = dontDistribute super."reddit"; "redis" = dontDistribute super."redis"; "redis-hs" = dontDistribute super."redis-hs"; + "redis-io" = doDistribute super."redis-io_0_5_2"; "redis-job-queue" = dontDistribute super."redis-job-queue"; + "redis-resp" = doDistribute super."redis-resp_0_3_2"; "redis-simple" = dontDistribute super."redis-simple"; "redo" = dontDistribute super."redo"; "reedsolomon" = dontDistribute super."reedsolomon"; @@ -6106,6 +6207,7 @@ self: super: { "regex-tdfa-unittest" = dontDistribute super."regex-tdfa-unittest"; "regex-tdfa-utf8" = dontDistribute super."regex-tdfa-utf8"; "regex-tre" = dontDistribute super."regex-tre"; + "regex-type" = dontDistribute super."regex-type"; "regex-xmlschema" = dontDistribute super."regex-xmlschema"; "regexchar" = dontDistribute super."regexchar"; "regexdot" = dontDistribute super."regexdot"; @@ -6118,6 +6220,7 @@ self: super: { "regions-monadsfd" = dontDistribute super."regions-monadsfd"; "regions-monadstf" = dontDistribute super."regions-monadstf"; "regions-mtl" = dontDistribute super."regions-mtl"; + "register-machine-typelevel" = dontDistribute super."register-machine-typelevel"; "regress" = dontDistribute super."regress"; "regular" = dontDistribute super."regular"; "regular-extras" = dontDistribute super."regular-extras"; @@ -6195,6 +6298,7 @@ self: super: { "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; + "reverse-arguments" = dontDistribute super."reverse-arguments"; "reverse-geocoding" = dontDistribute super."reverse-geocoding"; "reversi" = dontDistribute super."reversi"; "rewrite" = dontDistribute super."rewrite"; @@ -6329,6 +6433,8 @@ self: super: { "scalpel" = doDistribute super."scalpel_0_2_1_1"; "scan" = dontDistribute super."scan"; "scan-vector-machine" = dontDistribute super."scan-vector-machine"; + "scanner" = dontDistribute super."scanner"; + "scanner-attoparsec" = dontDistribute super."scanner-attoparsec"; "scat" = dontDistribute super."scat"; "scc" = dontDistribute super."scc"; "scenegraph" = dontDistribute super."scenegraph"; @@ -6357,11 +6463,13 @@ self: super: { "scotty-fay" = dontDistribute super."scotty-fay"; "scotty-hastache" = dontDistribute super."scotty-hastache"; "scotty-params-parser" = dontDistribute super."scotty-params-parser"; + "scotty-resource" = dontDistribute super."scotty-resource"; "scotty-rest" = dontDistribute super."scotty-rest"; "scotty-session" = dontDistribute super."scotty-session"; "scotty-tls" = dontDistribute super."scotty-tls"; "scp-streams" = dontDistribute super."scp-streams"; "scrabble-bot" = dontDistribute super."scrabble-bot"; + "scrape-changes" = dontDistribute super."scrape-changes"; "scrobble" = dontDistribute super."scrobble"; "scroll" = dontDistribute super."scroll"; "scrz" = dontDistribute super."scrz"; @@ -6420,6 +6528,7 @@ self: super: { "serialport" = dontDistribute super."serialport"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-ede" = dontDistribute super."servant-ede"; "servant-elm" = dontDistribute super."servant-elm"; @@ -6467,6 +6576,7 @@ self: super: { "shake-pack" = dontDistribute super."shake-pack"; "shake-persist" = dontDistribute super."shake-persist"; "shaker" = dontDistribute super."shaker"; + "shakespeare" = doDistribute super."shakespeare_2_0_7"; "shakespeare-babel" = dontDistribute super."shakespeare-babel"; "shakespeare-css" = dontDistribute super."shakespeare-css"; "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; @@ -6560,6 +6670,7 @@ self: super: { "skeleton" = dontDistribute super."skeleton"; "skell" = dontDistribute super."skell"; "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; "skype4hs" = dontDistribute super."skype4hs"; "skypelogexport" = dontDistribute super."skypelogexport"; "slack" = dontDistribute super."slack"; @@ -6571,6 +6682,7 @@ self: super: { "sloane" = dontDistribute super."sloane"; "slot-lambda" = dontDistribute super."slot-lambda"; "sloth" = dontDistribute super."sloth"; + "slug" = doDistribute super."slug_0_1_2"; "smallarray" = dontDistribute super."smallarray"; "smallcheck-laws" = dontDistribute super."smallcheck-laws"; "smallcheck-lens" = dontDistribute super."smallcheck-lens"; @@ -6657,11 +6769,13 @@ self: super: { "snowglobe" = dontDistribute super."snowglobe"; "sock2stream" = dontDistribute super."sock2stream"; "sockaddr" = dontDistribute super."sockaddr"; + "socket" = doDistribute super."socket_0_5_3_0"; "socket-activation" = dontDistribute super."socket-activation"; "socket-sctp" = dontDistribute super."socket-sctp"; "socketio" = dontDistribute super."socketio"; "socketson" = dontDistribute super."socketson"; "soegtk" = dontDistribute super."soegtk"; + "solr" = dontDistribute super."solr"; "sonic-visualiser" = dontDistribute super."sonic-visualiser"; "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; @@ -6741,6 +6855,7 @@ self: super: { "stable-marriage" = dontDistribute super."stable-marriage"; "stable-memo" = dontDistribute super."stable-memo"; "stable-tree" = dontDistribute super."stable-tree"; + "stack" = doDistribute super."stack_1_0_2"; "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; "stack-prism" = dontDistribute super."stack-prism"; "stack-run" = dontDistribute super."stack-run"; @@ -6843,6 +6958,7 @@ self: super: { "structures" = dontDistribute super."structures"; "stunclient" = dontDistribute super."stunclient"; "stunts" = dontDistribute super."stunts"; + "stylish-haskell" = doDistribute super."stylish-haskell_0_5_15_2"; "stylized" = dontDistribute super."stylized"; "sub-state" = dontDistribute super."sub-state"; "subhask" = dontDistribute super."subhask"; @@ -6866,6 +6982,7 @@ self: super: { "superdoc" = dontDistribute super."superdoc"; "supero" = dontDistribute super."supero"; "supervisor" = dontDistribute super."supervisor"; + "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; "svg-builder" = dontDistribute super."svg-builder"; "svg-tree" = doDistribute super."svg-tree_0_3_2"; @@ -6925,6 +7042,9 @@ self: super: { "system-uuid" = dontDistribute super."system-uuid"; "systemd" = dontDistribute super."systemd"; "t-regex" = dontDistribute super."t-regex"; + "t3-client" = dontDistribute super."t3-client"; + "t3-game" = dontDistribute super."t3-game"; + "t3-server" = dontDistribute super."t3-server"; "ta" = dontDistribute super."ta"; "table" = dontDistribute super."table"; "table-tennis" = dontDistribute super."table-tennis"; @@ -6961,6 +7081,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; "tasty-laws" = dontDistribute super."tasty-laws"; @@ -7028,6 +7149,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_5"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-format-simple" = dontDistribute super."text-format-simple"; @@ -7063,6 +7185,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; "th-instance-reification" = dontDistribute super."th-instance-reification"; @@ -7126,6 +7249,7 @@ self: super: { "timeconsole" = dontDistribute super."timeconsole"; "timeless" = dontDistribute super."timeless"; "timelike" = dontDistribute super."timelike"; + "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; "timemap" = dontDistribute super."timemap"; "timeout" = dontDistribute super."timeout"; @@ -7212,6 +7336,7 @@ self: super: { "trivia" = dontDistribute super."trivia"; "trivial-constraint" = dontDistribute super."trivial-constraint"; "tropical" = dontDistribute super."tropical"; + "true-name" = doDistribute super."true-name_0_1_0_0"; "truelevel" = dontDistribute super."truelevel"; "trurl" = dontDistribute super."trurl"; "truthful" = dontDistribute super."truthful"; @@ -7239,6 +7364,7 @@ self: super: { "turing-music" = dontDistribute super."turing-music"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_5"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7261,7 +7387,9 @@ self: super: { "twisty" = dontDistribute super."twisty"; "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; + "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7289,6 +7417,7 @@ self: super: { "type-level-sets" = dontDistribute super."type-level-sets"; "type-level-tf" = dontDistribute super."type-level-tf"; "type-natural" = dontDistribute super."type-natural"; + "type-operators" = dontDistribute super."type-operators"; "type-ord" = dontDistribute super."type-ord"; "type-ord-spine-cereal" = dontDistribute super."type-ord-spine-cereal"; "type-prelude" = dontDistribute super."type-prelude"; @@ -7388,6 +7517,7 @@ self: super: { "unsafely" = dontDistribute super."unsafely"; "unsafeperformst" = dontDistribute super."unsafeperformst"; "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; "unusable-pkg" = dontDistribute super."unusable-pkg"; "uom-plugin" = dontDistribute super."uom-plugin"; "up" = dontDistribute super."up"; @@ -7433,9 +7563,11 @@ self: super: { "uuagc-cabal" = dontDistribute super."uuagc-cabal"; "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; "uuagd" = dontDistribute super."uuagd"; + "uuid" = doDistribute super."uuid_1_3_11"; "uuid-aeson" = dontDistribute super."uuid-aeson"; "uuid-le" = dontDistribute super."uuid-le"; "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uuid-types" = doDistribute super."uuid-types_1_0_2"; "uulib" = dontDistribute super."uulib"; "uvector" = dontDistribute super."uvector"; "uvector-algorithms" = dontDistribute super."uvector-algorithms"; @@ -7489,6 +7621,7 @@ self: super: { "vector-space-points" = dontDistribute super."vector-space-points"; "vector-static" = dontDistribute super."vector-static"; "vector-strategies" = dontDistribute super."vector-strategies"; + "vector-th-unbox" = doDistribute super."vector-th-unbox_0_2_1_4"; "verbalexpressions" = dontDistribute super."verbalexpressions"; "verbosity" = dontDistribute super."verbosity"; "verdict" = dontDistribute super."verdict"; @@ -7528,8 +7661,10 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_0"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7617,6 +7752,7 @@ self: super: { "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; "werewolf" = dontDistribute super."werewolf"; + "werewolf-slack" = dontDistribute super."werewolf-slack"; "wheb-mongo" = dontDistribute super."wheb-mongo"; "wheb-redis" = dontDistribute super."wheb-redis"; "wheb-strapped" = dontDistribute super."wheb-strapped"; @@ -7686,6 +7822,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = dontDistribute super."xdcc"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; @@ -7701,6 +7838,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -7784,8 +7922,10 @@ self: super: { "yeganesh" = dontDistribute super."yeganesh"; "yeller" = dontDistribute super."yeller"; "yeshql" = dontDistribute super."yeshql"; + "yesod" = doDistribute super."yesod_1_4_2"; "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth" = doDistribute super."yesod-auth_1_4_12"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; @@ -7795,16 +7935,19 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_17_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-core" = doDistribute super."yesod-core_1_4_19"; "yesod-crud" = dontDistribute super."yesod-crud"; "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; "yesod-csp" = dontDistribute super."yesod-csp"; "yesod-datatables" = dontDistribute super."yesod-datatables"; "yesod-dsl" = dontDistribute super."yesod-dsl"; "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form" = doDistribute super."yesod-form_1_4_6"; "yesod-form-json" = dontDistribute super."yesod-form-json"; "yesod-form-richtext" = dontDistribute super."yesod-form-richtext"; "yesod-goodies" = dontDistribute super."yesod-goodies"; @@ -7817,6 +7960,7 @@ self: super: { "yesod-paginate" = dontDistribute super."yesod-paginate"; "yesod-pagination" = dontDistribute super."yesod-pagination"; "yesod-paginator" = dontDistribute super."yesod-paginator"; + "yesod-persistent" = doDistribute super."yesod-persistent_1_4_0_3"; "yesod-platform" = dontDistribute super."yesod-platform"; "yesod-pnotify" = dontDistribute super."yesod-pnotify"; "yesod-pure" = dontDistribute super."yesod-pure"; @@ -7833,7 +7977,9 @@ self: super: { "yesod-s3" = dontDistribute super."yesod-s3"; "yesod-sass" = dontDistribute super."yesod-sass"; "yesod-session-redis" = dontDistribute super."yesod-session-redis"; + "yesod-table" = doDistribute super."yesod-table_2_0_2"; "yesod-tableview" = dontDistribute super."yesod-tableview"; + "yesod-test" = doDistribute super."yesod-test_1_5_0_1"; "yesod-test-json" = dontDistribute super."yesod-test-json"; "yesod-tls" = dontDistribute super."yesod-tls"; "yesod-transloadit" = dontDistribute super."yesod-transloadit"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 2182469ef2d8..8503807b2647 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -1531,6 +1531,7 @@ self: { aeson base binary cereal QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/BiobaseNewick"; description = "Newick file format parser"; license = stdenv.lib.licenses.bsd3; @@ -1597,6 +1598,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; @@ -1906,6 +1908,7 @@ self: { process split strict temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -1915,21 +1918,21 @@ self: { "BlogLiterately" = callPackage ({ mkDerivation, base, blaze-html, bool-extras, bytestring, cmdargs , containers, data-default, directory, filepath, HaXml, haxr - , highlighting-kate, hscolour, lens, mtl, pandoc, pandoc-citeproc - , pandoc-types, parsec, process, split, strict, temporary - , transformers + , highlighting-kate, hscolour, HTTP, lens, mtl, pandoc + , pandoc-citeproc, pandoc-types, parsec, process, split, strict + , tagsoup, temporary, transformers }: mkDerivation { pname = "BlogLiterately"; - version = "0.8.1.6"; - sha256 = "924b9fca47100cb02d3eb37d1f5aff18d519db5315bbcd5c812b9420efa208c7"; + version = "0.8.2"; + sha256 = "dbb759403abbda0f0a6f0c3a172fbca1eddf6754df66a5bf064b140b54c517c6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blaze-html bool-extras bytestring cmdargs containers data-default directory filepath HaXml haxr highlighting-kate - hscolour lens mtl pandoc pandoc-citeproc pandoc-types parsec - process split strict temporary transformers + hscolour HTTP lens mtl pandoc pandoc-citeproc pandoc-types parsec + process split strict tagsoup temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; homepage = "http://byorgey.wordpress.com/blogliterately/"; @@ -1982,7 +1985,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately-diagrams" = callPackage + "BlogLiterately-diagrams_0_2_0_2" = callPackage ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-lib, diagrams-rasterific, directory, filepath , JuicyPixels, pandoc, safe @@ -1998,12 +2001,13 @@ self: { diagrams-rasterific directory filepath JuicyPixels pandoc safe ]; executableHaskellDepends = [ base BlogLiterately ]; + jailbreak = true; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "BlogLiterately-diagrams_0_2_0_3" = callPackage + "BlogLiterately-diagrams" = callPackage ({ mkDerivation, base, BlogLiterately, containers, diagrams-builder , diagrams-lib, diagrams-rasterific, directory, filepath , JuicyPixels, pandoc, safe @@ -2021,7 +2025,7 @@ self: { executableHaskellDepends = [ base BlogLiterately ]; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "BluePrintCSS" = callPackage @@ -4728,6 +4732,7 @@ self: { jailbreak = true; description = "A client library for the DigitalOcean API"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DimensionalHash" = callPackage @@ -5176,7 +5181,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Earley" = callPackage + "Earley_0_10_1_0" = callPackage ({ mkDerivation, base, ListLike, tasty, tasty-hunit , tasty-quickcheck, unordered-containers }: @@ -5193,16 +5198,17 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Parsing all context-free grammars using Earley's algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Earley_0_11_0_0" = callPackage + "Earley" = callPackage ({ mkDerivation, base, ListLike, tasty, tasty-hunit , tasty-quickcheck, unordered-containers }: mkDerivation { pname = "Earley"; - version = "0.11.0.0"; - sha256 = "a8ad11ac5a263752180fb25a9d1accd21855f61423086bdbf223bd3fb2192126"; + version = "0.11.0.1"; + sha256 = "c207a40926bb0b9de05641a0fc03c22849a2c7e0bc007d2ffef37f33793985b3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ListLike ]; @@ -5210,7 +5216,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; description = "Parsing all context-free grammars using Earley's algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ebnf2ps" = callPackage @@ -6506,11 +6511,10 @@ self: { ({ mkDerivation, base, libX11, mesa, OpenGL }: mkDerivation { pname = "GLFW"; - version = "0.5.2.4"; - sha256 = "48fc9efb1da85b4bf20c506341999987e3bfeadf750ad19794030e927e4f4ca9"; + version = "0.5.2.5"; + sha256 = "37c1d72bd878e9e58b8e4180f82aa5742a216bd92fd63c9da3d7e4e9b5e03a09"; libraryHaskellDepends = [ base OpenGL ]; librarySystemDepends = [ libX11 mesa ]; - jailbreak = true; homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; @@ -6531,7 +6535,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; - "GLFW-b" = callPackage + "GLFW-b_1_4_7_3" = callPackage ({ mkDerivation, base, bindings-GLFW, HUnit, test-framework , test-framework-hunit }: @@ -6547,6 +6551,25 @@ self: { doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "GLFW-b" = callPackage + ({ mkDerivation, base, bindings-GLFW, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "GLFW-b"; + version = "1.4.8.0"; + sha256 = "4e88c518d527e28606c9f150c74ace2e350bbb5630d51e4f365a13b2c14ef4ef"; + libraryHaskellDepends = [ base bindings-GLFW ]; + testHaskellDepends = [ + base bindings-GLFW HUnit test-framework test-framework-hunit + ]; + jailbreak = true; + doCheck = false; + description = "Bindings to GLFW OpenGL library"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; @@ -8111,23 +8134,22 @@ self: { "HGamer3D" = callPackage ({ mkDerivation, base, bytestring, cereal, clock, containers - , directory, filepath, hgamer3d062, messagepack, text, Urho3D, vect + , directory, filepath, fresco-binding, messagepack, text, vect }: mkDerivation { pname = "HGamer3D"; - version = "0.6.2"; - sha256 = "28076dcd6bf141b4d88939be49f3e2f370eae02d53e3845521715dfa36aac1ba"; + version = "0.7.1"; + sha256 = "debd2a5f6d7cf4f8e2ffb416fcf3776d7cef3cebe7481dbc01737f22af478a34"; libraryHaskellDepends = [ base bytestring cereal clock containers directory filepath - messagepack text vect + fresco-binding messagepack text vect ]; - librarySystemDepends = [ hgamer3d062 Urho3D ]; jailbreak = true; homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; - }) {Urho3D = null; hgamer3d062 = null;}; + }) {}; "HGamer3D-API" = callPackage ({ mkDerivation, base, haskell98, HGamer3D-Data @@ -10845,8 +10867,8 @@ self: { }: mkDerivation { pname = "Hish"; - version = "0.1.2.2"; - sha256 = "5094eee275eb1d9dba7929c1bd812cb1b299dce18be5eefcfde3b2cd48d5365a"; + version = "0.1.2.4"; + sha256 = "a9f723b5ff39cb738430f2425e6f2e764c8e5389c8a7a933c9280fd2d9a6b4ed"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -10858,6 +10880,7 @@ self: { jailbreak = true; homepage = "https://github.com/jaiyalas/Hish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Histogram" = callPackage @@ -11442,7 +11465,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "IPv6Addr" = callPackage + "IPv6Addr_0_6_0_2" = callPackage ({ mkDerivation, attoparsec, base, HUnit, iproute, network , network-info, random, test-framework, test-framework-hunit, text }: @@ -11459,6 +11482,26 @@ self: { homepage = "https://github.com/MichelBoucey/IPv6Addr"; description = "Library to deal with IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "IPv6Addr" = callPackage + ({ mkDerivation, attoparsec, base, HUnit, iproute, network + , network-info, random, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "IPv6Addr"; + version = "0.6.1.0"; + sha256 = "dea0eb0a534e1df647487f120428ac7cfc54ab9c8ca75f63fe47a4020d4888c6"; + libraryHaskellDepends = [ + attoparsec base iproute network network-info random text + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit text + ]; + homepage = "https://github.com/MichelBoucey/IPv6Addr"; + description = "Library to deal with IPv6 address text representations"; + license = stdenv.lib.licenses.bsd3; }) {}; "IcoGrid" = callPackage @@ -12161,8 +12204,8 @@ self: { pname = "JuicyPixels-scale-dct"; version = "0.1.1.0"; sha256 = "dc7ee68f2e28e2b2344bdaabd5810ebfc15353d4013cd10387289189e8bae9f9"; - revision = "1"; - editedCabalFile = "5b187d4f46adbd5ff68ddda4f2f0221370dc3f4f47d7a95f652d147a7bd9f36a"; + revision = "2"; + editedCabalFile = "d80ead4c776cec3babb37a69c099560b421e5eb929b9ebe8e433a8fa4ef243ea"; libraryHaskellDepends = [ base base-compat carray fft JuicyPixels ]; @@ -12675,8 +12718,8 @@ self: { }: mkDerivation { pname = "Lambdaya"; - version = "0.2.0.0.1"; - sha256 = "ecb9d7490da6f3b11aaa118f271121fa3f3a940a7914e7551b8b078650ea4dcf"; + version = "0.3.0.0.0"; + sha256 = "9a54212c2fe90cad44bf64c2c6f696e71905e3b1e3fdff98fe0749a3b335fc52"; libraryHaskellDepends = [ base binary mtl network pipes pipes-binary pipes-network pipes-parse @@ -13093,8 +13136,8 @@ self: { }: mkDerivation { pname = "LogicGrowsOnTrees-network"; - version = "1.0.0.3"; - sha256 = "b6893ed0a39edcb3b35e7d25d7e4d99cfac41212bfcf40dcdcaf5e57c6bac664"; + version = "1.0.0.4"; + sha256 = "7a01eb40f87b5810bfccfb23d49e4a04f7bb630f201425caaa0eeb0a82d9b973"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -13109,7 +13152,6 @@ self: { base hslogger hslogger-template HUnit LogicGrowsOnTrees network random stm test-framework test-framework-hunit transformers ]; - jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -13345,21 +13387,21 @@ self: { }) {}; "MailchimpSimple" = callPackage - ({ mkDerivation, aeson, aeson-lens, base, bytestring, directory - , filepath, http-conduit, http-types, lens, text, time - , transformers, vector + ({ mkDerivation, aeson, aeson-lens, base, base16-bytestring + , bytestring, cryptohash, directory, filepath, http-conduit + , http-types, lens, safe, text, time, transformers, vector }: mkDerivation { pname = "MailchimpSimple"; - version = "0.1.0.0"; - sha256 = "56d883bca6efde9bd9fd776d9bcf88a4f4cfba562a79687fed2bb47ea2a8eb78"; + version = "0.2.0.0"; + sha256 = "60f525ea74400168bc5a3d1d348c8ad3431baad772ff937982c02351bbfdc98d"; libraryHaskellDepends = [ - aeson aeson-lens base bytestring directory filepath http-conduit - http-types lens text time transformers vector + aeson aeson-lens base base16-bytestring bytestring cryptohash + directory filepath http-conduit http-types lens safe text time + transformers vector ]; - jailbreak = true; homepage = "https://github.com/Dananji/MailchimpSimple"; - description = "A Haskell library to handle mailing lists in MailchimpSimple using its JSON API"; + description = "Haskell library to interact with Mailchimp JSON API Version 3.0"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -13718,6 +13760,7 @@ self: { homepage = "https://github.com/audreyt/MoeDict.hs"; description = "Utilities working with MoeDict.tw JSON dataset"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-mtl" = callPackage @@ -15998,8 +16041,8 @@ self: { ({ mkDerivation, alsaLib, base }: mkDerivation { pname = "PortMidi"; - version = "0.1.5.2"; - sha256 = "b855a9f3c0b9796e9e8fe00bbfad47fd233e648b31c3443881f4dfa544800276"; + version = "0.1.6.0"; + sha256 = "54599bc0377847ab17b175641023ec495587ca82807fd2360e17f4c5575814b1"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ alsaLib ]; homepage = "http://haskell.org/haskellwiki/PortMidi"; @@ -16039,6 +16082,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/PrimitiveArray"; description = "Efficient multidimensional arrays"; license = stdenv.lib.licenses.bsd3; @@ -16737,8 +16781,8 @@ self: { }: mkDerivation { pname = "RNAlien"; - version = "1.1.0"; - sha256 = "450d898235dadc7879eef1bb025713b7d55e8a271332760d8d744b4deb9636d8"; + version = "1.1.1"; + sha256 = "975a187bbe34324b62e57fb132e9dd38ada86409bb010b1631c8c5b86346ebee"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -19286,6 +19330,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "Tahin" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring, containers + , cryptohash, haskeline, mtl, optparse-applicative, text + }: + mkDerivation { + pname = "Tahin"; + version = "0.1.2"; + sha256 = "c89b2b2bc837985fb697eec2f9f39ad6acb1a8d45beafb9b41cc6bcb1a231923"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base base64-bytestring bytestring text ]; + executableHaskellDepends = [ + base base64-bytestring bytestring containers cryptohash haskeline + mtl optparse-applicative text + ]; + homepage = "http://github.com/mtesseract/Tahin#readme"; + description = "Tahin Password Generator"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "Tainted" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -20164,7 +20228,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ViennaRNAParser" = callPackage + "ViennaRNAParser_1_2_8" = callPackage ({ mkDerivation, base, hspec, parsec, process, transformers }: mkDerivation { pname = "ViennaRNAParser"; @@ -20174,9 +20238,10 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing ViennaRNA package output"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ViennaRNAParser_1_2_9" = callPackage + "ViennaRNAParser" = callPackage ({ mkDerivation, base, hspec, parsec, process, transformers }: mkDerivation { pname = "ViennaRNAParser"; @@ -20186,7 +20251,6 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing ViennaRNA package output"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vulkan" = callPackage @@ -22204,6 +22268,17 @@ self: { license = "unknown"; }) {}; + "acme-left-pad" = callPackage + ({ mkDerivation, base, text }: + mkDerivation { + pname = "acme-left-pad"; + version = "3.0"; + sha256 = "acbac093f071fc08b8cd4081c3e3675d369304626bcba85ef011ddc169f9370d"; + libraryHaskellDepends = [ base text ]; + description = "free your haskell from the tyranny of npm!"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "acme-lolcat" = callPackage ({ mkDerivation, base, parsec, random, random-shuffle, text }: mkDerivation { @@ -22337,12 +22412,12 @@ self: { }) {}; "acme-php" = callPackage - ({ mkDerivation, base }: + ({ mkDerivation, acme-left-pad, base }: mkDerivation { pname = "acme-php"; - version = "0.0.3"; - sha256 = "df37993a472d9f867ce7cdb16ab2f8db1e4aa7fa92a0f617344c0542c66b2d24"; - libraryHaskellDepends = [ base ]; + version = "0.0.4"; + sha256 = "c3015f1f75edeec2f42b7334cfaf7d69325b1c6ade573fe35fc487b4b81dc452"; + libraryHaskellDepends = [ acme-left-pad base ]; description = "The flexibility of Haskell and the safety of PHP"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -23128,7 +23203,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson" = callPackage + "aeson_0_9_0_1" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq , dlist, ghc-prim, hashable, HUnit, mtl, QuickCheck, scientific , syb, template-haskell, test-framework, test-framework-hunit @@ -23156,6 +23231,7 @@ self: { homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson_0_10_0_0" = callPackage @@ -23188,7 +23264,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson_0_11_1_4" = callPackage + "aeson" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl , QuickCheck, quickcheck-instances, scientific, semigroups, syb @@ -23214,7 +23290,6 @@ self: { homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-applicative" = callPackage @@ -23320,13 +23395,14 @@ self: { quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-compat" = callPackage + "aeson-compat_0_3_1_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, containers , exceptions, hashable, nats, QuickCheck, quickcheck-instances , scientific, tasty, tasty-hunit, tasty-quickcheck, text, time @@ -23336,8 +23412,8 @@ self: { pname = "aeson-compat"; version = "0.3.1.0"; sha256 = "9275040d031433eb0006bce8228a0828e058d547c7d07d61ab0b22154286d736"; - revision = "1"; - editedCabalFile = "88dde146e4177a807888b7058f8e24d057fa826205a005ade669ce1fc395f4a2"; + revision = "2"; + editedCabalFile = "6ed5f912700689e2c9bd91426168e69e2d366c48aec7de40f75030e30a365f4b"; libraryHaskellDepends = [ aeson attoparsec base bytestring containers exceptions hashable nats scientific text time time-locale-compat unordered-containers @@ -23352,6 +23428,34 @@ self: { homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans + , bytestring, containers, exceptions, hashable, nats, QuickCheck + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.2.0"; + sha256 = "ab594edc5bb15e42975536e689485d0b356d25727b0645d7bfd2f4fa9e27d338"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring containers exceptions + hashable nats scientific semigroups tagged text time + time-locale-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat base-orphans bytestring + containers exceptions hashable nats QuickCheck quickcheck-instances + scientific semigroups tagged tasty tasty-hunit tasty-quickcheck + text time time-locale-compat unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; }) {}; "aeson-diff" = callPackage @@ -23520,6 +23624,7 @@ self: { tasty-hunit tasty-quickcheck template-haskell text these time time-parsers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; @@ -23634,7 +23739,6 @@ self: { libraryHaskellDepends = [ aeson base parsec scientific text unordered-containers vector ]; - jailbreak = true; homepage = "https://github.com/FPBrno/aeson-parsec-picky"; description = "Alternative JSON parser based on Parsec and Aeson"; license = stdenv.lib.licenses.bsd3; @@ -23784,6 +23888,7 @@ self: { homepage = "https://github.com/Fuuzetsu/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-serialize" = callPackage @@ -23962,6 +24067,7 @@ self: { version = "0.1.1"; sha256 = "b71317e0a87bbd84d6ec407a307299201070a10e3b2cf9d28c4afb5cf8b0dad2"; libraryHaskellDepends = [ aeson base ]; + jailbreak = true; homepage = "https://github.com/tejon/aeson-yak"; description = "Handle JSON that may or may not be a list, or exist"; license = stdenv.lib.licenses.mit; @@ -24540,7 +24646,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "alarmclock" = callPackage + "alarmclock_0_2_0_8" = callPackage ({ mkDerivation, base, stm, time, unbounded-delays }: mkDerivation { pname = "alarmclock"; @@ -24551,6 +24657,22 @@ self: { homepage = "https://bitbucket.org/davecturner/alarmclock"; description = "Wake up and perform an action at a certain time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "alarmclock" = callPackage + ({ mkDerivation, base, stm, time, unbounded-delays }: + mkDerivation { + pname = "alarmclock"; + version = "0.2.0.9"; + sha256 = "606b06d8e037258cdd51a4f0aa9869b33dfa9dc34eb605c2f6a7357778bd676d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base stm time unbounded-delays ]; + executableHaskellDepends = [ base time ]; + homepage = "https://bitbucket.org/davecturner/alarmclock"; + description = "Wake up and perform an action at a certain time"; + license = stdenv.lib.licenses.bsd3; }) {}; "alea" = callPackage @@ -24807,6 +24929,7 @@ self: { ]; description = "Relational Algebra and SQL Code Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic" = callPackage @@ -30285,6 +30408,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "annihilator" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "annihilator"; + version = "0.1.0.0"; + sha256 = "d70391510f1edc498e8b746737500d378dd5cebd75fc953ee7bb75279cbfc001"; + libraryHaskellDepends = [ base ]; + homepage = "http://github.com/Shou/annihilator#readme"; + description = "Semigroups with annihilators and utility functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "annotated-wl-pprint_0_6_0" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -30346,8 +30481,8 @@ self: { pname = "ansi-pretty"; version = "0.1.2.0"; sha256 = "11079e97b7faaf3825d0ab2bb3e111b5d1b9085343e6505fc2b58240c4eaa424"; - revision = "1"; - editedCabalFile = "3f1fc699687e8f3b474da3666fc4c7e26626bba2329455a87655cc91ea62ee78"; + revision = "2"; + editedCabalFile = "76329a4d951e443e7d43bc570d6420d03b9a6a0aa337f22efbb5f4ff7006bf22"; libraryHaskellDepends = [ aeson ansi-wl-pprint array base bytestring containers generics-sop nats scientific semigroups tagged text time unordered-containers @@ -30474,8 +30609,8 @@ self: { }: mkDerivation { pname = "antagonist"; - version = "0.1.0.29"; - sha256 = "e91e99d72c990663a2e58ebdf9f397bb9963a6a58dbb0470abb31072809579b6"; + version = "0.1.0.30"; + sha256 = "e601f6619590b3027113c596115abdc8d46bdb43ad177b0b78cd83010255faad"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -30591,8 +30726,8 @@ self: { }: mkDerivation { pname = "antisplice"; - version = "0.17.1.0"; - sha256 = "de325d8b473db1eec25c630f07266fbd6262cb6452252f0bed02065e9f3888b8"; + version = "0.17.1.1"; + sha256 = "a2e6407db5c32760f9ede11b610f452f235827ae7bf80c0142aa18e3b2f365fa"; libraryHaskellDepends = [ base chatty chatty-utils haskeline mtl template-haskell text time transformers @@ -30830,7 +30965,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "apiary" = callPackage + "apiary_1_4_5" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, blaze-markup , bytestring, bytestring-read, case-insensitive, data-default-class , exceptions, hashable, http-date, http-types, HUnit, mime-types @@ -30860,6 +30995,38 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "Simple and type safe web framework that generate web API documentation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "apiary" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, blaze-html + , blaze-markup, bytestring, bytestring-read, case-insensitive + , data-default-class, directory, exceptions, hashable, http-date + , http-types, HUnit, mime-types, monad-control, mtl, process + , resourcet, stringsearch, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, text, time, transformers, transformers-base + , types-compat, unix-compat, unordered-containers, vault, wai + , wai-extra, web-routing + }: + mkDerivation { + pname = "apiary"; + version = "2.0.1.1"; + sha256 = "dd804df65c6ffc9f3bdd8994dd39668796e54e424b6a140bd7577551e7220554"; + libraryHaskellDepends = [ + aeson base blaze-builder blaze-html blaze-markup bytestring + bytestring-read case-insensitive data-default-class exceptions + hashable http-date http-types mime-types monad-control mtl process + resourcet stringsearch template-haskell text time transformers + transformers-base types-compat unix-compat unordered-containers + vault wai wai-extra web-routing + ]; + testHaskellDepends = [ + aeson base bytestring directory http-types HUnit mtl tasty + tasty-hunit tasty-quickcheck wai wai-extra + ]; + homepage = "https://github.com/philopon/apiary"; + description = "Simple and type safe web framework that generate web API documentation"; + license = stdenv.lib.licenses.mit; }) {}; "apiary-authenticate" = callPackage @@ -30872,8 +31039,8 @@ self: { pname = "apiary-authenticate"; version = "1.4.0"; sha256 = "40dbdb0d6799ba7091ae9b72929c7d62a74dd251b5a6e01f8979314d75dbd107"; - revision = "4"; - editedCabalFile = "5888af016171726e81bde323d1cd9044a24b70930c1fe5946ac0336a0f23f193"; + revision = "5"; + editedCabalFile = "34972b3238ea7fe3423f720891b9fb97614165da20b4751a09d0b26d3253cd4a"; libraryHaskellDepends = [ apiary apiary-session authenticate base blaze-builder bytestring cereal data-default-class http-client http-client-tls http-types @@ -30893,8 +31060,8 @@ self: { pname = "apiary-clientsession"; version = "1.4.0"; sha256 = "a6bba1337d2ee7ded7303f2801b09b9d93cdafb93f5115328c797bef3e6126fd"; - revision = "2"; - editedCabalFile = "b3780175a0912ef55de02d916822dbe38b98acec5705a63f808517cda16ab90c"; + revision = "3"; + editedCabalFile = "4f89144896c4424f795151ea1e90863feb968314d18250e8aa78e71a2aaf6c1a"; libraryHaskellDepends = [ apiary apiary-cookie apiary-session base bytestring cereal clientsession data-default-class time unix-compat vault @@ -30912,8 +31079,8 @@ self: { pname = "apiary-cookie"; version = "1.4.0"; sha256 = "3dcf4cf38377685340ec5c6ab105a0df3ba2b0a4d0d7079fc88593bd15eeeb04"; - revision = "3"; - editedCabalFile = "5b9c1a2c95bbedcb6b12196953ce1ebbe8e7c825fbb8ae5e0ddb4c846d3a752b"; + revision = "4"; + editedCabalFile = "ecc5670e535c8eb25acf5cc8973555dc1b8f4384e76f35472ceba3a9e4b78561"; libraryHaskellDepends = [ apiary base blaze-builder blaze-html bytestring cookie time types-compat wai web-routing @@ -30929,8 +31096,8 @@ self: { pname = "apiary-eventsource"; version = "1.4.0"; sha256 = "a7c9f566fea8501864ac194d744dfe94c0ee04d174ccb51161c4a64243bd0176"; - revision = "1"; - editedCabalFile = "368e1b555b07ff026b4753cab0364d0f70a4e2536166f756bde35f8ce9fb9ae6"; + revision = "2"; + editedCabalFile = "0ffc00bdbd735fd5ee59130daa2b6800dc66306bc3da2fccb48145961b04cc95"; libraryHaskellDepends = [ apiary base blaze-builder wai-extra ]; homepage = "https://github.com/philopon/apiary"; description = "eventsource support for apiary web framework"; @@ -30946,8 +31113,8 @@ self: { pname = "apiary-helics"; version = "1.4.0"; sha256 = "0a4dc7d59aa5cc626922d10e61bfad4fd56628c48701919d51b239f5a175a9e2"; - revision = "1"; - editedCabalFile = "80ce4b1a9dd5c7a30099392219d0077b9281b9ceeabbb01843f12754df0b0827"; + revision = "2"; + editedCabalFile = "82a65528a2b50525b5e4c06eef79248592d529739d4159a171407a212d3a2797"; libraryHaskellDepends = [ apiary base bytestring data-default-class helics helics-wai monad-control text transformers types-compat vault wai @@ -30967,6 +31134,8 @@ self: { pname = "apiary-http-client"; version = "0.1.1.0"; sha256 = "4e7b6ba5741f0f194ee23679cceb87167a7bac44ad2bca7789e4488320e103bd"; + revision = "2"; + editedCabalFile = "8238cab98333b055b04dd16fed558be1c969b7004e1ab06ebf2567ee9a64523b"; libraryHaskellDepends = [ apiary base bytestring data-default-class http-client http-types text transformers types-compat wai @@ -30985,8 +31154,8 @@ self: { pname = "apiary-logger"; version = "1.4.0"; sha256 = "884cf856a25685db351f76ab2df43126456cfe4c1a8640b72ac055623518c05d"; - revision = "3"; - editedCabalFile = "03f6b1ac0e588631c2deed8459e527f935a74a86c15455c3f509270ba5bbd5f7"; + revision = "4"; + editedCabalFile = "44884053de8a5d4c2b3e6a97f7b9592477cdbb1f6970d2d223cb2f1f557743e3"; libraryHaskellDepends = [ apiary base data-default-class fast-logger lifted-base monad-control monad-logger transformers transformers-base @@ -31005,8 +31174,8 @@ self: { pname = "apiary-memcached"; version = "1.4.0"; sha256 = "7e3d225c9ac983d798b88a1e8ebc0221852174d0f0765daa8e9e20e6d79193e7"; - revision = "1"; - editedCabalFile = "7a332392add31b3f5ef9fcc2e69069de3a23bdbfdcfeececc47d2832ec767c29"; + revision = "2"; + editedCabalFile = "3a79077bacef2ea2448b870b099c41d8a4cb726cfbd82bd1310e7f9801bf1de7"; libraryHaskellDepends = [ apiary base bytestring data-default-class memcached-binary monad-control text transformers types-compat @@ -31025,8 +31194,8 @@ self: { pname = "apiary-mongoDB"; version = "1.4.0"; sha256 = "8d97a32e5d55334d1a4f5d318d6a590a74c0b8ad6c84877956728318b89f36eb"; - revision = "1"; - editedCabalFile = "e2578f19108129ed47946fa7369c86203610d5b447a6a7a8f1af5f2537d55a4b"; + revision = "2"; + editedCabalFile = "de12b5ad3582eb1287753d02751b63f66ea84001d0fea9b15f34ff92675760de"; libraryHaskellDepends = [ apiary base bson data-default-class lifted-base monad-control mongoDB resource-pool text time transformers types-compat @@ -31045,8 +31214,8 @@ self: { pname = "apiary-persistent"; version = "1.4.0"; sha256 = "09c6c5730d6ad65b544e994f2d73f5412aae92aac093fd308234c8bea68f4a02"; - revision = "2"; - editedCabalFile = "7f1c18de1d41b15397df81d9a3377e109cc07f6efc07390584e0e2952d34e889"; + revision = "3"; + editedCabalFile = "8235c7aa7dd8f1ca78cc288abfed6e796da50b95040ae72bfd304c2115a2239e"; libraryHaskellDepends = [ apiary apiary-logger base monad-control monad-logger persistent resource-pool resourcet transformers transformers-base types-compat @@ -31066,8 +31235,8 @@ self: { pname = "apiary-purescript"; version = "1.4.0"; sha256 = "5f0e15fb72ae61b44349488bb945c1cd9d63b54986c73bbbd9cb207531172d7c"; - revision = "1"; - editedCabalFile = "9f716a5d9173c31c6472a4bf7decc34523bdc761540d440f5d0ad4f9521bf98c"; + revision = "2"; + editedCabalFile = "915a9c1861d5c4425a2ef6b721dbbf952801304aa1d9197f2f03758f7e554fff"; libraryHaskellDepends = [ apiary base bytestring data-default-class filepath Glob parsec purescript text transformers types-compat unordered-containers @@ -31085,8 +31254,8 @@ self: { pname = "apiary-session"; version = "1.4.0"; sha256 = "434cd8b985a95bd4c72dde7ac521768d1c1402f3cc8b4835dded6736bdbcd74a"; - revision = "2"; - editedCabalFile = "777f476e799ceaa21a20e42c6382baec92644fc898e11aea09dcfa96a5e90034"; + revision = "3"; + editedCabalFile = "1983d57af9d671319eaa96f055995e8de55d50ab52c5bdf1f210ae66c4a5d913"; libraryHaskellDepends = [ apiary base types-compat wai web-routing ]; @@ -31103,8 +31272,8 @@ self: { pname = "apiary-websockets"; version = "1.4.0"; sha256 = "e15e7e9281b72d9fa2419c1d3dbbf0c11e08dc139fe0d0242a5612a181ff545b"; - revision = "1"; - editedCabalFile = "5162825445fc14b48d11a0a1f63d67e8d66a8c5aaeaf1e117a1f2302474d7581"; + revision = "2"; + editedCabalFile = "72d8024aad88c6ea1185776d4612d05f68202ce78ab21d79edde2803c3bc15e9"; libraryHaskellDepends = [ apiary base wai-websockets web-routing websockets ]; @@ -31761,6 +31930,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -31791,6 +31961,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -31986,7 +32157,7 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "argon" = callPackage + "argon_0_4_0_0" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal , containers, directory, docopt, filepath, ghc, ghc-paths , ghc-syb-utils, hlint, hspec, lens-simple, pathwalk, pipes @@ -32011,13 +32182,15 @@ self: { docopt filepath ghc ghc-paths ghc-syb-utils hlint hspec lens-simple pathwalk pipes pipes-group QuickCheck syb ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "argon_0_4_1_0" = callPackage + "argon" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, bytestring, Cabal , containers, directory, docopt, filepath, ghc, ghc-paths , ghc-syb-utils, hlint, hspec, lens-simple, pipes, pipes-bytestring @@ -32042,7 +32215,6 @@ self: { homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "argon2" = callPackage @@ -32628,8 +32800,8 @@ self: { }: mkDerivation { pname = "asciidiagram"; - version = "1.2"; - sha256 = "5ea87f5932463b8cb62873a0551fdbbf17525b45819ffb54ebcf5de400e8d098"; + version = "1.3.1"; + sha256 = "69087e7ae41bc117f78411b6b5065b5cd5c93604ff9660b6996794dabe299f1b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -32953,12 +33125,15 @@ self: { }) {inherit (pkgs) assimp;}; "astar" = callPackage - ({ mkDerivation, base, containers, PSQueue }: + ({ mkDerivation, base, hashable, psqueues, unordered-containers }: mkDerivation { pname = "astar"; - version = "0.2.1"; - sha256 = "6815cdca09d9b40459c2dc180d35f9be2f5c67748f969644a2154cae94affe61"; - libraryHaskellDepends = [ base containers PSQueue ]; + version = "0.3.0.0"; + sha256 = "2117c007d5daa88401a49c994b8e3361ddae331d458b1a403fac2a4f304b9b87"; + libraryHaskellDepends = [ + base hashable psqueues unordered-containers + ]; + homepage = "https://github.com/weissi/astar"; description = "General A* search algorithm"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33081,6 +33256,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "async-dejafu_0_1_1_0" = callPackage + ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: + mkDerivation { + pname = "async-dejafu"; + version = "0.1.1.0"; + sha256 = "13a3b0bd80363d90fee27abcab299082b4947bf1197716e9f7df9dbace306595"; + libraryHaskellDepends = [ base dejafu exceptions ]; + testHaskellDepends = [ base dejafu HUnit hunit-dejafu ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Run MonadConc operations asynchronously and wait for their results"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "async-extras" = callPackage ({ mkDerivation, async, base, lifted-async, lifted-base , monad-control, SafeSemaphore, stm, transformers-base @@ -33274,6 +33464,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "atndapi" = callPackage + ({ mkDerivation, aeson, base, bytestring, conduit, data-default + , hspec, http-conduit, http-types, lifted-base, monad-control + , monad-logger, mtl, parsec, QuickCheck, resourcet, text, time + , transformers + }: + mkDerivation { + pname = "atndapi"; + version = "0.1.1.0"; + sha256 = "1c4be357e322c13dd0197252fca5a2eff6ebdd913920e2a9ae66e295aadbfeda"; + libraryHaskellDepends = [ + aeson base bytestring conduit data-default http-conduit http-types + lifted-base monad-control monad-logger mtl parsec resourcet text + time transformers + ]; + testHaskellDepends = [ + aeson base bytestring conduit data-default hspec http-conduit + http-types lifted-base monad-control monad-logger mtl parsec + QuickCheck resourcet text time transformers + ]; + homepage = "http://github.com/ynishi/atndapi#readme"; + description = "An interface of ATND API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "atom" = callPackage ({ mkDerivation, base, bimap, containers, mtl, process, syb }: mkDerivation { @@ -33398,7 +33613,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-primops-vector" = callPackage @@ -33946,17 +34161,18 @@ self: { }) {}; "aur" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, filepath, lens - , lens-aeson, mtl, text, vector, wreq + ({ mkDerivation, aeson, base, http-client, http-client-tls, mtl + , servant, servant-client, text, transformers }: mkDerivation { pname = "aur"; - version = "4.0.2"; - sha256 = "918c575536b17ce232e023b0c7e408f1c156a580cc770f78be2953190a465d8e"; + version = "5.0.0"; + sha256 = "626b590839ca942a6453261deb2abc1f23bfc001fc73fa8fd1cc8161c7ed06e3"; libraryHaskellDepends = [ - aeson aeson-pretty base filepath lens lens-aeson mtl text vector - wreq + aeson base http-client http-client-tls mtl servant servant-client + text transformers ]; + jailbreak = true; homepage = "https://github.com/fosskers/haskell-aur"; description = "Access metadata from the Arch Linux User Repository"; license = stdenv.lib.licenses.gpl3; @@ -34314,7 +34530,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers" = callPackage + "avers_0_0_14" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, clock, containers, cryptohash, filepath, hspec , inflections, MonadRandom, mtl, network, network-uri @@ -34339,6 +34555,34 @@ self: { ]; description = "empty"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "avers" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, clock, containers, cryptohash, filepath, hspec + , inflections, MonadRandom, mtl, network, network-uri + , resource-pool, rethinkdb-client-driver, safe, scrypt, stm + , template-haskell, text, time, unordered-containers, vector + }: + mkDerivation { + pname = "avers"; + version = "0.0.15"; + sha256 = "538d2461859dae2edd6a6b2abcd5ca45447a1927017fa94cb777c896c2bf7e5e"; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring clock containers + cryptohash filepath inflections MonadRandom mtl network network-uri + resource-pool rethinkdb-client-driver safe scrypt stm + template-haskell text time unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring containers + cryptohash hspec inflections MonadRandom mtl resource-pool + rethinkdb-client-driver scrypt stm text time unordered-containers + vector + ]; + description = "empty"; + license = stdenv.lib.licenses.gpl3; }) {}; "avers-api_0_0_1" = callPackage @@ -34359,7 +34603,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-api" = callPackage + "avers-api_0_0_2" = callPackage ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant , text, time }: @@ -34374,6 +34618,24 @@ self: { homepage = "http://github.com/wereHamster/avers-api"; description = "Types describing the core and extended Avers APIs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "avers-api" = callPackage + ({ mkDerivation, aeson, avers, base, bytestring, cookie, servant + , text, time, vector + }: + mkDerivation { + pname = "avers-api"; + version = "0.0.4"; + sha256 = "f2bf956a64a2579cea7ab787cdf3d99c5f9ac3e2525d83c777072a9b87fee61a"; + libraryHaskellDepends = [ + aeson avers base bytestring cookie servant text time vector + ]; + doHaddock = false; + homepage = "http://github.com/wereHamster/avers-api"; + description = "Types describing the core and extended Avers APIs"; + license = stdenv.lib.licenses.mit; }) {}; "avers-server_0_0_1" = callPackage @@ -34397,7 +34659,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "avers-server" = callPackage + "avers-server_0_0_2" = callPackage ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring , bytestring, bytestring-conversion, cookie, cryptohash, either , http-types, mtl, resource-pool, rethinkdb-client-driver, servant @@ -34417,6 +34679,30 @@ self: { homepage = "http://github.com/wereHamster/avers-server"; description = "Server implementation of the Avers API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "avers-server" = callPackage + ({ mkDerivation, aeson, avers, avers-api, base, base64-bytestring + , bytestring, bytestring-conversion, containers, cookie, cryptohash + , either, http-types, mtl, resource-pool, rethinkdb-client-driver + , servant, servant-server, stm, text, time, transformers, wai + , wai-websockets, websockets + }: + mkDerivation { + pname = "avers-server"; + version = "0.0.3"; + sha256 = "12ac2544d6c2f916298c8f269d16421d0a746fd59faf43359ad62d8100274a40"; + libraryHaskellDepends = [ + aeson avers avers-api base base64-bytestring bytestring + bytestring-conversion containers cookie cryptohash either + http-types mtl resource-pool rethinkdb-client-driver servant + servant-server stm text time transformers wai wai-websockets + websockets + ]; + homepage = "http://github.com/wereHamster/avers-server"; + description = "Server implementation of the Avers API"; + license = stdenv.lib.licenses.mit; }) {}; "avl-static" = callPackage @@ -37194,8 +37480,8 @@ self: { }: mkDerivation { pname = "bert"; - version = "1.2.2.4"; - sha256 = "e4e907e3353a9967196c973a363bc8742670587f42e9de0ac639a4c836f58bed"; + version = "1.2.2.5"; + sha256 = "72b99fa9df51890bac1b725ccd4a4821f2540cfc71afb55d2f903ca75012716a"; libraryHaskellDepends = [ base binary binary-conduit bytestring conduit conduit-extra containers mtl network parsec time unix void @@ -37350,6 +37636,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "bibdb" = callPackage + ({ mkDerivation, alex, array, base, bibtex, bytestring, containers + , curl, download-curl, filepath, happy, microlens, microlens-mtl + , microlens-th, mtl, optparse-applicative, parsec, pretty + , transformers + }: + mkDerivation { + pname = "bibdb"; + version = "0.3.0"; + sha256 = "e90d5952020d7bfe6ba5ae8abc447377eff553ce0bf7d5cfa4ff52dcc74cd0a9"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bibtex bytestring containers curl download-curl filepath + microlens microlens-mtl microlens-th mtl optparse-applicative + parsec pretty transformers + ]; + executableToolDepends = [ alex happy ]; + jailbreak = true; + homepage = "https://github.com/cacay/bibdb"; + description = "A database based bibliography manager for BibTeX"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bibtex" = callPackage ({ mkDerivation, base, latex, parsec, utility-ht }: mkDerivation { @@ -37493,18 +37804,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "bifunctors_5_2_1" = callPackage - ({ mkDerivation, base, comonad, containers, hspec, QuickCheck - , semigroups, tagged, template-haskell, transformers + "bifunctors_5_3" = callPackage + ({ mkDerivation, base, base-orphans, comonad, containers, hspec + , QuickCheck, semigroups, tagged, template-haskell, transformers , transformers-compat }: mkDerivation { pname = "bifunctors"; - version = "5.2.1"; - sha256 = "cbb459178a8c72cbb695361b518ae17ed3664e3ad207a34276f4d2990107e9cb"; + version = "5.3"; + sha256 = "66d2faa673752b4e47018a9ebfd84075c450b41556bb9551cf04d359dbcce8bf"; libraryHaskellDepends = [ - base comonad containers semigroups tagged template-haskell - transformers transformers-compat + base base-orphans comonad containers semigroups tagged + template-haskell transformers transformers-compat ]; testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat @@ -38322,6 +38633,7 @@ self: { SHA tagged tasty tasty-quickcheck text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/binary-tagged#readme"; description = "Tagged binary serialisation"; license = stdenv.lib.licenses.bsd3; @@ -38511,7 +38823,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {esound = null;}; - "bindings-GLFW" = callPackage + "bindings-GLFW_3_1_1_4" = callPackage ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm , mesa, test-framework, test-framework-hunit @@ -38532,6 +38844,34 @@ self: { doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; + inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; + inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; + inherit (pkgs.xorg) libXrandr; inherit (pkgs.xorg) libXxf86vm; + inherit (pkgs) mesa;}; + + "bindings-GLFW" = callPackage + ({ mkDerivation, base, bindings-DSL, HUnit, libX11, libXcursor + , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm + , mesa, template-haskell, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "bindings-GLFW"; + version = "3.1.2.0"; + sha256 = "8ed860cea817a213f4972d68860c48ca81377d4fcd488dee29677ff02c2d4ea1"; + libraryHaskellDepends = [ base bindings-DSL template-haskell ]; + librarySystemDepends = [ + libX11 libXcursor libXext libXfixes libXi libXinerama libXrandr + libXxf86vm mesa + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + jailbreak = true; + doCheck = false; + description = "Low-level bindings to GLFW OpenGL library"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; @@ -39225,6 +39565,21 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "bindings-wlc" = callPackage + ({ mkDerivation, base, bindings-DSL, convertible, wlc }: + mkDerivation { + pname = "bindings-wlc"; + version = "0.1.0.7"; + sha256 = "633d9ebb1aa9a20f8a49c1a84003cb2baedb0341bbcfd354d11aae380d672422"; + libraryHaskellDepends = [ base bindings-DSL convertible ]; + librarySystemDepends = [ wlc ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/aktowns/bindings-wlc#readme"; + description = "Bindings against the wlc library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) wlc;}; + "bindings-yices" = callPackage ({ mkDerivation, base, gmp, yices }: mkDerivation { @@ -39881,6 +40236,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "bits-bytestring" = callPackage + ({ mkDerivation, base, bits, bytestring, hspec, QuickCheck }: + mkDerivation { + pname = "bits-bytestring"; + version = "0.1.0.1"; + sha256 = "d9e90f0b05589d9fcb4a807242a3b92e25786c118d168cbb7ccdbaf8076b6152"; + libraryHaskellDepends = [ base bits bytestring ]; + testHaskellDepends = [ base bits bytestring hspec QuickCheck ]; + homepage = "https://github.com/oldmanmike/bits-bytestring"; + description = "Bits instance for bytestrings"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "bits-conduit" = callPackage ({ mkDerivation, base, bytestring, conduit, hspec, HUnit, mtl }: mkDerivation { @@ -41137,7 +41505,7 @@ self: { QuickCheck quickcheck-properties semigroups text time unordered-containers vector ]; - jailbreak = true; + doCheck = false; homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -41385,6 +41753,7 @@ self: { monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; @@ -41430,6 +41799,7 @@ self: { aeson base bond bytestring cmdargs directory filepath monad-loops ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Bond code generator for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -42487,16 +42857,17 @@ self: { }) {}; "buildbox" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, mtl - , old-locale, pretty, process, random, stm, text, time + ({ mkDerivation, base, bytestring, containers, directory + , exceptions, mtl, old-locale, pretty, process, stm, temporary + , text, time }: mkDerivation { pname = "buildbox"; - version = "2.1.7.1"; - sha256 = "5193d8b22d0b576e972f85f032627a4ebbd6f2d6033aa4a789b312574baf8f58"; + version = "2.1.8.1"; + sha256 = "086a39b3424e4e86a0f5338877ad06847de42e5b868c67446e80dea1540dd445"; libraryHaskellDepends = [ - base bytestring containers directory mtl old-locale pretty process - random stm text time + base bytestring containers directory exceptions mtl old-locale + pretty process stm temporary text time ]; homepage = "http://code.ouroborus.net/buildbox"; description = "Rehackable components for writing buildbots and test harnesses"; @@ -43398,8 +43769,8 @@ self: { pname = "bytestring-read"; version = "0.3.1"; sha256 = "0048cd84ec6c0c684fa8bb65bc20f280ee3e3dc164bf02d59ba139e8caaac635"; - revision = "2"; - editedCabalFile = "3746d301ac907af3750c2cd06d0e7f397e77a8bf33fbe7efd92b83ddef90752f"; + revision = "3"; + editedCabalFile = "cc2bffb995e06c44359a91c95da55ebe952656fe4320f57d86aa2daf3eb29195"; libraryHaskellDepends = [ base bytestring types-compat ]; testHaskellDepends = [ base bytestring doctest tasty tasty-quickcheck @@ -43592,6 +43963,7 @@ self: { version = "0.3.1"; sha256 = "fc9a30c237a4c0c077871a59dc0cb47634ea66271e115bc25ef1dc6c441b1212"; libraryHaskellDepends = [ base language-c ]; + jailbreak = true; description = "A higher level DSL on top of language-c"; license = stdenv.lib.licenses.mit; }) {}; @@ -43676,6 +44048,7 @@ self: { transformers ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/haskell/c2hs"; description = "C->Haskell FFI tool that gives some cross-language type safety"; @@ -43702,6 +44075,33 @@ self: { base filepath HUnit shelly test-framework test-framework-hunit text transformers ]; + jailbreak = true; + homepage = "https://github.com/haskell/c2hs"; + description = "C->Haskell FFI tool that gives some cross-language type safety"; + license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "c2hs_0_27_1" = callPackage + ({ mkDerivation, array, base, bytestring, containers, directory + , dlist, filepath, HUnit, language-c, pretty, process, shelly + , test-framework, test-framework-hunit, text, transformers + }: + mkDerivation { + pname = "c2hs"; + version = "0.27.1"; + sha256 = "668af07f261c7c6c2537921ba58870cfb1114b33670f2c182e6f9a8794ffe41f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + array base bytestring containers directory dlist filepath + language-c pretty process + ]; + testHaskellDepends = [ + base filepath HUnit shelly test-framework test-framework-hunit text + transformers + ]; + jailbreak = true; homepage = "https://github.com/haskell/c2hs"; description = "C->Haskell FFI tool that gives some cross-language type safety"; license = stdenv.lib.licenses.gpl2; @@ -43715,8 +44115,8 @@ self: { }: mkDerivation { pname = "c2hs"; - version = "0.27.1"; - sha256 = "668af07f261c7c6c2537921ba58870cfb1114b33670f2c182e6f9a8794ffe41f"; + version = "0.28.1"; + sha256 = "95b04ef42cf43a1078e9c8a4bf9264dd26e8653b441b3fb7f2296c8b3a0752bb"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -44840,7 +45240,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm" = callPackage + "cabal-rpm_0_9_9" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -44856,9 +45256,10 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cabal-rpm_0_9_10" = callPackage + "cabal-rpm" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, time , unix }: @@ -44874,7 +45275,6 @@ self: { homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-scripts" = callPackage @@ -45463,20 +45863,20 @@ self: { }) {}; "cacophony" = callPackage - ({ mkDerivation, async, base, bytestring, cryptonite, directory - , doctest, filepath, free, hlint, lens, memory, mtl, QuickCheck - , tasty, tasty-quickcheck + ({ mkDerivation, async, base, bytestring, cryptonite, deepseq, free + , hlint, lens, memory, mtl, QuickCheck, tasty, tasty-quickcheck }: mkDerivation { pname = "cacophony"; - version = "0.5.0"; - sha256 = "942167185eebb4290e576f2c25816d0ccd52d68b47641dbdf5b5d8fffcd8f750"; + version = "0.6.0"; + sha256 = "2a1b2cf962fbf2743efb36439428b89882add585a4877436533b9fc755d98a9c"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base bytestring cryptonite free lens memory mtl + base bytestring cryptonite deepseq free lens memory mtl ]; testHaskellDepends = [ - async base bytestring directory doctest filepath hlint mtl - QuickCheck tasty tasty-quickcheck + async base bytestring hlint mtl QuickCheck tasty tasty-quickcheck ]; doCheck = false; homepage = "https://github.com/centromere/cacophony"; @@ -47211,20 +47611,19 @@ self: { ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal , containers, directory, filepath, mtl, optparse-applicative , process, safe, stringsearch, tar, text, transformers, unix - , Unixutils, utf8-string, zlib + , Unixutils, utf8-string, vector, zlib }: mkDerivation { pname = "cblrepo"; - version = "0.20.0"; - sha256 = "0cc8cf5888d0dc87be47a2e11c641e8f3c8f64f3e09b242694c74b69a1b093e5"; + version = "0.21.0"; + sha256 = "a69470286432b822b2aca531c147794b3e8a5a2702cf9f2170aeda9e4058549f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson ansi-wl-pprint base bytestring Cabal containers directory filepath mtl optparse-applicative process safe stringsearch tar - text transformers unix Unixutils utf8-string zlib + text transformers unix Unixutils utf8-string vector zlib ]; - jailbreak = true; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -48093,13 +48492,12 @@ self: { }: mkDerivation { pname = "chatty"; - version = "0.6.4.1"; - sha256 = "9f3ecc2335277144a86e9299f9775d2c655862e028b49e1070623cc8dbcaea09"; + version = "0.7.0.0"; + sha256 = "87e2025fab3187c029ffdf221c8280b25dffb4f59fcf57212dcf0235ddba167b"; libraryHaskellDepends = [ ansi-terminal base chatty-utils directory mtl process random setenv template-haskell text time transformers unix ]; - jailbreak = true; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Some monad transformers and typeclasses for abstraction of global dependencies"; license = stdenv.lib.licenses.agpl3; @@ -48109,8 +48507,8 @@ self: { ({ mkDerivation, base, chatty, transformers }: mkDerivation { pname = "chatty-text"; - version = "0.6.2.0"; - sha256 = "830a7503347bdcba3c6778ab8e4d7843d574c3a8d64f387e6b4349d92efecf3d"; + version = "0.6.2.1"; + sha256 = "820f5d1f6b7cc52430ee835ce0f7779b41987a6b492bee2466b957c03780c301"; libraryHaskellDepends = [ base chatty transformers ]; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; @@ -48121,8 +48519,8 @@ self: { ({ mkDerivation, base, mtl, text, transformers }: mkDerivation { pname = "chatty-utils"; - version = "0.7.3.2"; - sha256 = "12c9510397cdbf45fd90aac93ebf353df8aac0ad3e24b353ca3549fc934f22b5"; + version = "0.7.3.3"; + sha256 = "e966e3c04e31cba118a4dd5a3a695976b4e5aa03cafa8031c7305c1587ebf8ad"; libraryHaskellDepends = [ base mtl text transformers ]; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Some utilities every serious chatty-based application may need"; @@ -49103,6 +49501,7 @@ self: { lens lens-aeson mtl mtl-compat QuickCheck tasty tasty-hunit tasty-th transformers-compat ]; + jailbreak = true; homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; @@ -49177,7 +49576,7 @@ self: { librarySystemDepends = [ clang ]; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) clang;}; "clanki" = callPackage @@ -51191,6 +51590,7 @@ self: { web-routes-happstack web-routes-hsp web-routes-th xss-sanitize ]; librarySystemDepends = [ openssl ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "A secure, reliable content management system (CMS) and blogging platform"; license = stdenv.lib.licenses.bsd3; @@ -51364,6 +51764,7 @@ self: { tagsoup template-haskell text time time-locale-compat uuid web-plugins web-routes web-routes-happstack web-routes-th ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "support for CMS/Blogging in clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -51721,7 +52122,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock_0_5_1" = callPackage + "clock" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -51729,13 +52130,13 @@ self: { sha256 = "7c7a1f89bc4fa2f995d31a214bb7e3ad44c3570cb46b8f18e7de6011f78197d9"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; + doCheck = false; homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clock" = callPackage + "clock_0_6_0_1" = callPackage ({ mkDerivation, base, tasty, tasty-quickcheck }: mkDerivation { pname = "clock"; @@ -51747,6 +52148,21 @@ self: { homepage = "https://github.com/corsis/clock"; description = "High-resolution clock functions: monotonic, realtime, cputime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "clock_0_7_1_1" = callPackage + ({ mkDerivation, base, tasty, tasty-quickcheck }: + mkDerivation { + pname = "clock"; + version = "0.7.1.1"; + sha256 = "6be612a15ede79fcc6c4f8272555e3890247e75ba211c88b1b02d856f3e0150d"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-quickcheck ]; + homepage = "https://github.com/corsis/clock"; + description = "High-resolution clock functions: monotonic, realtime, cputime"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clocked" = callPackage @@ -52045,7 +52461,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cmark" = callPackage + "cmark_0_5_1" = callPackage ({ mkDerivation, base, bytestring, HUnit, text }: mkDerivation { pname = "cmark"; @@ -52056,6 +52472,20 @@ self: { homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cmark" = callPackage + ({ mkDerivation, base, bytestring, HUnit, text }: + mkDerivation { + pname = "cmark"; + version = "0.5.2"; + sha256 = "757243bd8b479a29b60c39e549988e6003fc0744f827772ee91b4a58e48ecea4"; + libraryHaskellDepends = [ base bytestring text ]; + testHaskellDepends = [ base HUnit text ]; + homepage = "https://github.com/jgm/commonmark-hs"; + description = "Fast, accurate CommonMark (Markdown) parser and renderer"; + license = stdenv.lib.licenses.bsd3; }) {}; "cmath" = callPackage @@ -52512,7 +52942,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "codex" = callPackage + "codex_0_4_0_8" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash , directory, either, filepath, hackage-db, http-client, lens , machines, machines-directory, MissingH, monad-loops, network @@ -52533,6 +52963,34 @@ self: { base bytestring Cabal directory either filepath hackage-db MissingH monad-loops network process transformers wreq yaml ]; + jailbreak = true; + homepage = "http://github.com/aloiscochard/codex"; + description = "A ctags file generator for cabal project dependencies"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "codex" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash + , directory, either, filepath, hackage-db, http-client, lens + , machines, machines-directory, MissingH, monad-loops, network + , process, tar, text, transformers, wreq, yaml, zlib + }: + mkDerivation { + pname = "codex"; + version = "0.4.0.10"; + sha256 = "1dd23ef2991b14e6c212b91b86ef2c14de86ece126ab7bcf4ed926d1413ad812"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers cryptohash directory either + filepath hackage-db http-client lens machines machines-directory + process tar text transformers wreq yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal directory either filepath hackage-db MissingH + monad-loops network process transformers wreq yaml + ]; homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -52626,7 +53084,6 @@ self: { random scientific tasty tasty-hunit tasty-quickcheck tasty-th time transformers unordered-containers uuid websockets ]; - jailbreak = true; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -53357,7 +53814,10 @@ self: { pname = "compact-string"; version = "0.3.1"; sha256 = "48da37dc629ee3bfe55d05d5284c2c6b067deb034cf3feab3982572910ed980a"; + revision = "1"; + editedCabalFile = "12c9508bf68b6da11d38adb71248376aeb23eaf7cd6ae1b4571c83d748079c0d"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; @@ -53793,6 +54253,7 @@ self: { base compdata containers deepseq deepseq-generics ghc-prim lens template-haskell th-expand-syns ]; + jailbreak = true; homepage = "https://github.com/jkoppel/comptrans"; description = "Automatically converting ASTs into compositional data types"; license = stdenv.lib.licenses.bsd3; @@ -54133,6 +54594,18 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "concurrent-rpc" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "concurrent-rpc"; + version = "0.1.0.0"; + sha256 = "efed4a49b87a1f8f51cea08f3cd842bdd3735bd191ab7c20de92746bbae2114c"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/lpeterse/haskell-concurrent-rpc"; + description = "An abstraction for inter-thread RPC based on MVars"; + license = stdenv.lib.licenses.mit; + }) {}; + "concurrent-sa" = callPackage ({ mkDerivation, base, MonadRandom }: mkDerivation { @@ -55211,7 +55684,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "conduit-extra" = callPackage + "conduit-extra_1_1_11" = callPackage ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring , bytestring-builder, conduit, directory, exceptions, filepath , hspec, monad-control, network, primitive, process, resourcet, stm @@ -55234,6 +55707,33 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Batteries included conduit: adapters for common libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "conduit-extra" = callPackage + ({ mkDerivation, async, attoparsec, base, blaze-builder, bytestring + , bytestring-builder, conduit, directory, exceptions, filepath + , hspec, monad-control, network, primitive, process, QuickCheck + , resourcet, stm, streaming-commons, text, transformers + , transformers-base + }: + mkDerivation { + pname = "conduit-extra"; + version = "1.1.13.1"; + sha256 = "16910191be60a573a3dd933655ced6bc91564fd96e61e89e4d97ac52e6d75810"; + libraryHaskellDepends = [ + async attoparsec base blaze-builder bytestring conduit directory + exceptions filepath monad-control network primitive process + resourcet stm streaming-commons text transformers transformers-base + ]; + testHaskellDepends = [ + async attoparsec base blaze-builder bytestring bytestring-builder + conduit exceptions hspec process QuickCheck resourcet stm + streaming-commons text transformers transformers-base + ]; + homepage = "http://github.com/snoyberg/conduit"; + description = "Batteries included conduit: adapters for common libraries"; + license = stdenv.lib.licenses.mit; }) {}; "conduit-iconv" = callPackage @@ -55348,19 +55848,19 @@ self: { "config-manager" = callPackage ({ mkDerivation, base, directory, filepath, HUnit, parsec - , temporary, test-framework, test-framework-hunit, text + , temporary, test-framework, test-framework-hunit, text, time , unordered-containers }: mkDerivation { pname = "config-manager"; - version = "0.1.0.0"; - sha256 = "fbb14182265aa28076a221fc64020bd9e3338e9a88634d08c5e9e3c8edfd558d"; + version = "0.2.0.0"; + sha256 = "006e454220f88f4f7d8ccb89abb9ce80ebd88fa75147100fdf76e76690a0863a"; libraryHaskellDepends = [ - base filepath parsec text unordered-containers + base filepath parsec text time unordered-containers ]; testHaskellDepends = [ base directory HUnit temporary test-framework test-framework-hunit - text unordered-containers + text time unordered-containers ]; homepage = "https://gitlab.com/guyonvarch/config-manager"; description = "Configuration management"; @@ -55728,8 +56228,8 @@ self: { ({ mkDerivation, base, tagged, void }: mkDerivation { pname = "constrained-categories"; - version = "0.2.1.1"; - sha256 = "fe2b93bb06a5acf4ebd872af25d7fd9b838067a676f56571845d36a0f6148c54"; + version = "0.2.5.1"; + sha256 = "660941f0cfc79793a2102a8638802f5df009a8cc155ca3194c76e3902feaede8"; libraryHaskellDepends = [ base tagged void ]; homepage = "https://github.com/leftaroundabout/constrained-categories"; description = "Constrained clones of the category-theory type classes, using ConstraintKinds"; @@ -57304,6 +57804,7 @@ self: { libraryHaskellDepends = [ aeson base shakespeare text ]; executableHaskellDepends = [ base tagsoup text ]; testHaskellDepends = [ aeson base HTF HUnit ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/country-codes"; description = "ISO 3166 country codes and i18n names"; license = stdenv.lib.licenses.bsd3; @@ -57464,8 +57965,8 @@ self: { }: mkDerivation { pname = "cplex-hs"; - version = "0.2.0.1"; - sha256 = "4d2c06753d28eba293ea0a4ef6a6dc3a1a5875c9111932dface41a3f3776c7b0"; + version = "0.2.0.2"; + sha256 = "5f6de007fa0b2548d40fdb18cb44b37b8f02cc7cbe631e74ba20ab1aec811554"; libraryHaskellDepends = [ base containers mtl primitive transformers vector ]; @@ -58157,6 +58658,50 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "craze" = callPackage + ({ mkDerivation, async, base, bytestring, curl, data-default-class + , doctest, doctest-discover, haxy, hspec, hspec-discover, HTTP + , http-types, optparse-generic, text, transformers + }: + mkDerivation { + pname = "craze"; + version = "0.0.1.1"; + sha256 = "7580164fe2534d8af70d9ccbbc429fbf2d72cee63f7992b7c174f9a264bc1631"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base bytestring curl data-default-class transformers + ]; + executableHaskellDepends = [ + base bytestring curl optparse-generic text transformers + ]; + testHaskellDepends = [ + base bytestring curl doctest doctest-discover haxy hspec + hspec-discover HTTP http-types transformers + ]; + homepage = "https://github.com/etcinit/craze#readme"; + description = "HTTP Racing Library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "crc" = callPackage + ({ mkDerivation, base, bytestring, conduit, conduit-extra + , resourcet, tasty, tasty-golden, vector + }: + mkDerivation { + pname = "crc"; + version = "0.0.1.1"; + sha256 = "e4bc5247baa81d1293f75de7e394176b275fda4793251ca0747862ab270096eb"; + libraryHaskellDepends = [ base bytestring vector ]; + testHaskellDepends = [ + base bytestring conduit conduit-extra resourcet tasty tasty-golden + ]; + homepage = "http://github.com/MichaelXavier/crc"; + description = "Implements various Cyclic Redundancy Checks (CRC)"; + license = stdenv.lib.licenses.mit; + }) {}; + "crc16" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -59060,14 +59605,16 @@ self: { }) {}; "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, HUnit - , QuickCheck, tasty, tasty-hunit, tasty-quickcheck + ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim + , HUnit, memory, QuickCheck, tasty, tasty-hunit, tasty-quickcheck }: mkDerivation { pname = "cryptohash"; - version = "0.11.7"; - sha256 = "da297489f6b2a029a14e08f53ff841743ca7bd35646ee7c05ebcd0028b9d0e30"; - libraryHaskellDepends = [ base byteable bytestring ghc-prim ]; + version = "0.11.9"; + sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; + libraryHaskellDepends = [ + base byteable bytestring cryptonite ghc-prim memory + ]; testHaskellDepends = [ base byteable bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck @@ -59094,7 +59641,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "cryptohash-cryptoapi" = callPackage + "cryptohash-cryptoapi_0_1_3" = callPackage ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptohash , tagged }: @@ -59108,6 +59655,23 @@ self: { homepage = "http://github.com/vincenthz/hs-cryptohash-cryptoapi"; description = "Crypto-api interfaces for cryptohash"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cryptohash-cryptoapi" = callPackage + ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite + , memory, tagged + }: + mkDerivation { + pname = "cryptohash-cryptoapi"; + version = "0.1.4"; + sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; + libraryHaskellDepends = [ + base bytestring cereal crypto-api cryptonite memory tagged + ]; + homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; + description = "Crypto-api interfaces for cryptohash"; + license = stdenv.lib.licenses.bsd3; }) {}; "cryptol_2_2_1" = callPackage @@ -59394,6 +59958,7 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; description = "Crypto stuff using OpenSSL cryptographic library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "cryptsy-api" = callPackage @@ -59448,8 +60013,8 @@ self: { }: mkDerivation { pname = "csound-catalog"; - version = "0.4.0"; - sha256 = "721440f3f891f3117fd38042ad8111b9a23dc0259ea51c177b17115763bac157"; + version = "0.5.0"; + sha256 = "6eacf0967f30ae543f25e3a0982f015c10d7241dba680b5d889bfe5a4ad6d29e"; libraryHaskellDepends = [ base csound-expression csound-sampler sharc-timbre transformers ]; @@ -59467,8 +60032,8 @@ self: { }: mkDerivation { pname = "csound-expression"; - version = "4.9.1"; - sha256 = "c0dcb47cba9902f81bd3567ad79250a6cc2c4b421da3f0ffea40dfcace513d23"; + version = "5.0.1"; + sha256 = "ed771c3351358b67b25aecfaebdacdf38c5dffe2dddf306dc93466fd440c3978"; libraryHaskellDepends = [ base Boolean colour containers csound-expression-dynamic csound-expression-opcodes csound-expression-typed data-default @@ -59485,8 +60050,8 @@ self: { }: mkDerivation { pname = "csound-expression-dynamic"; - version = "0.1.5"; - sha256 = "65a80a536d28e5e8b55e3aed7121df88635636a5b337f7706301a319edbcf80c"; + version = "0.1.6"; + sha256 = "846b3c456ba92f538b101a682fe796e91352c680070344f6296db99b740a64a2"; libraryHaskellDepends = [ array base Boolean containers data-default data-fix data-fix-cse hashable transformers wl-pprint @@ -59502,8 +60067,8 @@ self: { }: mkDerivation { pname = "csound-expression-opcodes"; - version = "0.0.3"; - sha256 = "65e954adabbd4e4949f2782063ee97f8df9861f4c277b5130e23ea9b6de6f638"; + version = "0.0.3.1"; + sha256 = "c725eab85daca0de9dd689b40013f5af95089ef09539c009c58ebd020b161136"; libraryHaskellDepends = [ base csound-expression-dynamic csound-expression-typed transformers ]; @@ -59518,8 +60083,8 @@ self: { }: mkDerivation { pname = "csound-expression-typed"; - version = "0.0.9.1"; - sha256 = "d578b5bae42df143962d2d1121385a4dea39d751eaebbe11f07e08b615320a12"; + version = "0.0.9.3"; + sha256 = "b63d2a0634f789a851b897755db0d0596c48ba4348bd224c60d450e7c8803a06"; libraryHaskellDepends = [ base Boolean colour containers csound-expression-dynamic data-default deepseq ghc-prim hashable temporal-media transformers @@ -59534,8 +60099,8 @@ self: { ({ mkDerivation, base, csound-expression, transformers }: mkDerivation { pname = "csound-sampler"; - version = "0.0.6.4"; - sha256 = "e3928a9f104b4c81ed9b4724a3f8352b7fbf2b1df60ebec66c45d2ddbac950d6"; + version = "0.0.6.5"; + sha256 = "f68d07f9099f4f89395fe60093164a4ac2bbe2bf6aa2aaa3d3eae0fb7b349058"; libraryHaskellDepends = [ base csound-expression transformers ]; homepage = "https://github.com/anton-k/csound-sampler"; description = "A musical sampler based on Csound"; @@ -59777,13 +60342,16 @@ self: { }) {}; "ctpl" = callPackage - ({ mkDerivation, base, chatty-text, chatty-utils }: + ({ mkDerivation, array, base, chatty-text, chatty-utils }: mkDerivation { pname = "ctpl"; - version = "0.1.0.1"; - sha256 = "3b6bb011e0cc647fcc1254c52b182a5928a730a26cb55cfbcc19d9f2e27a78d5"; - libraryHaskellDepends = [ base chatty-text chatty-utils ]; - jailbreak = true; + version = "0.1.0.4"; + sha256 = "29eef56cbc972a03b9da43bd00a61bd8f9eab81d23dbcbf0e5e171b270f16c0f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ array base chatty-text chatty-utils ]; + executableHaskellDepends = [ array base chatty-text chatty-utils ]; + homepage = "http://doomanddarkness.eu/pub/ctpl"; description = "A programming language for text modification"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = stdenv.lib.platforms.none; @@ -59966,8 +60534,8 @@ self: { ({ mkDerivation, base, c2hs, cuda }: mkDerivation { pname = "cufft"; - version = "0.1.2.1"; - sha256 = "d29c4de93e2ccf1d9124cff6466b1e0a04108c8cfc284164713b5ec79bb879e2"; + version = "0.1.2.2"; + sha256 = "7ce52f10a05bd5064466dde644e0663abbc9eb3cfe0026531cfc04c1c8302bec"; libraryHaskellDepends = [ base cuda ]; libraryToolDepends = [ c2hs ]; homepage = "http://github.com/robeverest/cufft"; @@ -62277,6 +62845,7 @@ self: { aeson auto-update base buffer-builder bytestring lens lifted-base monad-control network old-locale text time transformers-base ]; + jailbreak = true; homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; @@ -63087,6 +63656,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler test driver and buildbot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddci-core" = callPackage @@ -63118,8 +63688,8 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.5"; - sha256 = "3bb75cd30e6ed043da2cee902eddd02f75e000dbcc1b6d9edbe0523b0dc2e59c"; + version = "0.6"; + sha256 = "477614d43048109bfa4a3116204d70c3ea822524c3caba410cf6aac90b3804ee"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -63727,6 +64297,26 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "dejafu_0_3_0_0" = callPackage + ({ mkDerivation, array, atomic-primops, base, containers, deepseq + , dpor, exceptions, monad-control, monad-loops, mtl, semigroups + , stm, template-haskell, transformers, transformers-base + }: + mkDerivation { + pname = "dejafu"; + version = "0.3.0.0"; + sha256 = "8df9b8ff0d09c75069c4abd06b879eb3b9ebba4e61d7429c45573cc0a108a7e1"; + libraryHaskellDepends = [ + array atomic-primops base containers deepseq dpor exceptions + monad-control monad-loops mtl semigroups stm template-haskell + transformers transformers-base + ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "deka" = callPackage ({ mkDerivation, base, bytestring, mpdec, parsec, transformers }: mkDerivation { @@ -64192,7 +64782,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive" = callPackage + "derive_2_5_23" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -64210,9 +64800,10 @@ self: { homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "derive_2_5_24" = callPackage + "derive" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , haskell-src-exts, pretty, process, syb, template-haskell , transformers, uniplate @@ -64231,7 +64822,6 @@ self: { homepage = "https://github.com/ndmitchell/derive#readme"; description = "A program and library to derive instances for data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-IG" = callPackage @@ -67009,6 +67599,7 @@ self: { aeson base bytestring digestive-functors HUnit mtl scientific tasty tasty-hunit text ]; + jailbreak = true; homepage = "http://github.com/ocharles/digestive-functors-aeson"; description = "Run digestive-functors forms against JSON"; license = stdenv.lib.licenses.gpl3; @@ -67154,8 +67745,8 @@ self: { }: mkDerivation { pname = "digit"; - version = "0.2.5"; - sha256 = "685bf3e11e88ccc17c3895f10eac5508e186fcb5fbcd9a59040612e683c227e8"; + version = "0.2.6"; + sha256 = "778670a01298e208ee0913e61749be40d99bc3559541b5f85bc698de1ce5eb1f"; libraryHaskellDepends = [ base lens parsec parsers semigroups template-haskell ]; @@ -67674,6 +68265,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "discogs-haskell" = callPackage + ({ mkDerivation, aeson, api-builder, base, bytestring, Cabal + , data-default-class, free, hspec, http-client, http-client-tls + , http-types, network, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "discogs-haskell"; + version = "0.0.5.0"; + sha256 = "acd7f94dfea9c72ecff0319507fba7962502d0d315824fdeb26f4d9a4a61ed42"; + libraryHaskellDepends = [ + aeson api-builder base bytestring data-default-class free + http-client http-client-tls http-types network text time + transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson api-builder base bytestring Cabal hspec text time + transformers + ]; + jailbreak = true; + homepage = "http://github.com/accraze/discogs-haskell"; + description = "Client for Discogs REST API"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "discordian-calendar" = callPackage ({ mkDerivation, base, time }: mkDerivation { @@ -68877,13 +69494,14 @@ self: { aeson aeson-pretty attoparsec base bytestring lens patches-vector servant servant-blaze servant-docs shakespeare text time vector ]; + jailbreak = true; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dixi" = callPackage + "dixi_0_6_0_5" = callPackage ({ mkDerivation, acid-state, aeson, aeson-pretty, attoparsec, base , base-orphans, blaze-html, blaze-markup, bytestring , composition-tree, containers, data-default, directory, either @@ -68916,12 +69534,14 @@ self: { patches-vector servant servant-blaze servant-docs shakespeare text time vector ]; + jailbreak = true; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dixi_0_6_9_0" = callPackage + "dixi" = callPackage ({ mkDerivation, acid-state, aeson, aeson-pretty, attoparsec, base , base-orphans, blaze-html, blaze-markup, bytestring , composition-tree, containers, data-default, directory, either @@ -68958,7 +69578,6 @@ self: { homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "djembe" = callPackage @@ -69475,6 +70094,33 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "doctest_0_11_0" = callPackage + ({ mkDerivation, base, base-compat, deepseq, directory, filepath + , ghc, ghc-paths, hspec, HUnit, process, QuickCheck, setenv + , silently, stringbuilder, syb, transformers, with-location + }: + mkDerivation { + pname = "doctest"; + version = "0.11.0"; + sha256 = "d225c28a44281f32eb189dc11a4f1c9d15528ac0f973cf636567d69143df6477"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat deepseq directory filepath ghc ghc-paths process + syb transformers + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base base-compat deepseq directory filepath ghc ghc-paths hspec + HUnit process QuickCheck setenv silently stringbuilder syb + transformers with-location + ]; + homepage = "https://github.com/sol/doctest#readme"; + description = "Test interactive Haskell examples"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "doctest-discover" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, doctest , filepath @@ -70095,6 +70741,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) dpkg; libdpkg = null;}; + "dpor" = callPackage + ({ mkDerivation, base, containers, deepseq, random, semigroups }: + mkDerivation { + pname = "dpor"; + version = "0.1.0.0"; + sha256 = "b7ec6ffe767e68e7fd37b2b00eac9fe788c56f2aa00a60a60795b27120903d48"; + libraryHaskellDepends = [ + base containers deepseq random semigroups + ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; + license = stdenv.lib.licenses.mit; + }) {}; + "drClickOn" = callPackage ({ mkDerivation, base, containers }: mkDerivation { @@ -70285,6 +70945,7 @@ self: { ]; description = "SQL backend for Database Supported Haskell (DSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc" = callPackage @@ -71628,6 +72289,24 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; + "editpipe" = callPackage + ({ mkDerivation, base, optparse-applicative, process, temporary + , unix + }: + mkDerivation { + pname = "editpipe"; + version = "0.1.0.0"; + sha256 = "3a86d0e015ddd64c21516d4095d1cdf32d7b7f0bc7d9b8150995471519d37b0f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base optparse-applicative process temporary unix + ]; + homepage = "http://github.com/puffnfresh/editpipe#readme"; + description = "Edit stdin using an editor before sending to stdout"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "effect-handlers_0_1_0_6" = callPackage ({ mkDerivation, base, free, hspec, hspec-discover, HUnit , kan-extensions, mtl, QuickCheck @@ -72083,6 +72762,7 @@ self: { aeson base bytestring ekg-core ekg-json filepath network snap-core snap-server text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/tibbe/ekg"; description = "Remote monitoring of processes"; license = stdenv.lib.licenses.bsd3; @@ -72120,6 +72800,7 @@ self: { aeson base ekg-core http-client lens network network-uri old-locale text time unordered-containers vector wreq ]; + jailbreak = true; homepage = "http://github.com/ocharles/ekg-bosun"; description = "Send ekg metrics to a Bosun instance"; license = stdenv.lib.licenses.bsd3; @@ -72169,6 +72850,7 @@ self: { libraryHaskellDepends = [ aeson base ekg-core text unordered-containers ]; + jailbreak = true; homepage = "https://github.com/tibbe/ekg-json"; description = "JSON encoding of ekg metrics"; license = stdenv.lib.licenses.bsd3; @@ -72389,6 +73071,7 @@ self: { testHaskellDepends = [ aeson base containers hspec QuickCheck text ]; + jailbreak = true; homepage = "http://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; @@ -73192,6 +73875,7 @@ self: { free monad-loops mwc-random stm stm-delay text transformers unordered-containers vector websockets ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; @@ -73560,6 +74244,19 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "envelope" = callPackage + ({ mkDerivation, aeson, base, doctest, Glob, mtl, text }: + mkDerivation { + pname = "envelope"; + version = "0.1.0.0"; + sha256 = "9116ceda5b6e103219361bcd5cdaa699a1365a43df06e5752c61dfb6419b316e"; + libraryHaskellDepends = [ aeson base mtl text ]; + testHaskellDepends = [ base doctest Glob ]; + homepage = "https://github.com/cdepillabout/envelope#readme"; + description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "envparse" = callPackage ({ mkDerivation, base, containers, hspec }: mkDerivation { @@ -74944,6 +75641,7 @@ self: { testHaskellDepends = [ aeson base stm tasty tasty-hunit text time ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/YoEight/eventstore"; description = "EventStore TCP Client"; @@ -75088,7 +75786,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "exact-real" = callPackage + "exact-real_0_12_0" = callPackage ({ mkDerivation, base, checkers, directory, doctest, filepath , groups, integer-gmp, memoize, QuickCheck, random, tasty , tasty-hunit, tasty-quickcheck, tasty-th @@ -75105,6 +75803,26 @@ self: { homepage = "http://github.com/expipiplus1/exact-real"; description = "Exact real arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "exact-real" = callPackage + ({ mkDerivation, base, checkers, directory, doctest, filepath + , groups, integer-gmp, memoize, QuickCheck, random, tasty + , tasty-hunit, tasty-quickcheck, tasty-th + }: + mkDerivation { + pname = "exact-real"; + version = "0.12.1"; + sha256 = "935f55ec8ae751e67a8e25b19f70e78c613728500e998a2912e1590efe29d7f0"; + libraryHaskellDepends = [ base integer-gmp memoize random ]; + testHaskellDepends = [ + base checkers directory doctest filepath groups QuickCheck random + tasty tasty-hunit tasty-quickcheck tasty-th + ]; + homepage = "http://github.com/expipiplus1/exact-real"; + description = "Exact real arithmetic"; + license = stdenv.lib.licenses.mit; }) {}; "exception-hierarchy" = callPackage @@ -75252,7 +75970,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "exception-transformers" = callPackage + "exception-transformers_0_4_0_3" = callPackage ({ mkDerivation, base, HUnit, stm, test-framework , test-framework-hunit, transformers, transformers-compat }: @@ -75269,6 +75987,26 @@ self: { ]; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "exception-transformers" = callPackage + ({ mkDerivation, base, HUnit, stm, test-framework + , test-framework-hunit, transformers, transformers-compat + }: + mkDerivation { + pname = "exception-transformers"; + version = "0.4.0.4"; + sha256 = "d9b3a527acaeb1c03746db4704d8f64453d02ab4b89d16bd90fb4dbe7b9e7696"; + libraryHaskellDepends = [ + base stm transformers transformers-compat + ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit transformers + transformers-compat + ]; + description = "Type classes and monads for unchecked extensible exceptions"; + license = stdenv.lib.licenses.bsd3; }) {}; "exceptional" = callPackage @@ -76261,6 +76999,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fadno-braids" = callPackage + ({ mkDerivation, base, containers, diagrams, diagrams-lib + , diagrams-rasterific, lens, transformers-compat + }: + mkDerivation { + pname = "fadno-braids"; + version = "0.0.2"; + sha256 = "1d874bef4fa5c693e3b5aac15f239a2d4862b7c342ea96fe24c476d1511644a9"; + libraryHaskellDepends = [ + base containers diagrams diagrams-lib diagrams-rasterific lens + transformers-compat + ]; + homepage = "http://github.com/slpopejoy/"; + description = "Braid representations in Haskell"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "fail" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -76407,7 +77162,7 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "fast-builder" = callPackage + "fast-builder_0_0_0_2" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -76420,6 +77175,22 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fast-builder" = callPackage + ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck + , stm + }: + mkDerivation { + pname = "fast-builder"; + version = "0.0.0.3"; + sha256 = "74f45c8059eb428cfb75d7ff72d49b775af53d3e155329537e15fde1b068feed"; + libraryHaskellDepends = [ base bytestring ghc-prim ]; + testHaskellDepends = [ base bytestring process QuickCheck stm ]; + homepage = "http://github.com/takano-akio/fast-builder"; + description = "Fast ByteString Builder"; + license = stdenv.lib.licenses.publicDomain; }) {}; "fast-digits" = callPackage @@ -76502,7 +77273,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "fast-logger" = callPackage + "fast-logger_2_4_1" = callPackage ({ mkDerivation, array, auto-update, base, bytestring , bytestring-builder, directory, filepath, hspec, text }: @@ -76519,6 +77290,24 @@ self: { testHaskellDepends = [ base bytestring directory hspec ]; description = "A fast logging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fast-logger" = callPackage + ({ mkDerivation, array, auto-update, base, bytestring + , bytestring-builder, directory, filepath, hspec, text + }: + mkDerivation { + pname = "fast-logger"; + version = "2.4.2"; + sha256 = "2a9b8cba58c21c95c0209f94e0656a77aa79abe85401a91d9e5b242b05fff5e7"; + libraryHaskellDepends = [ + array auto-update base bytestring bytestring-builder directory + filepath text + ]; + testHaskellDepends = [ base bytestring directory hspec ]; + description = "A fast logging system"; + license = stdenv.lib.licenses.bsd3; }) {}; "fast-math" = callPackage @@ -79708,20 +80497,21 @@ self: { }) {}; "flat-mcmc" = callPackage - ({ mkDerivation, base, monad-par, monad-par-extras, mtl, mwc-random - , primitive, vector + ({ mkDerivation, base, mcmc-types, monad-par, monad-par-extras + , mwc-probability, pipes, primitive, transformers, vector }: mkDerivation { pname = "flat-mcmc"; - version = "0.1.0.0"; - sha256 = "e50ffd58d41a2f2fd4a82a7397b2330eff63f5269578d8cf91734d81d493e5ba"; + version = "1.0.1"; + sha256 = "a2852f0b020b086fa9e28e63b502a7bbdcbc4151080ce01baa366d53362de774"; libraryHaskellDepends = [ - base monad-par monad-par-extras mtl mwc-random primitive vector + base mcmc-types monad-par monad-par-extras mwc-probability pipes + primitive transformers vector ]; - jailbreak = true; + testHaskellDepends = [ base vector ]; homepage = "http://jtobin.github.com/flat-mcmc"; description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.bsd3; + license = stdenv.lib.licenses.mit; }) {}; "flat-tex" = callPackage @@ -79968,7 +80758,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "flow" = callPackage + "flow_1_0_5" = callPackage ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: mkDerivation { pname = "flow"; @@ -79979,6 +80769,20 @@ self: { homepage = "https://github.com/tfausak/flow#readme"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flow" = callPackage + ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: + mkDerivation { + pname = "flow"; + version = "1.0.6"; + sha256 = "76d69c76339ec401f7915acaa59a54c527e2379546775e163efea988cd2f6702"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + homepage = "https://github.com/tfausak/flow#readme"; + description = "Write more understandable Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "flow2dot" = callPackage @@ -80015,6 +80819,7 @@ self: { lens lens-action mtl network pipes pipes-aeson pipes-http pipes-parse template-haskell text unordered-containers uuid ]; + jailbreak = true; homepage = "https://github.com/brewtown/hs-flowdock"; description = "Flowdock client library for Haskell"; license = stdenv.lib.licenses.mit; @@ -80668,7 +81473,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "foldl" = callPackage + "foldl_1_1_6" = callPackage ({ mkDerivation, base, bytestring, comonad, containers, mwc-random , primitive, profunctors, text, transformers, vector }: @@ -80682,6 +81487,24 @@ self: { ]; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "foldl" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers + , contravariant, mwc-random, primitive, profunctors, text + , transformers, vector + }: + mkDerivation { + pname = "foldl"; + version = "1.2.0"; + sha256 = "05591f82585aa87634b4faa135dc3f2df1ed963995b6b685b2559654ded786f1"; + libraryHaskellDepends = [ + base bytestring comonad containers contravariant mwc-random + primitive profunctors text transformers vector + ]; + description = "Composable, streaming, and efficient left folds"; + license = stdenv.lib.licenses.bsd3; }) {}; "foldl-incremental" = callPackage @@ -82079,8 +82902,8 @@ self: { }: mkDerivation { pname = "freer"; - version = "0.2.2.4"; - sha256 = "1af6b91d290eb3eea3e6c3a888e7b32a0a7a864de0ef33ddb7d3b7a169a1777d"; + version = "0.2.2.5"; + sha256 = "4ba63b5e1c0860458fe59f8d7370d25ddcf7a6a8442409b850108881a6644ef7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ]; @@ -82088,7 +82911,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-hunit tasty-quickcheck ]; - homepage = "https://gitlab.com/cpp.cabrera/freer"; + homepage = "https://gitlab.com/queertypes/freer"; description = "Implementation of the Freer Monad"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -82166,6 +82989,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fresco-binding" = callPackage + ({ mkDerivation, base, bytestring, cereal, containers, messagepack + , text, unix + }: + mkDerivation { + pname = "fresco-binding"; + version = "0.1.1"; + sha256 = "4188b09395be7e8ba8b5f6c06a6eafed177e3738cf8337eac7c74e4232e74096"; + libraryHaskellDepends = [ + base bytestring cereal containers messagepack text unix + ]; + description = "Fresco binding for Haskell"; + license = "unknown"; + }) {}; + "fresh" = callPackage ({ mkDerivation, base, containers, haskell-src-exts, syb }: mkDerivation { @@ -83140,7 +83978,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "FWGL GLFW backend"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl-javascript" = callPackage @@ -84791,6 +85629,7 @@ self: { aeson base bytestring ghc optparse-applicative pretty pretty-show process unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/edsko/ghc-dump-tree"; description = "Dump GHC's parsed, renamed, and type checked ASTs"; license = stdenv.lib.licenses.bsd3; @@ -84960,31 +85799,37 @@ self: { }) {}; "ghc-imported-from" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath, ghc - , ghc-mod, ghc-paths, ghc-syb-utils, hspec, monad-journal, mtl - , optparse-applicative, parsec, process, safe, syb, transformers + ({ mkDerivation, base, bytestring, Cabal, containers, directory + , exceptions, filepath, ghc, ghc-mod, ghc-paths, ghc-syb-utils + , haddock-api, hspec, hspec-discover, monad-journal, mtl + , optparse-applicative, parsec, pipes-transduce, process + , process-streaming, safe, syb, transformers }: mkDerivation { pname = "ghc-imported-from"; - version = "0.2.1.1"; - sha256 = "6ef8612bbcc230323fa844310b504a4174706b99ca769bdcb79168f8f69bc74f"; + version = "0.3.0.4"; + sha256 = "ed2517109076ae499c2de8d999577a32b666063d99b48364adbf7de68f947341"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils monad-journal mtl optparse-applicative parsec process - safe syb transformers + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec pipes-transduce + process process-streaming safe syb transformers ]; executableHaskellDepends = [ - base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils hspec monad-journal mtl optparse-applicative parsec - process safe syb transformers + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec process + process-streaming safe syb transformers ]; testHaskellDepends = [ - base Cabal containers directory filepath ghc ghc-mod ghc-paths - ghc-syb-utils hspec monad-journal mtl optparse-applicative parsec - process safe syb transformers + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec process + process-streaming safe syb transformers ]; + doCheck = false; homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; @@ -85802,7 +86647,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghcid" = callPackage + "ghcid_0_5_1" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit , terminal-size, time @@ -85828,6 +86673,36 @@ self: { homepage = "https://github.com/ndmitchell/ghcid#readme"; description = "GHCi based bare bones IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghcid" = callPackage + ({ mkDerivation, ansi-terminal, base, cmdargs, containers + , directory, extra, filepath, fsnotify, process, tasty, tasty-hunit + , terminal-size, time, unix + }: + mkDerivation { + pname = "ghcid"; + version = "0.6.1"; + sha256 = "f3a69db6c66670aefa9c38ec8f30cec1e5a5ac3405b661fcc320a613518b4a4c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base cmdargs directory extra filepath process terminal-size time + unix + ]; + executableHaskellDepends = [ + ansi-terminal base cmdargs containers directory extra filepath + fsnotify process terminal-size time unix + ]; + testHaskellDepends = [ + ansi-terminal base cmdargs containers directory extra filepath + fsnotify process tasty tasty-hunit terminal-size time unix + ]; + doCheck = false; + homepage = "https://github.com/ndmitchell/ghcid#readme"; + description = "GHCi based bare bones IDE"; + license = stdenv.lib.licenses.bsd3; }) {}; "ghcjs-codemirror" = callPackage @@ -85960,8 +86835,8 @@ self: { }: mkDerivation { pname = "gi-atk"; - version = "0.2.18.12"; - sha256 = "00f4542fb4da78adbf0a84f5c81f386e645bc82a811d44b32e031df7721fae66"; + version = "0.2.18.13"; + sha256 = "2127e52f83f3cb6c4db30d69a9f19d3dfea987c13816bb9ce6421a35f704b496"; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi-base text transformers @@ -85979,8 +86854,8 @@ self: { }: mkDerivation { pname = "gi-cairo"; - version = "0.1.14.12"; - sha256 = "8d023a70208100d4d8f634bbe408d2f956f3afe8f73dce3411747d753974b173"; + version = "0.1.14.13"; + sha256 = "d7055a146fc315244c21fdccdc0cfbac7a2d2a95cdcc38d8330380b3104600cc"; libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; @@ -85998,8 +86873,8 @@ self: { }: mkDerivation { pname = "gi-gdk"; - version = "0.3.18.12"; - sha256 = "9cde9b8e62af1123c134d576c634846514b5e7f9561d5cc0692a68ad64306190"; + version = "0.3.18.13"; + sha256 = "f0872053ddd8bed0e10d794b55b4ccec169747a545c4d403b78dd06e6d203f40"; libraryHaskellDepends = [ base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text transformers @@ -86017,8 +86892,8 @@ self: { }: mkDerivation { pname = "gi-gdkpixbuf"; - version = "0.2.32.12"; - sha256 = "0b3b3188250602969b06520b82ba3b1a4df52bc303c6a16ec22495b4f3b356e6"; + version = "0.2.32.13"; + sha256 = "862d88afbea9c624d3bc4365b5cfdd26f3d0a664a8b1cf31ff9978624c2d56bd"; libraryHaskellDepends = [ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi-base text transformers @@ -86036,8 +86911,8 @@ self: { }: mkDerivation { pname = "gi-gio"; - version = "0.2.46.12"; - sha256 = "c200b349cb53e9d52f2592c714a39734f45129c0d94a5a21815630e66e993d1f"; + version = "0.2.46.13"; + sha256 = "7a44b89ec398d272f601a4526cd208373f6f8b0435429f0f30f17e6bb8d1ee27"; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi-base text transformers @@ -86055,14 +86930,13 @@ self: { }: mkDerivation { pname = "gi-girepository"; - version = "0.1.44.12"; - sha256 = "c7f53dee512511df7a4c8f00d2e5ae37ae52f49859efd83afef77e9c3f71fd80"; + version = "0.1.46.13"; + sha256 = "da0a3b9be77596e8f47436652de9c1ebd9045a13648d93e2d3ade370c9e54666"; libraryHaskellDepends = [ base bytestring containers gi-gobject haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ gobjectIntrospection ]; - jailbreak = true; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository bindings"; license = stdenv.lib.licenses.lgpl21; @@ -86075,8 +86949,8 @@ self: { }: mkDerivation { pname = "gi-glib"; - version = "0.2.46.12"; - sha256 = "5b0bff30b5a1a4cc3f5f55437d357917153e3e6f51f506593543e9e13a103d1b"; + version = "0.2.46.13"; + sha256 = "3763379e018fcd86ad2f924a8c9dd40ce84a33cf8f8bcddcdd69433c5c58d1e8"; libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; @@ -86093,8 +86967,8 @@ self: { }: mkDerivation { pname = "gi-gobject"; - version = "0.2.46.12"; - sha256 = "990287820c8e0855249d6e5a41ec0ae3d6beaa6594c44d156316670477b508dc"; + version = "0.2.46.13"; + sha256 = "07689ff907eceb5165c65ab3948d40aa3d8b92e1ac5f0179f482d413bd6458d6"; libraryHaskellDepends = [ base bytestring containers gi-glib haskell-gi-base text transformers @@ -86106,6 +86980,84 @@ self: { hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; + "gi-gst" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , gstreamer, haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gst"; + version = "0.1.6.13"; + sha256 = "8b3eb8f93a6f32c9e8db6ebb02d33f78eda651a8428926e2e6c0a22d10ed8ea2"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ gstreamer ]; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Gst bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gstreamer;}; + + "gi-gstaudio" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text + , transformers + }: + mkDerivation { + pname = "gi-gstaudio"; + version = "0.1.6.13"; + sha256 = "307b12f1f6ba52a3b95fcfe4433ac9f947abdf45527329c3e8f0350a3084998b"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase + haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gst_plugins_base ]; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GstAudio bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gst_plugins_base;}; + + "gi-gstbase" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , gi-gst, gst_plugins_base, haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gstbase"; + version = "0.1.6.13"; + sha256 = "aab56f2d440b225604842451a94bba851c35bd177b48132da83c7890440e445c"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject gi-gst + haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gst_plugins_base ]; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GstBase bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gst_plugins_base;}; + + "gi-gstvideo" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text + , transformers + }: + mkDerivation { + pname = "gi-gstvideo"; + version = "0.1.6.13"; + sha256 = "e35c5f20f8e09dc8232e5d26ff97948fd0dc42d0de8bf20a5c29c22788f03186"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase + haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gst_plugins_base ]; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GstVideo bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gst_plugins_base;}; + "gi-gtk" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 @@ -86113,8 +87065,8 @@ self: { }: mkDerivation { pname = "gi-gtk"; - version = "0.3.18.12"; - sha256 = "f1bdacb55a80b26ee36f5f1fea6cfdb9f7505429432797389b0bd1b4c22f40f3"; + version = "0.3.18.13"; + sha256 = "fed4dae7e04ee55819be887aac949df1e57c9d4f42804620cd78377b961cdc8a"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text @@ -86133,8 +87085,8 @@ self: { }: mkDerivation { pname = "gi-javascriptcore"; - version = "0.2.10.12"; - sha256 = "e078b90cf16904c7e93e9f6d4274ae2f847597f03137a4ecbb2808a33ec8ad18"; + version = "0.2.10.13"; + sha256 = "15518556f06c707710899cf1d3277e6e5a0c14e4310e3b288f31d86e55e256c7"; libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; @@ -86152,8 +87104,8 @@ self: { }: mkDerivation { pname = "gi-notify"; - version = "0.2.32.12"; - sha256 = "fff3910ced837a9bafbc39d3965a06c925976c9c7853286d1234a671e90f5a49"; + version = "0.2.32.13"; + sha256 = "1b644d4d5ce7cbf93fdeea6f1fd92506f878449a0da28ea8e027b25177412699"; libraryHaskellDepends = [ base bytestring containers gi-gdkpixbuf gi-glib gi-gobject haskell-gi-base text transformers @@ -86171,8 +87123,8 @@ self: { }: mkDerivation { pname = "gi-pango"; - version = "0.1.38.12"; - sha256 = "dd542ea85468b8c6188f02e4ec546dc18ad57f498ad0775714edd040cffbe016"; + version = "0.1.38.13"; + sha256 = "1398cf18aacad90acbcea526e7c35816385676530abc5896dc5f571a52350766"; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject haskell-gi-base text transformers @@ -86190,8 +87142,8 @@ self: { }: mkDerivation { pname = "gi-poppler"; - version = "0.0.34.12"; - sha256 = "b4f6222d6912232b172481c9cdff2bf94a3e8c88753b5a2549e59e18810aa670"; + version = "0.0.34.13"; + sha256 = "22104ebf4726ba393968011dfc09c5d4333b26c8b630b2d2258dc5ff835b75a8"; libraryHaskellDepends = [ base bytestring containers gi-cairo gi-gio gi-glib gi-gobject haskell-gi-base text transformers @@ -86209,8 +87161,8 @@ self: { }: mkDerivation { pname = "gi-soup"; - version = "0.2.52.12"; - sha256 = "ca5e1f931dba96aa9006cec559316b308f14d427afefbbb221e7a154df755a6d"; + version = "0.2.52.13"; + sha256 = "ffe480948998273a6b2454c85ad3bc05e67fd3b614c7932a44b954cdc77fd9de"; libraryHaskellDepends = [ base bytestring containers gi-gio gi-glib gi-gobject haskell-gi-base text transformers @@ -86229,8 +87181,8 @@ self: { }: mkDerivation { pname = "gi-vte"; - version = "0.0.42.12"; - sha256 = "15e2828c0fefd118e4fd4e3081a99af7b85f7615e5298db86b7f2a01bac2bc88"; + version = "0.0.42.13"; + sha256 = "f69c75e5cd250452463b465fa308f08fcc3c2c15be07862c4dcdcbdae8f60039"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi-base text transformers @@ -86250,8 +87202,8 @@ self: { }: mkDerivation { pname = "gi-webkit"; - version = "0.2.4.12"; - sha256 = "3b0cddc3f28d6acd4583224b72c289d3f7239302f4b8d01d79b8e98f8786fc08"; + version = "0.2.4.13"; + sha256 = "a7f0a613c96944a90ac9a178ae58467028daa599805ea44f3440461450a7b77b"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup @@ -86272,8 +87224,8 @@ self: { }: mkDerivation { pname = "gi-webkit2"; - version = "0.2.10.12"; - sha256 = "71872b4690056320f20ddc4a468f04b525e29bef06137963ca8406da72e2056a"; + version = "0.2.10.13"; + sha256 = "6668a9dd9785cffc783051ea78a8cac92466f1cb1760854b96a90c1ddf537a07"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text @@ -86293,8 +87245,8 @@ self: { }: mkDerivation { pname = "gi-webkit2webextension"; - version = "0.2.10.12"; - sha256 = "1ca70e16d94719c5a6fc97e198c50ee5d5bb0edb8e956b4f89387fd793530ff2"; + version = "0.2.10.13"; + sha256 = "7e3f0878325c7d67757762f93648ebcd703ed7fc4003fc27f2d2026a50892ec0"; libraryHaskellDepends = [ base bytestring containers gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text transformers @@ -86325,8 +87277,8 @@ self: { }: mkDerivation { pname = "ginger"; - version = "0.1.7.0"; - sha256 = "07acb34e888171d765487e559d2e6bfa018ad0e040c06d3fc66b7f5903b32b16"; + version = "0.2.0.0"; + sha256 = "e88221b67e7d262da943bd3b16f5de061130201425e889ca949422bb7e301ff3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -86503,6 +87455,7 @@ self: { gitlib gitlib-libgit2 scientific shake split tagged text unordered-containers vector yaml ]; + jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -86525,6 +87478,7 @@ self: { gitlib gitlib-libgit2 scientific shake split tagged text unordered-containers vector yaml ]; + jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -86555,21 +87509,19 @@ self: { "giphy-api" = callPackage ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers , directory, either, hspec, lens, microlens, microlens-th, mtl - , network-uri, optparse-applicative, servant, servant-client, text + , network-uri, servant, servant-client, text }: mkDerivation { pname = "giphy-api"; - version = "0.1.0.0"; - sha256 = "b854ab4ffc977bf54a8b7c45b23799a3d81747394c4c4c3d93f32e9242653dd6"; + version = "0.2.5.0"; + sha256 = "63630c590dbdf0d2681e4d15121439f0b5762b284c77411148edf7155df8881b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base containers either microlens microlens-th mtl network-uri servant servant-client text ]; - executableHaskellDepends = [ - base lens network-uri optparse-applicative text - ]; + executableHaskellDepends = [ base network-uri text ]; testHaskellDepends = [ aeson base basic-prelude bytestring containers directory hspec lens network-uri text @@ -86579,6 +87531,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "giphy-api_0_4_0_0" = callPackage + ({ mkDerivation, aeson, base, basic-prelude, bytestring, containers + , directory, hspec, http-api-data, http-client, http-client-tls + , lens, microlens, microlens-th, mtl, network-uri, servant + , servant-client, text, transformers + }: + mkDerivation { + pname = "giphy-api"; + version = "0.4.0.0"; + sha256 = "bb2952f54232cead3e66350b514ca31aac511bf172be45115b98dd8777859876"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base containers http-api-data http-client http-client-tls + microlens microlens-th mtl network-uri servant servant-client text + transformers + ]; + executableHaskellDepends = [ base network-uri text ]; + testHaskellDepends = [ + aeson base basic-prelude bytestring containers directory hspec lens + network-uri text + ]; + jailbreak = true; + homepage = "http://github.com/passy/giphy-api#readme"; + description = "Giphy HTTP API wrapper and CLI search tool"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "gist" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, http-conduit , text @@ -87223,6 +88204,7 @@ self: { aeson-compat base base-compat file-embed hspec unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/github"; description = "Access to the GitHub API, v3"; license = stdenv.lib.licenses.bsd3; @@ -88247,15 +89229,16 @@ self: { }) {}; "gll" = callPackage - ({ mkDerivation, array, base, containers, pretty, TypeCompose }: + ({ mkDerivation, array, base, containers, pretty, regex-applicative + , text, TypeCompose + }: mkDerivation { pname = "gll"; - version = "0.3.0.1"; - sha256 = "a488ef62504c0259cde1daaeb9b240bb7ce75a2deeadcb763417e7fea8f0937b"; + version = "0.3.0.7"; + sha256 = "6d139f9b239944a442473096d055eb8f0bfb52fa9f5497a29d86d00e78e015da"; libraryHaskellDepends = [ - array base containers pretty TypeCompose + array base containers pretty regex-applicative text TypeCompose ]; - jailbreak = true; description = "GLL parser with simple combinator interface"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88373,12 +89356,11 @@ self: { }: mkDerivation { pname = "gloss"; - version = "1.9.4.1"; - sha256 = "b16094797ba377372bb492cb04dc50e60a77687bd7300bf57e9fab2ad366afe5"; + version = "1.10.1.1"; + sha256 = "a6c4e0391668688c0965e2e5eddff4abaebbcca62606a7b260942a863de34630"; libraryHaskellDepends = [ base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL ]; - jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Painless 2D vector graphics, animations and simulations"; license = stdenv.lib.licenses.mit; @@ -88394,17 +89376,18 @@ self: { revision = "1"; editedCabalFile = "cddab61d37317ec1a15ad7da65d909b8668b284dcf182a7a348d234bff7d30ff"; libraryHaskellDepends = [ accelerate base gloss gloss-rendering ]; + jailbreak = true; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-algorithms" = callPackage ({ mkDerivation, base, containers, ghc-prim, gloss }: mkDerivation { pname = "gloss-algorithms"; - version = "1.9.4.1"; - sha256 = "40cbf7b28182e17ae86091aa108489848aff8d5ae4e2c5719e112493cc011649"; + version = "1.10.1.1"; + sha256 = "da385e6fa2cdca7ab3b6ce2397d24fac0055896609376c9a8c3acf193e908b0e"; libraryHaskellDepends = [ base containers ghc-prim gloss ]; homepage = "http://gloss.ouroborus.net"; description = "Data structures and algorithms for working with 2D graphics"; @@ -88447,8 +89430,8 @@ self: { }: mkDerivation { pname = "gloss-examples"; - version = "1.9.4.1"; - sha256 = "9e16dbd092cfc6586a13639550f2701e2727e850734856d118a4a19757ef1a0b"; + version = "1.10.1.1"; + sha256 = "a08f297c5a38e9d975ac4390c960d5095b58c77033285de744028f3855048c96"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -88473,7 +89456,7 @@ self: { homepage = "https://github.com/mchakravarty/gloss-game"; description = "Gloss wrapper that simplifies writing games"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-juicy" = callPackage @@ -88494,7 +89477,7 @@ self: { homepage = "http://github.com/alpmestan/gloss-juicy"; description = "Load any image supported by Juicy.Pixels in your gloss application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-raster" = callPackage @@ -88503,8 +89486,8 @@ self: { }: mkDerivation { pname = "gloss-raster"; - version = "1.9.4.1"; - sha256 = "697325d17ff549f8092ccb08fa6d8b51fc2ae6b704e7a150f7a2bf11ebc3d560"; + version = "1.10.1.1"; + sha256 = "01e68842a6ef911be37556b92ae82786e298a70e86177b3b86472222ad1b01f2"; libraryHaskellDepends = [ base containers ghc-prim gloss gloss-rendering repa ]; @@ -88525,6 +89508,7 @@ self: { libraryHaskellDepends = [ accelerate accelerate-cuda base gloss gloss-accelerate ]; + jailbreak = true; description = "Parallel rendering of raster images using Accelerate"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -88534,12 +89518,11 @@ self: { ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }: mkDerivation { pname = "gloss-rendering"; - version = "1.9.3.1"; - sha256 = "fefbab161f3aa797416f63cd3ae029883470c7be6ab4f67803beefc95dea49db"; + version = "1.10.1.1"; + sha256 = "279ad168dc44e8432a6e7fb58b97c4514a2d0806806b3e7b71a159b87ace8c5c"; libraryHaskellDepends = [ base bmp bytestring containers GLUT OpenGL ]; - jailbreak = true; description = "Gloss picture data types and rendering functions"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -88978,6 +89961,7 @@ self: { base directory goal-core goal-geometry goal-probability hmatrix mtl vector ]; + jailbreak = true; description = "Mealy based simulation tools"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -90213,15 +91197,15 @@ self: { }) {}; "google-mail-filters" = callPackage - ({ mkDerivation, base, containers, google-search, old-locale, text - , time, xml-conduit + ({ mkDerivation, base, containers, google-search, text, time + , xml-conduit }: mkDerivation { pname = "google-mail-filters"; - version = "0.0.1.1"; - sha256 = "21588dbfdcd5de6a5cfc307846532dfd541ab4c826e8b70936a3406140a6ba33"; + version = "0.0.1.2"; + sha256 = "dafa3e765f9f875ae2601e2854e36500204469d1833b1da0cc08e9dc8c0b4ce5"; libraryHaskellDepends = [ - base containers google-search old-locale text time xml-conduit + base containers google-search text time xml-conduit ]; testHaskellDepends = [ base google-search text time xml-conduit ]; homepage = "https://github.com/liyang/google-mail-filters"; @@ -90236,8 +91220,8 @@ self: { }: mkDerivation { pname = "google-oauth2"; - version = "0.2.0"; - sha256 = "087c6429fafea6c80eb83488ff874eeda090dd7663820cfc872f2c8ef2e25895"; + version = "0.2.1"; + sha256 = "ff16b3d74d6b1d4b81dcabc07f40020d19d39c04956d0067c1fe111e9b8d14ca"; libraryHaskellDepends = [ aeson base bytestring HTTP http-conduit ]; @@ -90250,12 +91234,12 @@ self: { }) {}; "google-search" = callPackage - ({ mkDerivation, base, free, nats, old-locale, text, time }: + ({ mkDerivation, base, free, nats, text, time }: mkDerivation { pname = "google-search"; - version = "0.1.0.1"; - sha256 = "a7960a8421976aad8f3f06d25fdf2fcd2c936bdebd7cb3319c7538f9cbdd775a"; - libraryHaskellDepends = [ base free nats old-locale text time ]; + version = "0.2.0.0"; + sha256 = "199ed69f577e4c65f64858648aaf366d8c8e6def4742ad2949c650367d14c2ca"; + libraryHaskellDepends = [ base free nats text time ]; homepage = "https://github.com/liyang/google-search"; description = "EDSL for Google and GMail search expressions"; license = stdenv.lib.licenses.bsd3; @@ -91402,6 +92386,7 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://bitbucket.org/janmasrovira/am3-project/overview"; description = "GRASP implementation for the AMMM project"; license = stdenv.lib.licenses.bsd3; @@ -93186,8 +94171,8 @@ self: { }: mkDerivation { pname = "hArduino"; - version = "0.9"; - sha256 = "4400fa234046582d2ad0ef6bbfe7c97afc725c13949ccafe11766cac1203980f"; + version = "1.1"; + sha256 = "eb04ab1d680c9174296c85c9bdd64097f499fd5636fd193c2b18de47cd27fbf6"; libraryHaskellDepends = [ base bytestring containers mtl serialport time ]; @@ -95057,7 +96042,6 @@ self: { attoparsec base bytestring hadoop-rpc tasty tasty-hunit tasty-quickcheck vector ]; - jailbreak = true; homepage = "http://github.com/jystic/hadoop-tools"; description = "Fast command line tools for working with Hadoop"; license = stdenv.lib.licenses.asl20; @@ -95178,6 +96162,7 @@ self: { http-client http-client-tls http-types tagsoup text time transformers ]; + jailbreak = true; description = "Mailgun REST api interface for Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -95779,6 +96764,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time time-locale-compat ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; @@ -96323,7 +97309,6 @@ self: { aeson array base binary data-default GLUT OpenGL opengl-dlp-stereo split vector-space ]; - jailbreak = true; homepage = "https://bitbucket.org/bwbush/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; @@ -97555,6 +98540,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hapstone" = callPackage + ({ mkDerivation, base, c2hs, capstone, hspec, QuickCheck + , quickcheck-instances + }: + mkDerivation { + pname = "hapstone"; + version = "0.1.0.1"; + sha256 = "408ca259ec062af5bb9b6b871d07bd846ee590449efca9ab24db497aa56d2c23"; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ capstone ]; + libraryToolDepends = [ c2hs ]; + testHaskellDepends = [ + base hspec QuickCheck quickcheck-instances + ]; + homepage = "http://github.com/ibabushkin/hapstone"; + description = "Capstone bindings for Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) capstone;}; + "har" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, filepath, text }: @@ -98795,8 +99799,8 @@ self: { }: mkDerivation { pname = "haskell-gi"; - version = "0.12"; - sha256 = "6d9f041a551dec6d557fa51a59fb7cbb01abbda82f5768146a9fd9b1b954b154"; + version = "0.13"; + sha256 = "657c8b2b1a466fbbcb21d348bf0c4ab27f0415e73e18b611efc997560a161680"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -98817,8 +99821,8 @@ self: { }: mkDerivation { pname = "haskell-gi-base"; - version = "0.12"; - sha256 = "3f6fc64b2c878ebc1856f917fccb18dd6c990bd115019b851c96f121442ec8f7"; + version = "0.13"; + sha256 = "57c33125b0fac446007b7cc6ea5d0d853bcdf725cdca8028c879561d977d0363"; libraryHaskellDepends = [ base bytestring containers text transformers ]; @@ -99059,6 +100063,7 @@ self: { base containers filemanip filepath haskell-src-exts mtl pretty-show tasty tasty-golden traverse-with-class ]; + jailbreak = true; homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -99241,6 +100246,7 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-packages"; description = "Haskell suite library for package management and integration with Cabal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-pdf-presenter" = callPackage @@ -100194,8 +101200,8 @@ self: { }: mkDerivation { pname = "haskellscrabble"; - version = "2.2.1"; - sha256 = "2a3ce64f81105d0ff7d728bce181665edddbec3432eefbebd4bc4b58f2412361"; + version = "2.2.2"; + sha256 = "d7f890fc2f981d58843bbbd8a68e7cbbecc303ddb47e45db6d9a062e2bf1e47c"; libraryHaskellDepends = [ array arrows base containers errors listsafe mtl parsec QuickCheck random safe semigroups split transformers unordered-containers @@ -100441,6 +101447,7 @@ self: { aeson base bytestring containers http-streams io-streams time vector ]; + jailbreak = true; description = "A haskell wrapper for PokeAPI.co (www.pokeapi.co)"; license = stdenv.lib.licenses.mit; }) {}; @@ -101408,12 +102415,11 @@ self: { }: mkDerivation { pname = "hasql-optparse-applicative"; - version = "0.1"; - sha256 = "42f0b2acdfd1e213f8c30f65abeb063cb62534cb8d8a2f7950201409b00b7ac5"; + version = "0.1.1"; + sha256 = "8d0e6601a5353d4cd5bd6fd7f713d79ecf8bfbe3458163c0b0e0f10a90ed80fd"; libraryHaskellDepends = [ base-prelude hasql hasql-pool optparse-applicative ]; - jailbreak = true; homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; description = "\"optparse-applicative\" parsers for \"hasql\""; license = stdenv.lib.licenses.mit; @@ -101423,10 +102429,9 @@ self: { ({ mkDerivation, base-prelude, hasql, resource-pool, time }: mkDerivation { pname = "hasql-pool"; - version = "0.4"; - sha256 = "6bb18b7f41a471e0260a60ecd0a4495ccef111e3151d0b3e55ae5e3865c3850e"; + version = "0.4.1"; + sha256 = "cc6fdd5a088999609b63c46ca888ddfaa73f28fb36bf007c73379e6b9779c60d"; libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-pool"; description = "A pool of connections for Hasql"; license = stdenv.lib.licenses.mit; @@ -101776,12 +102781,11 @@ self: { }: mkDerivation { pname = "hasql-th"; - version = "0.2"; - sha256 = "c08dab84a62bb5adff1e8f0aa2e0a626d1a8347597ca287deebb12b46602a4e4"; + version = "0.2.1"; + sha256 = "af86c90705ad5590c4a6d0e86bf8082904f739e862993b3233a0fede2fadd651"; libraryHaskellDepends = [ base-prelude bytestring template-haskell text ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-th"; description = "Template Haskell utilities for Hasql"; license = stdenv.lib.licenses.mit; @@ -101794,14 +102798,13 @@ self: { }: mkDerivation { pname = "hasql-transaction"; - version = "0.4.3"; - sha256 = "9b6a623cdfb83c648c18ac70d7ce548742115d0a9ce25d41a8ab2ff73f67f95e"; + version = "0.4.4"; + sha256 = "b6a14cc3f4cbfdef648ccd8ad5ef1b5a1c58ba0fa7655aac62f54a6c36ad532f"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras either hasql mtl postgresql-error-codes transformers ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/hasql-transaction"; description = "A composable abstraction over the retryable transactions for Hasql"; license = stdenv.lib.licenses.mit; @@ -101924,6 +102927,20 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "haste-gapi" = callPackage + ({ mkDerivation, base, data-default, haste-compiler, transformers + }: + mkDerivation { + pname = "haste-gapi"; + version = "0.1.0.1"; + sha256 = "007f67b874d4f7328ad5825f0220327d5ad26673f1fb69eff6989434390d7f1f"; + libraryHaskellDepends = [ + base data-default haste-compiler transformers + ]; + description = "Google API bindings for the Haste compiler"; + license = stdenv.lib.licenses.mit; + }) {}; + "haste-markup" = callPackage ({ mkDerivation, base, containers, directory, filepath, haste-lib }: @@ -103436,6 +104453,7 @@ self: { aeson aeson-pretty base bytestring directory filepath haskeline time ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/headergen"; description = "Creates a header for a haskell source file"; license = stdenv.lib.licenses.mit; @@ -103624,18 +104642,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hedis_0_7_8" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-lexing - , deepseq, HUnit, mtl, network, resource-pool, slave-thread - , test-framework, test-framework-hunit, time, vector + "hedis_0_8_0" = callPackage + ({ mkDerivation, base, bytestring, bytestring-lexing, deepseq + , HUnit, mtl, network, resource-pool, scanner, slave-thread + , test-framework, test-framework-hunit, text, time, vector }: mkDerivation { pname = "hedis"; - version = "0.7.8"; - sha256 = "079cdbde01306818003ce306f98fcc5b4b51ef0bdcf8ac5154ebbf58824d43a8"; + version = "0.8.0"; + sha256 = "8bde5dcda10b768bdc55a0e0c529f2dacd06f02f88839b986cf75ae426c4811b"; libraryHaskellDepends = [ - attoparsec base bytestring bytestring-lexing deepseq mtl network - resource-pool time vector + base bytestring bytestring-lexing deepseq mtl network resource-pool + scanner text time vector ]; testHaskellDepends = [ base bytestring HUnit mtl slave-thread test-framework @@ -103855,7 +104873,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "heist" = callPackage + "heist_0_14_1_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , bytestring, containers, directory, directory-tree, dlist, either , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl @@ -103875,6 +104893,29 @@ self: { homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "heist" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , bytestring, containers, directory, directory-tree, dlist, either + , filepath, hashable, map-syntax, MonadCatchIO-transformers, mtl + , process, random, text, time, transformers, unordered-containers + , vector, xmlhtml + }: + mkDerivation { + pname = "heist"; + version = "0.14.1.3"; + sha256 = "295b53f7e3dac7df3aaa92a7fc989a41efb508561df9ce8fb067d5dc230e4deb"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html bytestring + containers directory directory-tree dlist either filepath hashable + map-syntax MonadCatchIO-transformers mtl process random text time + transformers unordered-containers vector xmlhtml + ]; + homepage = "http://snapframework.com/"; + description = "An Haskell template system supporting both HTML5 and XML"; + license = stdenv.lib.licenses.bsd3; }) {}; "heist-aeson" = callPackage @@ -104012,6 +105053,7 @@ self: { testHaskellDepends = [ aeson base hspec hspec-wai hspec-wai-json text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/helix/"; description = "Web development micro framework for haskell with typesafe URLs"; license = stdenv.lib.licenses.mit; @@ -105291,9 +106333,11 @@ self: { libraryHaskellDepends = [ aeson base bytestring directory filepath process template-haskell ]; + jailbreak = true; homepage = "https://github.com/LukeHoersten/hgrev"; description = "Compile Mercurial (hg) version info into Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgrib" = callPackage @@ -105529,6 +106573,8 @@ self: { pname = "hierarchy"; version = "0.3.1"; sha256 = "4ff6dcb89691dbf20de993964ad32904508f5b6569af1e83eaaaf73a271c9c5f"; + revision = "1"; + editedCabalFile = "d5f57b7a5087193876ddccfb410a297bcc4d0babb0b7b8233a4bb591d6d0e5eb"; libraryHaskellDepends = [ base exceptions free mmorph monad-control mtl pipes semigroups transformers transformers-base transformers-compat @@ -105537,7 +106583,6 @@ self: { base directory doctest filepath hspec hspec-expectations mtl pipes semigroups transformers ]; - jailbreak = true; homepage = "https://github.com/jwiegley/hierarchy"; description = "Pipes-based library for predicated traversal of generated trees"; license = stdenv.lib.licenses.bsd3; @@ -107226,7 +108271,6 @@ self: { aeson base containers data-default mtl text unordered-containers websockets ]; - jailbreak = true; homepage = "https://bitbucket.org/bwbush/hleap"; description = "Web Socket interface to Leap Motion controller"; license = stdenv.lib.licenses.mit; @@ -108151,7 +109195,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint" = callPackage + "hlint_1_9_31" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -108171,9 +109215,10 @@ self: { homepage = "https://github.com/ndmitchell/hlint#readme"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint_1_9_32" = callPackage + "hlint" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -108193,7 +109238,6 @@ self: { homepage = "https://github.com/ndmitchell/hlint#readme"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlogger" = callPackage @@ -109037,8 +110081,8 @@ self: { }: mkDerivation { pname = "hnn"; - version = "0.2.0.0"; - sha256 = "5cea3b1ab4be9df69328ad31c77fbf3daf0be39c0c92e17e15709ea582ce228e"; + version = "0.3"; + sha256 = "d99d8546cd6f34d3ab63d92c36bf46124ce10618d77de04c0d3ac65c12fd1543"; libraryHaskellDepends = [ base binary bytestring hmatrix mwc-random random vector vector-binary-instances zlib @@ -109256,6 +110300,7 @@ self: { aeson base bytestring containers http-conduit http-types text wai warp ]; + jailbreak = true; homepage = "https://github.com/freizl/hoauth2"; description = "Haskell OAuth2 authentication client"; license = stdenv.lib.licenses.bsd3; @@ -110471,7 +111516,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hopenpgp-tools" = callPackage + "hopenpgp-tools_0_17" = callPackage ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec , base, base16-bytestring, binary, binary-conduit, bytestring , conduit, conduit-extra, containers, crypto-pubkey, cryptohash @@ -110499,9 +111544,10 @@ self: { homepage = "http://floss.scru.org/hopenpgp-tools"; description = "hOpenPGP-based command-line tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hopenpgp-tools_0_17_1" = callPackage + "hopenpgp-tools" = callPackage ({ mkDerivation, aeson, alex, ansi-wl-pprint, array, attoparsec , base, base16-bytestring, binary, binary-conduit, bytestring , conduit, conduit-extra, containers, crypto-pubkey, cryptohash @@ -110529,7 +111575,6 @@ self: { homepage = "http://floss.scru.org/hopenpgp-tools"; description = "hOpenPGP-based command-line tools"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopenssl" = callPackage @@ -111061,7 +112106,6 @@ self: { filepath Glob hspec interpolate mockery temporary text unordered-containers yaml ]; - jailbreak = true; homepage = "https://github.com/sol/hpack#readme"; description = "An alternative format for Haskell packages"; license = stdenv.lib.licenses.mit; @@ -111084,6 +112128,7 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpaco-lib" = callPackage @@ -111103,6 +112148,7 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpage" = callPackage @@ -111236,7 +112282,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hpc-coveralls" = callPackage + "hpc-coveralls_1_0_3" = callPackage ({ mkDerivation, aeson, async, base, bytestring, Cabal, cmdargs , containers, curl, directory, directory-tree, hpc, HUnit, process , pureMD5, regex-posix, retry, safe, split, transformers @@ -111257,6 +112303,34 @@ self: { transformers ]; testHaskellDepends = [ base HUnit ]; + jailbreak = true; + homepage = "https://github.com/guillaume-nargeot/hpc-coveralls"; + description = "Coveralls.io support for Haskell."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hpc-coveralls" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, Cabal, cmdargs + , containers, curl, directory, directory-tree, hpc, HUnit, process + , pureMD5, regex-posix, retry, safe, split, transformers + }: + mkDerivation { + pname = "hpc-coveralls"; + version = "1.0.4"; + sha256 = "32f3f4104044a8ec16efe0a0846baf6eba48672eb9302e6dd9463e94b522fe00"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring Cabal cmdargs containers curl directory + directory-tree hpc process pureMD5 retry safe split transformers + ]; + executableHaskellDepends = [ + aeson async base bytestring Cabal cmdargs containers curl directory + directory-tree hpc process pureMD5 regex-posix retry safe split + transformers + ]; + testHaskellDepends = [ base HUnit ]; homepage = "https://github.com/guillaume-nargeot/hpc-coveralls"; description = "Coveralls.io support for Haskell."; license = stdenv.lib.licenses.bsd3; @@ -113299,8 +114373,8 @@ self: { }: mkDerivation { pname = "hsdev"; - version = "0.1.7.1"; - sha256 = "adc1df9c7706445daccec30b6a71e5286de338059f696919e368e10b61b6a7c6"; + version = "0.1.7.3"; + sha256 = "8da9d590ae0f43905acef2cf62f95b531409364bd7de2adc094092ce221f48b6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113418,7 +114492,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hsebaysdk" = callPackage + "hsebaysdk_0_3_0_1" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client, http-types , text, time, transformers, unordered-containers }: @@ -113433,9 +114507,10 @@ self: { homepage = "https://github.com/creichert/hsebaysdk"; description = "Haskell eBay SDK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hsebaysdk_0_3_1_0" = callPackage + "hsebaysdk" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client, http-types , text, time, transformers, unordered-containers }: @@ -113450,7 +114525,6 @@ self: { homepage = "https://github.com/creichert/hsebaysdk"; description = "Haskell eBay SDK"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsemail" = callPackage @@ -113985,6 +115059,7 @@ self: { testHaskellDepends = [ base conduit hspec QuickCheck split stm transformers ]; + jailbreak = true; homepage = "https://github.com/bartavelle/hslogstash"; description = "A library to work with, or as, a logstash server"; license = stdenv.lib.licenses.bsd3; @@ -114519,7 +115594,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec" = callPackage + "hspec_2_2_2" = callPackage ({ mkDerivation, base, directory, hspec-core, hspec-discover , hspec-expectations, hspec-meta, HUnit, QuickCheck, stringbuilder , transformers @@ -114535,6 +115610,29 @@ self: { testHaskellDepends = [ base directory hspec-core hspec-meta stringbuilder ]; + jailbreak = true; + homepage = "http://hspec.github.io/"; + description = "A Testing Framework for Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec" = callPackage + ({ mkDerivation, base, directory, hspec-core, hspec-discover + , hspec-expectations, hspec-meta, HUnit, QuickCheck, stringbuilder + , transformers + }: + mkDerivation { + pname = "hspec"; + version = "2.2.3"; + sha256 = "511e994ee86d85c610bf20a3eb8309e79816e984dc46f4d0f95bd7dc676f6210"; + libraryHaskellDepends = [ + base hspec-core hspec-discover hspec-expectations HUnit QuickCheck + transformers + ]; + testHaskellDepends = [ + base directory hspec-core hspec-meta stringbuilder + ]; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -114807,7 +115905,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-core" = callPackage + "hspec-core_2_2_2" = callPackage ({ mkDerivation, ansi-terminal, async, base, deepseq , hspec-expectations, hspec-meta, HUnit, process, QuickCheck , quickcheck-io, random, setenv, silently, tf-random, time @@ -114829,6 +115927,31 @@ self: { homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-core" = callPackage + ({ mkDerivation, ansi-terminal, async, base, deepseq + , hspec-expectations, hspec-meta, HUnit, process, QuickCheck + , quickcheck-io, random, setenv, silently, tf-random, time + , transformers + }: + mkDerivation { + pname = "hspec-core"; + version = "2.2.3"; + sha256 = "01fa6959921ae0ed3de5e3f612451fe788800f9670c7f425a241f5f0dec99652"; + libraryHaskellDepends = [ + ansi-terminal async base deepseq hspec-expectations HUnit + QuickCheck quickcheck-io random setenv tf-random time transformers + ]; + testHaskellDepends = [ + ansi-terminal async base deepseq hspec-expectations hspec-meta + HUnit process QuickCheck quickcheck-io random setenv silently + tf-random time transformers + ]; + homepage = "http://hspec.github.io/"; + description = "A Testing Framework for Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-discover_2_1_2" = callPackage @@ -114968,7 +116091,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-discover" = callPackage + "hspec-discover_2_2_2" = callPackage ({ mkDerivation, base, directory, filepath, hspec-meta }: mkDerivation { pname = "hspec-discover"; @@ -114982,6 +116105,23 @@ self: { homepage = "http://hspec.github.io/"; description = "Automatically discover and run Hspec tests"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-discover" = callPackage + ({ mkDerivation, base, directory, filepath, hspec-meta }: + mkDerivation { + pname = "hspec-discover"; + version = "2.2.3"; + sha256 = "dc6053d7ad628a133fab01f11ad6d7dfecd23873e2bbe9419d30ee0318b5a92f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base directory filepath ]; + executableHaskellDepends = [ base directory filepath ]; + testHaskellDepends = [ base directory filepath hspec-meta ]; + homepage = "http://hspec.github.io/"; + description = "Automatically discover and run Hspec tests"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-expectations_0_6_1" = callPackage @@ -115089,7 +116229,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hspec-expectations-pretty-diff" = callPackage + "hspec-expectations-pretty-diff_0_7_2_3" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, Diff, haskell-src-exts , hindent, hscolour, hspec, HUnit, text }: @@ -115105,6 +116245,24 @@ self: { homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; description = "Catchy combinators for HUnit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hspec-expectations-pretty-diff" = callPackage + ({ mkDerivation, aeson, ansi-terminal, base, Diff, hscolour, hspec + , HUnit, nicify-lib, text + }: + mkDerivation { + pname = "hspec-expectations-pretty-diff"; + version = "0.7.2.4"; + sha256 = "1bbfd524330be3cb0b27945556d01f48e3005e042ee475cdf6e441ba21b51b0a"; + libraryHaskellDepends = [ + ansi-terminal base Diff hscolour HUnit nicify-lib text + ]; + testHaskellDepends = [ aeson base hspec HUnit text ]; + homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; + description = "Catchy combinators for HUnit"; + license = stdenv.lib.licenses.mit; }) {}; "hspec-experimental" = callPackage @@ -115399,7 +116557,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-snap" = callPackage + "hspec-snap_0_4_0_0" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , digestive-functors, directory, HandsomeSoup, hspec, hspec-core , hxt, lens, mtl, snap, snap-core, text, transformers @@ -115417,12 +116575,14 @@ self: { HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text transformers ]; + jailbreak = true; homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-snap_0_4_0_1" = callPackage + "hspec-snap" = callPackage ({ mkDerivation, aeson, base, bytestring, containers , digestive-functors, directory, HandsomeSoup, hspec, hspec-core , hxt, lens, mtl, snap, snap-core, text, transformers @@ -115440,11 +116600,9 @@ self: { HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text transformers ]; - jailbreak = true; homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-structured-formatter" = callPackage @@ -116456,7 +117614,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) taglib;}; - "htaglib" = callPackage + "htaglib_1_0_2" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, HUnit , taglib, test-framework, test-framework-hunit, text }: @@ -116472,6 +117630,25 @@ self: { homepage = "https://github.com/mrkkrp/htaglib"; description = "Bindings to TagLib, audio meta-data library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) taglib;}; + + "htaglib" = callPackage + ({ mkDerivation, base, bytestring, directory, filepath, HUnit + , taglib, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "htaglib"; + version = "1.0.3"; + sha256 = "b6e1a3d8e93c01fc626dea3a020b5ad4418eb8dede2210491eee43a85a99ea9b"; + libraryHaskellDepends = [ base bytestring text ]; + librarySystemDepends = [ taglib ]; + testHaskellDepends = [ + base directory filepath HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/mrkkrp/htaglib"; + description = "Bindings to TagLib, audio meta-data library"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) taglib;}; "htags" = callPackage @@ -116661,15 +117838,14 @@ self: { }: mkDerivation { pname = "html-entities"; - version = "1.1.0.0"; - sha256 = "1641957d9a76e85c5bf060e3fe3fd1ecc0b2ddcff96638562d9797837cd1a07e"; + version = "1.1.1.1"; + sha256 = "d837f8628acaa3ac7ffa7ef19128715aad1f516842144ace4e25599ab8a7c94b"; libraryHaskellDepends = [ attoparsec base-prelude text unordered-containers ]; testHaskellDepends = [ base base-prelude directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; @@ -118511,6 +119687,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http-response-decoder" = callPackage + ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder + , case-insensitive, http-client, http-types, matcher, profunctors + , text, transformers, unordered-containers + }: + mkDerivation { + pname = "http-response-decoder"; + version = "0.2.1.1"; + sha256 = "0c208150b72e1b1f40651cffaac0e239140cb89f86da5e9cb986945866f9fa0d"; + libraryHaskellDepends = [ + base-prelude bytestring bytestring-tree-builder case-insensitive + http-client http-types matcher profunctors text transformers + unordered-containers + ]; + homepage = "https://github.com/sannsyn/http-response-decoder"; + description = "Declarative DSL for parsing an HTTP response"; + license = stdenv.lib.licenses.mit; + }) {}; + "http-reverse-proxy_0_4_1_2" = callPackage ({ mkDerivation, async, base, blaze-builder, bytestring , case-insensitive, conduit, conduit-extra, containers @@ -118940,6 +120135,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "http2_1_6_0" = callPackage + ({ mkDerivation, aeson, aeson-pretty, array, base, bytestring + , bytestring-builder, case-insensitive, containers, directory + , doctest, filepath, Glob, hex, hspec, psqueues, stm, text + , unordered-containers, vector, word8 + }: + mkDerivation { + pname = "http2"; + version = "1.6.0"; + sha256 = "2d33647a74f9945fa0e3a0982832eeb2c57cb46d3ddbacf5ba049ee59a60da97"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring bytestring-builder case-insensitive + containers psqueues stm + ]; + executableHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + case-insensitive containers directory filepath hex text + unordered-containers vector word8 + ]; + testHaskellDepends = [ + aeson aeson-pretty array base bytestring bytestring-builder + case-insensitive containers directory doctest filepath Glob hex + hspec psqueues stm text unordered-containers vector word8 + ]; + description = "HTTP/2.0 library including frames and HPACK"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "httpd-shed" = callPackage ({ mkDerivation, base, network, network-uri }: mkDerivation { @@ -119567,6 +120793,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "hw-succinct" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, conduit + , criterion, deepseq, ghc-prim, hspec, lens, mmap, mono-traversable + , parsec, QuickCheck, random, resourcet, safe, text, transformers + , vector, word8 + }: + mkDerivation { + pname = "hw-succinct"; + version = "0.0.0.4"; + sha256 = "cbcec5f49f002108655ec5a75ef17d2d7361e24e778b9484d019a9433edbc3e8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array attoparsec base bytestring conduit deepseq ghc-prim lens mmap + mono-traversable parsec QuickCheck random resourcet safe text + vector word8 + ]; + executableHaskellDepends = [ + base bytestring conduit criterion mmap resourcet vector + ]; + testHaskellDepends = [ + attoparsec base bytestring conduit hspec mmap parsec QuickCheck + resourcet transformers vector + ]; + homepage = "http://github.com/haskell-works/hw-succinct#readme"; + description = "Conduits for tokenizing streams"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hwall-auth-iitk" = callPackage ({ mkDerivation, base, bytestring, haskeline, http-conduit , http-types, mtl, regex-compat, unix @@ -119904,7 +121159,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "hxt-css" = callPackage + "hxt-css_0_1_0_1" = callPackage ({ mkDerivation, base, hxt, parsec, split }: mkDerivation { pname = "hxt-css"; @@ -119916,6 +121171,21 @@ self: { homepage = "https://github.com/redneb/hxt-css"; description = "CSS selectors for HXT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hxt-css" = callPackage + ({ mkDerivation, base, hxt, parsec, split }: + mkDerivation { + pname = "hxt-css"; + version = "0.1.0.2"; + sha256 = "c3adfe73846b1274249835c142174dfc88167029be350761ec46cd97dc39c672"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base hxt parsec split ]; + homepage = "https://github.com/redneb/hxt-css"; + description = "CSS selectors for HXT"; + license = stdenv.lib.licenses.bsd3; }) {}; "hxt-curl" = callPackage @@ -120586,6 +121856,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hylogen" = callPackage + ({ mkDerivation, base, bytestring, filepath, hinotify, network + , process, random, text, websockets + }: + mkDerivation { + pname = "hylogen"; + version = "0.1.0.5"; + sha256 = "59be04f1b9d6b6c84c77f16ebeb2d2a69624d76df1f270057c464c4cf40c6c93"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ + base bytestring filepath hinotify network process random text + websockets + ]; + homepage = "https://github.com/sleexyz/hylogen"; + description = "a tiny EDSL for live-coding fragment shaders"; + license = stdenv.lib.licenses.mit; + }) {}; + "hylolib" = callPackage ({ mkDerivation, array, base, containers, mtl, pretty, QuickCheck , random, uniplate @@ -121901,8 +123191,8 @@ self: { }: mkDerivation { pname = "idris"; - version = "0.10.3"; - sha256 = "63fd7bade38873e3c9933fa883bacdedffc73c5fec5a6e79a981ccf7ae990e85"; + version = "0.11"; + sha256 = "e0ea4df41f63f9d4292fe2ae9d3031cbc511a96c80e43240df16374335261a2a"; configureFlags = [ "-fcurses" "-fffi" "-fgmp" ]; isLibrary = true; isExecutable = true; @@ -122307,6 +123597,7 @@ self: { stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; @@ -122926,27 +124217,27 @@ self: { }) {}; "imperative-edsl" = callPackage - ({ mkDerivation, array, base, BoundedChan, constraints, containers - , directory, exception-transformers, language-c-quote + ({ mkDerivation, array, base, BoundedChan, containers, deepseq + , directory, exception-transformers, ghc-prim, language-c-quote , mainland-pretty, microlens, microlens-mtl, microlens-th, mtl , open-typerep, operational-alacarte, process, srcloc, syntactic - , tagged + , tasty-quickcheck, tasty-th, time }: mkDerivation { pname = "imperative-edsl"; - version = "0.4.1"; - sha256 = "5b78994b208351b4fdd8465146559d7198c6969dfaaa3767ed667d9df29bfad4"; + version = "0.5"; + sha256 = "37cd2e3c9e389cff09d5d8971b020866ff44958e17607f02012d54d3430233a8"; libraryHaskellDepends = [ - array base BoundedChan constraints containers - exception-transformers language-c-quote mainland-pretty microlens - microlens-mtl microlens-th mtl open-typerep operational-alacarte - srcloc syntactic tagged + array base BoundedChan containers deepseq directory + exception-transformers ghc-prim language-c-quote mainland-pretty + microlens microlens-mtl microlens-th mtl open-typerep + operational-alacarte process srcloc syntactic time ]; - testHaskellDepends = [ base directory mainland-pretty process ]; + testHaskellDepends = [ base syntactic tasty-quickcheck tasty-th ]; homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imperative-edsl-vhdl" = callPackage @@ -123577,8 +124868,8 @@ self: { }: mkDerivation { pname = "informative"; - version = "0.1.0.20"; - sha256 = "f6503d7b794fd938a29c8e9ae5fafe349697d835fce0ab15ce872d9239bef4f5"; + version = "0.1.0.27"; + sha256 = "d03ffde1e85025fa10866db27b7c222a509fc18bfe1004016a49563a104a0616"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -123591,7 +124882,6 @@ self: { pandoc persistent persistent-postgresql shakespeare text time time-locale-compat yesod yesod-auth yesod-core yesod-form ]; - jailbreak = true; homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; @@ -123935,9 +125225,11 @@ self: { testHaskellDepends = [ aeson base instant-generics tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-aeson"; description = "Generic Aeson instances through instant-generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instant-bytes" = callPackage @@ -124339,6 +125631,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "interruptible" = callPackage + ({ mkDerivation, base, Cabal, either, lifted-base, monad-control + , transformers + }: + mkDerivation { + pname = "interruptible"; + version = "0.1.1.0"; + sha256 = "68fbb16e5044eca8c5cd1f6a365e60ce11f8f3621dadf47f7be3a6b843c34264"; + libraryHaskellDepends = [ + base either lifted-base monad-control transformers + ]; + testHaskellDepends = [ base Cabal either transformers ]; + homepage = "https://sealgram.com/git/haskell/interruptible/"; + description = "Monad transformers that can be run and resumed later, conserving their context"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "interspersed" = callPackage + ({ mkDerivation, base-prelude, transformers }: + mkDerivation { + pname = "interspersed"; + version = "0.1.1.2"; + sha256 = "43ce7ce1fdb26f53aeb30c0377226dd9c495da89490ef6312c15df563a4fa783"; + libraryHaskellDepends = [ base-prelude transformers ]; + homepage = "https://github.com/nikita-volkov/interspersed"; + description = "An abstraction over interspersing monadic actions"; + license = stdenv.lib.licenses.mit; + }) {}; + "intervals_0_7_0_1" = callPackage ({ mkDerivation, array, base, directory, distributive, doctest , filepath, ghc-prim @@ -125108,6 +126429,7 @@ self: { executableHaskellDepends = [ base filepath mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -125133,6 +126455,7 @@ self: { executableHaskellDepends = [ base filepath mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -125306,8 +126629,8 @@ self: { }: mkDerivation { pname = "irc-dcc"; - version = "1.0.0"; - sha256 = "5cb2dc63d786b76a6d6145a2b6e5599855284c1c3d9609a59f21842905d9cd3f"; + version = "1.1.0"; + sha256 = "4f33a7ae01f36638f5b7bcdbbf161f85f413ea68f76f8d5cd2ca3987028e1415"; libraryHaskellDepends = [ attoparsec base binary bytestring errors io-streams iproute irc-ctcp network path transformers utf8-string @@ -125465,6 +126788,7 @@ self: { executableHaskellDepends = [ base extra multistate text transformers unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/lspitzner/iridium"; description = "Automated Testing and Package Uploading"; license = stdenv.lib.licenses.bsd3; @@ -125489,8 +126813,8 @@ self: { }: mkDerivation { pname = "ironforge"; - version = "0.1.0.35"; - sha256 = "f490eba48cfbbaa2fb997d20c8a453cbe74aea0ea4ef26735a1b51eab6a4a0b7"; + version = "0.1.0.36"; + sha256 = "86aee52c1b9752a32a750cdc28c23e6d6a520872ed178000ad6cb04308bcda85"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125662,6 +126986,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ispositive" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "ispositive"; + version = "0.2"; + sha256 = "05803c16d6ff6ce25a4d31a3693dd40724e2b71e1f6dc7f75d32311fac10db56"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + description = "Positive integers test"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "itanium-abi" = callPackage ({ mkDerivation, base, boomerang, HUnit, process, test-framework , test-framework-hunit, text, transformers, unordered-containers @@ -125879,38 +127215,56 @@ self: { }) {}; "ivory" = callPackage - ({ mkDerivation, base, containers, monadLib, parsec, pretty - , template-haskell, th-lift + ({ mkDerivation, alex, array, base, base-compat, containers, dlist + , filepath, happy, monadLib, pretty, template-haskell, text + , th-lift }: mkDerivation { pname = "ivory"; - version = "0.1.0.0"; - sha256 = "4c1739e32f72d694b3ad45d1b4771e1ed436edef377e32972d1344a6f354c1e6"; + version = "0.1.0.3"; + sha256 = "e842ec8c195c2f148c393d09471c96bcae09c1fd5260f102df6b26b591da91e6"; libraryHaskellDepends = [ - base containers monadLib parsec pretty template-haskell th-lift + array base base-compat containers dlist filepath monadLib pretty + template-haskell text th-lift ]; - jailbreak = true; + libraryToolDepends = [ alex happy ]; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ivory-artifact" = callPackage + ({ mkDerivation, base, directory, filepath, HStringTemplate, text + , utf8-string + }: + mkDerivation { + pname = "ivory-artifact"; + version = "0.1.0.3"; + sha256 = "375a287288e9886bc9055c128e0d2d4cddab985baf8e52a82176c323b98f401e"; + libraryHaskellDepends = [ + base directory filepath HStringTemplate text utf8-string + ]; + homepage = "http://ivorylang.org"; + description = "Manage additional data files during Ivory compilation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ivory-backend-c" = callPackage - ({ mkDerivation, base, bytestring, cmdlib, containers, directory - , filepath, ivory, ivory-opts, language-c-quote, mainland-pretty - , monadLib, process, srcloc, template-haskell + ({ mkDerivation, base, base-compat, bytestring, containers + , directory, filepath, ivory, ivory-artifact, ivory-opts + , language-c-quote, mainland-pretty, monadLib, process, srcloc + , template-haskell }: mkDerivation { pname = "ivory-backend-c"; - version = "0.1.0.1"; - sha256 = "244630c41baf5c96a69b4333727eb05f8124dd9ded855e80b2dc20daad522c8b"; + version = "0.1.0.3"; + sha256 = "44e43e14e1951c4703c99bf116d6951eff575124d92f58dd7450f19ec14aa33e"; libraryHaskellDepends = [ - base bytestring cmdlib containers directory filepath ivory - ivory-opts language-c-quote mainland-pretty monadLib process srcloc - template-haskell + base base-compat bytestring containers directory filepath ivory + ivory-artifact ivory-opts language-c-quote mainland-pretty monadLib + process srcloc template-haskell ]; - jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; @@ -125938,23 +127292,40 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ivory-eval" = callPackage + ({ mkDerivation, base, base-compat, containers, ivory, monadLib + , tasty, tasty-hunit + }: + mkDerivation { + pname = "ivory-eval"; + version = "0.1.0.3"; + sha256 = "94acbed559f5567d291f95fb3ce70e9487cbf31bfc4721030017bbc5f078b958"; + libraryHaskellDepends = [ + base base-compat containers ivory monadLib + ]; + testHaskellDepends = [ + base base-compat containers ivory monadLib tasty tasty-hunit + ]; + homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; + description = "Simple concrete evaluator for Ivory programs"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ivory-examples" = callPackage - ({ mkDerivation, base, ivory, ivory-backend-c, ivory-opts - , ivory-quickcheck, ivory-stdlib, mainland-pretty, monadLib, pretty - , QuickCheck, template-haskell, wl-pprint + ({ mkDerivation, base, base-compat, ivory, ivory-backend-c + , ivory-opts, ivory-stdlib, monadLib, pretty, QuickCheck + , template-haskell }: mkDerivation { pname = "ivory-examples"; - version = "0.1.0.2"; - sha256 = "35d7f04e613887e691d0ad3ac10cd899eb700d28df2124c843de04a3c5c94c4a"; + version = "0.1.0.3.1"; + sha256 = "f73720e850410a0d3ab4acfc6fe478c2d475f9e2e12c6782ec9f8a1236690f82"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base ivory ivory-backend-c ivory-opts ivory-quickcheck ivory-stdlib - mainland-pretty monadLib pretty QuickCheck template-haskell - wl-pprint + base base-compat ivory ivory-backend-c ivory-opts ivory-stdlib + monadLib pretty QuickCheck template-haskell ]; - jailbreak = true; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; @@ -125962,63 +127333,85 @@ self: { }) {}; "ivory-hw" = callPackage - ({ mkDerivation, base, filepath, ivory, ivory-backend-c - , ivory-bitdata + ({ mkDerivation, base, filepath, ivory, ivory-artifact + , ivory-backend-c }: mkDerivation { pname = "ivory-hw"; - version = "0.1.0.0"; - sha256 = "5eafbcb226d11e65127c55b32e324bfe628cc24dc59a32e2c1e5d953bd5740e9"; + version = "0.1.0.3"; + sha256 = "0dec96122661a8f281daf7e52f8e7dcc80481090518115a8c6e0859d919f64b2"; libraryHaskellDepends = [ - base filepath ivory ivory-backend-c ivory-bitdata + base filepath ivory ivory-artifact ivory-backend-c ]; - jailbreak = true; - homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; + homepage = "http://ivorylang.org"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-opts" = callPackage - ({ mkDerivation, base, containers, dlist, fgl, filepath, ivory - , monadLib + ({ mkDerivation, base, base-compat, containers, data-reify, dlist + , fgl, filepath, ivory, monadLib, pretty }: mkDerivation { pname = "ivory-opts"; - version = "0.1.0.1"; - sha256 = "bf68324fbd65da2221c942c313d523498b03cd50269732a069b49dd12697dc23"; + version = "0.1.0.3"; + sha256 = "caaf34f5b38ec88fe422cc367f28ab8b98b1a3b131dadaffcd8000b438562eb3"; libraryHaskellDepends = [ - base containers dlist fgl filepath ivory monadLib + base base-compat containers data-reify dlist fgl filepath ivory + monadLib pretty ]; - jailbreak = true; - homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; + homepage = "http://ivorylang.org"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage - ({ mkDerivation, base, ivory, monadLib, QuickCheck, random }: + ({ mkDerivation, base, base-compat, directory, filepath, ivory + , ivory-backend-c, ivory-eval, ivory-stdlib, monadLib, process + , QuickCheck, random, tasty, tasty-hunit + }: mkDerivation { pname = "ivory-quickcheck"; - version = "0.1.0.0"; - sha256 = "4d6a0b49f276091617a9a4949cc59e68c3dfd825a4d2f25e82004ff4abbe6e49"; - libraryHaskellDepends = [ base ivory monadLib QuickCheck random ]; - jailbreak = true; - homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; + version = "0.2.0.3"; + sha256 = "ca005a77265d6140cabe7796062d145ae8be185123db1095c957aee76aec56f4"; + libraryHaskellDepends = [ + base base-compat ivory ivory-backend-c ivory-eval monadLib + QuickCheck random + ]; + testHaskellDepends = [ + base base-compat directory filepath ivory ivory-backend-c + ivory-stdlib monadLib process QuickCheck tasty tasty-hunit + ]; + homepage = "http://ivorylang.org"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ivory-serialize" = callPackage + ({ mkDerivation, base, base-compat, filepath, ivory, ivory-artifact + , monadLib + }: + mkDerivation { + pname = "ivory-serialize"; + version = "0.1.0.3"; + sha256 = "bb07a4218c8e6d314ee5aa0bdf75891a9f9b7a106020f4bb439bfe26053610eb"; + libraryHaskellDepends = [ + base base-compat filepath ivory ivory-artifact monadLib + ]; + description = "Serialization library for Ivory"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ivory-stdlib" = callPackage - ({ mkDerivation, base, filepath, ivory }: + ({ mkDerivation, base, filepath, ivory, ivory-artifact }: mkDerivation { pname = "ivory-stdlib"; - version = "0.1.0.0"; - sha256 = "b88b962382e82e9e768ec8e61950ebddbc8e428a339dc84ab63fbf6c424a6da8"; - libraryHaskellDepends = [ base filepath ivory ]; - jailbreak = true; + version = "0.1.0.3"; + sha256 = "0ff865b14e046a9caffd1ac79e256568bd3bf60aa648e673582d7009bdcc635c"; + libraryHaskellDepends = [ base filepath ivory ivory-artifact ]; homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; @@ -126815,31 +128208,29 @@ self: { "jose" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bifunctors, byteable, bytestring, crypto-pubkey - , crypto-pubkey-types, crypto-random, cryptohash - , data-default-class, ghc-prim, hspec, integer-gmp, lens - , network-uri, safe, semigroups, template-haskell, text, time + , bifunctors, byteable, bytestring, cryptonite, data-default-class + , hspec, lens, memory, mtl, network-uri, QuickCheck + , quickcheck-instances, safe, semigroups, tasty, tasty-hspec + , tasty-quickcheck, template-haskell, text, time , unordered-containers, vector, x509 }: mkDerivation { pname = "jose"; - version = "0.3.41.2"; - sha256 = "8593c745330b58426075bb2ff8077551777bfcd7ba6ebd2cbfbfa03b7978555d"; + version = "0.4.0.1"; + sha256 = "b9870212d6fa4ab2233f4cfff02f161bad069724fab7e3d7034b4b76fa01ee1c"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bifunctors byteable - bytestring crypto-pubkey crypto-pubkey-types crypto-random - cryptohash data-default-class ghc-prim integer-gmp lens network-uri - safe semigroups template-haskell text time unordered-containers - vector x509 + bytestring cryptonite data-default-class lens memory mtl + network-uri QuickCheck quickcheck-instances safe semigroups + template-haskell text time unordered-containers vector x509 ]; testHaskellDepends = [ aeson attoparsec base base64-bytestring bifunctors byteable - bytestring crypto-pubkey crypto-pubkey-types crypto-random - cryptohash data-default-class hspec lens network-uri safe - semigroups template-haskell text time unordered-containers vector - x509 + bytestring cryptonite data-default-class hspec lens memory mtl + network-uri QuickCheck quickcheck-instances safe semigroups tasty + tasty-hspec tasty-quickcheck template-haskell text time + unordered-containers vector x509 ]; - jailbreak = true; homepage = "https://github.com/frasertweedale/hs-jose"; description = "Javascript Object Signing and Encryption and JSON Web Token library"; license = stdenv.lib.licenses.asl20; @@ -127027,7 +128418,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "js-jquery" = callPackage + "js-jquery_1_12_1" = callPackage ({ mkDerivation, base, HTTP }: mkDerivation { pname = "js-jquery"; @@ -127039,6 +128430,7 @@ self: { homepage = "https://github.com/ndmitchell/js-jquery#readme"; description = "Obtain minified jQuery code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "js-jquery_1_12_2" = callPackage @@ -127056,6 +128448,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "js-jquery" = callPackage + ({ mkDerivation, base, HTTP }: + mkDerivation { + pname = "js-jquery"; + version = "1.12.3"; + sha256 = "9661095b1138db61a051dd5ea94e86e37428b57c0453d43fac7e447b91f9b09a"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base HTTP ]; + doCheck = false; + homepage = "https://github.com/ndmitchell/js-jquery#readme"; + description = "Obtain minified jQuery code"; + license = stdenv.lib.licenses.mit; + }) {}; + "jsaddle" = callPackage ({ mkDerivation, base, doctest, glib, gtk3, lens, QuickCheck , template-haskell, text, transformers, vector, webkitgtk3 @@ -127063,8 +128469,8 @@ self: { }: mkDerivation { pname = "jsaddle"; - version = "0.3.0.1"; - sha256 = "91511d9b4df73285f0f060418697028bc5384022da93d6dd9b5573214020aaaf"; + version = "0.3.0.3"; + sha256 = "8dcb54c32c281409da90e7d155913bfae5da1a2f4c71b409f70290c5f5ba2c89"; libraryHaskellDepends = [ base glib gtk3 lens template-haskell text transformers webkitgtk3 webkitgtk3-javascriptcore @@ -127073,6 +128479,7 @@ self: { base doctest glib gtk3 QuickCheck text vector webkitgtk3 webkitgtk3-javascriptcore ]; + doCheck = false; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -127516,13 +128923,12 @@ self: { }: mkDerivation { pname = "json-encoder"; - version = "0.1.5"; - sha256 = "bd71014bca5df3be295bfd851eb39d4c30bc38acaa7fd277f6cb6d8ac60c9bd4"; + version = "0.1.6"; + sha256 = "c19d6d4530d654f31637db1ab409295a0b33f5a3bbd16724253c0e9c347d17d9"; libraryHaskellDepends = [ base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras scientific semigroups text ]; - jailbreak = true; homepage = "https://github.com/sannsyn/json-encoder"; description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; license = stdenv.lib.licenses.mit; @@ -127588,6 +128994,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "json-incremental-decoder" = callPackage + ({ mkDerivation, attoparsec, base, base-prelude, bytestring + , ghc-prim, hashable, interspersed, matcher, monad-par, QuickCheck + , quickcheck-instances, rebase, scientific, success, supplemented + , tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck, text + , transformers, unordered-containers, unsequential, vector + }: + mkDerivation { + pname = "json-incremental-decoder"; + version = "0.1.0.3"; + sha256 = "a8968d55ea5655aa63ebc618753751e609c4733ee9cac121269d7375dc3112fd"; + libraryHaskellDepends = [ + attoparsec base base-prelude bytestring ghc-prim hashable + interspersed matcher monad-par scientific success supplemented text + transformers unordered-containers unsequential vector + ]; + testHaskellDepends = [ + QuickCheck quickcheck-instances rebase tasty tasty-hunit + tasty-quickcheck tasty-smallcheck + ]; + homepage = "https://github.com/nikita-volkov/json-incremental-decoder"; + description = "Incremental JSON parser with early termination and a declarative DSL"; + license = stdenv.lib.licenses.mit; + }) {}; + "json-litobj" = callPackage ({ mkDerivation, base, hspec, json, QuickCheck }: mkDerivation { @@ -127606,10 +129037,9 @@ self: { ({ mkDerivation, attoparsec, base-prelude, text }: mkDerivation { pname = "json-pointer"; - version = "0.1.1"; - sha256 = "443221a71faa40a5eddf8865a3219b5f48086a4c62efcdea9d468ae934410ee3"; + version = "0.1.2"; + sha256 = "772a765387d39ffda21f437aa8372289b1eb726aa983ff16863aa5b1cd1f88ba"; libraryHaskellDepends = [ attoparsec base-prelude text ]; - jailbreak = true; homepage = "https://github.com/sannsyn/json-pointer"; description = "JSON Pointer parsing and interpretation utilities"; license = stdenv.lib.licenses.mit; @@ -127621,13 +129051,12 @@ self: { }: mkDerivation { pname = "json-pointer-hasql"; - version = "0.1"; - sha256 = "5ed9ae42aadc1fde554480f055df77f751e5eb1c5386d0ed71883dfe9d534a8a"; + version = "0.1.1"; + sha256 = "f0626791ea35094e72eaabc2f5b9ea40ae8ace274129f16da8b36e26ce1016b9"; libraryHaskellDepends = [ base-prelude hasql json-pointer text ]; testHaskellDepends = [ aeson either hasql json-pointer rebase transformers ]; - jailbreak = true; homepage = "https://github.com/sannsyn/json-pointer-hasql"; description = "JSON Pointer extensions for Hasql"; license = stdenv.lib.licenses.mit; @@ -128009,6 +129438,7 @@ self: { aeson base generics-sop lens-sop tagged text time transformers unordered-containers vector ]; + jailbreak = true; description = "Generics JSON (de)serialization using generics-sop"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -128192,6 +129622,7 @@ self: { testHaskellDepends = [ aeson base bytestring conduit conduit-extra hspec text ]; + jailbreak = true; description = "JSON-RPC 2.0 server over a Conduit."; license = stdenv.lib.licenses.gpl3; }) {}; @@ -128215,6 +129646,7 @@ self: { homepage = "https://github.com/yuga/jsonschema-gen"; description = "JSON Schema generator from Algebraic data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsonsql" = callPackage @@ -128277,6 +129709,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "juandelacosa" = callPackage + ({ mkDerivation, base, base64-bytestring, bytestring + , case-insensitive, docopt, entropy, http-types, mysql + , mysql-simple, network, raw-strings-qq, resource-pool, unix, wai + , warp + }: + mkDerivation { + pname = "juandelacosa"; + version = "0.0.1"; + sha256 = "9c0d494b28384304cc9ba9bc8897c049d87e31a1f810c456ea759e31d6ab727f"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base base64-bytestring bytestring case-insensitive docopt entropy + http-types mysql mysql-simple network raw-strings-qq resource-pool + unix wai warp + ]; + description = "Manage users in MariaDB >= 10.1.1"; + license = stdenv.lib.licenses.mit; + }) {}; + "judy" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, hspec, Judy , QuickCheck @@ -128810,6 +130263,7 @@ self: { lens-aeson quickcheck-instances scientific stm tasty tasty-hunit tasty-quickcheck text time transformers unordered-containers vector ]; + doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -128896,15 +130350,14 @@ self: { }: mkDerivation { pname = "kdesrc-build-extra"; - version = "0.1.0.2"; - sha256 = "d9961b2e8d2668804d3e864c039ec2f82d56a19496af05edd98f1ba1669429d8"; + version = "0.1.1"; + sha256 = "c54e90038834f626e95b05ceb8faf6f2feee18c2017521611cb15ba84ee96c1d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ ansi-terminal base bytestring cmdargs directory MissingH parsec process ]; - jailbreak = true; description = "Build profiles for kdesrc-build"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -131252,7 +132705,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c" = callPackage + "language-c_0_4_7" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , directory, filepath, happy, pretty, process, syb }: @@ -131268,9 +132721,10 @@ self: { homepage = "http://www.sivity.net/projects/language.c/"; description = "Analysis and generation of C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-c_0_5_0" = callPackage + "language-c" = callPackage ({ mkDerivation, alex, array, base, bytestring, containers , directory, filepath, happy, pretty, process, syb }: @@ -131286,7 +132740,6 @@ self: { homepage = "http://visq.github.io/language-c/"; description = "Analysis and generation of C code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-comments" = callPackage @@ -131600,8 +133053,8 @@ self: { }: mkDerivation { pname = "language-c-quote"; - version = "0.11.4.1"; - sha256 = "37c2183ddbf95ee21d298e241266a09f73ac74065e51a0cf2fb28b45aefa9591"; + version = "0.11.5"; + sha256 = "b939d141e1825338fdcc87a6155600a6f2cdaeb2e3d2379500a80bae4c783000"; libraryHaskellDepends = [ array base bytestring containers exception-mtl exception-transformers filepath haskell-src-meta mainland-pretty @@ -131612,7 +133065,7 @@ self: { base bytestring HUnit mainland-pretty srcloc symbol test-framework test-framework-hunit ]; - homepage = "http://www.cs.drexel.edu/~mainland/"; + homepage = "http://www.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -132086,7 +133539,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_5_14_6" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework , test-framework-hunit, utf8-light, utf8-string @@ -132107,17 +133560,41 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript_0_6_0_3" = callPackage + "language-javascript" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, HUnit, mtl, QuickCheck, test-framework + , test-framework-hunit, utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.5.14.7"; + sha256 = "9187f36c5645bf7c3bf64cab1b90c4beadcacfecc367c1f33c15601d4d98d93a"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers HUnit mtl + QuickCheck test-framework test-framework-hunit utf8-light + utf8-string + ]; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "language-javascript_0_6_0_4" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string }: mkDerivation { pname = "language-javascript"; - version = "0.6.0.3"; - sha256 = "d6010de849a0783705fc34755cb540be98a15979bfeee41f3660b50cddafa49f"; + version = "0.6.0.4"; + sha256 = "850e86f58fdbe6a5bf4f559d8c3ae9326d41aa6f01cc2ccac0d33d6903b0e5fb"; libraryHaskellDepends = [ array base blaze-builder bytestring containers mtl text utf8-string ]; @@ -133281,6 +134758,7 @@ self: { executableHaskellDepends = [ base gloss gnuplot not-gloss spatial-math ]; + jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133730,6 +135208,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/lens/lens-aeson/"; description = "Law-abiding lenses for aeson"; license = stdenv.lib.licenses.bsd3; @@ -134024,7 +135503,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lentil" = callPackage + "lentil_0_1_10_0" = callPackage ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip , filepath, hspec, natural-sort, optparse-applicative, parsec , regex-tdfa @@ -134046,9 +135525,10 @@ self: { homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lentil_0_1_11_0" = callPackage + "lentil" = callPackage ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip , filepath, hspec, natural-sort, optparse-applicative, parsec , regex-tdfa @@ -134070,7 +135550,6 @@ self: { homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lenz" = callPackage @@ -136281,32 +137760,29 @@ self: { }) {}; "liquid-fixpoint" = callPackage - ({ mkDerivation, ansi-terminal, array, attoparsec, base, bifunctors - , bytestring, cmdargs, containers, deepseq, directory, filemanip - , filepath, ghc-prim, hashable, intern, mtl, ocaml, parsec, pretty - , process, syb, tasty, tasty-hunit, tasty-rerun, text, text-format - , transformers, unordered-containers, z3 + ({ mkDerivation, ansi-terminal, array, ascii-progress, async + , attoparsec, base, bifunctors, binary, boxes, bytestring, cereal + , cmdargs, containers, deepseq, directory, dotgen, fgl + , fgl-visualize, filemanip, filepath, ghc-prim, hashable, intern + , located-base, mtl, ocaml, parallel, parsec, pretty, process, syb + , tasty, tasty-hunit, tasty-rerun, text, text-format, transformers + , unordered-containers, z3 }: mkDerivation { pname = "liquid-fixpoint"; - version = "0.4.0.0"; - sha256 = "7414b580a3ec8185da5e5148b46cef5d15e347080eb2561fcd228c72e7669816"; - revision = "2"; - editedCabalFile = "10397e387d91256dcd35cae36cb27ae302418c3c80da6e65d417657783beaf6b"; + version = "0.5.0.1"; + sha256 = "7e14475ac33ed81983fb5b0fa2a1ad34ae0f449983f0a9cd432a7aa37875e53c"; configureFlags = [ "-fbuild-external" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - ansi-terminal array attoparsec base bifunctors bytestring cmdargs - containers deepseq directory filemanip filepath ghc-prim hashable - intern mtl parsec pretty process syb text text-format transformers - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal array base bifunctors bytestring cmdargs containers - deepseq directory filepath hashable mtl parsec pretty process syb - text text-format unordered-containers + ansi-terminal array ascii-progress async attoparsec base bifunctors + binary boxes bytestring cereal cmdargs containers deepseq directory + dotgen fgl fgl-visualize filemanip filepath ghc-prim hashable + intern located-base mtl parallel parsec pretty process syb text + text-format transformers unordered-containers ]; + executableHaskellDepends = [ base ]; executableSystemDepends = [ ocaml ]; testHaskellDepends = [ base directory filepath process tasty tasty-hunit tasty-rerun text @@ -136319,48 +137795,56 @@ self: { }) {inherit (pkgs) ocaml; inherit (pkgs) z3;}; "liquidhaskell" = callPackage - ({ mkDerivation, aeson, ansi-terminal, array, base, bifunctors - , bytestring, Cabal, cmdargs, containers, cpphs, data-default - , deepseq, Diff, directory, filemanip, filepath, fingertree, ghc - , ghc-paths, hashable, hpc, hscolour, intern, liquid-fixpoint, mtl - , optparse-applicative, parsec, pretty, process, stm, syb, tagged - , tasty, tasty-hunit, tasty-rerun, template-haskell, text, time - , transformers, unordered-containers, vector, z3 + ({ mkDerivation, aeson, array, base, bifunctors, bytestring, Cabal + , cereal, cmdargs, containers, cpphs, daemons, data-default + , deepseq, Diff, directory, filepath, fingertree, ghc, ghc-paths + , hashable, hpc, hscolour, liquid-fixpoint, located-base, mtl + , network, optparse-applicative, parsec, pretty, process, stm, syb + , tagged, tasty, tasty-ant-xml, tasty-hunit, tasty-rerun + , template-haskell, temporary, text, time, transformers, unix + , unordered-containers, vector, z3 }: mkDerivation { pname = "liquidhaskell"; - version = "0.5.0.1"; - sha256 = "27f31e7652cd9ef0b97d2e3936c8e9c759961ac153b324c3e84f11cb441ab89a"; - revision = "2"; - editedCabalFile = "54142d52274f85af299d405bd5daac25b574f9d3f16c8e42b7f5b999d9a34a1d"; + version = "0.6.0.0"; + sha256 = "4b5d6fc321c7b92b80b84bda67fc34e3f37f44d23dd60828ba9d9e3d7d645696"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson ansi-terminal array base bifunctors bytestring Cabal cmdargs - containers cpphs data-default deepseq Diff directory filemanip - filepath fingertree ghc ghc-paths hashable hpc hscolour intern - liquid-fixpoint mtl parsec pretty process syb template-haskell text - time unordered-containers vector + aeson array base bifunctors bytestring Cabal cereal cmdargs + containers cpphs data-default deepseq Diff directory filepath + fingertree ghc ghc-paths hashable hpc hscolour liquid-fixpoint + located-base mtl parsec pretty process syb template-haskell + temporary text time unordered-containers vector ]; executableHaskellDepends = [ - aeson ansi-terminal array base bifunctors bytestring cmdargs - containers cpphs data-default deepseq Diff directory filemanip - filepath fingertree ghc ghc-paths hashable hpc hscolour - liquid-fixpoint mtl parsec pretty process syb template-haskell text - time unordered-containers vector + base bytestring cereal cmdargs daemons data-default deepseq + directory ghc liquid-fixpoint located-base network pretty process + unix unordered-containers ]; testHaskellDepends = [ base containers directory filepath mtl optparse-applicative process - stm tagged tasty tasty-hunit tasty-rerun transformers + stm tagged tasty tasty-ant-xml tasty-hunit tasty-rerun transformers ]; testSystemDepends = [ z3 ]; - jailbreak = true; homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; + "liquidhaskell-cabal" = callPackage + ({ mkDerivation, base, Cabal, filepath }: + mkDerivation { + pname = "liquidhaskell-cabal"; + version = "0.1.0.0"; + sha256 = "0c13322b6925738ea5bbbbda9ce472e9aa44dd6d8a59c7b1a5dca953d75b848a"; + libraryHaskellDepends = [ base Cabal filepath ]; + homepage = "https://github.com/spinda/liquidhaskell-cabal#readme"; + description = "Liquid Haskell integration for Cabal and stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "lispparser" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -138886,6 +140370,22 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "luis-client" = callPackage + ({ mkDerivation, aeson, base, http-client, lens, text, vector, wreq + }: + mkDerivation { + pname = "luis-client"; + version = "0.0.2"; + sha256 = "9b4e06adf6e636f6a5adef256d2b62bf7453a9e1ac8a7d438aebad2ef79f03c5"; + libraryHaskellDepends = [ + aeson base http-client lens text vector wreq + ]; + jailbreak = true; + homepage = "https://github.com/micxjo/hs-luis-client"; + description = "An unofficial client for the LUIS NLP service"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "luka" = callPackage ({ mkDerivation, air, base, bytestring, libffi, objc }: mkDerivation { @@ -139358,6 +140858,32 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "macbeth-lib" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, conduit + , conduit-extra, containers, directory, either-unwrap, filepath + , FindBin, hspec, MissingH, mtl, network, old-locale, resourcet + , safe, sodium, split, stm, text, time, transformers, wx, wxcore + , yaml + }: + mkDerivation { + pname = "macbeth-lib"; + version = "0.0.12"; + sha256 = "06717de488f6f382c171528c52a7a28f01bde2d48411b3e309c46477a3055de6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base bytestring conduit conduit-extra containers + directory either-unwrap filepath FindBin MissingH mtl network + old-locale resourcet safe sodium split stm text time transformers + wx wxcore yaml + ]; + executableHaskellDepends = [ base stm wx wxcore ]; + testHaskellDepends = [ attoparsec base bytestring hspec ]; + homepage = "http://www.macbeth-ficsclient.com"; + description = "Macbeth - A beautiful and minimalistic FICS client"; + license = "GPL"; + }) {}; + "maccatcher" = callPackage ({ mkDerivation, base, binary, parsec, process }: mkDerivation { @@ -139576,7 +141102,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "machines-io" = callPackage + "machines-io_0_2_0_8" = callPackage ({ mkDerivation, base, bytestring, chunked-data, machines , transformers }: @@ -139590,6 +141116,23 @@ self: { homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "machines-io" = callPackage + ({ mkDerivation, base, bytestring, chunked-data, machines + , transformers + }: + mkDerivation { + pname = "machines-io"; + version = "0.2.0.10"; + sha256 = "11619ece5dda940bef3546bad77fa050a3a97488e0fae8c522a0b702450f1165"; + libraryHaskellDepends = [ + base bytestring chunked-data machines transformers + ]; + homepage = "http://github.com/aloiscochard/machines-io"; + description = "IO utilities for the machines library"; + license = stdenv.lib.licenses.asl20; }) {}; "machines-process_0_2_0_0" = callPackage @@ -139908,7 +141451,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "mainland-pretty" = callPackage + "mainland-pretty_0_4_1_2" = callPackage ({ mkDerivation, base, containers, srcloc, text }: mkDerivation { pname = "mainland-pretty"; @@ -139918,6 +141461,19 @@ self: { homepage = "http://www.cs.drexel.edu/~mainland/"; description = "Pretty printing designed for printing source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mainland-pretty" = callPackage + ({ mkDerivation, base, containers, srcloc, text }: + mkDerivation { + pname = "mainland-pretty"; + version = "0.4.1.3"; + sha256 = "d833485def1f7b9320b76fee7f7cbc1462d6358e87af05aea049ddd6cc7b4640"; + libraryHaskellDepends = [ base containers srcloc text ]; + homepage = "http://www.cs.drexel.edu/~mainland/"; + description = "Pretty printing designed for printing source code"; + license = stdenv.lib.licenses.bsd3; }) {}; "majordomo" = callPackage @@ -140034,7 +141590,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "managed" = callPackage + "managed_1_0_2" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "managed"; @@ -140043,6 +141599,18 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad for managed values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "managed" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "managed"; + version = "1.0.3"; + sha256 = "67e9f15717db54abcd3864d4f20cdcdf709a7f82c087fa77ad0bcb456bb631b2"; + libraryHaskellDepends = [ base transformers ]; + description = "A monad for managed values"; + license = stdenv.lib.licenses.bsd3; }) {}; "manatee" = callPackage @@ -140525,6 +142093,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -140549,6 +142118,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -140574,6 +142144,7 @@ self: { aeson base bytestring QuickCheck raw-strings-qq tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; description = "Library for interfacing with the Mandrill JSON API"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -140756,7 +142327,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manifolds" = callPackage @@ -140775,7 +142346,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "map-syntax" = callPackage @@ -141246,6 +142817,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "matcher" = callPackage + ({ mkDerivation, base, base-prelude, profunctors, success, text + , transformers + }: + mkDerivation { + pname = "matcher"; + version = "0.1.1.3"; + sha256 = "9c9ce11a2d142ef9aa8de080e2d28acd3ccb786109539cf637d988cd69e50ab7"; + libraryHaskellDepends = [ + base base-prelude profunctors success text transformers + ]; + homepage = "https://github.com/sannsyn/matcher"; + description = "A composable abstraction for checking or converting a context value"; + license = stdenv.lib.licenses.mit; + }) {}; + "matchers" = callPackage ({ mkDerivation, base, bytestring, pcre, prednote, text }: mkDerivation { @@ -142571,8 +144158,8 @@ self: { ({ mkDerivation, base, text, time }: mkDerivation { pname = "metadata"; - version = "0.4.2.0"; - sha256 = "1b33c343e12766fb329345a2f687c4348bb8fc36792adc88e41b0510e6ed456a"; + version = "0.4.3.0"; + sha256 = "bfb2da5ff25544a36364e2e1560034ad9bfed0bd76e317567e4a6d3def7bc020"; libraryHaskellDepends = [ base text time ]; homepage = "https://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; @@ -142779,7 +144366,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "microformats2-parser" = callPackage + "microformats2-parser_1_0_1_4" = callPackage ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base , base-compat, blaze-html, blaze-markup, bytestring, containers , data-default, either, errors, hspec @@ -142814,6 +144401,44 @@ self: { homepage = "https://github.com/myfreeweb/microformats2-parser"; description = "A Microformats 2 parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "microformats2-parser" = callPackage + ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base + , base-compat, blaze-html, blaze-markup, bytestring, containers + , data-default, either, errors, hspec + , hspec-expectations-pretty-diff, html-conduit, lens-aeson, mtl + , network, network-uri, options, pcre-heavy, raw-strings-qq, safe + , scotty, streaming-commons, tagsoup, template-haskell, text, time + , transformers, unordered-containers, vector, wai-extra, warp + , xml-lens, xss-sanitize + }: + mkDerivation { + pname = "microformats2-parser"; + version = "1.0.1.5"; + sha256 = "45be8a1f330be4dc435302dae223f80b21e5be388fbca9a8abf8a8489f4938cc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-qq attoparsec base base-compat blaze-markup bytestring + containers data-default either errors html-conduit lens-aeson + network-uri pcre-heavy safe tagsoup text time transformers + unordered-containers vector xml-lens xss-sanitize + ]; + executableHaskellDepends = [ + aeson aeson-pretty base base-compat blaze-html blaze-markup + data-default network network-uri options scotty streaming-commons + text wai-extra warp + ]; + testHaskellDepends = [ + aeson-qq base base-compat bytestring data-default hspec + hspec-expectations-pretty-diff html-conduit mtl network-uri + raw-strings-qq template-haskell text time xml-lens + ]; + homepage = "https://github.com/myfreeweb/microformats2-parser"; + description = "A Microformats 2 parser"; + license = stdenv.lib.licenses.publicDomain; }) {}; "microformats2-types" = callPackage @@ -142900,6 +144525,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/fosskers/microlens-aeson/"; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; @@ -144894,7 +146520,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monad-control" = callPackage + "monad-control_1_0_0_5" = callPackage ({ mkDerivation, base, stm, transformers, transformers-base , transformers-compat }: @@ -144908,6 +146534,23 @@ self: { homepage = "https://github.com/basvandijk/monad-control"; description = "Lift control operations, like exception catching, through monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-control" = callPackage + ({ mkDerivation, base, stm, transformers, transformers-base + , transformers-compat + }: + mkDerivation { + pname = "monad-control"; + version = "1.0.1.0"; + sha256 = "d4b0209c6cb7006fac618e4d8e3743d908f8b21579d6ff72e9f6e758e24301f4"; + libraryHaskellDepends = [ + base stm transformers transformers-base transformers-compat + ]; + homepage = "https://github.com/basvandijk/monad-control"; + description = "Lift control operations, like exception catching, through monad transformers"; + license = stdenv.lib.licenses.bsd3; }) {}; "monad-coroutine_0_8" = callPackage @@ -146267,6 +147910,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "mondo" = callPackage + ({ mkDerivation, aeson, authenticate-oauth, base, bytestring + , containers, hspec, http-client, http-client-tls, mtl, network + , servant, servant-client, servant-server, text, time, timerep + , transformers, unordered-containers, wai, warp + }: + mkDerivation { + pname = "mondo"; + version = "0.3.0.0"; + sha256 = "e66cdefd358c5376b488c2c1aba86d39e77ead5e9e5b739374c2e504e409073b"; + libraryHaskellDepends = [ + aeson authenticate-oauth base bytestring containers http-client + http-client-tls mtl servant servant-client text time timerep + transformers unordered-containers + ]; + testHaskellDepends = [ + base hspec network servant servant-client servant-server time + timerep transformers wai warp + ]; + jailbreak = true; + description = "Haskell bindings for the Mondo API"; + license = stdenv.lib.licenses.mit; + }) {}; + "mongoDB_2_0_3" = callPackage ({ mkDerivation, array, base, binary, bson, bytestring, containers , cryptohash, hashtables, lifted-base, monad-control, mtl, network @@ -147191,7 +148858,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {morfeusz = null;}; - "morte" = callPackage + "morte_1_4_2" = callPackage ({ mkDerivation, alex, array, base, binary, containers, deepseq , Earley, http-client, http-client-tls, managed, microlens , microlens-mtl, optparse-applicative, pipes, system-fileio @@ -147210,11 +148877,13 @@ self: { ]; libraryToolDepends = [ alex ]; executableHaskellDepends = [ base optparse-applicative text ]; + jailbreak = true; description = "A bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "morte_1_5_0" = callPackage + "morte" = callPackage ({ mkDerivation, alex, array, base, binary, containers, deepseq , Earley, http-client, http-client-tls, microlens, microlens-mtl , mtl, optparse-applicative, pipes, QuickCheck, system-fileio @@ -147223,8 +148892,8 @@ self: { }: mkDerivation { pname = "morte"; - version = "1.5.0"; - sha256 = "34b2bc43e743223b1a917432d1ca2d727166f41e9ee3da1ef0a583f452f08581"; + version = "1.5.1"; + sha256 = "51868301687ac66d80597267a36c99622a1a357a88690fadf283974d7936f0f8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -147240,7 +148909,6 @@ self: { ]; description = "A bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mosaico-lib" = callPackage @@ -148035,6 +149703,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; @@ -148407,6 +150076,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "murmur" = callPackage + ({ mkDerivation, authenticate-oauth, base, bytestring, conduit + , conduit-extra, data-default, directory, http-conduit, lens + , optparse-declarative, resourcet, text, transformers + , twitter-conduit, twitter-types-lens + }: + mkDerivation { + pname = "murmur"; + version = "0.0.0.2"; + sha256 = "3553df87f26aca79a10c008ca03fc29a35e5b707003af97ee1296f3e3bde8632"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + authenticate-oauth base bytestring conduit conduit-extra + data-default http-conduit lens resourcet text transformers + twitter-conduit twitter-types-lens + ]; + executableHaskellDepends = [ + base directory optparse-declarative transformers twitter-conduit + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/tokiwoousaka/murmur#readme"; + description = "Simple CUI Twitter Client"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "murmur-hash" = callPackage ({ mkDerivation, base, bytestring }: mkDerivation { @@ -148932,6 +150627,7 @@ self: { async base contravariant foldl managed mmorph pipes pipes-concurrency transformers ]; + jailbreak = true; description = "Model-view-controller"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -152501,8 +154197,8 @@ self: { ({ mkDerivation, base, bytestring, http-conduit, xml }: mkDerivation { pname = "nist-beacon"; - version = "0.1.0.1"; - sha256 = "00aeb52bcda5e0f3cd3519857d96af3697ca45cee87ee3cc7b521a282f4579e4"; + version = "0.2.0.0"; + sha256 = "fe967f892da92b9aae0cfd10be38166b0e5f915760f734df15b1bada95d9722c"; libraryHaskellDepends = [ base bytestring http-conduit xml ]; homepage = "https://github.com/bstamour/haskell-nist-beacon"; description = "Haskell interface to the nist random beacon"; @@ -153623,6 +155319,7 @@ self: { aeson base bytestring lens lens-aeson pipes pipes-aeson pipes-bytestring pipes-http pipes-parse text time wreq ]; + jailbreak = true; homepage = "https://github.com/bts/nylas-hs"; description = "Client for the Nylas API"; license = stdenv.lib.licenses.bsd3; @@ -153829,8 +155526,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.4.5"; - sha256 = "b191dc176c5e17d1749a8cacbe9a6c1e6983a0aa9fe3cfad67002dde2d96094f"; + version = "0.4.10"; + sha256 = "140b33b6a11389da7eae39d4236c884dce9868bc870804bb55e2ab01fa10b859"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -153846,23 +155543,24 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "octane_0_4_9" = callPackage - ({ mkDerivation, base, binary, binary-bits, bytestring, containers - , data-binary-ieee754, deepseq, tasty, tasty-hspec, text + "octane_0_4_16" = callPackage + ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary + , binary-bits, bytestring, containers, data-binary-ieee754, deepseq + , newtype-generics, tasty, tasty-hspec, text }: mkDerivation { pname = "octane"; - version = "0.4.9"; - sha256 = "5ed8ab1abcc8061cebe6e978d9b3de6419bb7a9b042796f17f28c6da36fbf708"; + version = "0.4.16"; + sha256 = "5ee70deae5a19be4c82bf555f8bef20dc41d1328e58e35e13cf3006e6cb91267"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base binary binary-bits bytestring containers data-binary-ieee754 - deepseq text + aeson aeson-pretty autoexporter base binary binary-bits bytestring + containers data-binary-ieee754 deepseq newtype-generics text ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ - base binary binary-bits bytestring containers tasty tasty-hspec + base binary bytestring containers tasty tasty-hspec ]; homepage = "https://github.com/tfausak/octane#readme"; description = "Parse Rocket League replays"; @@ -154033,8 +155731,8 @@ self: { ({ mkDerivation, base, comonad, directory, filepath, parallel }: mkDerivation { pname = "oi"; - version = "0.4.0.1"; - sha256 = "b010502da66dbefca57630b05cfe5827363ec2a79c2da634027213bb2b760e3d"; + version = "0.4.0.2"; + sha256 = "1595ed94430da135de164fd732d807e3ec14fab9086e2ddcd148baad4cefd7a3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155289,13 +156987,14 @@ self: { ({ mkDerivation, base, mtl }: mkDerivation { pname = "operational-alacarte"; - version = "0.1.1"; - sha256 = "123eca69007a2be60987e323facbaa8639b34073507584b753665619012e24ef"; + version = "0.2"; + sha256 = "c42e3e6c4528c0a185a658665fc1033c8f3dd2cd78035f50fc51ba09497da903"; libraryHaskellDepends = [ base mtl ]; testHaskellDepends = [ base ]; homepage = "https://github.com/emilaxelsson/operational-alacarte"; description = "A version of Operational suitable for extensible EDSLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "operational-class" = callPackage @@ -156155,6 +157854,7 @@ self: { aeson base binary HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; @@ -156182,8 +157882,8 @@ self: { }: mkDerivation { pname = "overloaded-records"; - version = "0.3.0.0"; - sha256 = "54cc3bfdf30ceaf6f7dbcf481c68a282bf5ac872c79b4665acfc9209b628a3d4"; + version = "0.4.1.0"; + sha256 = "f97b08e420bfc9d435a77ec391fec1da305000faaaf0c01ad84217de003b5a76"; libraryHaskellDepends = [ base data-default-class template-haskell ]; @@ -156598,6 +158298,7 @@ self: { time-locale-compat transformers transformers-base transformers-compat unordered-containers ]; + jailbreak = true; homepage = "http://github.com/brendanhay/pagerduty"; description = "Client library for PagerDuty Integration and REST APIs"; license = "unknown"; @@ -157146,7 +158847,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc" = callPackage + "pandoc_1_16_0_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq, Diff, directory @@ -157186,12 +158887,15 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; + doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc_1_17_0_2" = callPackage + "pandoc" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq, Diff, directory @@ -157206,8 +158910,8 @@ self: { }: mkDerivation { pname = "pandoc"; - version = "1.17.0.2"; - sha256 = "f099eecf102cf215741da7a993d90f0ab135d6f84cb23f9da77050bd1c9a9d53"; + version = "1.17.0.3"; + sha256 = "7b14e1bcb78a7e2ad1e585f127be7efd20225c9f9b5131d507b376b62cd77e32"; configureFlags = [ "-fhttps" ]; isLibrary = true; isExecutable = true; @@ -157231,10 +158935,10 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc_0_6" = callPackage @@ -157328,6 +159032,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -157360,6 +159065,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -157392,6 +159098,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -157425,6 +159132,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; description = "Supports using pandoc with citeproc"; license = stdenv.lib.licenses.bsd3; @@ -157458,6 +159166,7 @@ self: { aeson base bytestring directory filepath pandoc pandoc-types process temporary text yaml ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/jgm/pandoc-citeproc"; description = "Supports using pandoc with citeproc"; @@ -157523,8 +159232,8 @@ self: { }: mkDerivation { pname = "pandoc-crossref"; - version = "0.2.0.0"; - sha256 = "e7039ced02eaaec80f0814d1d242dd06002d76dc3bed784fd18e50ddec77e3bd"; + version = "0.2.0.1"; + sha256 = "44bdbc38d8d7a743951a2333fb70b33a6497b2d50ccdb5696736fdc5133aef21"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -157756,6 +159465,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq-generics ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; @@ -157773,6 +159483,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers deepseq ghc-prim syb ]; + jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Types for representing a structured document"; license = stdenv.lib.licenses.bsd3; @@ -161837,6 +163548,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -161862,6 +163574,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -161941,6 +163654,7 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; + jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; @@ -162026,8 +163740,8 @@ self: { }: mkDerivation { pname = "persona"; - version = "0.1.0.0"; - sha256 = "d01e98c5fc79ef678c3133c4f0d5c31fc414220194108bd163682e3f470d35f0"; + version = "0.2.0.0"; + sha256 = "bc8a1674a5f5ce96eb0e2ad1fcac8836bad47f13135214025c2e63ca2d908d6b"; libraryHaskellDepends = [ aeson base data-default-class jose lens network-uri text time unordered-containers @@ -162381,8 +164095,8 @@ self: { ({ mkDerivation, base, bytestring, phonenumber }: mkDerivation { pname = "phone-numbers"; - version = "0.0.5"; - sha256 = "54cb314927e399b6a92e1ffbbbd34d52b8fb904f06b1a936b4f708081262f410"; + version = "0.0.6"; + sha256 = "4c7027177d003112fc8d6cfb817810fb17bbf9aba3ccd52dbb56e43f6e531b69"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ phonenumber ]; homepage = "https://github.com/christian-marie/phone-numbers"; @@ -162589,8 +164303,8 @@ self: { }: mkDerivation { pname = "picologic"; - version = "0.1.2"; - sha256 = "449f6ead23c54d1751d66437a06950a5b2a478348c53e6b927ec9a2bb9e9e40f"; + version = "0.2.0"; + sha256 = "eb831c0e385a43966849d75194418ac2823d2fad54cefc0eb29771e04d6c4e03"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -162727,8 +164441,8 @@ self: { }: mkDerivation { pname = "pinboard"; - version = "0.9.3"; - sha256 = "82d5200e79ea18df196a5d8543d32f1dcf7e3ff43579590dcba80e78c712c288"; + version = "0.9.4"; + sha256 = "c4dd355b6f9a0a25d9db2c7c286ccce2b598b0fabe54a79dcb9057401e7bf756"; libraryHaskellDepends = [ aeson base bytestring containers either http-client http-client-tls http-types mtl network old-locale profunctors random text time @@ -162970,6 +164684,7 @@ self: { aeson attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring pipes-parse transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; @@ -162988,6 +164703,7 @@ self: { aeson attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring pipes-parse transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-aeson"; description = "Encode and decode JSON streams using Aeson and Pipes"; license = stdenv.lib.licenses.bsd3; @@ -163242,10 +164958,8 @@ self: { ({ mkDerivation, base, bytestring, cacophony, hlint, pipes }: mkDerivation { pname = "pipes-cacophony"; - version = "0.2.0"; - sha256 = "1e6e6469df152cd540c4cee20cb5e82975f6c069a35931a0ebfc4bd3b5fb53be"; - isLibrary = true; - isExecutable = true; + version = "0.2.1"; + sha256 = "c112376b75e744e15006b81ecd9b60bee10be6a54cca6c2fd6b7f5f7e8d99041"; libraryHaskellDepends = [ base bytestring cacophony pipes ]; testHaskellDepends = [ base hlint ]; homepage = "https://github.com/centromere/pipes-cacophony"; @@ -163489,7 +165203,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pipes-extras" = callPackage + "pipes-extras_1_0_2" = callPackage ({ mkDerivation, base, foldl, HUnit, pipes, test-framework , test-framework-hunit, transformers }: @@ -163501,6 +165215,24 @@ self: { testHaskellDepends = [ base HUnit pipes test-framework test-framework-hunit transformers ]; + jailbreak = true; + description = "Extra utilities for pipes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-extras" = callPackage + ({ mkDerivation, base, foldl, HUnit, pipes, test-framework + , test-framework-hunit, transformers + }: + mkDerivation { + pname = "pipes-extras"; + version = "1.0.3"; + sha256 = "b6113e1371ef9a66df82820e3d6addfa9ebd83b327decdae3acc4ba7c4656344"; + libraryHaskellDepends = [ base foldl pipes transformers ]; + testHaskellDepends = [ + base HUnit pipes test-framework test-framework-hunit transformers + ]; description = "Extra utilities for pipes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -163531,6 +165263,8 @@ self: { pname = "pipes-files"; version = "0.1.1"; sha256 = "a895f464790996ca19195fe605040520660087a36e8c6316fe6647bc23d516aa"; + revision = "1"; + editedCabalFile = "5ac3b0b50d526ba7e9018a8870d0df0e981c0365d1a0650bc84959dd1a80da83"; libraryHaskellDepends = [ attoparsec base bytestring directory exceptions filepath free hierarchy mmorph monad-control mtl pipes pipes-safe posix-paths @@ -163542,7 +165276,6 @@ self: { hspec-expectations mtl pipes pipes-safe process semigroups text transformers unix ]; - jailbreak = true; homepage = "https://github.com/jwiegley/pipes-files"; description = "Fast traversal of directory trees using pipes"; license = stdenv.lib.licenses.bsd3; @@ -163563,7 +165296,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-group" = callPackage + "pipes-group_1_0_3" = callPackage ({ mkDerivation, base, doctest, free, lens-family-core, pipes , pipes-parse, transformers }: @@ -163577,6 +165310,23 @@ self: { testHaskellDepends = [ base doctest lens-family-core ]; description = "Group streams into substreams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-group" = callPackage + ({ mkDerivation, base, doctest, free, lens-family-core, pipes + , pipes-parse, transformers + }: + mkDerivation { + pname = "pipes-group"; + version = "1.0.4"; + sha256 = "08dc7e174f964f9708e5843a1443eb9c2b46e02fa931f4b2a00dcd8d3d7b3fae"; + libraryHaskellDepends = [ + base free pipes pipes-parse transformers + ]; + testHaskellDepends = [ base doctest lens-family-core ]; + description = "Group streams into substreams"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-http" = callPackage @@ -163614,8 +165364,8 @@ self: { ({ mkDerivation, base, containers, pipes }: mkDerivation { pname = "pipes-interleave"; - version = "0.2.1"; - sha256 = "79a85c313d44cf5ce698ce796b2aefeba0d5c856834aa52ae3566292fb4244f7"; + version = "0.2.2"; + sha256 = "31427ee2c164449fa3119dfc08bd6912f0287bcac74c9c811755a9c716c21d4a"; libraryHaskellDepends = [ base containers pipes ]; homepage = "http://github.com/bgamari/pipes-interleave"; description = "Interleave and merge streams of elements"; @@ -163928,6 +165678,28 @@ self: { }) {}; "pipes-transduce" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest + , foldl, free, lens-family-core, pipes, pipes-bytestring + , pipes-concurrency, pipes-group, pipes-parse, pipes-safe + , pipes-text, tasty, tasty-hunit, text, transformers, void + }: + mkDerivation { + pname = "pipes-transduce"; + version = "0.3.3.0"; + sha256 = "af40b285eb0e55f8ba17223890b09b4b9cc9b9774d55c7539d878e1d3d68c49b"; + libraryHaskellDepends = [ + base bifunctors bytestring conceit foldl free lens-family-core + pipes pipes-bytestring pipes-concurrency pipes-group pipes-parse + pipes-safe pipes-text text transformers void + ]; + testHaskellDepends = [ + base doctest foldl free pipes tasty tasty-hunit text + ]; + description = "Interfacing pipes with foldl folds"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "pipes-transduce_0_3_4_0" = callPackage ({ mkDerivation, base, bifunctors, bytestring, conceit, doctest , foldl, free, pipes, pipes-bytestring, pipes-concurrency , pipes-group, pipes-parse, pipes-safe, pipes-text, tasty @@ -163947,6 +165719,7 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-vector" = callPackage @@ -164040,15 +165813,20 @@ self: { }) {}; "pipes-zlib" = callPackage - ({ mkDerivation, base, bytestring, pipes, transformers, zlib - , zlib-bindings + ({ mkDerivation, base, bytestring, HUnit, pipes, QuickCheck + , quickcheck-instances, streaming-commons, tasty, tasty-hunit + , tasty-quickcheck, transformers }: mkDerivation { pname = "pipes-zlib"; - version = "0.4.3"; - sha256 = "ac6a4a6b3f9e5b7962d5913f438478a04ae31cc4fca0eb7d25b4db1a32e03112"; + version = "0.4.4"; + sha256 = "39de93960e739e386990044737de0734a1f4d9c925ca7f085a74dbfb127ebd64"; libraryHaskellDepends = [ - base bytestring pipes transformers zlib zlib-bindings + base bytestring pipes streaming-commons transformers + ]; + testHaskellDepends = [ + base bytestring HUnit pipes QuickCheck quickcheck-instances tasty + tasty-hunit tasty-quickcheck ]; homepage = "https://github.com/k0001/pipes-zlib"; description = "Zlib and GZip compression and decompression for Pipes streams"; @@ -165512,14 +167290,13 @@ self: { }: mkDerivation { pname = "poppler"; - version = "0.13.1"; - sha256 = "525c9fb4748b561e807d07e0b21afef5dd44ded3628aae8c1d28f6336b32f3d6"; + version = "0.14"; + sha256 = "7197ab38013b978f544721fa3cbb3a6851935f04a328934904f3369bd63753ba"; libraryHaskellDepends = [ array base bytestring cairo containers glib gtk mtl ]; libraryPkgconfigDepends = [ gdk2 gdk_pixbuf pango poppler ]; libraryToolDepends = [ gtk2hs-buildtools ]; - jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; @@ -165774,7 +167551,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "post-mess-age" = callPackage + "post-mess-age_0_2_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "post-mess-age"; @@ -165783,6 +167560,18 @@ self: { libraryHaskellDepends = [ base ]; description = "Send messages to a handle concurrently without getting them mixed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "post-mess-age" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "post-mess-age"; + version = "0.2.1.0"; + sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; + libraryHaskellDepends = [ base ]; + description = "Send messages to a handle concurrently without getting them mixed"; + license = stdenv.lib.licenses.bsd3; }) {}; "postcodes" = callPackage @@ -165795,6 +167584,7 @@ self: { homepage = "https://github.com/mattyhall/haskell-postcodes"; description = "A library that gets postcode information from the uk-postcodes.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-binary_0_5_0" = callPackage @@ -166470,43 +168260,43 @@ self: { , case-insensitive, cassava, containers, contravariant, errors , hasql, hasql-pool, hasql-transaction, heredoc, hspec, hspec-wai , hspec-wai-json, HTTP, http-types, interpolatedstring-perl6, jwt - , monad-control, mtl, optparse-applicative, parsec, process - , Ranged-sets, regex-tdfa, safe, scientific, string-conversions - , text, time, transformers, transformers-base, unix - , unordered-containers, vector, wai, wai-cors, wai-extra + , lens, lens-aeson, monad-control, mtl, optparse-applicative + , parsec, process, Ranged-sets, regex-tdfa, safe, scientific + , string-conversions, text, time, transformers, transformers-base + , unix, unordered-containers, vector, wai, wai-cors, wai-extra , wai-middleware-static, warp }: mkDerivation { pname = "postgrest"; - version = "0.3.1.0"; - sha256 = "592a36bac9f78bfea68acd78f50c188223890fc6509c5f239dc05debd4c94191"; + version = "0.3.1.1"; + sha256 = "77e1446c9e123a2977faca95631410f3aee14d62751f766fe4e008b24c55cea4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base bytestring case-insensitive cassava containers contravariant errors hasql hasql-pool hasql-transaction HTTP - http-types interpolatedstring-perl6 jwt mtl optparse-applicative - parsec Ranged-sets regex-tdfa safe scientific string-conversions - text time unordered-containers vector wai wai-cors wai-extra - wai-middleware-static + http-types interpolatedstring-perl6 jwt lens lens-aeson mtl + optparse-applicative parsec Ranged-sets regex-tdfa safe scientific + string-conversions text time unordered-containers vector wai + wai-cors wai-extra wai-middleware-static warp ]; executableHaskellDepends = [ aeson base bytestring case-insensitive cassava containers contravariant errors hasql hasql-pool hasql-transaction HTTP - http-types interpolatedstring-perl6 jwt mtl optparse-applicative - parsec Ranged-sets regex-tdfa safe scientific string-conversions - text time unix unordered-containers vector wai wai-cors wai-extra - wai-middleware-static warp + http-types interpolatedstring-perl6 jwt lens lens-aeson mtl + optparse-applicative parsec Ranged-sets regex-tdfa safe scientific + string-conversions text time unix unordered-containers vector wai + wai-cors wai-extra wai-middleware-static warp ]; testHaskellDepends = [ aeson async base base64-string bytestring case-insensitive cassava containers contravariant errors hasql hasql-pool hasql-transaction heredoc hspec hspec-wai hspec-wai-json HTTP http-types - interpolatedstring-perl6 jwt monad-control mtl optparse-applicative - parsec process Ranged-sets regex-tdfa safe scientific - string-conversions text time transformers transformers-base unix - unordered-containers vector wai wai-cors wai-extra - wai-middleware-static warp + interpolatedstring-perl6 jwt lens lens-aeson monad-control mtl + optparse-applicative parsec process Ranged-sets regex-tdfa safe + scientific string-conversions text time transformers + transformers-base unix unordered-containers vector wai wai-cors + wai-extra wai-middleware-static warp ]; homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; @@ -167175,8 +168965,8 @@ self: { ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "present"; - version = "4.0.0"; - sha256 = "358a493eaa38e27a46f9cf51e762225c004dd6069a9c96645524b409104e203f"; + version = "4.0.2"; + sha256 = "1eae62ac47ca11a2f13d8bebf7930b0f11e1197a5f0d8628bafce279e000600f"; libraryHaskellDepends = [ base template-haskell ]; homepage = "https://github.com/chrisdone/present"; description = "Make presentations for data types"; @@ -167583,6 +169373,17 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "printf-safe" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "printf-safe"; + version = "0.1.0.0"; + sha256 = "492389dad3146efa2ab91fb2518c47c5dc6f94c993098e8e346cc5a77e3b5ed3"; + libraryHaskellDepends = [ base ]; + description = "Type safe interface for Text.Printf"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "printxosd" = callPackage ({ mkDerivation, base, xosd }: mkDerivation { @@ -167957,6 +169758,7 @@ self: { semigroups tasty tasty-hunit text transformers transformers-compat void ]; + doCheck = false; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -168534,14 +170336,14 @@ self: { "prometheus" = callPackage ({ mkDerivation, atomic-primops, base, bytestring, containers - , http-types, mtl, text, transformers, wai, warp + , http-types, text, transformers, wai, warp }: mkDerivation { pname = "prometheus"; - version = "0.2.0"; - sha256 = "6e053e03c30eb591d3e5467058c8fede0b56c961a2d8511cbd4fcf1b99b09c8a"; + version = "0.3.2.1"; + sha256 = "91b3a501a73ac11020184c39eb885bf0f373231b65393fe350f00b2bdb58c417"; libraryHaskellDepends = [ - atomic-primops base bytestring containers http-types mtl text + atomic-primops base bytestring containers http-types text transformers wai warp ]; homepage = "http://github.com/LukeHoersten/prometheus#readme"; @@ -168647,8 +170449,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "2.16.0"; - sha256 = "d3779d3b521f7cbf015352a974f66d85f67a652a7a5d6c4b8819a6e9d77d5ee7"; + version = "3.0.1"; + sha256 = "6a0e12e90f1c962f477e210f3f99216c1d1a7b1ac2459a7122d04ab1e4fc5263"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169994,6 +171796,7 @@ self: { optparse-applicative parsec process time transformers transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; @@ -170034,6 +171837,7 @@ self: { HUnit mtl optparse-applicative parsec process time transformers transformers-compat ]; + jailbreak = true; doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; @@ -170054,8 +171858,8 @@ self: { }: mkDerivation { pname = "purescript"; - version = "0.8.2.0"; - sha256 = "eafb971c6730500e89f8a46e5d7afddb6093240c47ffa0e3523bff2052b9e4b4"; + version = "0.8.3.0"; + sha256 = "3081eb17a8e3a61ef2b41c993b74f29d9e1091a2a7739f3c9c31530b1baebda7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170085,18 +171889,62 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "purescript_0_8_4_0" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base + , base-compat, bower-json, boxes, bytestring, containers, directory + , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec + , hspec-discover, http-types, HUnit, language-javascript + , lifted-base, monad-control, monad-logger, mtl, network + , optparse-applicative, parallel, parsec, pattern-arrows, pipes + , pipes-http, process, regex-tdfa, safe, semigroups, sourcemap + , split, stm, syb, text, time, transformers, transformers-base + , transformers-compat, unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "purescript"; + version = "0.8.4.0"; + sha256 = "cb0f75b7c4a9f926b6e183fe825153abdde6170f5da9c2b0ccef27575e3e264e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-better-errors base base-compat bower-json boxes + bytestring containers directory dlist edit-distance filepath + fsnotify Glob http-types language-javascript lifted-base + monad-control monad-logger mtl parallel parsec pattern-arrows pipes + pipes-http process regex-tdfa safe semigroups sourcemap split stm + syb text time transformers transformers-base transformers-compat + unordered-containers utf8-string vector + ]; + executableHaskellDepends = [ + aeson ansi-wl-pprint base base-compat boxes bytestring containers + directory filepath Glob haskeline monad-logger mtl network + optparse-applicative parsec process split stm text time + transformers transformers-compat utf8-string + ]; + testHaskellDepends = [ + aeson aeson-better-errors base base-compat boxes bytestring + containers directory filepath Glob haskeline hspec hspec-discover + HUnit mtl optparse-applicative parsec process stm text time + transformers transformers-compat utf8-string vector + ]; + jailbreak = true; + homepage = "http://www.purescript.org/"; + description = "PureScript Programming Language Compiler"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "purescript-bridge" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , generic-deriving, HUnit, text + ({ mkDerivation, base, containers, directory, filepath + , generic-deriving, text }: mkDerivation { pname = "purescript-bridge"; - version = "0.3.0.6"; - sha256 = "40f8d1499b86c0bca75f581b163c7eab9a29db144e18049064958f364503f886"; + version = "0.3.1.1"; + sha256 = "8e68c9481f2c4c1d9783ffdae66bb234f6d2e068a116787dd106adcd051027cd"; libraryHaskellDepends = [ base containers directory filepath generic-deriving text ]; - testHaskellDepends = [ base Cabal HUnit ]; description = "Generate PureScript data types from Haskell data types"; license = stdenv.lib.licenses.agpl3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -170229,6 +172077,7 @@ self: { aeson base bytestring hspec http-client http-types mtl QuickCheck text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/pusher-community/pusher-http-haskell"; description = "Haskell client library for the Pusher HTTP API"; license = stdenv.lib.licenses.mit; @@ -171302,6 +173151,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "quiver-binary" = callPackage + ({ mkDerivation, base, binary, bytestring, hspec, QuickCheck + , quiver, quiver-bytestring, transformers + }: + mkDerivation { + pname = "quiver-binary"; + version = "0.1.0.0"; + sha256 = "9a13cd31c0bfe865f4660a00bb86f0b90fa88f1929d91bbd4160c509dd65a04d"; + libraryHaskellDepends = [ + base binary bytestring quiver quiver-bytestring + ]; + testHaskellDepends = [ base hspec QuickCheck quiver transformers ]; + description = "Binary serialisation support for Quivers"; + license = stdenv.lib.licenses.mit; + }) {}; + "quiver-bytestring" = callPackage ({ mkDerivation, base, bytestring, quiver }: mkDerivation { @@ -171354,6 +173219,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "quiver-groups" = callPackage + ({ mkDerivation, base, dlist, hspec, QuickCheck, quiver }: + mkDerivation { + pname = "quiver-groups"; + version = "0.1.0.0"; + sha256 = "a2edef17cf3e860afda832181de10055cbc953f3f3bfe3f30227341497fe9104"; + libraryHaskellDepends = [ base dlist quiver ]; + testHaskellDepends = [ base hspec QuickCheck quiver ]; + description = "Group and chunk values within a Quiver"; + license = stdenv.lib.licenses.mit; + }) {}; + "quiver-http" = callPackage ({ mkDerivation, base, bytestring, http-client, http-client-tls , quiver @@ -171372,6 +173249,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "quiver-interleave" = callPackage + ({ mkDerivation, base, hspec, QuickCheck, quiver }: + mkDerivation { + pname = "quiver-interleave"; + version = "0.1.0.0"; + sha256 = "68d5387600de2525002fa4470586c7621372acfea95f3446562c179975334439"; + libraryHaskellDepends = [ base quiver ]; + testHaskellDepends = [ base hspec QuickCheck quiver ]; + description = "Interleave values from multiple Quivers"; + license = stdenv.lib.licenses.mit; + }) {}; + "quoridor-hs" = callPackage ({ mkDerivation, ansi-terminal, async, base, bytestring, containers , directory, dlist, exceptions, filepath, hex, HUnit, mtl, network @@ -171470,8 +173359,8 @@ self: { }: mkDerivation { pname = "radium"; - version = "0.5"; - sha256 = "17572031f5bf539dc9c73670f06375c797262e233a553ca0c008d12c8fef0aee"; + version = "0.6"; + sha256 = "cc03e011817649426e527cb35f31b2daf7c2f8ab90c281d308dadddfd80f8500"; libraryHaskellDepends = [ base containers parsec ]; testHaskellDepends = [ base Cabal containers hspec parsec QuickCheck @@ -172338,8 +174227,8 @@ self: { }: mkDerivation { pname = "rasterific-svg"; - version = "0.3"; - sha256 = "909c07e2db1ecd9f67aaa4728386d7b17932e53f3c68c7afef45726142eb9425"; + version = "0.3.1.1"; + sha256 = "4383c837b6157d91007bdea63464ff15ab901672aa69ee4d53bd8164a11296b2"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172660,8 +174549,8 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.5"; - sha256 = "8860c51eae2ffa297ac9cd44758d4c99351cc59823945446708c9aa9d86e689e"; + version = "1.0.7"; + sha256 = "3d93ffdffbf966f208001be1e7f0b3b0275f7b2f5634bfee566cb2add589be33"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -172692,6 +174581,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "react-tutorial-haskell-server" = callPackage + ({ mkDerivation, aeson, aeson-pretty, base, bytestring, scotty + , time, transformers + }: + mkDerivation { + pname = "react-tutorial-haskell-server"; + version = "1.0.0"; + sha256 = "0d7c7addb46114ea0e3c19b6f85b630143036f2bcd7a6fdc911335d1789cd6ba"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson aeson-pretty base bytestring scotty time transformers + ]; + description = "react-tutorial web server"; + license = stdenv.lib.licenses.agpl3; + }) {}; + "reaction-logic" = callPackage ({ mkDerivation, base, mtl, QuickCheck }: mkDerivation { @@ -173405,7 +175311,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "redis-io" = callPackage + "redis-io_0_5_2" = callPackage ({ mkDerivation, async, attoparsec, auto-update, base, bytestring , bytestring-conversion, containers, exceptions, iproute , monad-control, mtl, network, operational, redis-resp @@ -173426,10 +175332,39 @@ self: { async base bytestring bytestring-conversion containers redis-resp tasty tasty-hunit tinylog transformers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/twittner/redis-io/"; description = "Yet another redis client"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "redis-io" = callPackage + ({ mkDerivation, async, attoparsec, auto-update, base, bytestring + , bytestring-conversion, containers, exceptions, iproute + , monad-control, mtl, network, operational, redis-resp + , resource-pool, semigroups, stm, tasty, tasty-hunit, time, tinylog + , transformers, transformers-base + }: + mkDerivation { + pname = "redis-io"; + version = "0.7.0"; + sha256 = "1f68cb184f29fd4dc27b7034ee6dd2c53a952fbda1084ba25afd83952518e619"; + libraryHaskellDepends = [ + attoparsec auto-update base bytestring containers exceptions + iproute monad-control mtl network operational redis-resp + resource-pool semigroups stm time tinylog transformers + transformers-base + ]; + testHaskellDepends = [ + async base bytestring bytestring-conversion containers redis-resp + tasty tasty-hunit tinylog transformers + ]; + doCheck = false; + homepage = "https://gitlab.com/twittner/redis-io/"; + description = "Yet another redis client"; + license = stdenv.lib.licenses.mpl20; }) {}; "redis-job-queue" = callPackage @@ -173443,7 +175378,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "redis-resp" = callPackage + "redis-resp_0_3_2" = callPackage ({ mkDerivation, attoparsec, base, bytestring , bytestring-conversion, containers, dlist, double-conversion , operational, semigroups, split, transformers @@ -173461,9 +175396,10 @@ self: { homepage = "https://github.com/twittner/redis-resp/"; description = "REdis Serialization Protocol (RESP) implementation"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "redis-resp_0_4_0" = callPackage + "redis-resp" = callPackage ({ mkDerivation, attoparsec, base, bytestring , bytestring-conversion, containers, dlist, double-conversion , operational, semigroups, split, transformers @@ -173479,7 +175415,6 @@ self: { homepage = "https://gitlab.com/twittner/redis-resp/"; description = "REdis Serialization Protocol (RESP) implementation"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "redis-simple" = callPackage @@ -174006,6 +175941,7 @@ self: { ref-tf reflex safe semigroups text these time transformers unix webkitgtk3 webkitgtk3-javascriptcore ]; + jailbreak = true; description = "Functional Reactive Web Apps with Reflex"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; @@ -174025,6 +175961,7 @@ self: { http-types lens mtl random readable reflex reflex-dom safe string-conv text time transformers ]; + jailbreak = true; homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; @@ -174042,6 +175979,7 @@ self: { libraryHaskellDepends = [ base dependent-sum gloss mtl reflex transformers ]; + jailbreak = true; homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; @@ -174622,6 +176560,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tre;}; + "regex-type" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "regex-type"; + version = "0.1.0.0"; + sha256 = "fb19df907226e8b8c04110bb983c40028ebf9cecd33a46cf333e5de785a6fc0a"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/kcsongor/regex-type"; + description = "Type-level regular expressions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "regex-xmlschema" = callPackage ({ mkDerivation, base, haskell98, parsec }: mkDerivation { @@ -174814,6 +176764,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "register-machine-typelevel" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "register-machine-typelevel"; + version = "0.1.0.0"; + sha256 = "5232f3539da39675ac7bf0de7848748ee9503558cf7afe017449573db1be5b7f"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/kcsongor/register-machine-type"; + description = "A computationally universal register machine implementation at the type-level"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "regress" = callPackage ({ mkDerivation, ad, base, vector }: mkDerivation { @@ -174934,14 +176896,13 @@ self: { }: mkDerivation { pname = "rei"; - version = "0.3.4.0"; - sha256 = "df67570d3078ecb170a470e23c8f267b19c339b64dfe621e8f54f33b4df725ca"; + version = "0.3.5.1"; + sha256 = "f173c5574f8d81b9451add7f84c032f17283747e1b531cecaca4f9e470b5ad8f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ attoparsec base bytestring containers directory regex-tdfa split ]; - jailbreak = true; homepage = "https://github.com/kerkomen/rei"; description = "Process lists easily"; license = stdenv.lib.licenses.mit; @@ -175078,13 +177039,16 @@ self: { }) {}; "relational-record" = callPackage - ({ mkDerivation, base, relational-query, relational-query-HDBC }: + ({ mkDerivation, base, persistable-types-HDBC-pg, relational-query + , relational-query-HDBC + }: mkDerivation { pname = "relational-record"; - version = "0.1.2.0"; - sha256 = "c6425751ec48c90e660f54c09330dce38b332a9c4b8eef0f9ec6c647961f8b01"; + version = "0.1.3.0"; + sha256 = "7f7cf98fce68186028315dade3bf33e8b4bfb57ad1af9c8397e1bd8a1b88e282"; libraryHaskellDepends = [ - base relational-query relational-query-HDBC + base persistable-types-HDBC-pg relational-query + relational-query-HDBC ]; homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Meta package of Relational Record"; @@ -176803,6 +178767,7 @@ self: { base bytestring HUnit mtl test-framework test-framework-hunit transformers transformers-compat unordered-containers ]; + jailbreak = true; description = "Rest API library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -177719,6 +179684,7 @@ self: { ]; executableHaskellDepends = [ attoparsec base text ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.1"; @@ -178096,6 +180062,17 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "reverse-arguments" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "reverse-arguments"; + version = "0.1.0.0"; + sha256 = "f1d7866c908a728d22d9f61daf97a0ee16dd0e49866e1c60f6e0e34c8af92d39"; + libraryHaskellDepends = [ base ]; + description = "Reverse the arguments of arbitrary functions"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "reverse-geocoding" = callPackage ({ mkDerivation, aeson, base, iso3166-country-codes, lens , lens-aeson, text, wreq @@ -178109,6 +180086,7 @@ self: { libraryHaskellDepends = [ aeson base iso3166-country-codes lens lens-aeson text wreq ]; + jailbreak = true; homepage = "https://github.com/jcristovao/reverse-geocoding"; description = "Simple reverse geocoding using OpenStreeMap"; license = stdenv.lib.licenses.bsd3; @@ -179394,17 +181372,21 @@ self: { "rtcm" = callPackage ({ mkDerivation, array, base, basic-prelude, binary, binary-bits - , bytestring, lens, tasty, tasty-hunit, template-haskell, word24 + , bytestring, lens, random, tasty, tasty-hunit, tasty-quickcheck + , template-haskell, word24 }: mkDerivation { pname = "rtcm"; - version = "0.1.3"; - sha256 = "8ee905a36562c93b0bd60d799eb85d59795c775497411120324fa104b13943ab"; + version = "0.1.4"; + sha256 = "9f4343199636b5509c71c982f8d8be39eaadcdac0fb63b86323590c66ef43a03"; libraryHaskellDepends = [ array base basic-prelude binary binary-bits bytestring lens template-haskell word24 ]; - testHaskellDepends = [ base basic-prelude tasty tasty-hunit ]; + testHaskellDepends = [ + base basic-prelude binary binary-bits bytestring lens random tasty + tasty-hunit tasty-quickcheck word24 + ]; homepage = "http://github.com/swift-nav/librtcm"; description = "RTCM Library"; license = stdenv.lib.licenses.bsd3; @@ -179732,10 +181714,9 @@ self: { ({ mkDerivation, base, mtl, transformers }: mkDerivation { pname = "safe-access"; - version = "0.2.1.1"; - sha256 = "e803e2cd23dcee8b222b1fdece54a3c7cf3c67c7b0d26855bd1a601a9197325e"; + version = "0.2.1.2"; + sha256 = "39d0dbfdcd0393aeba886b48df3b098442fac37a0328d26ff1ed191cac9c4345"; libraryHaskellDepends = [ base mtl transformers ]; - jailbreak = true; homepage = "http://hub.darcs.net/thoferon/safe-access"; description = "A simple environment to control access to data"; license = stdenv.lib.licenses.bsd3; @@ -180925,6 +182906,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "scanner" = callPackage + ({ mkDerivation, base, bytestring, hspec }: + mkDerivation { + pname = "scanner"; + version = "0.2"; + sha256 = "3a020d68a0372a5211c72e55eeb299738ea608d17184bc68f74d31ebe667a5e9"; + libraryHaskellDepends = [ base bytestring ]; + testHaskellDepends = [ base bytestring hspec ]; + homepage = "https://github.com/Yuras/scanner"; + description = "Fast non-backtracking incremental combinator parsing for bytestrings"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "scanner-attoparsec" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, hspec, scanner }: + mkDerivation { + pname = "scanner-attoparsec"; + version = "0.1"; + sha256 = "b1affc0bd313d13e990e7048b8c681bacd3d71b0a56af7fbbe8bc3832b556cf4"; + libraryHaskellDepends = [ attoparsec base scanner ]; + testHaskellDepends = [ attoparsec base bytestring hspec scanner ]; + homepage = "https://github.com/Yuras/scanner-attoparsec"; + description = "Inject attoparsec parser with backtracking into non-backtracking scanner"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "scat" = callPackage ({ mkDerivation, ansi-terminal, base, bytestring, mtl , optparse-applicative, scrypt, vector @@ -181652,6 +183659,7 @@ self: { async base data-default-class directory hspec hspec-wai http-types lifted-base network text wai ]; + jailbreak = true; homepage = "https://github.com/scotty-web/scotty"; description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; license = stdenv.lib.licenses.bsd3; @@ -181782,22 +183790,39 @@ self: { }) {}; "scotty-params-parser" = callPackage - ({ mkDerivation, base-prelude, scotty, success, text, transformers - , unordered-containers + ({ mkDerivation, base-prelude, matcher, scotty, success, text + , transformers, unordered-containers }: mkDerivation { pname = "scotty-params-parser"; - version = "0.4"; - sha256 = "e334daaa407a407e4ececb0cd6d79b4037949abbc912d0d96641f007f041b631"; + version = "0.5.1"; + sha256 = "ee6a0c5691f93c6acab2e094755299ba2c4e967edf4d911a7f526e293547d2ae"; libraryHaskellDepends = [ - base-prelude scotty success text transformers unordered-containers + base-prelude matcher scotty success text transformers + unordered-containers ]; - jailbreak = true; homepage = "https://github.com/sannsyn/scotty-params-parser"; description = "HTTP-request's query parameters parser abstraction for \"scotty\""; license = stdenv.lib.licenses.mit; }) {}; + "scotty-resource" = callPackage + ({ mkDerivation, base, containers, http-types, scotty, text + , transformers, wai + }: + mkDerivation { + pname = "scotty-resource"; + version = "0.1.0.0"; + sha256 = "54bb90b0cd35b4a22bbed7af58e1e9297344551badc0ebcc56620ce1bad1c5d5"; + libraryHaskellDepends = [ + base containers http-types scotty text transformers wai + ]; + jailbreak = true; + homepage = "https://github.com/taphu/scotty-resource"; + description = "A Better way of modeling web resources"; + license = stdenv.lib.licenses.asl20; + }) {}; + "scotty-rest" = callPackage ({ mkDerivation, base, base-prelude, bytestring, convertible , data-default-class, hspec, hspec-wai, http-date, http-media @@ -181900,6 +183925,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "scrape-changes" = callPackage + ({ mkDerivation, async, attoparsec, base, bytestring, cron + , directory, email-validate, filepath, hashable, hslogger + , http-client, HUnit, lens, mime-mail, network-uri, QuickCheck + , semigroups, shakespeare, strict, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + , validation, wreq + }: + mkDerivation { + pname = "scrape-changes"; + version = "0.1.0.0"; + sha256 = "6665a3bdabd7225de542b1310494f7cc46199cd24d4795788618f7f39241478a"; + libraryHaskellDepends = [ + async attoparsec base bytestring cron directory email-validate + filepath hashable hslogger http-client lens mime-mail network-uri + semigroups strict text validation wreq + ]; + testHaskellDepends = [ + base cron email-validate hashable HUnit lens QuickCheck semigroups + shakespeare test-framework test-framework-hunit + test-framework-quickcheck2 text validation + ]; + jailbreak = true; + description = "Scrape websites for changes"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "scrobble" = callPackage ({ mkDerivation, base, containers, curl, MissingH, network , network-uri, old-locale, pureMD5, time, url @@ -182129,8 +184181,8 @@ self: { }: mkDerivation { pname = "sdl2-compositor"; - version = "1.2.0.3"; - sha256 = "c2f4ee694f2ee8444b6e2b5af51f0a86f415745181e7734e83dcc129cd655d12"; + version = "1.2.0.4"; + sha256 = "f4e80bef41513080e60c76d1f6d15fe6afe479acb92e9775cbe9e12d7ee15135"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -183058,8 +185110,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "semiring-simple"; - version = "1.0.0.0"; - sha256 = "9567b7fa7d83f7f7d6abf9b0274c7e01e44a6357e2441d5b62e4a5720e57bf86"; + version = "1.0.0.1"; + sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; libraryHaskellDepends = [ base ]; description = "A module for dealing with semirings"; license = stdenv.lib.licenses.bsd3; @@ -183135,6 +185187,8 @@ self: { pname = "sensei"; version = "0.1.0"; sha256 = "fd3c1edc901298173782bf8c65744dd4fb25cdfb9d1012e28a6e5038dc7114ab"; + revision = "1"; + editedCabalFile = "315d7e05f9dbe6eb51d2a1f569f884e66c3edaf12d4973230e47d6c799de2854"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -183536,6 +185590,7 @@ self: { sha256 = "077c210212ff92611b3d8a3578f3ea1f78586c094057ccc5d1dcc3170fcf4dfc"; libraryHaskellDepends = [ base bytestring unix ]; testHaskellDepends = [ base bytestring HUnit ]; + doCheck = false; homepage = "https://github.com/jputcu/serialport"; description = "Cross platform serial port library"; license = stdenv.lib.licenses.bsd3; @@ -183774,7 +185829,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant_0_5" = callPackage + "servant_0_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring , bytestring-conversion, case-insensitive, directory, doctest , filemanip, filepath, hspec, http-api-data, http-media, http-types @@ -183783,10 +185838,8 @@ self: { }: mkDerivation { pname = "servant"; - version = "0.5"; - sha256 = "b83ca161d81c0c62150d000266549fc6b5a09f7ecc15f597b7f0ae8bcc77caf5"; - revision = "1"; - editedCabalFile = "5b79e90dc1c884c4e90041e5a68a0bdf435a2ff93345f5cb38ee01d3f3c5c732"; + version = "0.6"; + sha256 = "6b5d37abfaaab871bc6fe5164d7b55839713883f162b2c551eb078b4dbaa63a4"; libraryHaskellDepends = [ aeson attoparsec base base-compat bytestring bytestring-conversion case-insensitive http-api-data http-media http-types network-uri @@ -183847,7 +185900,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-JuicyPixels" = callPackage + "servant-JuicyPixels_0_3_0_1" = callPackage ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant , servant-server, wai, warp }: @@ -183866,6 +185919,28 @@ self: { homepage = "https://github.com/tvh/servant-JuicyPixels"; description = "Servant support for JuicyPixels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-JuicyPixels" = callPackage + ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant + , servant-server, wai, warp + }: + mkDerivation { + pname = "servant-JuicyPixels"; + version = "0.3.0.2"; + sha256 = "34ed22ef256d7ff3af3fff56484261448928f140b1b4287965619fe6b10b3ebd"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring http-media JuicyPixels servant + ]; + executableHaskellDepends = [ + base JuicyPixels servant servant-server wai warp + ]; + homepage = "https://github.com/tvh/servant-JuicyPixels"; + description = "Servant support for JuicyPixels"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-blaze_0_4_4_6" = callPackage @@ -183893,12 +185968,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-blaze_0_5" = callPackage + "servant-blaze_0_6" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { pname = "servant-blaze"; - version = "0.5"; - sha256 = "d450aa2bbec21208fa9ae7e3e7f799b5447573cf8ba26874a79b109963e0f46c"; + version = "0.6"; + sha256 = "b69560b0169f175e53d73b9cdeb48e8e747ece65d787f9e1a36dbd83a8dd344f"; libraryHaskellDepends = [ base blaze-html http-media servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -183911,8 +185986,8 @@ self: { ({ mkDerivation, base, cassava, http-media, servant, vector }: mkDerivation { pname = "servant-cassava"; - version = "0.5"; - sha256 = "57156e80c8bf4f04fe9fdcc61f3f117f14e9b0966915f3ad1e997ee02b654699"; + version = "0.6"; + sha256 = "ca050cda16220cc8483d0a41e952d6858cad01670b3e6576620a30a824c886d9"; libraryHaskellDepends = [ base cassava http-media servant vector ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -184107,7 +186182,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-client_0_5" = callPackage + "servant-client_0_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, deepseq, exceptions, hspec, http-api-data , http-client, http-client-tls, http-media, http-types, HUnit @@ -184117,8 +186192,8 @@ self: { }: mkDerivation { pname = "servant-client"; - version = "0.5"; - sha256 = "2433324deff198fcc61c5027538f1df27ccf9be341baec3a55940d3c4325f696"; + version = "0.6"; + sha256 = "f55942b5b7f70bdfda88ccc8d3680d86098217cbb0d8befd6946be9597d7c0cd"; libraryHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring exceptions http-api-data http-client http-client-tls http-media http-types @@ -184333,7 +186408,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-docs_0_5" = callPackage + "servant-docs_0_6" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, bytestring , bytestring-conversion, case-insensitive, control-monad-omega , hashable, hspec, http-media, http-types, lens, servant @@ -184341,8 +186416,8 @@ self: { }: mkDerivation { pname = "servant-docs"; - version = "0.5"; - sha256 = "2faa28f837628dcdc13f34ab178abf190fcf04d506eb45be64a47d11246d748a"; + version = "0.6"; + sha256 = "9cdcc0f09a8f0c7a36b35df816dbdf2b856ff6b7105e3bc53d655be46da32bde"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -184439,8 +186514,8 @@ self: { ({ mkDerivation, base, hspec, http-types, lens, servant, text }: mkDerivation { pname = "servant-foreign"; - version = "0.5"; - sha256 = "108d9858820226260b5237b3bb213e29e2c5f3b0d2091e7ef846862997a497a1"; + version = "0.6"; + sha256 = "418a2d4ae181af1f41c0a6fbf04c089f4e37d5b5775996dc25d0a8920b5c4d3a"; libraryHaskellDepends = [ base http-types lens servant text ]; testHaskellDepends = [ base hspec ]; jailbreak = true; @@ -184666,8 +186741,8 @@ self: { }: mkDerivation { pname = "servant-js"; - version = "0.5"; - sha256 = "78a573a81d40ad659ed0c3097a138236ace7e6d7e7d889af64195165ebae0c18"; + version = "0.6"; + sha256 = "8da1c25454b65f0900878677e134dafbc5a55201bdf0c2f9728eff766a75835e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -184692,8 +186767,8 @@ self: { ({ mkDerivation, base, http-media, lucid, servant }: mkDerivation { pname = "servant-lucid"; - version = "0.5"; - sha256 = "87cfb2fb1b4a00e649b0c418ee56a461fe1528f804be442d0e2fc7872dc298f2"; + version = "0.6"; + sha256 = "5488cc1577b1fbc431432b5b1c16a513bfc7e80a849ad0edd2789823895d4883"; libraryHaskellDepends = [ base http-media lucid servant ]; jailbreak = true; homepage = "http://haskell-servant.github.io/"; @@ -184723,15 +186798,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-mock_0_5" = callPackage + "servant-mock_0_6" = callPackage ({ mkDerivation, aeson, base, bytestring, bytestring-conversion , hspec, hspec-wai, http-types, QuickCheck, servant, servant-server , transformers, wai, warp }: mkDerivation { pname = "servant-mock"; - version = "0.5"; - sha256 = "c508bf76282b6e4656d710b64d761c065ad06787388a3bcac2204d99f3f328ca"; + version = "0.6"; + sha256 = "98082a96e654e9050f54d998d9af68b3ae61f20ad9224a9c5ba95e60ec964227"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -185081,6 +187156,7 @@ self: { network parsec QuickCheck servant string-conversions temporary text transformers wai wai-extra warp ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs and serving them"; license = stdenv.lib.licenses.bsd3; @@ -185118,7 +187194,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "servant-server_0_5" = callPackage + "servant-server_0_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat , base64-bytestring, bytestring, bytestring-conversion, containers , directory, doctest, exceptions, filemanip, filepath, hspec @@ -185130,8 +187206,8 @@ self: { }: mkDerivation { pname = "servant-server"; - version = "0.5"; - sha256 = "c7a7485edca3029e75b49470f1dfc00d40616352c8a89c3917c6ee76d4326d46"; + version = "0.6"; + sha256 = "1cdeb903f8d21b45a45c0008c04e18bcbebfb8e0706a20045daf300f65cf911d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -185142,9 +187218,9 @@ self: { ]; executableHaskellDepends = [ aeson base servant text wai warp ]; testHaskellDepends = [ - aeson base bytestring bytestring-conversion directory doctest - exceptions filemanip filepath hspec hspec-wai http-types mtl - network parsec QuickCheck safe servant should-not-typecheck + aeson base base-compat bytestring bytestring-conversion directory + doctest exceptions filemanip filepath hspec hspec-wai http-types + mtl network parsec QuickCheck safe servant should-not-typecheck string-conversions temporary text transformers transformers-compat wai wai-extra warp ]; @@ -185235,8 +187311,8 @@ self: { pname = "servant-yaml"; version = "0.1.0.0"; sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "4"; - editedCabalFile = "7384ce42808b7df6200f48299a55524e1793072a33529b433eef0113319fd742"; + revision = "5"; + editedCabalFile = "49eac863eece8a51ed250931103972dae2bf1551a4d6cb5d55c5d4ae65cb24b3"; libraryHaskellDepends = [ base bytestring http-media servant yaml ]; @@ -186695,7 +188771,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "shakespeare" = callPackage + "shakespeare_2_0_7" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec , process, scientific, template-haskell, text, time, transformers @@ -186720,6 +188796,33 @@ self: { homepage = "http://www.yesodweb.com/book/shakespearean-templates"; description = "A toolkit for making compile-time interpolated templates"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ psibi ]; + }) {}; + + "shakespeare" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , containers, directory, exceptions, ghc-prim, hspec, HUnit, parsec + , process, scientific, template-haskell, text, time, transformers + , unordered-containers, vector + }: + mkDerivation { + pname = "shakespeare"; + version = "2.0.8"; + sha256 = "d312757348fe94db091acc32eb4e87c07882c5375d884d082c50dced0a08bae3"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim parsec process scientific template-haskell text + time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring containers directory + exceptions ghc-prim hspec HUnit parsec process template-haskell + text time transformers + ]; + homepage = "http://www.yesodweb.com/book/shakespearean-templates"; + description = "A toolkit for making compile-time interpolated templates"; + license = stdenv.lib.licenses.mit; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -188417,6 +190520,7 @@ self: { base bytestring connection containers network old-locale time ]; testHaskellDepends = [ base bytestring hspec HUnit knob ]; + doCheck = false; homepage = "http://github.com/dom96/SimpleIRC"; description = "Simple IRC Library"; license = stdenv.lib.licenses.bsd3; @@ -189048,6 +191152,20 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "skulk" = callPackage + ({ mkDerivation, base, hspec }: + mkDerivation { + pname = "skulk"; + version = "0.1.0.0"; + sha256 = "c7442785a7211084928a4bc6ab2612bab96676d6e979b0d3debc6c8c13f8dd44"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/geekyfox/skulk"; + description = "Eclectic collection of utility functions"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "skype4hs" = callPackage ({ mkDerivation, attoparsec, base, bytestring, lifted-base , monad-control, mtl, stm, text, time, transformers-base, word8 @@ -189391,7 +191509,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slug" = callPackage + "slug_0_1_2" = callPackage ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent , QuickCheck, test-framework, test-framework-quickcheck2, text }: @@ -189409,6 +191527,27 @@ self: { homepage = "https://github.com/mrkkrp/slug"; description = "Type-safe slugs for Yesod ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "slug" = callPackage + ({ mkDerivation, aeson, base, exceptions, path-pieces, persistent + , QuickCheck, test-framework, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "slug"; + version = "0.1.3"; + sha256 = "4258c62509ae22823411d22e598cb56ca39236ed28a0a403cf7f8de47c66bce0"; + libraryHaskellDepends = [ + aeson base exceptions path-pieces persistent text + ]; + testHaskellDepends = [ + base exceptions path-pieces QuickCheck test-framework + test-framework-quickcheck2 text + ]; + homepage = "https://github.com/mrkkrp/slug"; + description = "Type-safe slugs for Yesod ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "smallarray" = callPackage @@ -189668,6 +191807,7 @@ self: { version = "0.4.1"; sha256 = "f29484ce5a765334798b1107be91b4ef555f1e67a81bd3eb1049a91eec9e6e2e"; libraryHaskellDepends = [ aeson base linear text vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/smoothie"; description = "Smooth curves via several interpolation modes"; license = stdenv.lib.licenses.bsd3; @@ -189681,6 +191821,7 @@ self: { version = "0.4.2.1"; sha256 = "9b3dcba5880be61a4ebbd895ec711a9d137e6a246f55ee1575170c4e413ebade"; libraryHaskellDepends = [ aeson base linear text vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/smoothie"; description = "Smooth curves via several interpolation modes"; license = stdenv.lib.licenses.bsd3; @@ -190419,6 +192560,7 @@ self: { base bytestring containers QuickCheck snap-core tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -190895,6 +193037,7 @@ self: { aeson base bytestring configurator directory fay filepath mtl snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -191882,17 +194025,33 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "socket" = callPackage + "socket_0_5_3_0" = callPackage ({ mkDerivation, async, base, bytestring }: mkDerivation { pname = "socket"; version = "0.5.3.0"; sha256 = "f9d6ff67fa2a725c4184d38ecd635c955fd90ef83bcac02f16dbbb1179f26066"; + revision = "1"; + editedCabalFile = "2dd7a1d3117389e1efa5fa6149925c6bd912116a68c2b2ee1370911b106440fc"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ async base bytestring ]; homepage = "https://github.com/lpeterse/haskell-socket"; description = "A portable and extensible sockets library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "socket" = callPackage + ({ mkDerivation, async, base, bytestring }: + mkDerivation { + pname = "socket"; + version = "0.6.0.0"; + sha256 = "c7b7458ab32259444f4426e2b52057ab925b098090c8458e19b091a027e235e6"; + libraryHaskellDepends = [ base bytestring ]; + testHaskellDepends = [ async base bytestring ]; + homepage = "https://github.com/lpeterse/haskell-socket"; + description = "An extensible socket library"; + license = stdenv.lib.licenses.mit; }) {}; "socket-activation" = callPackage @@ -191919,6 +194078,7 @@ self: { aeson attoparsec base bytestring engine-io mtl stm text transformers unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -191936,6 +194096,7 @@ self: { aeson attoparsec base bytestring engine-io mtl stm text transformers unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -191966,6 +194127,7 @@ self: { libraryHaskellDepends = [ base bytestring socket ]; librarySystemDepends = [ sctp ]; testHaskellDepends = [ base bytestring socket ]; + jailbreak = true; homepage = "https://github.com/lpeterse/haskell-socket-sctp"; description = "STCP socket extensions library"; license = stdenv.lib.licenses.mit; @@ -192079,6 +194241,27 @@ self: { hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; + "solr" = callPackage + ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder + , case-insensitive, contravariant, http-client + , http-response-decoder, json-encoder, json-incremental-decoder + , matcher, profunctors, semigroups, text, transformers, uri-encode + }: + mkDerivation { + pname = "solr"; + version = "0.3"; + sha256 = "7cc47e9998197624cb78adb5bec4dabec4febf11cda876cecac56dd0a4d5ef66"; + libraryHaskellDepends = [ + base-prelude bytestring bytestring-tree-builder case-insensitive + contravariant http-client http-response-decoder json-encoder + json-incremental-decoder matcher profunctors semigroups text + transformers uri-encode + ]; + homepage = "https://github.com/sannsyn/solr"; + description = "A minimal Solr client library"; + license = stdenv.lib.licenses.mit; + }) {}; + "sonic-visualiser" = callPackage ({ mkDerivation, array, base, bytestring, bzlib, containers, mtl , pretty, utf8-string, xml @@ -193343,8 +195526,8 @@ self: { }: mkDerivation { pname = "sqlite"; - version = "0.5.2.2"; - sha256 = "372f9824627bebf2adfbd61314a0ff4b737b1cae0b3b14be66b4094cb8d89ec2"; + version = "0.5.3"; + sha256 = "fe07fb757e8d579e6f9fbfe76659dbb4249ffec234e306848f54a1781df187c2"; libraryHaskellDepends = [ base bytestring directory pretty time utf8-string ]; @@ -194371,6 +196554,7 @@ self: { QuickCheck resourcet retry temporary text transformers unix-compat ]; doHaddock = false; + jailbreak = true; doCheck = false; enableSharedExecutables = false; postInstall = '' @@ -194385,7 +196569,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack" = callPackage + "stack_1_0_2" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, bifunctors, binary , binary-tagged, blaze-builder, byteable, bytestring, Cabal @@ -194452,10 +196636,11 @@ self: { homepage = "http://haskellstack.org"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; - "stack_1_0_4_2" = callPackage + "stack" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, base , base16-bytestring, base64-bytestring, binary, binary-tagged , blaze-builder, byteable, bytestring, Cabal, conduit @@ -194508,7 +196693,7 @@ self: { http-conduit monad-logger path path-io process QuickCheck resourcet retry temporary text transformers unix-compat ]; - jailbreak = true; + doCheck = false; enableSharedExecutables = false; postInstall = '' exe=$out/bin/stack @@ -194518,7 +196703,6 @@ self: { homepage = "http://haskellstack.org"; description = "The Haskell Tool Stack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ simons ]; }) {}; @@ -195998,8 +198182,8 @@ self: { }: mkDerivation { pname = "stitch"; - version = "0.3.2.0"; - sha256 = "672de129731e55e56893ef5f0149f12778ad4fd3db3c2717f9fb578e7c3e16c1"; + version = "0.3.3.0"; + sha256 = "1f27e9ff43da60dd67fe33c7ea927df09c9bfa7968aac0b06f07417eb8cf858e"; libraryHaskellDepends = [ base containers text transformers ]; testHaskellDepends = [ base Cabal hspec text ]; description = "lightweight CSS DSL"; @@ -196664,7 +198848,6 @@ self: { sha256 = "17f488ef8e74a9dc4ad7e8a649abc386d010379a9b63f88d52638a078fbc16f6"; libraryHaskellDepends = [ base clock transformers ]; testHaskellDepends = [ base clock hspec ]; - jailbreak = true; homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; @@ -197830,6 +200013,7 @@ self: { aeson base bytestring mtl text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; @@ -197890,6 +200074,7 @@ self: { aeson base bytestring HsOpenSSL http-streams io-streams stripe-core text ]; + jailbreak = true; doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; @@ -198369,6 +200554,7 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; @@ -198399,6 +200585,37 @@ self: { haskell-src-exts HUnit mtl syb test-framework test-framework-hunit yaml ]; + jailbreak = true; + homepage = "https://github.com/jaspervdj/stylish-haskell"; + description = "Haskell code prettifier"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stylish-haskell_0_5_15_2" = callPackage + ({ mkDerivation, aeson, base, bytestring, cmdargs, containers + , directory, filepath, haskell-src-exts, HUnit, mtl, strict, syb + , test-framework, test-framework-hunit, yaml + }: + mkDerivation { + pname = "stylish-haskell"; + version = "0.5.15.2"; + sha256 = "cf391b582b00aa392a89c15e7542a43ad694661d00500356aa818fac84ebe759"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers directory filepath + haskell-src-exts mtl syb yaml + ]; + executableHaskellDepends = [ + aeson base bytestring cmdargs containers directory filepath + haskell-src-exts mtl strict syb yaml + ]; + testHaskellDepends = [ + aeson base bytestring cmdargs containers directory filepath + haskell-src-exts HUnit mtl syb test-framework test-framework-hunit + yaml + ]; homepage = "https://github.com/jaspervdj/stylish-haskell"; description = "Haskell code prettifier"; license = stdenv.lib.licenses.bsd3; @@ -198412,8 +200629,8 @@ self: { }: mkDerivation { pname = "stylish-haskell"; - version = "0.5.15.2"; - sha256 = "cf391b582b00aa392a89c15e7542a43ad694661d00500356aa818fac84ebe759"; + version = "0.5.16.0"; + sha256 = "dc0c7f3fe9e61838374f60eb91b6f72e6b27d1a8a4971938aed7d48d313812bb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -198901,6 +201118,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "supplemented" = callPackage + ({ mkDerivation, base-prelude, QuickCheck, quickcheck-instances + , rebase, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , transformers + }: + mkDerivation { + pname = "supplemented"; + version = "0.5.0.3"; + sha256 = "6375f692152040e0c9a30af9313bd0332653965b56c75f7de7d2978b9be99a5f"; + libraryHaskellDepends = [ base-prelude transformers ]; + testHaskellDepends = [ + QuickCheck quickcheck-instances rebase tasty tasty-hunit + tasty-quickcheck tasty-smallcheck + ]; + jailbreak = true; + homepage = "https://github.com/nikita-volkov/supplemented"; + description = "Early termination for monads"; + license = stdenv.lib.licenses.mit; + }) {}; + "suspend" = callPackage ({ mkDerivation, base, lifted-base, transformers-base }: mkDerivation { @@ -199009,10 +201246,8 @@ self: { }: mkDerivation { pname = "svg-tree"; - version = "0.4.2"; - sha256 = "9564f33d166af1fa3d611fb0b04fe9cd729dfe23b81a124ab14514085f737b64"; - revision = "1"; - editedCabalFile = "44363aad52e09d592887852965cf0a07fb8f865d72c2832129dc9b39db9353b3"; + version = "0.5.1"; + sha256 = "47da3513c1f124bfef0a59ed84dbf0165c24282f5fda8a8efe03d88fb7dd15f0"; libraryHaskellDepends = [ attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml @@ -199507,17 +201742,19 @@ self: { }) {}; "sym" = callPackage - ({ mkDerivation, array, base, containers, hashable, QuickCheck }: + ({ mkDerivation, array, base, containers, hashable, QuickCheck + , vector + }: mkDerivation { pname = "sym"; - version = "0.11.1"; - sha256 = "7255fa58097cd3d3a057760a8e922b5fabdd8ad2e4070a1d383b1c2f68f01c90"; - libraryHaskellDepends = [ - array base containers hashable QuickCheck - ]; + version = "0.12.0"; + sha256 = "ebf057577a494ad1da24f2076f2ec553b0ad58dd60449922e4dbb2c82a4b0ad8"; + libraryHaskellDepends = [ array base containers hashable vector ]; + testHaskellDepends = [ base hashable QuickCheck ]; homepage = "https://github.com/akc/sym"; description = "Permutations, patterns, and statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym-plot" = callPackage @@ -200588,6 +202825,55 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "t3-client" = callPackage + ({ mkDerivation, base, t3-game, t3-server }: + mkDerivation { + pname = "t3-client"; + version = "0.2.0.0"; + sha256 = "534df19484e22696110cf90cb370d566a19b729dfd96e11ee9c7f3cf3c9bd1de"; + libraryHaskellDepends = [ base t3-game t3-server ]; + homepage = "http://github.com/jxv/t3#readme"; + description = "tic-tac-toe Rexports for client"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "t3-game" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, hspec, mtl + , safe, text, vector + }: + mkDerivation { + pname = "t3-game"; + version = "2.0.0"; + sha256 = "ca57dbb1004d6ca6e00cb1847d91e5ee7c9e8271a4ac271945369444eded68b0"; + libraryHaskellDepends = [ + aeson base bytestring containers mtl safe text vector + ]; + testHaskellDepends = [ aeson base hspec ]; + homepage = "http://github.com/jxv/t3#readme"; + description = "tic-tac-toe core"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "t3-server" = callPackage + ({ mkDerivation, aeson, async, base, bytestring, case-insensitive + , containers, dejafu, either, hashable, hashmap, MonadRandom, mtl + , random, safe, stm, t3-game, text, time, transformers + , unordered-containers, vector, wai + }: + mkDerivation { + pname = "t3-server"; + version = "0.2.0"; + sha256 = "9c1301904e58f18dee1af954ce19215b08231ad894779f88d368b226af5f7788"; + libraryHaskellDepends = [ + aeson async base bytestring case-insensitive containers dejafu + either hashable hashmap MonadRandom mtl random safe stm t3-game + text time transformers unordered-containers vector wai + ]; + jailbreak = true; + description = "tic-tac-toe server"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ta" = callPackage ({ mkDerivation, base, containers, ghc-prim, mtl, Takusen , template-haskell, time @@ -201879,7 +204165,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty-hspec" = callPackage + "tasty-hspec_1_1_2" = callPackage ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random , tagged, tasty, tasty-quickcheck, tasty-smallcheck }: @@ -201894,6 +204180,24 @@ self: { homepage = "https://github.com/mitchellwrosen/tasty-hspec"; description = "Hspec support for the Tasty test framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-hspec" = callPackage + ({ mkDerivation, base, hspec, hspec-core, QuickCheck, random + , tagged, tasty, tasty-quickcheck, tasty-smallcheck + }: + mkDerivation { + pname = "tasty-hspec"; + version = "1.1.3"; + sha256 = "3c597d948cad9c61355a56811533abbad130eb6e4068fd930ab5514c759bfe31"; + libraryHaskellDepends = [ + base hspec hspec-core QuickCheck random tagged tasty + tasty-quickcheck tasty-smallcheck + ]; + homepage = "https://github.com/mitchellwrosen/tasty-hspec"; + description = "Hspec support for the Tasty test framework"; + license = stdenv.lib.licenses.bsd3; }) {}; "tasty-html" = callPackage @@ -202495,6 +204799,7 @@ self: { libraryHaskellDepends = [ aeson base bytestring data-default http-conduit url utf8-string ]; + jailbreak = true; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -203958,7 +206263,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_5" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -203980,6 +206285,56 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "texmath_0_8_5_1" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.5.1"; + sha256 = "dc31828d57eefdc9292e8008c6b22543b2b75d3d51fefdeb29ba318fc8e2aac8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "texmath" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , mtl, network-uri, pandoc-types, parsec, process, split, syb + , temporary, text, utf8-string, xml + }: + mkDerivation { + pname = "texmath"; + version = "0.8.6.1"; + sha256 = "2c3b7650c43c6b43275abffb1769a1fd5948d1a77938b43702c54c2ac1a18de1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers mtl pandoc-types parsec syb xml + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + base bytestring directory filepath process split temporary text + utf8-string xml + ]; + homepage = "http://github.com/jgm/texmath"; + description = "Conversion between formats used to represent mathematics"; + license = "GPL"; }) {}; "texrunner" = callPackage @@ -204610,7 +206965,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "text-show_3_0_1" = callPackage + "text-show_3_2" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -204619,8 +206974,8 @@ self: { }: mkDerivation { pname = "text-show"; - version = "3.0.1"; - sha256 = "39806d6d3098f099ede1a740f6fb55e84144a34442496145063b408262b899ca"; + version = "3.2"; + sha256 = "038073600759d0dafa7f2f2de31dae0df83254850a218e4db9def2e870a9887b"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder containers generic-deriving ghc-prim integer-gmp nats semigroups @@ -204651,8 +207006,8 @@ self: { }: mkDerivation { pname = "text-show-instances"; - version = "3.0.1"; - sha256 = "9164fd2e5ad017923d9e5cdafae6d895a4014009e982346e1a13b3ef8ecb1045"; + version = "3.2"; + sha256 = "8362074b2e81eca771356f43dc01e5647a9518291987da76d75810346d0f1e1e"; libraryHaskellDepends = [ base base-compat bifunctors binary bytestring containers directory haskeline hoopl hpc old-locale old-time pretty random semigroups @@ -205150,7 +207505,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-expand-syns" = callPackage + "th-expand-syns_0_3_0_6" = callPackage ({ mkDerivation, base, containers, syb, template-haskell }: mkDerivation { pname = "th-expand-syns"; @@ -205160,6 +207515,19 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Expands type synonyms in Template Haskell ASTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "th-expand-syns" = callPackage + ({ mkDerivation, base, containers, syb, template-haskell }: + mkDerivation { + pname = "th-expand-syns"; + version = "0.4.0.0"; + sha256 = "59349f1999d72e4d0158de95c1ede5e8787d4c8c743ec4e6a2dbf37f823a5eea"; + libraryHaskellDepends = [ base containers syb template-haskell ]; + testHaskellDepends = [ base template-haskell ]; + description = "Expands type synonyms in Template Haskell ASTs"; + license = stdenv.lib.licenses.bsd3; }) {}; "th-extras" = callPackage @@ -205675,6 +208043,8 @@ self: { pname = "these"; version = "0.6.2.1"; sha256 = "41dd6403ec489deef66632fcae4cd058f636badb162aedff7c8b4930affb99bb"; + revision = "1"; + editedCabalFile = "d4a7e4b298af27e72431b3f361841ce3063dc451500d319f754fd39117fd6907"; libraryHaskellDepends = [ base bifunctors containers data-default-class hashable mtl profunctors semigroupoids semigroups transformers @@ -206141,8 +208511,8 @@ self: { }: mkDerivation { pname = "tidal"; - version = "0.7"; - sha256 = "740fed95c4eacdf2abea0965d81f2d6e747a303868adf0d9472b7413952a5aa1"; + version = "0.7.1"; + sha256 = "fce7b8e13e4fd0b520a68fa9733cf1a29dfaf6cbdeb37be463b3e6d4ed700314"; libraryHaskellDepends = [ base binary bytestring colour containers hashable hmt hosc mersenne-random-pure64 mtl parsec PortMidi process serialport text @@ -206521,8 +208891,8 @@ self: { pname = "time-parsers"; version = "0.1.0.0"; sha256 = "e4eb246c3d97e69785a26ecd91381b4cf80e4d1d4313381ad68861b7e72ccff8"; - revision = "1"; - editedCabalFile = "57e4187d557fd911e5578d0daf7ccc5734bb968820e211c1a3c64c291b423132"; + revision = "2"; + editedCabalFile = "700250081f7f2faaeefc228fe3972df380e5bb774edc33529cdfa839ab8e65d4"; libraryHaskellDepends = [ base parsers template-haskell time ]; testHaskellDepends = [ attoparsec base bifunctors parsec parsers tasty tasty-hunit @@ -206686,14 +209056,28 @@ self: { ({ mkDerivation, base, transformers }: mkDerivation { pname = "timelike"; - version = "0.2.0"; - sha256 = "fd78d2242d1d515556f4dc4e2dccc995e2e05a10d543f04975b886d43bcd2b8c"; + version = "0.2.1"; + sha256 = "31eed7705c7cab996edcf5471fac216127c2289cb6e1948ff841a9a6886d0043"; libraryHaskellDepends = [ base transformers ]; homepage = "http://hub.darcs.net/esz/timelike"; description = "Type classes for types representing time"; license = stdenv.lib.licenses.asl20; }) {}; + "timelike-clock" = callPackage + ({ mkDerivation, base, clock, timelike, transformers }: + mkDerivation { + pname = "timelike-clock"; + version = "0.1.0"; + sha256 = "dee2b3f214f36c6fb3f6d4d0a73954485404b7535965cb59ab1715fb17b9dcae"; + libraryHaskellDepends = [ base clock timelike transformers ]; + jailbreak = true; + homepage = "http://hub.darcs.net/esz/timelike-clock"; + description = "Timelike interface for the clock library"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "timelike-time" = callPackage ({ mkDerivation, base, time, timelike, transformers }: mkDerivation { @@ -207030,8 +209414,8 @@ self: { }: mkDerivation { pname = "tinylog"; - version = "0.13.0"; - sha256 = "9acfff4bb36595c91ad9bdb7b9105fd46b2cb123b3b359c9825c9ea8dbcad637"; + version = "0.14.0"; + sha256 = "322f56178011707436a8e5234a879c5254a468f789ad8db635c98adf752a73ea"; libraryHaskellDepends = [ base bytestring containers double-conversion fast-logger text transformers unix-time @@ -207117,7 +209501,6 @@ self: { aeson attoparsec base errors text unordered-containers vector ]; testHaskellDepends = [ aeson base hspec vector ]; - jailbreak = true; homepage = "https://github.com/llhotka/tiphys"; description = "Navigating and editing JSON data"; license = stdenv.lib.licenses.bsd3; @@ -208841,7 +211224,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "true-name" = callPackage + "true-name_0_1_0_0" = callPackage ({ mkDerivation, base, containers, template-haskell, time }: mkDerivation { pname = "true-name"; @@ -208852,6 +211235,20 @@ self: { homepage = "https://github.com/liyang/true-name"; description = "Template Haskell hack to violate another module's abstractions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "true-name" = callPackage + ({ mkDerivation, base, containers, template-haskell, time }: + mkDerivation { + pname = "true-name"; + version = "0.1.0.1"; + sha256 = "8da46bdcf7f28e6c328bd962bd283658c548d514beab8b190d4f8e2de1799184"; + libraryHaskellDepends = [ base template-haskell ]; + testHaskellDepends = [ base containers template-haskell time ]; + homepage = "https://github.com/liyang/true-name"; + description = "Template Haskell hack to violate module abstractions"; + license = stdenv.lib.licenses.bsd3; }) {}; "truelevel" = callPackage @@ -209108,6 +211505,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -209131,6 +211529,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -209154,6 +211553,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -209177,6 +211577,7 @@ self: { filepath hashable haskeline JuicyPixels mtl parsec process random template-haskell time vector yaml ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -209523,7 +211924,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "turtle_1_2_5" = callPackage ({ mkDerivation, async, base, clock, directory, doctest, foldl , hostname, managed, optional-args, optparse-applicative, process , stm, system-fileio, system-filepath, temporary, text, time @@ -209539,6 +211940,28 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.6"; + sha256 = "947f73268b9b72585c0b6e8943a1eeb51d5683dec01cbdbe9a3f94ef00b91d92"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -209983,7 +212406,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "twitter-conduit" = callPackage + "twitter-conduit_0_1_2" = callPackage ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base , bytestring, case-insensitive, conduit, conduit-extra, containers , data-default, doctest, hlint, hspec, http-client, http-conduit @@ -210015,6 +212438,41 @@ self: { homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-conduit" = callPackage + ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base + , bytestring, case-insensitive, conduit, conduit-extra, containers + , data-default, doctest, hlint, hspec, http-client, http-conduit + , http-types, lens, lens-aeson, monad-control, network-uri + , resourcet, template-haskell, text, time, transformers + , transformers-base, twitter-types, twitter-types-lens + }: + mkDerivation { + pname = "twitter-conduit"; + version = "0.1.3"; + sha256 = "f880730c8e0219db7e24b58db4c21a1a12bd2f5a0cb28fbc72372cec4f139a02"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring conduit + conduit-extra containers data-default http-client http-conduit + http-types lens lens-aeson resourcet template-haskell text time + transformers twitter-types twitter-types-lens + ]; + executableHaskellDepends = [ network-uri ]; + testHaskellDepends = [ + aeson attoparsec authenticate-oauth base bytestring + case-insensitive conduit conduit-extra containers data-default + doctest hlint hspec http-client http-conduit http-types lens + lens-aeson monad-control network-uri resourcet template-haskell + text time transformers transformers-base twitter-types + twitter-types-lens + ]; + homepage = "https://github.com/himura/twitter-conduit"; + description = "Twitter API package with conduit interface and Streaming API support"; + license = stdenv.lib.licenses.bsd3; }) {}; "twitter-enumerator" = callPackage @@ -210075,6 +212533,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -210096,6 +212555,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -210148,7 +212608,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "twitter-types" = callPackage + "twitter-types_0_7_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, derive , directory, filepath, HUnit, old-locale, QuickCheck , template-haskell, test-framework, test-framework-hunit @@ -210171,6 +212631,32 @@ self: { homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-types" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, derive + , directory, filepath, HUnit, old-locale, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th-prime, text, time + , unordered-containers + }: + mkDerivation { + pname = "twitter-types"; + version = "0.7.2.1"; + sha256 = "1b3f39c47749af7dac2fed9905c2c6db976577dfbacc68cc3d531da8f367675b"; + libraryHaskellDepends = [ + aeson base text time unordered-containers + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring derive directory filepath HUnit + old-locale QuickCheck template-haskell test-framework + test-framework-hunit test-framework-quickcheck2 + test-framework-th-prime text time unordered-containers + ]; + homepage = "https://github.com/himura/twitter-types"; + description = "Twitter JSON parser and types"; + license = stdenv.lib.licenses.bsd3; }) {}; "twitter-types-lens_0_7_1" = callPackage @@ -210677,6 +213163,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "type-operators" = callPackage + ({ mkDerivation, base, ghc-prim }: + mkDerivation { + pname = "type-operators"; + version = "0.1.0.0"; + sha256 = "1ed1669c0185a6411eeea83034b6b46f366d57341813006992273b3724c5c2a4"; + libraryHaskellDepends = [ base ghc-prim ]; + homepage = "https://github.com/Shou/type-operators#readme"; + description = "Various type-level operators"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "type-ord" = callPackage ({ mkDerivation, base, template-haskell, type-digits, type-spine }: mkDerivation { @@ -210897,6 +213395,7 @@ self: { homepage = "http://github.com/typed-wire/hs-typed-wire-utils#readme"; description = "Haskell utility library required for code generated by typed-wire compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typedquery" = callPackage @@ -211936,20 +214435,19 @@ self: { "uniform-io" = callPackage ({ mkDerivation, attoparsec, base, bytestring, Cabal - , data-default-class, iproute, network, openssl, transformers - , word8 + , data-default-class, interruptible, iproute, monad-control + , network, openssl, transformers, transformers-base, word8 }: mkDerivation { pname = "uniform-io"; - version = "1.1.1.0"; - sha256 = "a731b2c38d988631519f7e7487ed2372337c834e56f827e41ec672a71dbfa5ed"; + version = "1.2.0.0"; + sha256 = "de961d40fd2478c6718f116e981430608fd3b56bfd1940b313cf2cfa6d126f97"; libraryHaskellDepends = [ - attoparsec base bytestring data-default-class iproute network - transformers word8 + attoparsec base bytestring data-default-class interruptible iproute + monad-control network transformers transformers-base word8 ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ attoparsec base bytestring Cabal ]; - jailbreak = true; homepage = "https://sealgram.com/git/haskell/uniform-io"; description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; @@ -212738,6 +215236,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "unsequential" = callPackage + ({ mkDerivation, attoparsec, base-prelude, dlist, interspersed + , QuickCheck, quickcheck-instances, rebase, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, transformers + }: + mkDerivation { + pname = "unsequential"; + version = "0.5.0.2"; + sha256 = "dfa451ca1b6056c5c42a6581482dd21ceb0de65d8060dfe5119f7406ebc3a52b"; + libraryHaskellDepends = [ base-prelude dlist transformers ]; + testHaskellDepends = [ + attoparsec interspersed QuickCheck quickcheck-instances rebase + tasty tasty-hunit tasty-quickcheck tasty-smallcheck + ]; + jailbreak = true; + homepage = "https://github.com/nikita-volkov/unsequential"; + description = "An extension removing the sequentiality from monads"; + license = stdenv.lib.licenses.mit; + }) {}; + "unusable-pkg" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -213461,6 +215979,7 @@ self: { libraryHaskellDepends = [ aeson base boomerang lens safecopy web-routes web-routes-th ]; + jailbreak = true; homepage = "http://www.github.com/Happstack/userid"; description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; @@ -214212,7 +216731,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "uuid" = callPackage + "uuid_1_3_11" = callPackage ({ mkDerivation, base, binary, bytestring, cryptohash, HUnit , network-info, QuickCheck, random, tasty, tasty-hunit , tasty-quickcheck, text, time, uuid-types @@ -214234,6 +216753,30 @@ self: { homepage = "https://github.com/aslatter/uuid"; description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "uuid" = callPackage + ({ mkDerivation, base, binary, bytestring, cryptonite, HUnit + , memory, network-info, QuickCheck, random, tasty, tasty-hunit + , tasty-quickcheck, text, time, uuid-types + }: + mkDerivation { + pname = "uuid"; + version = "1.3.12"; + sha256 = "ed62f1b3f0b19f0d548655ffef5aff066ad5c430fe11e909a1a7e8fc115a89ee"; + libraryHaskellDepends = [ + base binary bytestring cryptonite memory network-info random text + time uuid-types + ]; + testHaskellDepends = [ + base bytestring HUnit QuickCheck random tasty tasty-hunit + tasty-quickcheck + ]; + doCheck = false; + homepage = "https://github.com/aslatter/uuid"; + description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; + license = stdenv.lib.licenses.bsd3; }) {}; "uuid-aeson" = callPackage @@ -214327,7 +216870,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "uuid-types" = callPackage + "uuid-types_1_0_2" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, hashable, HUnit , QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck, text }: @@ -214346,6 +216889,27 @@ self: { homepage = "https://github.com/aslatter/uuid"; description = "Type definitions for Universally Unique Identifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "uuid-types" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, hashable, HUnit + , QuickCheck, random, tasty, tasty-hunit, tasty-quickcheck, text + }: + mkDerivation { + pname = "uuid-types"; + version = "1.0.3"; + sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; + libraryHaskellDepends = [ + base binary bytestring deepseq hashable random text + ]; + testHaskellDepends = [ + base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck + ]; + doCheck = false; + homepage = "https://github.com/aslatter/uuid"; + description = "Type definitions for Universally Unique Identifiers"; + license = stdenv.lib.licenses.bsd3; }) {}; "uulib" = callPackage @@ -214770,8 +217334,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, time, transformers }: mkDerivation { pname = "varying"; - version = "0.4.0.0"; - sha256 = "9a9c6b0e6f89deb748f72c1b1cf58a291235a0989305be190ebf4ec50d566092"; + version = "0.5.0.0"; + sha256 = "e41ea4ffce851b55736bac29a3aefe505979eb5e7c9d5794e5db892cb39e1cba"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base time transformers ]; @@ -214780,6 +217344,7 @@ self: { homepage = "https://github.com/schell/varying"; description = "FRP through value streams and monadic splines"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vault_0_3_0_3" = callPackage @@ -215510,8 +218075,8 @@ self: { ({ mkDerivation, base, deepseq, vector }: mkDerivation { pname = "vector-sized"; - version = "0.3.0.0"; - sha256 = "d564cd03d553684fe94c09cc076b9b4878886bc0e75e235bc273cb13ce97dbbf"; + version = "0.3.2.0"; + sha256 = "54b5978d92eae76278828476d059e8bb5170f30775380c606bd390eb53e06135"; libraryHaskellDepends = [ base deepseq vector ]; homepage = "http://github.com/expipiplus1/vector-sized#readme"; description = "Size tagged vectors"; @@ -215704,7 +218269,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "vector-th-unbox" = callPackage + "vector-th-unbox_0_2_1_4" = callPackage ({ mkDerivation, base, data-default, template-haskell, vector }: mkDerivation { pname = "vector-th-unbox"; @@ -215714,6 +218279,19 @@ self: { testHaskellDepends = [ base data-default vector ]; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "vector-th-unbox" = callPackage + ({ mkDerivation, base, data-default, template-haskell, vector }: + mkDerivation { + pname = "vector-th-unbox"; + version = "0.2.1.5"; + sha256 = "f5be54bc96d922bb48d3d1b5b127f88477ade064042f9ced4e5f9d74e75b68e0"; + libraryHaskellDepends = [ base template-haskell vector ]; + testHaskellDepends = [ base data-default vector ]; + description = "Deriver for Data.Vector.Unboxed using Template Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "verbalexpressions" = callPackage @@ -215775,7 +218353,6 @@ self: { testHaskellDepends = [ aeson base containers hspec unordered-containers vector verdict ]; - jailbreak = true; description = "JSON instances and JSON Schema for verdict"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -216060,6 +218637,7 @@ self: { homepage = "http://github.com/andrew/vinyl-plus"; description = "Vinyl records utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-utils" = callPackage @@ -216499,8 +219077,8 @@ self: { ({ mkDerivation, base, vector-sized }: mkDerivation { pname = "vulkan"; - version = "1.5.1.0"; - sha256 = "64d795374e75e0db2d42ef58059869dcc33414fdcf9c0436d1f2a7c8b392edb1"; + version = "1.6.0.0"; + sha256 = "0c97af15d2367c02d669f1a5d5236968ed7c1dfe0fb733f0bcac139cb8778972"; libraryHaskellDepends = [ base vector-sized ]; jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; @@ -216693,7 +219271,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai" = callPackage + "wai_3_2_0" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, vault @@ -216710,6 +219288,26 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai" = callPackage + ({ mkDerivation, base, blaze-builder, bytestring + , bytestring-builder, hspec, http-types, network, text + , transformers, vault + }: + mkDerivation { + pname = "wai"; + version = "3.2.0.1"; + sha256 = "d6f39b31383892f8e4f0d75e9ee4f87c6dcca547056be3653d80c49adb6c506f"; + libraryHaskellDepends = [ + base blaze-builder bytestring bytestring-builder http-types network + text transformers vault + ]; + testHaskellDepends = [ base blaze-builder bytestring hspec ]; + homepage = "https://github.com/yesodweb/wai"; + description = "Web Application Interface"; + license = stdenv.lib.licenses.mit; }) {}; "wai-accept-language" = callPackage @@ -216744,8 +219342,8 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.1.0"; - sha256 = "fef1e40473f5d2a3355f8160c88f1626c0c90ca04e0bc5d57a06747384ab5a92"; + version = "3.1.1"; + sha256 = "a8f5389330063d55a7c08ef779a603a70ec4455271d8e3a8dcf2a35f19efe91d"; libraryHaskellDepends = [ array attoparsec attoparsec-conduit base blaze-builder blaze-html bytestring case-insensitive conduit conduit-extra containers @@ -216758,6 +219356,7 @@ self: { base bytestring conduit conduit-extra directory doctest filepath hspec HTTP http-types unix wai warp ]; + jailbreak = true; homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "File/CGI/Rev Proxy App of WAI"; license = stdenv.lib.licenses.bsd3; @@ -217135,7 +219734,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-app-static" = callPackage + "wai-app-static_3_1_4_1" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, cryptohash , cryptohash-conduit, directory, file-embed, filepath, hspec @@ -217169,6 +219768,41 @@ self: { homepage = "http://www.yesodweb.com/book/web-application-interface"; description = "WAI application for static serving"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-app-static" = callPackage + ({ mkDerivation, base, blaze-builder, blaze-html, blaze-markup + , bytestring, containers, cryptonite, directory, file-embed + , filepath, hspec, http-date, http-types, memory, mime-types + , network, old-locale, optparse-applicative, template-haskell + , temporary, text, time, transformers, unix-compat + , unordered-containers, wai, wai-extra, warp, zlib + }: + mkDerivation { + pname = "wai-app-static"; + version = "3.1.5"; + sha256 = "28667193acfcc534752b715b5f5e16fc58edb550d03c0eb2b68e123e41030d4c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base blaze-builder blaze-html blaze-markup bytestring containers + cryptonite directory file-embed filepath http-date http-types + memory mime-types old-locale optparse-applicative template-haskell + text time transformers unix-compat unordered-containers wai + wai-extra warp zlib + ]; + executableHaskellDepends = [ + base bytestring containers directory mime-types text + ]; + testHaskellDepends = [ + base bytestring filepath hspec http-date http-types mime-types + network old-locale temporary text time transformers unix-compat wai + wai-extra zlib + ]; + homepage = "http://www.yesodweb.com/book/web-application-interface"; + description = "WAI application for static serving"; + license = stdenv.lib.licenses.mit; }) {}; "wai-conduit_3_0_0_1" = callPackage @@ -219211,6 +221845,7 @@ self: { testHaskellDepends = [ aeson base hspec hspec-wai hspec-wai-json text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -219237,6 +221872,7 @@ self: { testHaskellDepends = [ aeson base hspec hspec-wai hspec-wai-json text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -219263,6 +221899,7 @@ self: { testHaskellDepends = [ aeson base hspec hspec-wai hspec-wai-json text wai ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -220639,6 +223276,39 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "warp_3_2_6" = callPackage + ({ mkDerivation, array, async, auto-update, base, blaze-builder + , bytestring, bytestring-builder, case-insensitive, containers + , directory, doctest, ghc-prim, hashable, hspec, HTTP, http-date + , http-types, http2, HUnit, iproute, lifted-base, network, process + , QuickCheck, silently, simple-sendfile, stm, streaming-commons + , text, time, transformers, unix, unix-compat, vault, wai, word8 + }: + mkDerivation { + pname = "warp"; + version = "3.2.6"; + sha256 = "4ac0ce7613a5a9c70d2100d8553c790567a4cd2147b994c5f838c2862e6dd810"; + libraryHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers ghc-prim hashable + http-date http-types http2 iproute network simple-sendfile stm + streaming-commons text unix unix-compat vault wai word8 + ]; + testHaskellDepends = [ + array async auto-update base blaze-builder bytestring + bytestring-builder case-insensitive containers directory doctest + ghc-prim hashable hspec HTTP http-date http-types http2 HUnit + iproute lifted-base network process QuickCheck silently + simple-sendfile stm streaming-commons text time transformers unix + unix-compat vault wai word8 + ]; + jailbreak = true; + homepage = "http://github.com/yesodweb/wai"; + description = "A fast, light-weight web server for WAI applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "warp-dynamic" = callPackage ({ mkDerivation, base, data-default, dyre, http-types, wai, warp }: mkDerivation { @@ -221471,8 +224141,8 @@ self: { pname = "web-routing"; version = "0.6.2"; sha256 = "ee20a428110d631f4a0c3607e3e83aaca70cd42a5fc44ba643290d7cedabf1f4"; - revision = "1"; - editedCabalFile = "4aa263239149f8ef52999fdc29c8e90c552081672a4476adedce903248e15524"; + revision = "2"; + editedCabalFile = "3db4d187241069c6244c47a0f14a579800ccb6277409ae69caeb00a5f890b0cd"; libraryHaskellDepends = [ base bytestring primitive text types-compat unordered-containers ]; @@ -221786,6 +224456,7 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -221812,6 +224483,7 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; @@ -222007,8 +224679,8 @@ self: { ({ mkDerivation, base, glib, gtk, gtk2hs-buildtools, webkit }: mkDerivation { pname = "webkit-javascriptcore"; - version = "0.13.1.1"; - sha256 = "c54491817b539f2ae5ff75f082ff18efc68038146553e300462a3a8d808ff730"; + version = "0.13.1.2"; + sha256 = "9645b68c8c4af17002870367f9c3d902154dd56eca8d303b4bcaf3c0504df861"; libraryHaskellDepends = [ base glib gtk webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; @@ -222041,8 +224713,8 @@ self: { }: mkDerivation { pname = "webkitgtk3-javascriptcore"; - version = "0.13.1.1"; - sha256 = "0a1583d61f20c8cf0f84443210711222a9f0dc1d8a99a85944c01f487aaa8b79"; + version = "0.13.1.2"; + sha256 = "974924ce394670a7b60126f78eaad2d9a023acab3dfc2472202f07998a95e1bd"; libraryHaskellDepends = [ base glib gtk3 webkitgtk3 ]; libraryPkgconfigDepends = [ webkit ]; libraryToolDepends = [ gtk2hs-buildtools ]; @@ -222491,8 +225163,8 @@ self: { }: mkDerivation { pname = "werewolf"; - version = "0.4.10.0"; - sha256 = "b5bc8f8b2a52e41e175d9fb0683737d0a3b7f54c473e1227f7751ff56d065bb9"; + version = "0.5.2.0"; + sha256 = "2bf5465e38c31694c24c1d985e514c89b6c503638ecccc9a45b74dae6aac0e57"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -222508,7 +225180,27 @@ self: { text ]; homepage = "https://github.com/hjwylde/werewolf"; - description = "A game engine for running werewolf in a chat client"; + description = "A game engine for playing werewolf within a chat client"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "werewolf-slack" = callPackage + ({ mkDerivation, aeson, base, bytestring, extra, http-client + , http-client-tls, http-types, mtl, optparse-applicative, process + , text, wai, warp, werewolf + }: + mkDerivation { + pname = "werewolf-slack"; + version = "0.3.0.2"; + sha256 = "d086961fcb554c11174d8a40233ddc43ba5d4de92ead79bf238831e3f7f0e9da"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring extra http-client http-client-tls http-types + mtl optparse-applicative process text wai warp werewolf + ]; + homepage = "https://github.com/hjwylde/werewolf-slack"; + description = "A Slack chat client for playing werewolf"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -224568,6 +227260,28 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; + "xdcc" = callPackage + ({ mkDerivation, ascii-progress, base, bytestring, case-insensitive + , concurrent-extra, concurrent-output, errors, iproute, irc-ctcp + , irc-dcc, network, optparse-applicative, path, random, simpleirc + , transformers, unix + }: + mkDerivation { + pname = "xdcc"; + version = "1.0.1"; + sha256 = "f0694a7de64886883dade774e23121a9b2f247cd9efa6d61d7fe0b08fe56ff9d"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ascii-progress base bytestring case-insensitive concurrent-extra + concurrent-output errors iproute irc-ctcp irc-dcc network + optparse-applicative path random simpleirc transformers unix + ]; + homepage = "https://github.com/JanGe/xdcc"; + description = "A wget-like utility for retrieving files from XDCC bots on IRC"; + license = stdenv.lib.licenses.mit; + }) {}; + "xdg-basedir" = callPackage ({ mkDerivation, base, directory, filepath }: mkDerivation { @@ -225061,7 +227775,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_1" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -225091,6 +227805,39 @@ self: { homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xlsx" = callPackage + ({ mkDerivation, base, binary-search, bytestring, conduit + , containers, data-default, digest, HUnit, lens, mtl, old-locale + , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time + , transformers, utf8-string, vector, xml-conduit, xml-types + , zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.1.1"; + sha256 = "0208caa841b4e971ea3ce21f0fbe04d7de8201ca7823144f17a194d864476cb2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens mtl old-locale text time transformers utf8-string + vector xml-conduit xml-types zip-archive zlib + ]; + executableHaskellDepends = [ + base binary-search bytestring conduit containers data-default + digest lens old-locale text time transformers utf8-string vector + xml-conduit xml-types zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit lens smallcheck tasty tasty-hunit + tasty-smallcheck time vector xml-conduit + ]; + homepage = "https://github.com/qrilka/xlsx"; + description = "Simple and incomplete Excel file parser/writer"; + license = stdenv.lib.licenses.mit; }) {}; "xlsx-tabular" = callPackage @@ -225784,10 +228531,9 @@ self: { ({ mkDerivation, base-prelude, free, text }: mkDerivation { pname = "xml-query"; - version = "0.9.0.2"; - sha256 = "008d596529cffde397c55026c10c8a20951272959e2a6e35cfdfef499719ec7b"; + version = "0.9.1"; + sha256 = "985b84f838f91c9e8b8e8027e747e32a4d5c8d97fed58c42b7e832f4f7fd9a9b"; libraryHaskellDepends = [ base-prelude free text ]; - jailbreak = true; homepage = "https://github.com/sannsyn/xml-query"; description = "A parser-agnostic declarative API for querying XML-documents"; license = stdenv.lib.licenses.mit; @@ -225799,13 +228545,12 @@ self: { }: mkDerivation { pname = "xml-query-xml-conduit"; - version = "0.3"; - sha256 = "daa66b0b16961b090d47278e4ad92b1b776080e1c675e414c65640db13118ecb"; + version = "0.3.1"; + sha256 = "78a66a96b043c6ed71e3e01ec474dc868b2b433b826149044f088d8210b0f39e"; libraryHaskellDepends = [ base-prelude text xml-conduit xml-query xml-query-xml-types xml-types ]; - jailbreak = true; homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; @@ -225820,8 +228565,8 @@ self: { }: mkDerivation { pname = "xml-query-xml-types"; - version = "0.4"; - sha256 = "28291319efbb60d4a2889cf1319d3fd5aa63b71ec9f29562ec1fdfa243ce7b81"; + version = "0.4.1"; + sha256 = "090632a66a898114c237776afe84dd02b3f1a1cb2950ea7c0413f95421ba3963"; libraryHaskellDepends = [ base-prelude free html-entities success text transformers xml-query xml-types @@ -225831,7 +228576,6 @@ self: { quickcheck-instances tasty tasty-hunit tasty-quickcheck tasty-smallcheck text xml-conduit xml-query xml-types ]; - jailbreak = true; homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; @@ -227513,8 +230257,8 @@ self: { }: mkDerivation { pname = "yate"; - version = "0.1.0.0"; - sha256 = "20275bafdb52ce74f3c3cecb6cbb8925c7d9f40bea74d6872145ff93df49d85d"; + version = "0.1.0.1"; + sha256 = "8fa4cfd9777a0768d804e7413c3c9f84d12142accdc7b071d70af214b7d33206"; libraryHaskellDepends = [ aeson attoparsec base mtl scientific template-haskell text unordered-containers vector @@ -227522,7 +230266,6 @@ self: { testHaskellDepends = [ attoparsec base hspec mtl unordered-containers vector ]; - jailbreak = true; description = "Yet Another Template Engine"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -227771,7 +230514,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod" = callPackage + "yesod_1_4_2" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring , conduit-extra, data-default, directory, fast-logger , monad-control, monad-logger, safe, semigroups, shakespeare @@ -227793,6 +230536,31 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , conduit-extra, data-default, directory, fast-logger + , monad-control, monad-logger, safe, semigroups, shakespeare + , streaming-commons, template-haskell, text, transformers, unix + , unordered-containers, wai, wai-extra, wai-logger, warp, yaml + , yesod-auth, yesod-core, yesod-form, yesod-persistent + }: + mkDerivation { + pname = "yesod"; + version = "1.4.2.1"; + sha256 = "2d79da30ec62a18205fe95f685cc79eaf21454f84e757857983cc54714367723"; + libraryHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring conduit-extra + data-default directory fast-logger monad-control monad-logger safe + semigroups shakespeare streaming-commons template-haskell text + transformers unix unordered-containers wai wai-extra wai-logger + warp yaml yesod-auth yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-angular" = callPackage @@ -228289,7 +231057,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth" = callPackage + "yesod-auth_1_4_12" = callPackage ({ mkDerivation, aeson, authenticate, base, base16-bytestring , base64-bytestring, binary, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, conduit, conduit-extra @@ -228316,6 +231084,36 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth" = callPackage + ({ mkDerivation, aeson, authenticate, base, base16-bytestring + , base64-bytestring, binary, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, conduit, conduit-extra + , containers, cryptohash, data-default, email-validate, file-embed + , http-client, http-conduit, http-types, lifted-base, mime-mail + , network-uri, nonce, persistent, persistent-template, random + , resourcet, safe, shakespeare, template-haskell, text, time + , transformers, unordered-containers, wai, yesod-core, yesod-form + , yesod-persistent + }: + mkDerivation { + pname = "yesod-auth"; + version = "1.4.13"; + sha256 = "708805d79ded7af86bafa1cd93f75a5a401edef378c0f019f294958cb3f50f56"; + libraryHaskellDepends = [ + aeson authenticate base base16-bytestring base64-bytestring binary + blaze-builder blaze-html blaze-markup byteable bytestring conduit + conduit-extra containers cryptohash data-default email-validate + file-embed http-client http-conduit http-types lifted-base + mime-mail network-uri nonce persistent persistent-template random + resourcet safe shakespeare template-haskell text time transformers + unordered-containers wai yesod-core yesod-form yesod-persistent + ]; + homepage = "http://www.yesodweb.com/"; + description = "Authentication for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-account" = callPackage @@ -228831,6 +231629,7 @@ self: { yesod-auth yesod-core yesod-form ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -228858,6 +231657,7 @@ self: { base containers http-conduit load-env text warp yesod yesod-auth ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -229967,7 +232767,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-bin" = callPackage + "yesod-bin_1_4_17_1" = callPackage ({ mkDerivation, async, attoparsec, base, base64-bytestring , blaze-builder, bytestring, Cabal, conduit, conduit-extra , containers, data-default-class, deepseq, directory, file-embed @@ -229998,6 +232798,40 @@ self: { homepage = "http://www.yesodweb.com/"; description = "The yesod helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-bin" = callPackage + ({ mkDerivation, async, attoparsec, base, base64-bytestring + , blaze-builder, bytestring, Cabal, conduit, conduit-extra + , containers, data-default-class, deepseq, directory, file-embed + , filepath, fsnotify, ghc, ghc-paths, http-client, http-conduit + , http-reverse-proxy, http-types, lifted-base, network + , optparse-applicative, parsec, process, project-template + , resourcet, shakespeare, split, streaming-commons, tar + , template-haskell, text, time, transformers, transformers-compat + , unix-compat, unordered-containers, wai, wai-extra, warp, warp-tls + , yaml, zlib + }: + mkDerivation { + pname = "yesod-bin"; + version = "1.4.18"; + sha256 = "ebcde32856b115cca44de55cfbf79e468f8587c1b8488bc29c32c38ef764086c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async attoparsec base base64-bytestring blaze-builder bytestring + Cabal conduit conduit-extra containers data-default-class deepseq + directory file-embed filepath fsnotify ghc ghc-paths http-client + http-conduit http-reverse-proxy http-types lifted-base network + optparse-applicative parsec process project-template resourcet + shakespeare split streaming-commons tar template-haskell text time + transformers transformers-compat unix-compat unordered-containers + wai wai-extra warp warp-tls yaml zlib + ]; + homepage = "http://www.yesodweb.com/"; + description = "The yesod helper executable"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-bootstrap" = callPackage @@ -230896,7 +233730,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-core" = callPackage + "yesod-core_1_4_19" = callPackage ({ mkDerivation, aeson, async, auto-update, base, blaze-builder , blaze-html, blaze-markup, byteable, bytestring, case-insensitive , cereal, clientsession, conduit, conduit-extra, containers, cookie @@ -230933,6 +233767,46 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-core" = callPackage + ({ mkDerivation, aeson, async, auto-update, base, blaze-builder + , blaze-html, blaze-markup, byteable, bytestring, case-insensitive + , cereal, clientsession, conduit, conduit-extra, containers, cookie + , data-default, deepseq, directory, exceptions, fast-logger, hspec + , hspec-expectations, http-types, HUnit, lifted-base, monad-control + , monad-logger, mtl, mwc-random, network, old-locale, parsec + , path-pieces, primitive, QuickCheck, random, resourcet, safe + , semigroups, shakespeare, streaming-commons, template-haskell + , text, time, transformers, transformers-base, unix-compat + , unordered-containers, vector, wai, wai-extra, wai-logger, warp + , word8 + }: + mkDerivation { + pname = "yesod-core"; + version = "1.4.20"; + sha256 = "a47689a8d681e1083538ea9126601f70db3869a74170901de29250ce3d9c1bda"; + libraryHaskellDepends = [ + aeson auto-update base blaze-builder blaze-html blaze-markup + byteable bytestring case-insensitive cereal clientsession conduit + conduit-extra containers cookie data-default deepseq directory + exceptions fast-logger http-types lifted-base monad-control + monad-logger mtl mwc-random old-locale parsec path-pieces primitive + random resourcet safe semigroups shakespeare template-haskell text + time transformers transformers-base unix-compat + unordered-containers vector wai wai-extra wai-logger warp word8 + ]; + testHaskellDepends = [ + async base blaze-builder bytestring clientsession conduit + conduit-extra containers cookie hspec hspec-expectations http-types + HUnit lifted-base mwc-random network path-pieces QuickCheck random + resourcet shakespeare streaming-commons template-haskell text + transformers wai wai-extra + ]; + homepage = "http://www.yesodweb.com/"; + description = "Creation of type-safe, RESTful web applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-crud" = callPackage @@ -231323,7 +234197,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-form" = callPackage + "yesod-form_1_4_6" = callPackage ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html , blaze-markup, byteable, bytestring, containers, data-default , email-validate, hspec, network-uri, persistent, resourcet @@ -231345,6 +234219,31 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Form handling support for Yesod Web Framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-form" = callPackage + ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, byteable, bytestring, containers, data-default + , email-validate, hspec, network-uri, persistent, resourcet + , semigroups, shakespeare, template-haskell, text, time + , transformers, wai, xss-sanitize, yesod-core, yesod-persistent + }: + mkDerivation { + pname = "yesod-form"; + version = "1.4.7"; + sha256 = "eecbec0755961a4914e8bb41313900ac144e3621fa6c0aa39df19611bf0ebff9"; + libraryHaskellDepends = [ + aeson attoparsec base blaze-builder blaze-html blaze-markup + byteable bytestring containers data-default email-validate + network-uri persistent resourcet semigroups shakespeare + template-haskell text time transformers wai xss-sanitize yesod-core + yesod-persistent + ]; + testHaskellDepends = [ base hspec text time ]; + homepage = "http://www.yesodweb.com/"; + description = "Form handling support for Yesod Web Framework"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-form-json" = callPackage @@ -231606,6 +234505,7 @@ self: { shakespeare texmath text xss-sanitize yesod-core yesod-form ]; testHaskellDepends = [ base blaze-html hspec text ]; + jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-markdown"; description = "Tools for using markdown in a yesod application"; license = stdenv.lib.licenses.gpl2; @@ -231796,7 +234696,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-persistent" = callPackage + "yesod-persistent_1_4_0_3" = callPackage ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent , persistent-sqlite, persistent-template, resource-pool, resourcet , text, transformers, wai-extra, yesod-core @@ -231816,6 +234716,29 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Some helpers for using Persistent from Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-persistent" = callPackage + ({ mkDerivation, base, blaze-builder, conduit, hspec, persistent + , persistent-sqlite, persistent-template, resource-pool, resourcet + , text, transformers, wai-extra, yesod-core + }: + mkDerivation { + pname = "yesod-persistent"; + version = "1.4.0.4"; + sha256 = "840dac8758176dd2b27bbff49a8cdd724b6f99cdf1b723a1eae5d2a18898d25d"; + libraryHaskellDepends = [ + base blaze-builder conduit persistent persistent-template + resource-pool resourcet transformers yesod-core + ]; + testHaskellDepends = [ + base blaze-builder conduit hspec persistent persistent-sqlite text + wai-extra yesod-core + ]; + homepage = "http://www.yesodweb.com/"; + description = "Some helpers for using Persistent from Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-platform" = callPackage @@ -231905,6 +234828,7 @@ self: { executableHaskellDepends = [ aeson base shakespeare text transformers yesod yesod-form ]; + jailbreak = true; homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; @@ -232498,7 +235422,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-table" = callPackage + "yesod-table_2_0_2" = callPackage ({ mkDerivation, base, bytestring, containers, contravariant, text , yesod-core }: @@ -232512,6 +235436,23 @@ self: { homepage = "https://github.com/andrewthad/yesod-table"; description = "HTML tables for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-table" = callPackage + ({ mkDerivation, base, bytestring, containers, contravariant + , semigroups, text, yesod-core + }: + mkDerivation { + pname = "yesod-table"; + version = "2.0.3"; + sha256 = "363a70fe6def770776e1e0e777651c66e4849e4d95e853956a2f2ae1be80189b"; + libraryHaskellDepends = [ + base bytestring containers contravariant semigroups text yesod-core + ]; + homepage = "https://github.com/andrewthad/yesod-table"; + description = "HTML tables for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-tableview" = callPackage @@ -232688,7 +235629,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-test" = callPackage + "yesod-test_1_5_0_1" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html , blaze-markup, bytestring, case-insensitive, containers, cookie , hspec, hspec-core, html-conduit, http-types, HUnit, monad-control @@ -232712,6 +235653,33 @@ self: { homepage = "http://www.yesodweb.com"; description = "integration testing for WAI/Yesod Applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-test" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html + , blaze-markup, bytestring, case-insensitive, containers, cookie + , hspec, hspec-core, html-conduit, http-types, HUnit, lifted-base + , monad-control, network, persistent, text, time, transformers, wai + , wai-extra, xml-conduit, xml-types, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-test"; + version = "1.5.1.0"; + sha256 = "798ae4db3d73e4307d7b44a6911a8165134f1a48828f0d706507a69ce44b3c16"; + libraryHaskellDepends = [ + attoparsec base blaze-builder blaze-html blaze-markup bytestring + case-insensitive containers cookie hspec-core html-conduit + http-types HUnit monad-control network persistent text time + transformers wai wai-extra xml-conduit xml-types yesod-core + ]; + testHaskellDepends = [ + base bytestring containers hspec html-conduit http-types HUnit + lifted-base text wai xml-conduit yesod-core yesod-form + ]; + homepage = "http://www.yesodweb.com"; + description = "integration testing for WAI/Yesod Applications"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-test-json" = callPackage @@ -232963,24 +235931,22 @@ self: { "yet-another-logger" = callPackage ({ mkDerivation, aeson, ansi-terminal, async, base , base-unicode-symbols, bytestring, Cabal, case-insensitive, clock - , configuration-tools, deepseq, either, enclosed-exceptions, lens - , lifted-base, monad-control, mtl, optparse-applicative, stm - , stm-chans, tagged, tasty, tasty-hunit, text, time, trace - , transformers, transformers-base, void + , configuration-tools, deepseq, enclosed-exceptions, exceptions + , lens, lifted-base, monad-control, mtl, optparse-applicative, stm + , stm-chans, tagged, tasty, tasty-hunit, text, time, transformers + , transformers-base, void }: mkDerivation { pname = "yet-another-logger"; - version = "0.2.3.1"; - sha256 = "a0aa32135fa7e55f736a3dbca497edd035e284d6a6e9469a257937a827593ad5"; - revision = "1"; - editedCabalFile = "09206c65c7dfc32bff85a2f2f295561bfcb95067f74d460a0597ce448ed6fb27"; + version = "0.3.0"; + sha256 = "3183c7c38fac53e93a0b352709c57374463efdc5352968019dbbe763aba2a848"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson ansi-terminal async base base-unicode-symbols bytestring - case-insensitive clock configuration-tools deepseq either - enclosed-exceptions lens lifted-base monad-control mtl - optparse-applicative stm stm-chans text time trace transformers + case-insensitive clock configuration-tools deepseq + enclosed-exceptions exceptions lens lifted-base monad-control mtl + optparse-applicative stm stm-chans text time transformers transformers-base void ]; executableHaskellDepends = [ base Cabal ]; @@ -233484,6 +236450,7 @@ self: { HStringTemplate lucid old-locale old-time pandoc parsec scientific split text time unordered-containers yaml ]; + jailbreak = true; homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; @@ -233752,7 +236719,6 @@ self: { executableHaskellDepends = [ base bytestring docopt raw-strings-qq ]; - jailbreak = true; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -233982,6 +236948,8 @@ self: { pname = "zip"; version = "0.1.1"; sha256 = "642a84ab891b4dee722d0c60d46703b6812298fcf56fe11ce803dbeaa3d156dd"; + revision = "1"; + editedCabalFile = "96d5a60a37b746603f6744020811ab38a35ae6be28b75a3fbe8f998c55d7dfd6"; libraryHaskellDepends = [ base bytestring bzlib-conduit case-insensitive cereal conduit conduit-extra containers digest exceptions filepath mtl path @@ -234048,15 +237016,15 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) zip;}; - "zip-archive_0_3" = callPackage + "zip-archive_0_3_0_2" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty , process, text, time, unix, zip, zlib }: mkDerivation { pname = "zip-archive"; - version = "0.3"; - sha256 = "ecbfa2c983094242e17d4dfb7aaabe891345510dd3cfc37743bfc479c794fd8b"; + version = "0.3.0.2"; + sha256 = "c5367d9bc72d3ceace0508800bab08a120e308ea1f4f5c8d5843fcca36b15313"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -234508,10 +237476,10 @@ self: { ({ mkDerivation, base, monads-tf }: mkDerivation { pname = "zot"; - version = "0.0.2"; - sha256 = "03b7086b3a1d4ab4bed9a1781ee7bb59796448f75c3e3b8d7fc02fb8699e8f8b"; + version = "0.0.3"; + sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; revision = "1"; - editedCabalFile = "325ccedb3426935b4a56f838f3d05fc914b72729a2b80d6c804bec5657593a40"; + editedCabalFile = "b543a28082a9568e793d33c7ba5364fa3bdadb09323ce3c293f2f2ed8c5efa11"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base monads-tf ]; @@ -234536,18 +237504,18 @@ self: { }) {}; "ztail" = callPackage - ({ mkDerivation, array, base, containers, filepath, hinotify - , old-locale, process, regex-compat, time, unix + ({ mkDerivation, array, base, bytestring, filepath, hinotify + , process, regex-posix, time, unix, unordered-containers }: mkDerivation { pname = "ztail"; - version = "1.1"; - sha256 = "d81e30a9b2039c9b008482542719eaf1db28c2049335b88a6aaf3de739e4a687"; + version = "1.2"; + sha256 = "13b314c992597118de1bfe0b866ef061237910f77bd35fb258e42d21182a3a4f"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base containers filepath hinotify old-locale process - regex-compat time unix + array base bytestring filepath hinotify process regex-posix time + unix unordered-containers ]; description = "Multi-file, colored, filtered log tailer"; license = stdenv.lib.licenses.bsd3; diff --git a/pkgs/development/interpreters/clisp/default.nix b/pkgs/development/interpreters/clisp/default.nix index 919c3771bc5d..c3d289d2a8d4 100644 --- a/pkgs/development/interpreters/clisp/default.nix +++ b/pkgs/development/interpreters/clisp/default.nix @@ -1,6 +1,27 @@ +# there are the following linking sets: +# - boot (not installed): without modules, only used when building clisp +# - base (default): contains readline and i18n, regexp and syscalls modules +# by default +# - full: contains base plus modules in withModules { stdenv, fetchurl, libsigsegv, gettext, ncurses, readline, libX11 , libXau, libXt, pcre, zlib, libXpm, xproto, libXext, xextproto -, libffi, libffcall, coreutils}: +, libffi, libffcall, coreutils +# build options +, threadSupport ? (stdenv.isi686 || stdenv.isx86_64) +, x11Support ? (stdenv.isi686 || stdenv.isx86_64) +, dllSupport ? true +, withModules ? [ + "bindings/glibc" + "pcre" + "rawsock" + "wildcard" + "zlib" + ] + ++ stdenv.lib.optional x11Support "clx/new-clx" +}: + +assert x11Support -> (libX11 != null && libXau != null && libXt != null + && libXpm != null && xproto != null && libXext != null && xextproto != null); stdenv.mkDerivation rec { v = "2.49"; @@ -13,11 +34,17 @@ stdenv.mkDerivation rec { inherit libsigsegv gettext coreutils; - buildInputs = - [ libsigsegv gettext ncurses readline libX11 libXau - libXt pcre zlib libXpm xproto libXext xextproto libffi - libffcall - ]; + buildInputs = [libsigsegv] + ++ stdenv.lib.optional (gettext != null) gettext + ++ stdenv.lib.optional (ncurses != null) ncurses + ++ stdenv.lib.optional (pcre != null) pcre + ++ stdenv.lib.optional (zlib != null) zlib + ++ stdenv.lib.optional (readline != null) readline + ++ stdenv.lib.optional (libffi != null) libffi + ++ stdenv.lib.optional (libffcall != null) libffcall + ++ stdenv.lib.optionals x11Support [ + libX11 libXau libXt libXpm xproto libXext xextproto + ]; patches = [ ./bits_ipctypes_to_sys_ipc.patch ]; # from Gentoo @@ -34,24 +61,23 @@ stdenv.mkDerivation rec { substituteInPlace modules/bindings/glibc/linux.lisp --replace "(def-c-type __swblk_t)" "" ''; - configureFlags = - '' - --with-readline builddir --with-dynamic-ffi --with-ffcall - --with-module=clx/new-clx --with-module=i18n --with-module=bindings/glibc - --with-module=pcre --with-module=rawsock --with-module=readline - --with-module=syscalls --with-module=wildcard --with-module=zlib - --with-threads=POSIX_THREADS - ''; + configureFlags = "builddir" + + stdenv.lib.optionalString (!dllSupport) " --without-dynamic-modules" + + stdenv.lib.optionalString (readline != null) " --with-readline" + + stdenv.lib.optionalString (libffi != null) " --with-dynamic-ffi" + + stdenv.lib.optionalString (libffcall != null) " --with-ffcall" + + stdenv.lib.concatMapStrings (x: " --with-module=" + x) withModules + + stdenv.lib.optionalString threadSupport " --with-threads=POSIX_THREADS"; preBuild = '' sed -e '/avcall.h/a\#include "config.h"' -i src/foreign.d cd builddir ''; - postInstall = '' - ./clisp-link add "$out"/lib/clisp*/base "$(dirname "$out"/lib/clisp*/base)"/full \ - clx/new-clx bindings/glibc pcre rawsock wildcard zlib - ''; + postInstall = + stdenv.lib.optionalString (withModules != []) + (''./clisp-link add "$out"/lib/clisp*/base "$(dirname "$out"/lib/clisp*/base)"/full'' + + stdenv.lib.concatMapStrings (x: " " + x) withModules); NIX_CFLAGS_COMPILE = "-O0 ${stdenv.lib.optionalString (!stdenv.is64bit) "-falign-functions=4"}"; @@ -61,8 +87,7 @@ stdenv.mkDerivation rec { meta = { description = "ANSI Common Lisp Implementation"; homepage = http://clisp.cons.org; - maintainers = [stdenv.lib.maintainers.raskin]; + maintainers = with stdenv.lib.maintainers; [raskin tohl]; platforms = stdenv.lib.platforms.linux; }; } - diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index 3977b32bad70..f71b557bc25d 100644 --- a/pkgs/development/interpreters/elixir/default.nix +++ b/pkgs/development/interpreters/elixir/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "elixir-${version}"; - version = "1.2.3"; + version = "1.2.4"; src = fetchurl { url = "https://github.com/elixir-lang/elixir/archive/v${version}.tar.gz"; - sha256 = "09s8469830s4070i0m04fxdhqimkdyc5k9jylm5vpfz9l3z4wvl8"; + sha256 = "16759ff84d08b480b7e5499716e663b2fffd26e20cf2863de5613bc7bb05c817"; }; buildInputs = [ erlang rebar makeWrapper ]; @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { b=$(basename $f) if [ $b == "mix" ]; then continue; fi wrapProgram $f \ - --prefix PATH ":" "${erlang}/bin:${coreutils}/bin:${curl}/bin:${bash}/bin" \ + --prefix PATH ":" "${erlang}/bin:${coreutils}/bin:${curl.bin}/bin:${bash}/bin" \ --set CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt done diff --git a/pkgs/development/interpreters/erlang/R17.nix b/pkgs/development/interpreters/erlang/R17.nix index e06b2741d35c..8096ca555a44 100644 --- a/pkgs/development/interpreters/erlang/R17.nix +++ b/pkgs/development/interpreters/erlang/R17.nix @@ -1,5 +1,6 @@ { stdenv, fetchurl, perl, gnum4, ncurses, openssl , gnused, gawk, makeWrapper +, Carbon, Cocoa , odbcSupport ? false, unixODBC ? null , wxSupport ? true, mesa ? null, wxGTK ? null, xorg ? null, wxmac ? null , javacSupport ? false, openjdk ? null @@ -27,9 +28,10 @@ stdenv.mkDerivation rec { buildInputs = [ perl gnum4 ncurses openssl makeWrapper - ] ++ optional wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) - ++ optional odbcSupport [ unixODBC ] - ++ optional javacSupport [ openjdk ]; + ] ++ optionals wxSupport (if stdenv.isDarwin then [ wxmac ] else [ mesa wxGTK xorg.libX11 ]) + ++ optional odbcSupport unixODBC + ++ optional javacSupport openjdk + ++ stdenv.lib.optionals stdenv.isDarwin [ Carbon Cocoa ]; patchPhase = '' sed -i "s@/bin/rm@rm@" lib/odbc/configure erts/configure ''; diff --git a/pkgs/development/interpreters/guile/default.nix b/pkgs/development/interpreters/guile/default.nix index 5e2883f9fb3c..847ae2997b85 100644 --- a/pkgs/development/interpreters/guile/default.nix +++ b/pkgs/development/interpreters/guile/default.nix @@ -51,7 +51,7 @@ sed -i "$out/lib/pkgconfig/guile-2.0.pc" \ -e 's|-lunistring|-L${libunistring}/lib -lunistring|g ; s|^Cflags:\(.*\)$|Cflags: -I${libunistring}/include \1|g ; - s|-lltdl|-L${libtool}/lib -lltdl|g' + s|-lltdl|-L${libtool.lib}/lib -lltdl|g' ''; # make check doesn't work on darwin diff --git a/pkgs/development/interpreters/jython/default.nix b/pkgs/development/interpreters/jython/default.nix index f9d6271e5d86..80661c3feb9e 100644 --- a/pkgs/development/interpreters/jython/default.nix +++ b/pkgs/development/interpreters/jython/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "jython-${version}"; - version = "2.7-rc3"; + version = "2.7.0"; src = fetchurl { url = "http://search.maven.org/remotecontent?filepath=org/python/jython-standalone/${version}/jython-standalone-${version}.jar"; - sha256 = "89fcaf53f1bda6124f836065c1e318e2e853d5a9a1fbf0e96a387c6d38828c78"; + sha256 = "0sk4myh9v7ma7nmzb8khg41na77xfi2zck7876bs7kq18n8nc1nx"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/development/interpreters/love/0.8.nix b/pkgs/development/interpreters/love/0.8.nix index fc1f01cb3730..b12c2c405780 100644 --- a/pkgs/development/interpreters/love/0.8.nix +++ b/pkgs/development/interpreters/love/0.8.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { ''; NIX_CFLAGS_COMPILE = '' - -I${SDL}/include/SDL + -I${SDL.dev}/include/SDL -I${freetype}include/freetype2 ''; diff --git a/pkgs/development/interpreters/lua-5/expat.nix b/pkgs/development/interpreters/lua-5/expat.nix index 0dbbaf8a1614..243abae331a6 100644 --- a/pkgs/development/interpreters/lua-5/expat.nix +++ b/pkgs/development/interpreters/lua-5/expat.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { makeFlagsArray=( LUA_LDIR="$out/share/lua/${lua5.luaversion}" LUA_INC="-I${lua5}/include" LUA_CDIR="$out/lib/lua/${lua5.luaversion}" - EXPAT_INC="-I${expat}/include"); + EXPAT_INC="-I${expat.dev}/include"); ''; meta = { diff --git a/pkgs/development/interpreters/luajit/default.nix b/pkgs/development/interpreters/luajit/default.nix index 8b5da0528523..23ea2fd65528 100644 --- a/pkgs/development/interpreters/luajit/default.nix +++ b/pkgs/development/interpreters/luajit/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { '' + stdenv.lib.optionalString (stdenv.cc.libc != null) '' substituteInPlace Makefile \ - --replace ldconfig ${stdenv.cc.libc}/sbin/ldconfig + --replace ldconfig ${stdenv.cc.libc.bin or stdenv.cc.libc}/bin/ldconfig ''; configurePhase = false; diff --git a/pkgs/development/interpreters/perl/default.nix b/pkgs/development/interpreters/perl/default.nix index 1a92f3aa0072..f8565b9637a5 100644 --- a/pkgs/development/interpreters/perl/default.nix +++ b/pkgs/development/interpreters/perl/default.nix @@ -17,7 +17,8 @@ assert enableThreading -> (stdenv ? glibc); let libc = if stdenv.cc.libc or null != null then stdenv.cc.libc else "/usr"; - + libcInc = libc.dev or libc; + libcLib = libc.out or libc; common = { version, sha256 }: stdenv.mkDerivation rec { name = "perl-${version}"; @@ -26,7 +27,9 @@ let inherit sha256; }; - outputs = [ "out" "man" ]; + # TODO: Add a "dev" output containing the header files. + outputs = [ "out" "man" "docdev" ]; + setOutputFlags = false; patches = [ # Do not look in /usr etc. for dependencies. @@ -35,17 +38,11 @@ let ++ optional stdenv.isSunOS ./ld-shared.patch ++ optional stdenv.isDarwin [ ./cpp-precomp.patch ]; - # There's an annoying bug on sandboxed Darwin in Perl's Cwd.pm where it looks for pwd - # in /bin/pwd and /usr/bin/pwd and then falls back on just "pwd" if it can't get them - # while at the same time erasing the PATH environment variable so it unconditionally - # fails. The code in question is guarded by a check for Mac OS, but the patch below - # doesn't have any runtime effect on other platforms. - postPatch = optional stdenv.isDarwin '' + postPatch = '' pwd="$(type -P pwd)" substituteInPlace dist/PathTools/Cwd.pm \ --replace "/bin/pwd" "$pwd" ''; - sandboxProfile = sandbox.allow "ipc-sysv-sem"; # Build a thread-safe Perl with a dynamic libperls.o. We need the @@ -59,8 +56,8 @@ let "-Uinstallusrbinperl" "-Dinstallstyle=lib/perl5" "-Duseshrplib" - "-Dlocincpth=${libc}/include" - "-Dloclibpth=${libc}/lib" + "-Dlocincpth=${libcInc}/include" + "-Dloclibpth=${libcLib}/lib" ] ++ optional stdenv.isSunOS "-Dcc=gcc" ++ optional enableThreading "-Dusethreads"; @@ -74,10 +71,8 @@ let preConfigure = '' configureFlags="$configureFlags -Dprefix=$out -Dman1dir=$out/share/man/man1 -Dman3dir=$out/share/man/man3" - - ${optionalString stdenv.isArm '' - configureFlagsArray=(-Dldflags="-lm -lrt") - ''} + '' + optionalString stdenv.isArm '' + configureFlagsArray=(-Dldflags="-lm -lrt") '' + optionalString stdenv.isDarwin '' substituteInPlace hints/darwin.sh --replace "env MACOSX_DEPLOYMENT_TARGET=10.3" "" '' + optionalString (!enableThreading) '' @@ -91,18 +86,26 @@ let substituteInPlace dist/PathTools/Cwd.pm --replace "'/bin/pwd'" "'$(type -tP pwd)'" ''; - # Inspired by nuke-references, which I can't depend on because it uses perl. Perhaps it should just use sed :) - postInstall = '' - self=$(echo $out | sed -n "s|^$NIX_STORE/\\([a-z0-9]\{32\}\\)-.*|\1|p") - - sed -i "/$self/b; s|$NIX_STORE/[a-z0-9]\{32\}-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" "$out"/lib/perl5/*/*/Config.pm - sed -i "/$self/b; s|$NIX_STORE/[a-z0-9]\{32\}-|$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee-|g" "$out"/lib/perl5/*/*/Config_heavy.pl - ''; - setupHook = ./setup-hook.sh; passthru.libPrefix = "lib/perl5/site_perl"; + # TODO: it seems like absolute paths to some coreutils is required. + postInstall = + '' + # Remove dependency between "out" and "man" outputs. + rm "$out"/lib/perl5/*/*/.packlist + + # Remove dependencies on glibc and gcc + sed "/ *libpth =>/c libpth => ' '," \ + -i "$out"/lib/perl5/*/*/Config.pm + # TODO: removing those paths would be cleaner than overwriting with nonsense. + substituteInPlace "$out"/lib/perl5/*/*/Config_heavy.pl \ + --replace "${libcInc}" /no-such-path \ + --replace "${stdenv.cc.cc or "/no-such-path"}" /no-such-path \ + --replace "$man" /no-such-path + ''; # */ + meta = { homepage = https://www.perl.org/; description = "The standard implementation of the Perl 5 programmming language"; diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index f15aed484519..038ad9bc3974 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -30,7 +30,7 @@ let # SAPI modules: apxs2 = { - configureFlags = ["--with-apxs2=${apacheHttpd}/bin/apxs"]; + configureFlags = ["--with-apxs2=${apacheHttpd.dev}/bin/apxs"]; buildInputs = [apacheHttpd]; }; @@ -44,7 +44,13 @@ let }; ldap = { - configureFlags = ["--with-ldap=${openldap}"]; + configureFlags = [ + "--with-ldap" + "LDAP_DIR=${openldap.dev}" + "LDAP_INCDIR=${openldap.dev}/include" + "LDAP_LIBDIR=${openldap.out}/lib" + "--with-ldap-sasl=${cyrus_sasl.dev}" + ]; buildInputs = [openldap cyrus_sasl openssl]; }; @@ -69,7 +75,7 @@ let libxml2 = { configureFlags = [ - "--with-libxml-dir=${libxml2}" + "--with-libxml-dir=${libxml2.dev}" ]; buildInputs = [ libxml2 ]; }; @@ -148,7 +154,7 @@ let }; openssl = { - configureFlags = ["--with-openssl=${openssl}"]; + configureFlags = ["--enable-openssl"]; buildInputs = [openssl]; }; @@ -298,8 +304,8 @@ in { }; php70 = generic { - version = "7.0.2"; - sha256 = "0di2vallv5kry85l67za25nq4f2hjr8fad5j0c06nb69v7xpa6wv"; + version = "7.0.5"; + sha256 = "1s8xnnxwq5big2rnbp3w7zw7wh5d5ra9p2q9bxwylds5wrzsy29c"; }; } diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index 8abc1ac489cd..095e0b7db08e 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -25,17 +25,17 @@ let ++ stdenv.lib.optional (stdenv ? cc && stdenv.cc.libc != null) stdenv.cc.libc ++ stdenv.lib.optional zlibSupport zlib; - C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/include") buildInputs); - LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib") buildInputs); - LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p}/lib") + C_INCLUDE_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.dev or p}/include") buildInputs); + LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") buildInputs); + LD_LIBRARY_PATH = stdenv.lib.concatStringsSep ":" (map (p: "${p.lib or p.out or p}/lib") (stdenv.lib.filter (x : x.outPath != stdenv.cc.libc.outPath or "") buildInputs)); preConfigure = '' # hint pypy to find nix ncurses substituteInPlace pypy/module/_minimal_curses/fficurses.py \ - --replace "/usr/include/ncurses/curses.h" "${ncurses}/include/curses.h" \ - --replace "ncurses/curses.h" "${ncurses}/include/curses.h" \ - --replace "ncurses/term.h" "${ncurses}/include/term.h" \ + --replace "/usr/include/ncurses/curses.h" "${ncurses.dev}/include/curses.h" \ + --replace "ncurses/curses.h" "${ncurses.dev}/include/curses.h" \ + --replace "ncurses/term.h" "${ncurses.dev}/include/term.h" \ --replace "libraries=['curses']" "libraries=['ncurses']" # tkinter hints @@ -44,7 +44,7 @@ let --replace "linklibs = ['tcl' + _ver, 'tk' + _ver]" "linklibs=['${tcl.libPrefix}', '${tk.libPrefix}']" \ --replace "libdirs = []" "libdirs = ['${tk}/lib', '${tcl}/lib']" - sed -i "s@libraries=\['sqlite3'\]\$@libraries=['sqlite3'], include_dirs=['${sqlite}/include'], library_dirs=['${sqlite}/lib']@" lib_pypy/_sqlite3_build.py + sed -i "s@libraries=\['sqlite3'\]\$@libraries=['sqlite3'], include_dirs=['${sqlite.dev}/include'], library_dirs=['${sqlite.out}/lib']@" lib_pypy/_sqlite3_build.py ''; buildPhase = '' @@ -66,7 +66,7 @@ let doCheck = true; checkPhase = '' - export TERMINFO="${ncurses}/share/terminfo/"; + export TERMINFO="${ncurses.out}/share/terminfo/"; export TERM="xterm"; export HOME="$TMPDIR"; # disable shutils because it assumes gid 0 exists diff --git a/pkgs/development/interpreters/python/2.6/default.nix b/pkgs/development/interpreters/python/2.6/default.nix index 32974778168b..96b44ddc17f3 100644 --- a/pkgs/development/interpreters/python/2.6/default.nix +++ b/pkgs/development/interpreters/python/2.6/default.nix @@ -52,6 +52,10 @@ let [ bzip2 openssl ]++ optionals includeModules [ db openssl ncurses gdbm readline xlibsWrapper tcl tk sqlite ] ++ optional zlibSupport zlib; + mkPaths = paths: { + C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); + LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + }; # Build the basic Python interpreter without modules that have # external dependencies. @@ -62,8 +66,7 @@ let inherit majorVersion version src patches buildInputs preConfigure configureFlags; - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs); + inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH; NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin "-msse2"; @@ -83,9 +86,9 @@ let ln -s $out/lib/python${majorVersion}/pdb.py $out/bin/pdb${majorVersion} mv $out/share/man/man1/{python.1,python2.6.1} ln -s $out/share/man/man1/{python2.6.1,python.1} - + paxmark E $out/bin/python${majorVersion} - + ${ optionalString includeModules "$out/bin/python ./setup.py build_ext"} ''; @@ -139,8 +142,7 @@ let buildInputs = [ python ] ++ deps; - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs); + inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH; buildPhase = '' diff --git a/pkgs/development/interpreters/python/2.7/default.nix b/pkgs/development/interpreters/python/2.7/default.nix index a2c059da0607..f1ae897ea4ac 100644 --- a/pkgs/development/interpreters/python/2.7/default.nix +++ b/pkgs/development/interpreters/python/2.7/default.nix @@ -101,6 +101,11 @@ let propagatedBuildInputs = optional stdenv.isDarwin configd; + mkPaths = paths: { + C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p.dev or p}/include") paths); + LIBRARY_PATH = concatStringsSep ":" (map (p: "${p.lib or (p.out or p)}/lib") paths); + }; + # Build the basic Python interpreter without modules that have # external dependencies. python = stdenv.mkDerivation { @@ -111,8 +116,7 @@ let preConfigure configureFlags; LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs); + inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH; NIX_CFLAGS_COMPILE = optionalString stdenv.isDarwin "-msse2"; DETERMINISTIC_BUILD = 1; @@ -137,7 +141,9 @@ let paxmark E $out/bin/python${majorVersion} - ${ optionalString includeModules "$out/bin/python ./setup.py build_ext"} + ${optionalString includeModules "$out/bin/python ./setup.py build_ext"} + + rm "$out"/lib/python*/plat-*/regen # refers to glibc.dev ''; passthru = rec { @@ -186,8 +192,7 @@ let buildInputs = [ python ] ++ deps; - C_INCLUDE_PATH = concatStringsSep ":" (map (p: "${p}/include") buildInputs); - LIBRARY_PATH = concatStringsSep ":" (map (p: "${p}/lib") buildInputs); + inherit (mkPaths buildInputs) C_INCLUDE_PATH LIBRARY_PATH; # non-python gdbm has a libintl dependency on i686-cygwin, not on x86_64-cygwin buildPhase = (if (stdenv.system == "i686-cygwin" && moduleName == "gdbm") then '' diff --git a/pkgs/development/interpreters/python/3.2/default.nix b/pkgs/development/interpreters/python/3.2/default.nix index f4103662316e..c0b5d3401ddd 100644 --- a/pkgs/development/interpreters/python/3.2/default.nix +++ b/pkgs/development/interpreters/python/3.2/default.nix @@ -44,8 +44,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads --with-wide-unicode - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.3/default.nix b/pkgs/development/interpreters/python/3.3/default.nix index a8953f38245a..a46ef7c056b2 100644 --- a/pkgs/development/interpreters/python/3.3/default.nix +++ b/pkgs/development/interpreters/python/3.3/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation { ${optionalString stdenv.isDarwin ''export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -msse2"''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.4/default.nix b/pkgs/development/interpreters/python/3.4/default.nix index ecada35a26e8..8d87c6abfbb4 100644 --- a/pkgs/development/interpreters/python/3.4/default.nix +++ b/pkgs/development/interpreters/python/3.4/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/python/3.5/default.nix b/pkgs/development/interpreters/python/3.5/default.nix index 0f4b6e744aca..4bc39f4c2b3a 100644 --- a/pkgs/development/interpreters/python/3.5/default.nix +++ b/pkgs/development/interpreters/python/3.5/default.nix @@ -58,8 +58,8 @@ stdenv.mkDerivation { ''} configureFlagsArray=( --enable-shared --with-threads - CPPFLAGS="${concatStringsSep " " (map (p: "-I${p}/include") buildInputs)}" - LDFLAGS="${concatStringsSep " " (map (p: "-L${p}/lib") buildInputs)}" + CPPFLAGS="${concatStringsSep " " (map (p: "-I${p.dev or p}/include") buildInputs)}" + LDFLAGS="${concatStringsSep " " (map (p: "-L${p.lib or (p.out or p)}/lib") buildInputs)}" LIBS="${optionalString (!stdenv.isDarwin) "-lcrypt"} ${optionalString (ncurses != null) "-lncurses"}" ) ''; diff --git a/pkgs/development/interpreters/racket/default.nix b/pkgs/development/interpreters/racket/default.nix index 748482b1bf08..03d646a3b4d6 100644 --- a/pkgs/development/interpreters/racket/default.nix +++ b/pkgs/development/interpreters/racket/default.nix @@ -37,11 +37,11 @@ in stdenv.mkDerivation rec { name = "racket-${version}"; - version = "6.3"; + version = "6.4"; src = fetchurl { url = "http://mirror.racket-lang.org/installers/${version}/${name}-src.tgz"; - sha256 = "0f21vnads6wsrzimfja969gf3pkl60s0rdfrjf9s70lcy9x0jz4i"; + sha256 = "1qyzq91r1kzk2k0faggqd5idwmsxizkjbdgxn6ik9iwwsjycxbw6"; }; FONTCONFIG_FILE = fontsConf; diff --git a/pkgs/development/interpreters/rakudo/default.nix b/pkgs/development/interpreters/rakudo/default.nix index cd1631e23a16..e1d1ccba4712 100644 --- a/pkgs/development/interpreters/rakudo/default.nix +++ b/pkgs/development/interpreters/rakudo/default.nix @@ -1,18 +1,18 @@ -{ stdenv, fetchurl, perl, jdk, icu, zlib, gmp, readline }: +{ stdenv, fetchurl, perl, icu, zlib, gmp, readline }: stdenv.mkDerivation rec { name = "rakudo-star-${version}"; - version = "2015.11"; + version = "2016.01"; src = fetchurl { url = "http://rakudo.org/downloads/star/${name}.tar.gz"; - sha256 = "1rzabg8daxf2g4l1njhdv3gfav91mp3y9my0mpz2xw06cxqfsjki"; + sha256 = "feb385c5d05166061f413882e442d3a0ec53884918768940d3f00bb63bc85497"; }; - buildInputs = [ icu zlib gmp readline jdk perl ]; + buildInputs = [ icu zlib gmp readline perl ]; configureScript = "perl ./Configure.pl"; configureFlags = - [ "--backends=moar,jvm" + [ "--backends=moar" "--gen-moar" "--gen-nqp" ]; diff --git a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix index ecaed5077121..99f66199d939 100644 --- a/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix +++ b/pkgs/development/interpreters/spidermonkey/1.8.0-rc1.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { ''; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" ''; makeFlags = "-f ${makefile} JS_DIST=\${out} BUILD_OPT=1 JS_READLINE=1 JS_THREADSAFE=1"; diff --git a/pkgs/development/interpreters/spidermonkey/17.0.nix b/pkgs/development/interpreters/spidermonkey/17.0.nix index 7573b546164b..5cc71b59d512 100644 --- a/pkgs/development/interpreters/spidermonkey/17.0.nix +++ b/pkgs/development/interpreters/spidermonkey/17.0.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "1fig2wf4f10v43mqx67y68z6h77sy900d1w0pz9qarrqx57rc7ij"; }; + outputs = [ "dev" "out" "lib" ]; + propagatedBuildInputs = [ nspr ]; buildInputs = [ pkgconfig perl python zip libffi readline ]; @@ -21,11 +23,14 @@ stdenv.mkDerivation rec { ''; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" export LIBXUL_DIST=$out ''; + setOutputFlags = false; configureFlags = [ + "--libdir=$(lib)/lib" + "--includedir=$(dev)/include" "--enable-threadsafe" "--with-system-nspr" "--with-system-ffi" @@ -49,7 +54,10 @@ stdenv.mkDerivation rec { paxmark mr jsapi-tests/jsapi-tests ''; - postInstall = ''rm "$out"/lib/*.a''; # halve the output size + postInstall = '' + rm "$lib"/lib/*.a # halve the output size + moveToOutput "bin/js*-config" "$dev" # break the cycle + ''; meta = with stdenv.lib; { description = "Mozilla's JavaScript engine written in C/C++"; diff --git a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix index a036388f15ee..94f070d1a91d 100644 --- a/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix +++ b/pkgs/development/interpreters/spidermonkey/185-1.0.0.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { postUnpack = "sourceRoot=\${sourceRoot}/js/src"; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" export LIBXUL_DIST=$out ''; diff --git a/pkgs/development/interpreters/spidermonkey/24.2.nix b/pkgs/development/interpreters/spidermonkey/24.2.nix index 3a9bd8ad7a46..5c4fc8508155 100644 --- a/pkgs/development/interpreters/spidermonkey/24.2.nix +++ b/pkgs/development/interpreters/spidermonkey/24.2.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "1n1phk8r3l8icqrrap4czplnylawa0ddc2cc4cgdz46x3lrkybz6"; }; + outputs = [ "dev" "out" "lib" ]; + propagatedBuildInputs = [ nspr ]; buildInputs = [ pkgconfig perl python zip libffi readline ]; @@ -21,11 +23,14 @@ stdenv.mkDerivation rec { postUnpack = "sourceRoot=\${sourceRoot}/js/src"; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr}/include/nspr" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${nspr.dev}/include/nspr" export LIBXUL_DIST=$out ''; + setOutputFlags = false; configureFlags = [ + "--libdir=$(lib)/lib" + "--includedir=$(dev)/include" "--enable-threadsafe" "--with-system-nspr" "--with-system-ffi" @@ -40,6 +45,11 @@ stdenv.mkDerivation rec { doCheck = true; preCheck = "rm jit-test/tests/sunspider/check-date-format-tofte.js"; # https://bugzil.la/600522 + postInstall = '' + rm "$lib"/lib/*.a # halve the output size + moveToOutput "bin/js*-config" "$dev" # break the cycle + ''; + meta = with stdenv.lib; { description = "Mozilla's JavaScript engine written in C/C++"; homepage = https://developer.mozilla.org/en/SpiderMonkey; diff --git a/pkgs/development/libraries/SDL/default.nix b/pkgs/development/libraries/SDL/default.nix index 7ca594e9bc4a..6c3920ff8aa8 100644 --- a/pkgs/development/libraries/SDL/default.nix +++ b/pkgs/development/libraries/SDL/default.nix @@ -27,7 +27,8 @@ stdenv.mkDerivation rec { sha256 = "005d993xcac8236fpvd1iawkz4wqjybkpn8dbwaliqz5jfkidlyn"; }; - outputs = [ "out" "man" ]; + outputs = [ "dev" "out" ]; + outputBin = "dev"; # sdl-config nativeBuildInputs = [ pkgconfig ]; @@ -58,7 +59,7 @@ stdenv.mkDerivation rec { "--disable-osmesa-shared" ] ++ stdenv.lib.optionals (stdenv ? cross) ([ "--without-x" - ] ++ stdenv.lib.optional alsaSupport "--with-alsa-prefix=${alsaLib}/lib"); + ] ++ stdenv.lib.optional alsaSupport "--with-alsa-prefix=${alsaLib.out}/lib"); patches = [ # Fix window resizing issues, e.g. for xmonad @@ -96,6 +97,8 @@ stdenv.mkDerivation rec { }) ]; + postFixup = ''moveToOutput share/aclocal "$dev" ''; + passthru = { inherit openglSupport; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/SDL2/default.nix b/pkgs/development/libraries/SDL2/default.nix index 529c485930b3..1c260c2ba911 100644 --- a/pkgs/development/libraries/SDL2/default.nix +++ b/pkgs/development/libraries/SDL2/default.nix @@ -19,7 +19,7 @@ let configureFlagsFun = attrs: '' --disable-oss --disable-x11-shared --disable-pulseaudio-shared --disable-alsa-shared - ${if alsaSupport then "--with-alsa-prefix=${attrs.alsaLib}/lib" else ""} + ${if alsaSupport then "--with-alsa-prefix=${attrs.alsaLib.out}/lib" else ""} ${if (!x11Support) then "--without-x" else ""} ''; in diff --git a/pkgs/development/libraries/aalib/default.nix b/pkgs/development/libraries/aalib/default.nix index d7dcbeba330b..7ddb78d052e0 100644 --- a/pkgs/development/libraries/aalib/default.nix +++ b/pkgs/development/libraries/aalib/default.nix @@ -8,16 +8,30 @@ stdenv.mkDerivation { sha256 = "1vkh19gb76agvh4h87ysbrgy82hrw88lnsvhynjf4vng629dmpgv"; }; + outputs = [ "dev" "out" "bin" "doc" ]; + setOutputFlags = false; # Doesn't support all the flags + + patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin.patch ]; + # The fuloong2f is not supported by aalib still preConfigure = '' cp ${automake}/share/automake*/config.{sub,guess} . + configureFlagsArray+=( + "--bindir=$bin/bin" + "--includedir=$dev/include" + "--libdir=$out/lib" + ) ''; buildInputs = [ ncurses ]; configureFlags = "--without-x --with-ncurses=${ncurses}"; - patches = stdenv.lib.optionals stdenv.isDarwin [ ./darwin.patch ]; + postInstall = '' + mkdir -p $dev/bin + mv $bin/bin/aalib-config $dev/bin/aalib-config + substituteInPlace $out/lib/libaa.la --replace "${ncurses.dev}/lib" "${ncurses.out}/lib" + ''; meta = { description = "ASCII art graphics library"; diff --git a/pkgs/development/libraries/acl/default.nix b/pkgs/development/libraries/acl/default.nix index f6445874913a..29b31a8b492c 100644 --- a/pkgs/development/libraries/acl/default.nix +++ b/pkgs/development/libraries/acl/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "08qd9s3wfhv0ajswsylnfwr5h0d7j9d4rgip855nrh400nxp940p"; }; + outputs = [ "dev" "out" "bin" "doc" ]; + nativeBuildInputs = [ gettext ]; buildInputs = [ attr ]; diff --git a/pkgs/development/libraries/apr-util/default.nix b/pkgs/development/libraries/apr-util/default.nix index c123740f5c12..6f0956f1d1d1 100644 --- a/pkgs/development/libraries/apr-util/default.nix +++ b/pkgs/development/libraries/apr-util/default.nix @@ -22,6 +22,9 @@ stdenv.mkDerivation rec { patches = optional stdenv.isFreeBSD ./include-static-dependencies.patch; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + buildInputs = optional stdenv.isFreeBSD autoreconfHook; configureFlags = [ "--with-apr=${apr}" "--with-expat=${expat}" ] @@ -42,7 +45,10 @@ stdenv.mkDerivation rec { # Give apr1 access to sed for runtime invocations postInstall = '' - wrapProgram $out/bin/apu-1-config --prefix PATH : "${gnused}/bin" + for f in $out/lib/*.la $out/lib/apr-util-1/*.la; do + substituteInPlace $f --replace "${expat.dev}/lib" "${expat.out}/lib" + done + wrapProgram $dev/bin/apu-1-config --prefix PATH : "${gnused}/bin" ''; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/apr/default.nix b/pkgs/development/libraries/apr/default.nix index 08fd1fe4d5f3..c6e505f43d23 100644 --- a/pkgs/development/libraries/apr/default.nix +++ b/pkgs/development/libraries/apr/default.nix @@ -10,6 +10,14 @@ stdenv.mkDerivation rec { patches = stdenv.lib.optionals stdenv.isDarwin [ ./is-this-a-compiler-bug.patch ]; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + + preConfigure = + '' + configureFlagsArray+=("--with-installbuilddir=$dev/share/build") + ''; + configureFlags = # Including the Windows headers breaks unistd.h. # Based on ftp://sourceware.org/pub/cygwin/release/libapr1/libapr1-1.3.8-2-src.tar.bz2 @@ -17,10 +25,10 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://apr.apache.org/; description = "The Apache Portable Runtime library"; - platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = platforms.all; + maintainers = [ maintainers.eelco ]; }; } diff --git a/pkgs/development/libraries/at-spi2-core/default.nix b/pkgs/development/libraries/at-spi2-core/default.nix index 808de07c52fd..e49569bc226a 100644 --- a/pkgs/development/libraries/at-spi2-core/default.nix +++ b/pkgs/development/libraries/at-spi2-core/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { sha256 = "0afn4x04j5l352vj0dccb2hkpzg3l2vhr8h1yv89fpqmjkfnm8md"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" ]; buildInputs = [ python pkgconfig popt intltool dbus_glib diff --git a/pkgs/development/libraries/atk/default.nix b/pkgs/development/libraries/atk/default.nix index dcb90aa16cd1..14e2e71c0bd0 100644 --- a/pkgs/development/libraries/atk/default.nix +++ b/pkgs/development/libraries/atk/default.nix @@ -12,6 +12,10 @@ stdenv.mkDerivation rec { sha256 = "ce6c48d77bf951083029d5a396dd552d836fff3c1715d3a7022e917e46d0c92b"; }; + enableParallelBuilding = true; + + outputs = [ "dev" "out" ]; + buildInputs = libintlOrEmpty; nativeBuildInputs = [ pkgconfig perl ]; @@ -20,8 +24,6 @@ stdenv.mkDerivation rec { #doCheck = true; # no checks in there (2.10.0) - postInstall = "rm -rf $out/share/gtk-doc"; - meta = { description = "Accessibility toolkit"; diff --git a/pkgs/development/libraries/attr/default.nix b/pkgs/development/libraries/attr/default.nix index 3c69a7328b23..2bb5b2d25807 100644 --- a/pkgs/development/libraries/attr/default.nix +++ b/pkgs/development/libraries/attr/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0nd8y0m6awc9ahv0ciiwf8gy54c8d3j51pw9xg7f7cn579jjyxr5"; }; + outputs = [ "dev" "out" "bin" "doc" ]; + nativeBuildInputs = [ gettext ]; configureFlags = "MAKE=make MSGFMT=msgfmt MSGMERGE=msgmerge XGETTEXT=xgettext ECHO=echo SED=sed AWK=gawk"; diff --git a/pkgs/development/libraries/boehm-gc/default.nix b/pkgs/development/libraries/boehm-gc/default.nix index 158f4b227dd3..4839bedd8bb0 100644 --- a/pkgs/development/libraries/boehm-gc/default.nix +++ b/pkgs/development/libraries/boehm-gc/default.nix @@ -7,9 +7,10 @@ stdenv.mkDerivation rec { url = http://www.hboehm.info/gc/gc_source/gc-7.2f.tar.gz; sha256 = "119x7p1cqw40mpwj80xfq879l9m1dkc7vbc1f3bz3kvkf8bf6p16"; }; - patches = if stdenv.isCygwin then [ ./cygwin.patch ] else null; + outputs = [ "dev" "out" "doc" ]; + configureFlags = [ "--enable-cplusplus" ] ++ lib.optional enableLargeConfig "--enable-large-config"; @@ -19,6 +20,12 @@ stdenv.mkDerivation rec { # Don't run the native `strip' when cross-compiling. dontStrip = stdenv ? cross; + postInstall = + '' + mkdir -p $out/share/doc + mv $out/share/gc $out/share/doc/gc + ''; + meta = { description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++"; diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix index b28668e7b301..5b0c06bd6bb2 100644 --- a/pkgs/development/libraries/boost/generic.nix +++ b/pkgs/development/libraries/boost/generic.nix @@ -64,8 +64,8 @@ let ] ++ optional (variant == "release") "debug-symbols=off"; nativeB2Flags = [ - "-sEXPAT_INCLUDE=${expat}/include" - "-sEXPAT_LIBPATH=${expat}/lib" + "-sEXPAT_INCLUDE=${expat.dev}/include" + "-sEXPAT_LIBPATH=${expat.out}/lib" ] ++ optional (toolset != null) "toolset=${toolset}" ++ optional (mpi != null) "--user-config=user-config.jam"; nativeB2Args = concatStringsSep " " (genericB2Flags ++ nativeB2Flags); @@ -148,7 +148,7 @@ stdenv.mkDerivation { configureScript = "./bootstrap.sh"; configureFlags = commonConfigureFlags ++ [ - "--with-icu=${icu}" + "--with-icu=${icu.dev}" "--with-python=${python.interpreter}" ] ++ optional (toolset != null) "--with-toolset=${toolset}"; @@ -159,6 +159,7 @@ stdenv.mkDerivation { postFixup = fixup; outputs = [ "out" "dev" "lib" ]; + setOutputFlags = false; crossAttrs = rec { buildInputs = [ expat.crossDrv zlib.crossDrv bzip2.crossDrv ]; diff --git a/pkgs/development/libraries/cairo/default.nix b/pkgs/development/libraries/cairo/default.nix index 537107f3f6a8..2e4821b30738 100644 --- a/pkgs/development/libraries/cairo/default.nix +++ b/pkgs/development/libraries/cairo/default.nix @@ -19,6 +19,9 @@ stdenv.mkDerivation rec { sha256 = "0lmjlzmghmr27y615px9hkm552x7ap6pmq9mfbzr6smp8y2b6g31"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; # very small + nativeBuildInputs = [ pkgconfig libiconv @@ -29,12 +32,12 @@ stdenv.mkDerivation rec { ]); propagatedBuildInputs = - with xorg; [ xorg.xlibsWrapper fontconfig expat freetype pixman zlib libpng ] + with xorg; [ libXext fontconfig expat freetype pixman zlib libpng ] ++ optional (!stdenv.isDarwin) libXrender ++ optionals xcbSupport [ libxcb xcbutil ] ++ optional gobjectSupport glib - ++ optionals glSupport [ mesa_noglu ] - ; + ++ optional glSupport mesa_noglu + ; # TODO: maybe liblzo but what would it be for here? configureFlags = if stdenv.isDarwin then [ "--disable-dependency-tracking" @@ -50,29 +53,24 @@ stdenv.mkDerivation rec { preConfigure = # On FreeBSD, `-ldl' doesn't exist. - (stdenv.lib.optionalString stdenv.isFreeBSD + stdenv.lib.optionalString stdenv.isFreeBSD '' for i in "util/"*"/Makefile.in" boilerplate/Makefile.in do cat "$i" | sed -es/-ldl//g > t mv t "$i" done - '') - + + '' + + '' # Work around broken `Requires.private' that prevents Freetype # `-I' flags to be propagated. sed -i "src/cairo.pc.in" \ - -es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype}/include/freetype2 -I${freetype}/include|g' + -es'|^Cflags:\(.*\)$|Cflags: \1 -I${freetype.dev}/include/freetype2 -I${freetype.dev}/include|g' ''; enableParallelBuilding = true; - # The default `--disable-gtk-doc' is ignored. - postInstall = "rm -rf $out/share/gtk-doc" - + stdenv.lib.optionalString stdenv.isDarwin ('' - #newline - '' + glib.flattenInclude - ); + postInstall = stdenv.lib.optionalString stdenv.isDarwin glib.flattenInclude; meta = with stdenv.lib; { description = "A 2D graphics library with support for multiple output devices"; diff --git a/pkgs/development/libraries/cogl/1.20.nix b/pkgs/development/libraries/cogl/1.20.nix index 5eb12fe29989..ae202b093777 100644 --- a/pkgs/development/libraries/cogl/1.20.nix +++ b/pkgs/development/libraries/cogl/1.20.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { COGL_PANGO_DEP_CFLAGS = stdenv.lib.optionalString (stdenv.isDarwin && pangoSupport) - "-I${pango}/include/pango-1.0 -I${cairo}/include/cairo"; + "-I${pango.dev}/include/pango-1.0 -I${cairo.dev}/include/cairo"; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; diff --git a/pkgs/development/libraries/cogl/1.22.nix b/pkgs/development/libraries/cogl/1.22.nix index ce4fda5bd468..88bb67077490 100644 --- a/pkgs/development/libraries/cogl/1.22.nix +++ b/pkgs/development/libraries/cogl/1.22.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { COGL_PANGO_DEP_CFLAGS = stdenv.lib.optionalString (stdenv.isDarwin && pangoSupport) - "-I${pango}/include/pango-1.0 -I${cairo}/include/cairo"; + "-I${pango.dev}/include/pango-1.0 -I${cairo.dev}/include/cairo"; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; diff --git a/pkgs/development/libraries/cogl/default.nix b/pkgs/development/libraries/cogl/default.nix index a4a20fce023a..e45702090665 100644 --- a/pkgs/development/libraries/cogl/default.nix +++ b/pkgs/development/libraries/cogl/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { COGL_PANGO_DEP_CFLAGS = stdenv.lib.optionalString (stdenv.isDarwin && pangoSupport) - "-I${pango}/include/pango-1.0 -I${cairo}/include/cairo"; + "-I${pango.dev}/include/pango-1.0 -I${cairo.dev}/include/cairo"; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; diff --git a/pkgs/development/libraries/cpp-netlib/default.nix b/pkgs/development/libraries/cpp-netlib/default.nix index 64b223d4ebb1..c477b4b1f39f 100644 --- a/pkgs/development/libraries/cpp-netlib/default.nix +++ b/pkgs/development/libraries/cpp-netlib/default.nix @@ -2,21 +2,25 @@ stdenv.mkDerivation rec { name = "cpp-netlib-${version}"; - version = "0.11.2"; + version = "0.12.0"; src = fetchurl { url = "http://downloads.cpp-netlib.org/${version}/${name}-final.tar.bz2"; - sha256 = "0vwnp1jpvsdjaz7f7w55p7gw6hj7694nklmljcvphvkrhbw1g1q5"; + sha256 = "0h7gyrbr3madycnj8rl8k1jzk2hd8np2k5ad9mijlh0fizzzk3h8"; }; buildInputs = [ cmake boost openssl ]; - cmakeFlags = [ "-DCPP-NETLIB_BUILD_SHARED_LIBS=ON" "-DCMAKE_BUILD_TYPE=RELEASE" ]; + cmakeFlags = [ + "-DCPP-NETLIB_BUILD_SHARED_LIBS=ON" + "-DCMAKE_BUILD_TYPE=RELEASE" + ]; enableParallelBuilding = true; meta = with stdenv.lib; { - description = "A collection of open-source libraries for high level network programming"; + description = + "Collection of open-source libraries for high level network programming"; homepage = http://cpp-netlib.org; license = licenses.boost; platforms = platforms.all; diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix index 059b0ab0042a..21ad12869f9c 100644 --- a/pkgs/development/libraries/cyrus-sasl/default.nix +++ b/pkgs/development/libraries/cyrus-sasl/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "1hvvbcsg21nlncbgs0cgn3iwlnb3vannzwsp6rwvnn9ba4v53g4g"; }; + outputs = [ "dev" "bin" "out" "man" "docdev" ]; + buildInputs = [ openssl db gettext kerberos ] ++ lib.optional stdenv.isFreeBSD autoreconfHook @@ -39,6 +41,12 @@ stdenv.mkDerivation rec { installFlags = lib.optional stdenv.isDarwin [ "framedir=$(out)/Library/Frameworks/SASL2.framework" ]; + postInstall = '' + for f in $out/lib/*.la $out/lib/sasl2/*.la; do + substituteInPlace $f --replace "${openssl.dev}/lib" "${openssl.out}/lib" + done + ''; + meta = { homepage = "http://cyrusimap.web.cmu.edu/"; description = "library for adding authentication support to connection-based protocols"; diff --git a/pkgs/development/libraries/dbus-glib/default.nix b/pkgs/development/libraries/dbus-glib/default.nix index 480dc61897bb..59d227f0e868 100644 --- a/pkgs/development/libraries/dbus-glib/default.nix +++ b/pkgs/development/libraries/dbus-glib/default.nix @@ -8,13 +8,14 @@ stdenv.mkDerivation rec { sha256 = "1xi1v1msz75qs0s4lkyf1psrksdppa3hwkg0mznc6gpw5flg3hdz"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; nativeBuildInputs = [ pkgconfig gettext ]; buildInputs = [ expat libiconv ]; - propagatedBuildInputs = [ dbus.libs glib ]; + propagatedBuildInputs = [ dbus glib ]; doCheck = true; diff --git a/pkgs/development/libraries/dbus/default.nix b/pkgs/development/libraries/dbus/default.nix index 7f5e2f6311b2..83635d9739f1 100644 --- a/pkgs/development/libraries/dbus/default.nix +++ b/pkgs/development/libraries/dbus/default.nix @@ -1,5 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, autoreconfHook -, expat, systemd, glib, dbus_glib, python +{ stdenv, lib, fetchurl, pkgconfig, expat, systemd, glib, dbus_glib, python , libX11 ? null, libICE ? null, libSM ? null, x11Support ? (stdenv.isLinux || stdenv.isDarwin) }: assert x11Support -> libX11 != null @@ -10,108 +9,77 @@ let version = "1.8.20"; sha256 = "0fkh3d5r57a659hw9lqnw4v0bc5556vx54fsf7l9c732ci6byksw"; - inherit (stdenv) lib; - - buildInputsX = lib.optionals x11Support [ libX11 libICE libSM ]; - - # also other parts than "libs" need this statically linked lib - makeInternalLib = "(cd dbus && make libdbus-internal.la)"; - - systemdOrEmpty = lib.optional stdenv.isLinux systemd; - - # A generic builder for individual parts (subdirs) of D-Bus - dbus_drv = name: subdirs: merge: stdenv.mkDerivation (lib.mergeAttrsByFuncDefaultsClean [{ - - name = "dbus-${name}-${version}"; +self = stdenv.mkDerivation { + name = "dbus-${version}"; src = fetchurl { url = "http://dbus.freedesktop.org/releases/dbus/dbus-${version}.tar.gz"; inherit sha256; }; - patches = [ - ./ignore-missing-includedirs.patch - ./ucred-dirty-hack.patch - ./no-create-dirs.patch - ] - ++ lib.optional (stdenv.isSunOS || stdenv.isLinux) ./implement-getgrouplist.patch - ; + patches = [ ./ignore-missing-includedirs.patch ] + ++ lib.optional stdenv.isSunOS ./implement-getgrouplist.patch; + postPatch = '' + substituteInPlace tools/Makefile.in \ + --replace 'install-localstatelibDATA:' 'disabled:' \ + --replace 'install-data-local:' 'disabled:' \ + --replace 'installcheck-local:' 'disabled:' + substituteInPlace bus/Makefile.in \ + --replace '$(mkinstalldirs) $(DESTDIR)$(localstatedir)/run/dbus' ':' + '' + /* cleanup of runtime references */ '' + substituteInPlace ./dbus/dbus-sysdeps-unix.c \ + --replace 'DBUS_BINDIR "/dbus-launch"' "\"$lib/bin/dbus-launch\"" + substituteInPlace ./tools/dbus-launch.c \ + --replace 'DBUS_DAEMONDIR"/dbus-daemon"' '"/run/current-system/sw/bin/dbus-daemon"' + ''; - # build only the specified subdirs - postPatch = "sed '/SUBDIRS/s/=.*/=" + subdirs + "/' -i Makefile.am\n" - # use already packaged libdbus instead of trying to build it again - + lib.optionalString (name != "libs") '' - for mfile in */Makefile.am; do - sed 's,\$(top_builddir)/dbus/\(libdbus-[0-9]\),${libs}/lib/\1,g' -i "$mfile" - done - ''; + outputs = [ "dev" "out" "lib" "doc" ]; - nativeBuildInputs = [ pkgconfig autoreconfHook ]; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ expat ]; - - preAutoreconf = '' - substituteInPlace tools/Makefile.am --replace 'install-localstatelibDATA:' 'disabled:' - ''; - - preConfigure = '' - patchShebangs . - ''; + buildInputs = lib.optional stdenv.isLinux systemd + ++ lib.optionals x11Support [ libX11 libICE libSM ]; + # ToDo: optional selinux? configureFlags = [ "--localstatedir=/var" "--sysconfdir=/etc" "--with-session-socket-dir=/tmp" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + # this package installs nothing into those dirs and they create a dependency + "--datadir=/run/current-system/sw/share" + "--libexecdir=$(out)/libexec" # we don't need dbus-daemon-launch-helper ] ++ lib.optional (!x11Support) "--without-x"; + # Enable X11 autolaunch support in libdbus. This doesn't actually depend on X11 + # (it just execs dbus-launch in dbus.tools), contrary to what the configure script demands. + # problems building without x11Support so disabled in that case for now + NIX_CFLAGS_COMPILE = lib.optionalString x11Support "-DDBUS_ENABLE_X11_AUTOLAUNCH=1"; + NIX_CFLAGS_LINK = lib.optionalString (!stdenv.isDarwin) "-Wl,--as-needed"; + enableParallelBuilding = true; doCheck = true; - installFlags = "sysconfdir=$(out)/etc"; + installFlags = "sysconfdir=$(out)/etc datadir=$(out)/share"; - } merge ]); - - libs = dbus_drv "libs" "dbus" { - # Enable X11 autolaunch support in libdbus. This doesn't actually depend on X11 - # (it just execs dbus-launch in dbus.tools), contrary to what the configure script demands. - NIX_CFLAGS_COMPILE = "-DDBUS_ENABLE_X11_AUTOLAUNCH=1"; - buildInputs = [ systemdOrEmpty ]; - meta.platforms = stdenv.lib.platforms.all; - }; - - - attrs = rec { - # If you change much fix indentation - - # This package has been split because most applications only need dbus.lib - # which serves as an interface to a *system-wide* daemon, - # see e.g. http://en.wikipedia.org/wiki/D-Bus#Architecture . - - inherit libs; - - tools = dbus_drv "tools" "tools bus" { - preBuild = makeInternalLib; - buildInputs = buildInputsX ++ systemdOrEmpty ++ [ libs ]; - NIX_CFLAGS_LINK = - stdenv.lib.optionalString (!stdenv.isDarwin && !stdenv.isSunOS) "-Wl,--as-needed " - + "-ldbus-1"; - - # don't provide another dbus-1.pc (with incorrect include and link dirs), - # also remove useless empty dirs - postInstall = '' - rm "$out"/lib/pkgconfig/dbus-1.pc - rmdir --parents --ignore-fail-on-non-empty "$out"/{lib/pkgconfig,share/dbus-1/*} + # it's executed from $lib by absolute path + postFixup = '' + moveToOutput bin/dbus-launch "$lib" + ln -s "$lib/bin/dbus-launch" "$out/bin/" ''; - meta.platforms = with stdenv.lib.platforms; allBut darwin; + passthru = { + dbus-launch = "${self.lib}/bin/dbus-launch"; + daemon = self.out; + }; + + meta = with stdenv.lib; { + description = "Simple interprocess messaging system"; + homepage = http://www.freedesktop.org/wiki/Software/dbus/; + license = licenses.gpl2Plus; # most is also under AFL-2.1 + platforms = platforms.unix; + }; }; - - daemon = tools; - - docs = dbus_drv "docs" "doc" { - postInstall = ''rm -r "$out/lib"''; - }; -}; -in attrs.libs // attrs +in self diff --git a/pkgs/development/libraries/dbus/no-create-dirs.patch b/pkgs/development/libraries/dbus/no-create-dirs.patch deleted file mode 100644 index cf10d9775991..000000000000 --- a/pkgs/development/libraries/dbus/no-create-dirs.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff --git a/bus/Makefile.am b/bus/Makefile.am -index 6cbc09a..be60bb8 100644 ---- a/bus/Makefile.am -+++ b/bus/Makefile.am -@@ -212,7 +212,6 @@ clean-local: - /bin/rm *.bb *.bbg *.da *.gcov || true - - install-data-hook: -- $(mkinstalldirs) $(DESTDIR)$(localstatedir)/run/dbus - $(mkinstalldirs) $(DESTDIR)$(configdir)/system.d - $(mkinstalldirs) $(DESTDIR)$(configdir)/session.d - $(mkinstalldirs) $(DESTDIR)$(datadir)/dbus-1/services -diff --git a/tools/Makefile.am b/tools/Makefile.am -index cfd54b8..b6e28f9 100644 ---- a/tools/Makefile.am -+++ b/tools/Makefile.am -@@ -74,7 +74,7 @@ CLEANFILES = \ - - # create the /var/lib/dbus directory for dbus-uuidgen - install-data-local: -- $(MKDIR_P) $(DESTDIR)$(localstatedir)/lib/dbus -+ : - - installcheck-local: -- test -d $(DESTDIR)$(localstatedir)/lib/dbus -+ : diff --git a/pkgs/development/libraries/dbus/ucred-dirty-hack.patch b/pkgs/development/libraries/dbus/ucred-dirty-hack.patch deleted file mode 100644 index a07abcc15fb0..000000000000 --- a/pkgs/development/libraries/dbus/ucred-dirty-hack.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff --git a/dbus/dbus-sysdeps-unix.c b/dbus/dbus-sysdeps-unix.c -index b4ecc96..267984a 100644 ---- a/dbus/dbus-sysdeps-unix.c -+++ b/dbus/dbus-sysdeps-unix.c -@@ -1635,6 +1635,13 @@ write_credentials_byte (int server_fd, - } - } - -+struct ucred -+{ -+ pid_t pid; /* PID of sending process. */ -+ uid_t uid; /* UID of sending process. */ -+ gid_t gid; /* GID of sending process. */ -+}; -+ - /** - * Reads a single byte which must be nul (an error occurs otherwise), - * and reads unix credentials if available. Clears the credentials diff --git a/pkgs/development/libraries/epoxy/default.nix b/pkgs/development/libraries/epoxy/default.nix index daffae90b127..009624096605 100644 --- a/pkgs/development/libraries/epoxy/default.nix +++ b/pkgs/development/libraries/epoxy/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { sha256 = "0dfkd4xbp7v5gwsf6qwaraz54yzizf3lj5ymyc0msjn0adq3j5yl"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ autoreconfHook pkgconfig utilmacros python ]; buildInputs = [ mesa libX11 ]; diff --git a/pkgs/development/libraries/expat/default.nix b/pkgs/development/libraries/expat/default.nix index 96d46649d916..774190278cb3 100644 --- a/pkgs/development/libraries/expat/default.nix +++ b/pkgs/development/libraries/expat/default.nix @@ -10,8 +10,13 @@ stdenv.mkDerivation rec { patches = [ ./CVE-2015-1283.patch ]; + outputs = [ "dev" "out" ]; # TODO: fix referrers + outputBin = "dev"; + configureFlags = stdenv.lib.optional stdenv.isFreeBSD "--with-pic"; + outputMan = "dev"; # tiny page for a dev tool + meta = with stdenv.lib; { homepage = http://www.libexpat.org/; description = "A stream-oriented XML parser library written in C"; diff --git a/pkgs/development/libraries/fastjson/default.nix b/pkgs/development/libraries/fastjson/default.nix new file mode 100644 index 000000000000..4c3251985470 --- /dev/null +++ b/pkgs/development/libraries/fastjson/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, libtool, autoconf, automake }: + +stdenv.mkDerivation rec { + version = "v0.99.2"; + name = "fastjson-${version}"; + src = fetchFromGitHub { + repo = "libfastjson"; + owner = "rsyslog"; + rev = "eabae907c9d991143e17da278a239819f2e8ae1c"; + sha256 = "17fhaqdn0spc4p0848ahcy68swm6l5yd3bx6bdzxmmwj1jdrmvzk"; + }; + + buildInputs = [ autoconf automake libtool ]; + + preConfigure = '' + sh autogen.sh + ''; + + meta = with stdenv.lib; { + description = "A fast json library for C"; + homepage = "https://github.com/rsyslog/libfastjson"; + license = licenses.mit; + maintainers = with maintainers; [ nequissimus ]; + }; +} diff --git a/pkgs/development/libraries/ffmpeg/generic.nix b/pkgs/development/libraries/ffmpeg/generic.nix index c62278729a7f..d50c20331e4a 100644 --- a/pkgs/development/libraries/ffmpeg/generic.nix +++ b/pkgs/development/libraries/ffmpeg/generic.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, perl, texinfo, yasm , alsaLib, bzip2, fontconfig, freetype, gnutls, libiconv, lame, libass, libogg , libtheora, libva, libvorbis, libvpx, lzma, libpulseaudio, soxr -, x264, xvidcore, zlib, libopus +, x264, x265, xvidcore, zlib, libopus , openglSupport ? false, mesa ? null # Build options , runtimeCpuDetectBuild ? true # Detect CPU capabilities at runtime @@ -71,6 +71,10 @@ stdenv.mkDerivation rec { patchPhase = ''patchShebangs .''; + outputs = [ "dev" "out" "bin" ] + ++ optional (reqMin "1.0") "doc" ; # just dev-doc + setOutputFlags = false; # doesn't accept all and stores configureFlags in libs! + configureFlags = [ # License "--enable-gpl" @@ -129,6 +133,7 @@ stdenv.mkDerivation rec { "--enable-libxvid" "--enable-zlib" (ifMinVer "2.8" "--enable-libopus") + (ifMinVer "2.8" "--enable-libx265") # Developer flags (enableFeature debugDeveloper "debug") (enableFeature optimizationsDeveloper "optimizations") @@ -142,7 +147,7 @@ stdenv.mkDerivation rec { buildInputs = [ bzip2 fontconfig freetype gnutls libiconv lame libass libogg libtheora - libvdpau libvorbis lzma SDL soxr x264 xvidcore zlib libopus + libvdpau libvorbis lzma SDL soxr x264 x265 xvidcore zlib libopus ] ++ optional openglSupport mesa ++ optionals (!isDarwin && !isArm) [ libvpx libpulseaudio ] # Need to be fixed on Darwin and ARM ++ optional ((isLinux || isFreeBSD) && !isArm) libva @@ -154,6 +159,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postFixup = '' + moveToOutput bin "$bin" + moveToOutput share/ffmpeg/examples "$doc" + ''; + /* Cross-compilation is untested, consider this an outline, more work needs to be done to portions of the build to get it to work correctly */ crossAttrs = let @@ -183,6 +193,8 @@ stdenv.mkDerivation rec { ]; }; + installFlags = [ "install-man" ]; + passthru = { vaapiSupport = if reqMin "0.6" && ((isLinux || isFreeBSD) && !isArm) then true else false; inherit vdpauSupport; diff --git a/pkgs/development/libraries/fftw/default.nix b/pkgs/development/libraries/fftw/default.nix index dfa4541e34b7..a7a02521c69c 100644 --- a/pkgs/development/libraries/fftw/default.nix +++ b/pkgs/development/libraries/fftw/default.nix @@ -14,6 +14,9 @@ stdenv.mkDerivation rec { sha256 = "10h9mzjxnwlsjziah4lri85scc05rlajz39nqf3mbh4vja8dw34g"; }; + outputs = [ "dev" "out" "doc" ]; # it's dev-doc only + outputBin = "dev"; # fftw-wisdom + configureFlags = [ "--enable-shared" "--disable-static" "--enable-threads" diff --git a/pkgs/development/libraries/fontconfig/2.10.nix b/pkgs/development/libraries/fontconfig/2.10.nix index 2951dbb44d4f..fea9efde1cfd 100644 --- a/pkgs/development/libraries/fontconfig/2.10.nix +++ b/pkgs/development/libraries/fontconfig/2.10.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { } ; + outputs = [ "dev" "lib" "bin" "out" ]; # $out contains all the config + propagatedBuildInputs = [ freetype ]; buildInputs = [ pkgconfig expat ]; diff --git a/pkgs/development/libraries/fontconfig/default.nix b/pkgs/development/libraries/fontconfig/default.nix index b03528de2d5d..6acf1ebce29c 100644 --- a/pkgs/development/libraries/fontconfig/default.nix +++ b/pkgs/development/libraries/fontconfig/default.nix @@ -36,6 +36,8 @@ stdenv.mkDerivation rec { }) ]; + outputs = [ "dev" "lib" "bin" "out" ]; # $out contains all the config + propagatedBuildInputs = [ freetype ]; buildInputs = [ pkgconfig expat ]; @@ -65,7 +67,7 @@ stdenv.mkDerivation rec { postInstall = '' cd "$out/etc/fonts" rm conf.d/{50-user,51-local}.conf - "${libxslt}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \ + "${libxslt.bin}/bin/xsltproc" --stringparam fontDirectories "${fontbhttf}" \ --stringparam fontconfig "$out" \ --stringparam fontconfigConfigVersion "${configVersion}" \ --path $out/share/xml/fontconfig \ diff --git a/pkgs/development/libraries/fontconfig/make-fonts-cache.nix b/pkgs/development/libraries/fontconfig/make-fonts-cache.nix index 1321948c3c81..b996cd228c77 100644 --- a/pkgs/development/libraries/fontconfig/make-fonts-cache.nix +++ b/pkgs/development/libraries/fontconfig/make-fonts-cache.nix @@ -16,7 +16,7 @@ runCommand "fc-cache" - ${fontconfig}/etc/fonts/fonts.conf + ${fontconfig.out}/etc/fonts/fonts.conf $out EOF cat "$fontDirsPath" >> fonts.conf diff --git a/pkgs/development/libraries/fontconfig/make-fonts-conf.nix b/pkgs/development/libraries/fontconfig/make-fonts-conf.nix index 2b02e0df7a04..2d0a21ea9ddf 100644 --- a/pkgs/development/libraries/fontconfig/make-fonts-conf.nix +++ b/pkgs/development/libraries/fontconfig/make-fonts-conf.nix @@ -8,9 +8,9 @@ runCommand "fonts.conf" } '' xsltproc --stringparam fontDirectories "$fontDirectories" \ - --stringparam fontconfig "${fontconfig}" \ + --stringparam fontconfig "${fontconfig.out}" \ --stringparam fontconfigConfigVersion "${fontconfig.configVersion}" \ - --path ${fontconfig}/share/xml/fontconfig \ - ${./make-fonts-conf.xsl} ${fontconfig}/etc/fonts/fonts.conf \ + --path ${fontconfig.out}/share/xml/fontconfig \ + ${./make-fonts-conf.xsl} ${fontconfig.out}/etc/fonts/fonts.conf \ > $out '' diff --git a/pkgs/development/libraries/freetype/default.nix b/pkgs/development/libraries/freetype/default.nix index 61d8cb582a01..81e98056e90b 100644 --- a/pkgs/development/libraries/freetype/default.nix +++ b/pkgs/development/libraries/freetype/default.nix @@ -35,12 +35,16 @@ stdenv.mkDerivation rec { "0wcjf9hiymplgqm3szla633i417pb57vpzzs2dyl1dnmcxgqa2y8") ]; + outputs = [ "dev" "out" ]; + propagatedBuildInputs = [ zlib bzip2 libpng ]; # needed when linking against freetype # dependence on harfbuzz is looser than the reverse dependence buildInputs = [ pkgconfig which ] # FreeType requires GNU Make, which is not part of stdenv on FreeBSD. ++ optional (!stdenv.isLinux) gnumake; + configureFlags = "--disable-static --bindir=$(dev)/bin"; + # from Gentoo, see https://bugzilla.redhat.com/show_bug.cgi?id=506840 NIX_CFLAGS_COMPILE = "-fno-strict-aliasing"; # The asm for armel is written with the 'asm' keyword. diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix index 18562d1d12e3..756ebf816199 100644 --- a/pkgs/development/libraries/gdk-pixbuf/default.nix +++ b/pkgs/development/libraries/gdk-pixbuf/default.nix @@ -13,12 +13,17 @@ stdenv.mkDerivation rec { sha256 = "0cfh87aqyqbfcwpbv1ihgmgfcn66il5q2n8yjyl8gxkjmkqp2rrb"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + setupHook = ./setup-hook.sh; - # !!! We might want to factor out the gdk-pixbuf-xlib subpackage. - buildInputs = [ libX11 libintlOrEmpty ]; + enableParallelBuilding = true; - nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; + # !!! We might want to factor out the gdk-pixbuf-xlib subpackage. + buildInputs = [ libX11 gobjectIntrospection ] ++ libintlOrEmpty; + + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ glib libtiff libjpeg libpng jasper ]; @@ -34,12 +39,11 @@ stdenv.mkDerivation rec { # The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB). inherit (doCheck); - postInstall = "rm -rf $out/share/gtk-doc"; - - meta = { + meta = with stdenv.lib; { description = "A library for image loading and manipulation"; homepage = http://library.gnome.org/devel/gdk-pixbuf/; - maintainers = [ stdenv.lib.maintainers.eelco ]; - platforms = stdenv.lib.platforms.unix; + maintainers = [ maintainers.eelco ]; + platforms = platforms.unix; }; } + diff --git a/pkgs/development/libraries/gettext/default.nix b/pkgs/development/libraries/gettext/default.nix index c96d241ee903..940df56c03c3 100644 --- a/pkgs/development/libraries/gettext/default.nix +++ b/pkgs/development/libraries/gettext/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { sed -i -e "s/\(am_libgettextlib_la_OBJECTS = \)error.lo/\\1/" gettext-tools/gnulib-lib/Makefile.in ''; - buildInputs = [ xz ] ++ lib.optional (!stdenv.isLinux) libiconv; + buildInputs = [ xz xz.bin libiconv ]; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/git2/default.nix b/pkgs/development/libraries/git2/default.nix index fb380d60cf92..3cf429ab1d73 100644 --- a/pkgs/development/libraries/git2/default.nix +++ b/pkgs/development/libraries/git2/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv}: +{ stdenv, fetchurl, pkgconfig, cmake, zlib, python, libssh2, openssl, http-parser, libiconv }: stdenv.mkDerivation (rec { version = "0.23.2"; diff --git a/pkgs/development/libraries/glib-networking/default.nix b/pkgs/development/libraries/glib-networking/default.nix index 6bb3c8c1e5a2..fc4707aedb75 100644 --- a/pkgs/development/libraries/glib-networking/default.nix +++ b/pkgs/development/libraries/glib-networking/default.nix @@ -13,10 +13,12 @@ stdenv.mkDerivation rec { sha256 = "1cchmi08jpjypgmm9i7xzh5qfg2q5k61kry9ns8mhw3z44a440ym"; }; + outputs = [ "dev" "out" ]; # to deal with propagatedBuildInputs + configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt"; preBuild = '' - sed -e "s@${glib}/lib/gio/modules@$out/lib/gio/modules@g" -i $(find . -name Makefile) + sed -e "s@${glib.out}/lib/gio/modules@$out/lib/gio/modules@g" -i $(find . -name Makefile) ''; nativeBuildInputs = [ pkgconfig intltool ]; diff --git a/pkgs/development/libraries/glib/default.nix b/pkgs/development/libraries/glib/default.nix index 9dd927d55ced..120d398bd44d 100644 --- a/pkgs/development/libraries/glib/default.nix +++ b/pkgs/development/libraries/glib/default.nix @@ -31,12 +31,12 @@ let # This is intended to be run in postInstall of any package # which has $out/include/ containing just some disjunct directories. flattenInclude = '' - for dir in "$out"/include/*; do - cp -r "$dir"/* "$out/include/" + for dir in "''${!outputInclude}"/include/*; do + cp -r "$dir"/* "''${!outputInclude}/include/" rm -r "$dir" ln -s . "$dir" done - ln -sr -t "$out/include/" "$out"/lib/*/include/* 2>/dev/null || true + ln -sr -t "''${!outputInclude}/include/" "''${!outputInclude}"/lib/*/include/* 2>/dev/null || true ''; ver_maj = "2.46"; @@ -53,21 +53,22 @@ stdenv.mkDerivation rec { patches = optional stdenv.isDarwin ./darwin-compilation.patch ++ optional doCheck ./skip-timer-test.patch; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + setupHook = ./setup-hook.sh; - buildInputs = [ libelf ] + buildInputs = [ libelf setupHook pcre ] ++ optionals doCheck [ tzdata libxml2 desktop_file_utils shared_mime_info ]; nativeBuildInputs = [ pkgconfig gettext perl python ]; - propagatedBuildInputs = [ pcre zlib libffi libiconv ] + propagatedBuildInputs = [ zlib libffi libiconv ] ++ libintlOrEmpty; - LIBELF_CFLAGS = optional stdenv.isFreeBSD "-I${libelf}"; - LIBELF_LIBS = optional stdenv.isFreeBSD "-L${libelf} -lelf"; - - configureFlags = - optional stdenv.isDarwin "--disable-compile-warnings" + # internal pcre would only add <200kB, but it's relatively common + configureFlags = [ "--with-pcre=system" ] + ++ optional stdenv.isDarwin "--disable-compile-warnings" ++ optional (stdenv.isFreeBSD || stdenv.isSunOS) "--with-libiconv=gnu" ++ optional stdenv.isSunOS "--disable-dtrace"; @@ -79,6 +80,9 @@ stdenv.mkDerivation rec { sed -i -e 's|inotify.h|foobar-inotify.h|g' configure ''; + LIBELF_CFLAGS = optional stdenv.isFreeBSD "-I${libelf}"; + LIBELF_LIBS = optional stdenv.isFreeBSD "-L${libelf} -lelf"; + preBuild = optionalString stdenv.isDarwin '' export MACOSX_DEPLOYMENT_TARGET= @@ -87,6 +91,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; DETERMINISTIC_BUILD = 1; + postInstall = '' + moveToOutput "share/glib-2.0" "$dev" + substituteInPlace "$dev/bin/gdbus-codegen" --replace "$out" "$dev" + sed -i "$dev/bin/glib-gettextize" -e "s|^gettext_dir=.*|gettext_dir=$dev/share/glib-2.0/gettext|" + ''; + inherit doCheck; preCheck = optionalString doCheck '' export LD_LIBRARY_PATH="$NIX_BUILD_TOP/${name}/glib/.libs:$LD_LIBRARY_PATH" @@ -95,7 +105,7 @@ stdenv.mkDerivation rec { export XDG_RUNTIME_HOME="$TMP" export HOME="$TMP" export XDG_DATA_DIRS="${desktop_file_utils}/share:${shared_mime_info}/share" - export G_TEST_DBUS_DAEMON="${dbus_daemon}/bin/dbus-daemon" + export G_TEST_DBUS_DAEMON="${dbus_daemon.out}/bin/dbus-daemon" substituteInPlace gio/tests/desktop-files/home/applications/epiphany-weather-for-toronto-island-9c6a4e022b17686306243dada811d550d25eb1fb.desktop --replace "Exec=/bin/true" "Exec=${coreutils}/bin/true" # Needs machine-id, comment the test @@ -109,8 +119,6 @@ stdenv.mkDerivation rec { sed -e '/g_subprocess_launcher_set_environ (launcher, envp);/a g_subprocess_launcher_setenv (launcher, "PATH", g_getenv("PATH"), TRUE);' -i gio/tests/gsubprocess.c ''; - postInstall = ''rm -rvf $out/share/gtk-doc''; - passthru = { gioModuleDir = "lib/gio/modules"; inherit flattenInclude; diff --git a/pkgs/development/libraries/glib/setup-hook.sh b/pkgs/development/libraries/glib/setup-hook.sh index ca7e326bd02e..c5cf293902cd 100644 --- a/pkgs/development/libraries/glib/setup-hook.sh +++ b/pkgs/development/libraries/glib/setup-hook.sh @@ -1,5 +1,3 @@ -# Install gschemas, if any, in a package-specific directory -installFlagsArray+=("gsettingsschemadir=$out/share/gsettings-schemas/$name/glib-2.0/schemas/") make_glib_find_gsettings_schemas() { # For packages that need gschemas of other packages (e.g. empathy) @@ -7,17 +5,22 @@ make_glib_find_gsettings_schemas() { addToSearchPath GSETTINGS_SCHEMAS_PATH "$1/share/gsettings-schemas/"* fi } - envHooks+=(make_glib_find_gsettings_schemas) +# Install gschemas, if any, in a package-specific directory +glibPreInstallPhase() { + installFlagsArray+=("gsettingsschemadir=${!outputLib}/share/gsettings-schemas/$name/glib-2.0/schemas/") +} +preInstallPhases+=(glibPreInstallPhase) + glibPreFixupPhase() { # Move gschemas in case the install flag didn't help - if [ -d "$out/share/glib-2.0/schemas" ]; then - mkdir -p "$out/share/gsettings-schemas/$name/glib-2.0" - mv "$out/share/glib-2.0/schemas" "$out/share/gsettings-schemas/$name/glib-2.0/" + if [ -d "${!outputLib}/share/glib-2.0/schemas" ]; then + mkdir -p "${!outputLib}/share/gsettings-schemas/$name/glib-2.0" + mv "${!outputLib}/share/glib-2.0/schemas" "${!outputLib}/share/gsettings-schemas/$name/glib-2.0/" fi - addToSearchPath GSETTINGS_SCHEMAS_PATH "$out/share/gsettings-schemas/$name" + addToSearchPath GSETTINGS_SCHEMAS_PATH "${!outputLib}/share/gsettings-schemas/$name" } +preFixupPhases+=(glibPreFixupPhase) -preFixupPhases="$preFixupPhases glibPreFixupPhase" diff --git a/pkgs/development/libraries/glibc/builder.sh b/pkgs/development/libraries/glibc/builder.sh index d60b143a1eca..85f27c7b3559 100644 --- a/pkgs/development/libraries/glibc/builder.sh +++ b/pkgs/development/libraries/glibc/builder.sh @@ -12,8 +12,10 @@ postConfigure() { export NIX_DONT_SET_RPATH=1 unset CFLAGS -} + # Apparently --bindir is not respected. + makeFlagsArray+=("bindir=$bin/bin" "sbindir=$bin/sbin" "rootsbindir=$bin/sbin") +} postInstall() { if test -n "$installLocales"; then @@ -25,7 +27,7 @@ postInstall() { if test -n "$linuxHeaders"; then # Include the Linux kernel headers in Glibc, except the `scsi' # subdirectory, which Glibc provides itself. - (cd $out/include && \ + (cd $dev/include && \ ln -sv $(ls -d $linuxHeaders/include/* | grep -v 'scsi$') .) fi @@ -41,6 +43,16 @@ postInstall() { for i in $out/lib/*.a; do strip -S "$i" done + # Put libraries for static linking in a separate output. Note + # that libc_nonshared.a and libpthread_nonshared.a are required + # for dynamically-linked applications. + mkdir -p $static/lib + mv $out/lib/*.a $static/lib + mv $static/lib/lib*_nonshared.a $out/lib + + # Work around a Nix bug: hard links across outputs cause a build failure. + cp $bin/bin/getconf $bin/bin/getconf_ + mv $bin/bin/getconf_ $bin/bin/getconf } genericBuild diff --git a/pkgs/development/libraries/glibc/common.nix b/pkgs/development/libraries/glibc/common.nix index 13d5adcd9b13..893f65c3e205 100644 --- a/pkgs/development/libraries/glibc/common.nix +++ b/pkgs/development/libraries/glibc/common.nix @@ -112,6 +112,8 @@ stdenv.mkDerivation ({ installFlags = [ "sysconfdir=$(out)/etc" ]; + outputs = [ "dev" "out" "bin" "static" ]; + buildInputs = lib.optionals (cross != null) [ gccCross ] ++ lib.optionals withGd [ gd libpng ]; diff --git a/pkgs/development/libraries/glibc/default.nix b/pkgs/development/libraries/glibc/default.nix index 2630cdb127f7..80fc2ce1e93d 100644 --- a/pkgs/development/libraries/glibc/default.nix +++ b/pkgs/development/libraries/glibc/default.nix @@ -64,7 +64,7 @@ in # To avoid a dependency on the build system 'bash'. preFixup = '' - rm $out/bin/{ldd,tzselect,catchsegv,xtrace} + rm $bin/bin/{ldd,tzselect,catchsegv,xtrace} ''; } else {})) diff --git a/pkgs/development/libraries/glibc/info.nix b/pkgs/development/libraries/glibc/info.nix index 1e60856430db..84ec43e11a85 100644 --- a/pkgs/development/libraries/glibc/info.nix +++ b/pkgs/development/libraries/glibc/info.nix @@ -8,6 +8,8 @@ build null { inherit fetchurl stdenv lib; + outputs = [ "out" ]; + configureFlags = [ "--enable-add-ons" ]; buildInputs = [ texinfo perl ]; diff --git a/pkgs/development/libraries/glibc/locales.nix b/pkgs/development/libraries/glibc/locales.nix index 9607d7ecb223..994390cf8290 100644 --- a/pkgs/development/libraries/glibc/locales.nix +++ b/pkgs/development/libraries/glibc/locales.nix @@ -18,6 +18,8 @@ build null { builder = ./locales-builder.sh; + outputs = [ "out" ]; + # Awful hack: `localedef' doesn't allow the path to `locale-archive' # to be overriden, but you *can* specify a prefix, i.e. it will use # //lib/locale/locale-archive. So we use @@ -25,7 +27,7 @@ build null { # $TMPDIR/nix/store/...-glibc-.../lib/locale/locale-archive. buildPhase = '' - mkdir -p $TMPDIR/"$(dirname $(readlink -f $(type -p localedef)))/../lib/locale" + mkdir -p $TMPDIR/"${stdenv.cc.libc.out}/lib/locale" # Hack to allow building of the locales (needed since glibc-2.12) sed -i -e 's,^$(rtld-prefix) $(common-objpfx)locale/localedef,localedef --prefix='$TMPDIR',' ../glibc-2*/localedata/Makefile diff --git a/pkgs/development/libraries/glibc/multi.nix b/pkgs/development/libraries/glibc/multi.nix index b5b4eabe9c74..0d7bed99f22f 100644 --- a/pkgs/development/libraries/glibc/multi.nix +++ b/pkgs/development/libraries/glibc/multi.nix @@ -3,32 +3,26 @@ let nameVersion = builtins.parseDrvName glibc.name; + glibc64 = glibc; in runCommand "${nameVersion.name}-multi-${nameVersion.version}" - { inherit glibc32; - glibc64 = glibc; - } + { outputs = [ "dev" "out" "bin" ]; } # TODO: no static version here (yet) '' - mkdir -p $out - ln -s $glibc64/* $out/ - - rm $out/lib $out/lib64 - mkdir -p $out/lib - ln -s $glibc64/lib/* $out/lib - ln -s $glibc32/lib $out/lib/32 - ln -s lib $out/lib64 + mkdir -p "$out/lib" + ln -s '${glibc64.out}'/lib/* "$out/lib" + ln -s '${glibc32.out}/lib' "$out/lib/32" + ln -s lib "$out/lib64" # fixing ldd RLTDLIST - rm $out/bin - cp -rs $glibc64/bin $out - chmod u+w $out/bin - rm $out/bin/ldd + mkdir -p "$bin/bin" + cp -s '${glibc64.bin}'/bin/* "$bin/bin/" + rm "$bin/bin/ldd" sed -e "s|^RTLDLIST=.*$|RTLDLIST=\"$out/lib/ld-linux-x86-64.so.2 $out/lib/32/ld-linux.so.2\"|g" \ - $glibc64/bin/ldd > $out/bin/ldd - chmod 555 $out/bin/ldd + '${glibc64.bin}/bin/ldd' > "$bin/bin/ldd" + chmod +x "$bin/bin/ldd" - rm $out/include - cp -rs $glibc32/include $out - chmod -R u+w $out/include - cp -rsf $glibc64/include $out + mkdir "$dev" + cp -rs '${glibc32}'/include "$dev/" + chmod +w -R "$dev" + cp -rsf '${glibc64}'/include "$dev/" '' diff --git a/pkgs/development/libraries/gmime/default.nix b/pkgs/development/libraries/gmime/default.nix index 6564fc511867..ee81aec07976 100644 --- a/pkgs/development/libraries/gmime/default.nix +++ b/pkgs/development/libraries/gmime/default.nix @@ -8,9 +8,13 @@ stdenv.mkDerivation rec { sha256 = "0rfzbgsh8ira5p76kdghygl5i3fvmmx4wbw5rp7f8ajc4vxp18g0"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ glib zlib libgpgerror ]; + enableParallelBuilding = true; + meta = { homepage = http://spruce.sourceforge.net/gmime/; description = "A C/C++ library for manipulating MIME messages"; diff --git a/pkgs/development/libraries/gmp/5.1.x.nix b/pkgs/development/libraries/gmp/5.1.x.nix index 7b393067ff52..0768df60a794 100644 --- a/pkgs/development/libraries/gmp/5.1.x.nix +++ b/pkgs/development/libraries/gmp/5.1.x.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "0q5i39pxrasgn9qdxzpfbwhh11ph80p57x6hf48m74261d97j83m"; }; + outputs = [ "out" "info" ]; + nativeBuildInputs = [ m4 ]; patches = if stdenv.isDarwin then [ ./need-size-t.patch ] else null; diff --git a/pkgs/development/libraries/gmp/6.x.nix b/pkgs/development/libraries/gmp/6.x.nix index 5025557458cd..a7443c02c5b6 100644 --- a/pkgs/development/libraries/gmp/6.x.nix +++ b/pkgs/development/libraries/gmp/6.x.nix @@ -1,8 +1,8 @@ -{ stdenv, fetchurl, m4, cxx ? true, withStatic ? true }: +{ stdenv, fetchurl, m4, cxx ? true, withStatic ? false }: with { inherit (stdenv.lib) optional optionalString; }; -stdenv.mkDerivation rec { +let self = stdenv.mkDerivation rec { name = "gmp-6.1.0"; src = fetchurl { # we need to use bz2, others aren't in bootstrapping stdenv @@ -10,6 +10,12 @@ stdenv.mkDerivation rec { sha256 = "1s3kddydvngqrpc6i1vbz39raya2jdcl042wi0ksbszgjjllk129"; }; + #outputs TODO: split $cxx due to libstdc++ dependency; maybe port to gmp5; + # maybe let ghc use a version with *.so shared with rest of nixpkgs and *.a added + # - see #5855 for related discussion + outputs = [ "dev" "out" "info" ]; + passthru.static = self.out; + nativeBuildInputs = [ m4 ]; configureFlags = @@ -69,4 +75,5 @@ stdenv.mkDerivation rec { platforms = platforms.all; maintainers = [ maintainers.simons ]; }; -} +}; + in self diff --git a/pkgs/development/libraries/gnutls/generic.nix b/pkgs/development/libraries/gnutls/generic.nix index e51b77eb5b07..b54ea52b880b 100644 --- a/pkgs/development/libraries/gnutls/generic.nix +++ b/pkgs/development/libraries/gnutls/generic.nix @@ -13,7 +13,8 @@ stdenv.mkDerivation { inherit src patches postPatch; - outputs = [ "out" "man" ]; + outputs = [ "dev" "out" "bin" "man" "docdev" ]; + outputInfo = "docdev"; configureFlags = lib.optional stdenv.isLinux "--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt" @@ -34,8 +35,6 @@ stdenv.mkDerivation { ++ [ unbound ] ++ lib.optional guileBindings guile; - # AutoreconfHook is temporary until the patch lands upstream to fix - # header file generation with parallel building nativeBuildInputs = [ perl pkgconfig ] ++ nativeBuildInputs; # XXX: Gnulib's `test-select' fails on FreeBSD: @@ -45,9 +44,10 @@ stdenv.mkDerivation { # Fixup broken libtool and pkgconfig files preFixup = lib.optionalString (!stdenv.isDarwin) '' sed ${lib.optionalString tpmSupport "-e 's,-ltspi,-L${trousers}/lib -ltspi,'"} \ - -e 's,-lz,-L${zlib}/lib -lz,' \ - -e 's,-lgmp,-L${gmp}/lib -lgmp,' \ - -i $out/lib/libgnutls.la $out/lib/pkgconfig/gnutls.pc + -e 's,-lz,-L${zlib.out}/lib -lz,' \ + -e 's,-L${gmp.dev}/lib,-L${gmp.out}/lib,' \ + -e 's,-lgmp,-L${gmp.out}/lib -lgmp,' \ + -i $out/lib/*.la "$dev/lib/pkgconfig/gnutls.pc" ''; meta = with lib; { diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix index e13ce337f388..47ccb17e4845 100644 --- a/pkgs/development/libraries/gobject-introspection/default.nix +++ b/pkgs/development/libraries/gobject-introspection/default.nix @@ -19,20 +19,21 @@ stdenv.mkDerivation rec { sha256 = "6658bd3c2b8813eb3e2511ee153238d09ace9d309e4574af27443d87423e4233"; }; - buildInputs = [ flex bison pkgconfig python ] + outputs = [ "dev" "out" ]; + outputBin = "dev"; + outputMan = "dev"; # tiny pages + + buildInputs = [ flex bison pkgconfig python setupHook/*move .gir*/ ] ++ libintlOrEmpty ++ stdenv.lib.optional stdenv.isDarwin cctools; propagatedBuildInputs = [ libffi glib ]; - # The '--disable-tests' flag is no longer recognized, so can be safely removed - # next time this package changes. - configureFlags = [ "--disable-tests" ]; - preConfigure = '' sed 's|/usr/bin/env ||' -i tools/g-ir-tool-template.in ''; - postInstall = "rm -rf $out/share/gtk-doc"; + # outputs TODO: share/gobject-introspection-1.0/tests is needed during build + # by pygobject3 (and maybe others), but it's only searched in $out setupHook = ./setup-hook.sh; diff --git a/pkgs/development/libraries/gobject-introspection/setup-hook.sh b/pkgs/development/libraries/gobject-introspection/setup-hook.sh index d411ad69dc43..583d8475ec3b 100644 --- a/pkgs/development/libraries/gobject-introspection/setup-hook.sh +++ b/pkgs/development/libraries/gobject-introspection/setup-hook.sh @@ -12,3 +12,10 @@ make_gobject_introspection_find_gir_files() { } envHooks+=(make_gobject_introspection_find_gir_files) + +_multioutMoveGlibGir() { + moveToOutput share/gir-1.0 "${!outputDev}" +} + +preFixupHooks+=(_multioutMoveGlibGir) + diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix index 4572387e2252..c60311423233 100644 --- a/pkgs/development/libraries/gpgme/default.nix +++ b/pkgs/development/libraries/gpgme/default.nix @@ -16,6 +16,9 @@ stdenv.mkDerivation rec { sha256 = "17892sclz3yg45wbyqqrzzpq3l0icbnfl28f101b3062g8cy97dh"; }; + outputs = [ "dev" "out" "info" ]; + outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool + propagatedBuildInputs = [ libgpgerror glib libassuan pth ]; nativeBuildInputs = [ pkgconfig gnupg ]; @@ -25,11 +28,11 @@ stdenv.mkDerivation rec { "--enable-fixed-path=${gpgStorePath}/bin" ]; - meta = { + meta = with stdenv.lib; { homepage = "http://www.gnupg.org/related_software/gpgme"; description = "Library for making GnuPG easier to use"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + license = licenses.gpl2; + platforms = platforms.unix; + maintainers = [ maintainers.fuuzetsu ]; }; } diff --git a/pkgs/development/libraries/gstreamer/default.nix b/pkgs/development/libraries/gstreamer/default.nix index 81e5726fa946..3118caffb11a 100644 --- a/pkgs/development/libraries/gstreamer/default.nix +++ b/pkgs/development/libraries/gstreamer/default.nix @@ -1,4 +1,4 @@ -{ callPackage }: +{ callPackage, libva-full }: rec { gstreamer = callPackage ./core { }; @@ -21,7 +21,10 @@ rec { # (Non Linear Engine). gst-editing-services = callPackage ./ges { inherit gnonlin; }; - gst-vaapi = callPackage ./vaapi { inherit gst-plugins-base gstreamer gst-plugins-bad; }; + gst-vaapi = callPackage ./vaapi { + inherit gst-plugins-base gstreamer gst-plugins-bad; + libva = libva-full; # looks also for libva-{x11,wayland} + }; gst-validate = callPackage ./validate { inherit gst-plugins-base; }; } diff --git a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix index dc39bddc232f..191c1f6b0f2c 100644 --- a/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix +++ b/pkgs/development/libraries/gstreamer/legacy/gst-plugins-good/default.nix @@ -1,7 +1,7 @@ { fetchurl, stdenv, pkgconfig, gst_plugins_base, aalib, cairo , flac, libjpeg, zlib, speex, libpng, libdv, libcaca, libvpx , libiec61883, libavc1394, taglib, libpulseaudio, gdk_pixbuf, orc -, glib, gstreamer, bzip2, libsoup, libshout, libintlOrEmpty +, glib, gstreamer, bzip2, libsoup, libshout, ncurses, libintlOrEmpty , # Whether to build no plugins that have external dependencies # (except the PulseAudio plugin). minimalDeps ? false @@ -34,6 +34,11 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postInstall = '' + substituteInPlace $out/lib/gstreamer-0.10/libgstaasink.la \ + --replace "${ncurses.dev}/lib" "${ncurses.out}/lib" + ''; + meta = { homepage = http://gstreamer.freedesktop.org; diff --git a/pkgs/development/libraries/gstreamer/vaapi/default.nix b/pkgs/development/libraries/gstreamer/vaapi/default.nix index 015aa4e07f5d..bf061b4125b5 100644 --- a/pkgs/development/libraries/gstreamer/vaapi/default.nix +++ b/pkgs/development/libraries/gstreamer/vaapi/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, gst-plugins-base, bzip2, libva +{ stdenv, fetchurl, pkgconfig, gst-plugins-base, bzip2, libva, wayland , libdrm, udev, xorg, mesa, yasm, gstreamer, gst-plugins-bad, nasm , libvpx }: @@ -14,8 +14,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = with stdenv.lib; [ pkgconfig bzip2 ]; - buildInputs = with stdenv.lib; [ gstreamer gst-plugins-base gst-plugins-bad libva libdrm udev - xorg.libX11 xorg.libXext xorg.libXv xorg.libXrandr xorg.libSM xorg.libICE mesa nasm libvpx ]; + buildInputs = [ + gstreamer gst-plugins-base gst-plugins-bad libva wayland libdrm udev + xorg.libX11 xorg.libXext xorg.libXv xorg.libXrandr xorg.libSM xorg.libICE mesa nasm libvpx + ]; preConfigure = " export GST_PLUGIN_PATH_1_0=$out/lib/gstreamer-1.0 diff --git a/pkgs/development/libraries/gtk+/2.x.nix b/pkgs/development/libraries/gtk+/2.x.nix index 8830e1425b68..d4d4cddb4023 100644 --- a/pkgs/development/libraries/gtk+/2.x.nix +++ b/pkgs/development/libraries/gtk+/2.x.nix @@ -15,11 +15,16 @@ stdenv.mkDerivation rec { sha256 = "1f1ifv1ijrda4jx831l24d3ww65v5gf56r464fi11n6k02bcah87"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + enableParallelBuilding = true; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (libintlOrEmpty != []) "-lintl"; - nativeBuildInputs = [ perl pkgconfig gettext ]; + setupHook = ./setup-hook.sh; + + nativeBuildInputs = [ setupHook perl pkgconfig gettext ]; propagatedBuildInputs = with xorg; with stdenv.lib; [ glib cairo pango gdk_pixbuf atk ] @@ -35,7 +40,9 @@ stdenv.mkDerivation rec { then "--disable-glibtest --disable-introspection --disable-visibility" else "--with-xinput=yes"; - postInstall = "rm -rf $out/share/gtk-doc"; + postInstall = '' + moveToOutput share/gtk-2.0/demo "$docdev" + ''; passthru = { gtkExeEnvPostBuild = '' diff --git a/pkgs/development/libraries/gtk+/3.x.nix b/pkgs/development/libraries/gtk+/3.x.nix index f738f76ca029..a2da4c7b0339 100644 --- a/pkgs/development/libraries/gtk+/3.x.nix +++ b/pkgs/development/libraries/gtk+/3.x.nix @@ -1,12 +1,11 @@ { stdenv, fetchurl, pkgconfig, gettext, perl , expat, glib, cairo, pango, gdk_pixbuf, atk, at_spi2_atk, gobjectIntrospection -, xlibs, x11, wayland, libxkbcommon, epoxy +, xorg, wayland, epoxy, json_glib, libxkbcommon, gmp , xineramaSupport ? stdenv.isLinux , cupsSupport ? stdenv.isLinux, cups ? null , darwin }: -assert xineramaSupport -> xlibs.libXinerama != null; assert cupsSupport -> cups != null; with stdenv.lib; @@ -24,17 +23,22 @@ stdenv.mkDerivation rec { sha256 = "107aeb9a4244ce3c044becdd6dffc32d83202595181597180d4c736302a71852"; }; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ]; - buildInputs = [ libxkbcommon epoxy ]; - propagatedBuildInputs = with xlibs; with stdenv.lib; - [ expat glib cairo pango gdk_pixbuf atk at_spi2_atk libXrandr libXrender libXcomposite libXi libXcursor ] + buildInputs = [ libxkbcommon epoxy json_glib ]; + propagatedBuildInputs = with xorg; with stdenv.lib; + [ expat glib cairo pango gdk_pixbuf atk at_spi2_atk + libXrandr libXrender libXcomposite libXi libXcursor libSM libICE ] ++ optionals stdenv.isLinux [ wayland ] ++ optional stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Cocoa ]) ++ optional xineramaSupport libXinerama ++ optional cupsSupport cups; + #TODO: colord? - NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null; + NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; # demos fail to install, no idea where's the problem preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in"; @@ -49,7 +53,10 @@ stdenv.mkDerivation rec { "--enable-quartz-backend" ]; - postInstall = "rm -rf $out/share/gtk-doc"; + postInstall = '' + substituteInPlace "$out/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.la" \ + --replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib' + ''; passthru = { gtkExeEnvPostBuild = '' @@ -58,7 +65,7 @@ stdenv.mkDerivation rec { ''; # workaround for bug of nix-mode for Emacs */ ''; }; - meta = { + meta = with stdenv.lib; { description = "A multi-platform toolkit for creating graphical user interfaces"; longDescription = '' @@ -74,9 +81,9 @@ stdenv.mkDerivation rec { homepage = http://www.gtk.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - maintainers = with stdenv.lib.maintainers; [ urkud raskin vcunat lethalman ]; - platforms = stdenv.lib.platforms.all; + maintainers = with maintainers; [ urkud raskin vcunat lethalman ]; + platforms = platforms.all; }; } diff --git a/pkgs/development/libraries/gtk+/setup-hook.sh b/pkgs/development/libraries/gtk+/setup-hook.sh new file mode 100644 index 000000000000..c2b0ab502db7 --- /dev/null +++ b/pkgs/development/libraries/gtk+/setup-hook.sh @@ -0,0 +1,10 @@ +fixupOutputHooks+=(_gtk2CleanComments) + +# Clean comments that link to generator of the file +_gtk2CleanComments() { + local f="$prefix/lib/gtk-2.0/2.10.0/immodules.cache" + if [ -f "$f" ]; then + sed 's|Created by .*bin/gtk-query-|Created by bin/gtk-query-|' -i "$f" + fi +} + diff --git a/pkgs/development/libraries/gupnp/default.nix b/pkgs/development/libraries/gupnp/default.nix index 6145c8c49477..45f5217d3c91 100644 --- a/pkgs/development/libraries/gupnp/default.nix +++ b/pkgs/development/libraries/gupnp/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { postInstall = '' ln -sv ${libsoup}/include/*/libsoup $out/include - ln -sv ${libxml2}/include/*/libxml $out/include + ln -sv ${libxml2.dev}/include/*/libxml $out/include ln -sv ${gssdp}/include/*/libgssdp $out/include ''; diff --git a/pkgs/development/libraries/gvfs/default.nix b/pkgs/development/libraries/gvfs/default.nix index d2a958faed8b..37403f50e2b1 100644 --- a/pkgs/development/libraries/gvfs/default.nix +++ b/pkgs/development/libraries/gvfs/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig intltool libtool ]; buildInputs = - [ makeWrapper glib dbus.libs udev libgudev udisks2 libgcrypt + [ makeWrapper glib dbus udev libgudev udisks2 libgcrypt libgphoto2 avahi libarchive fuse libcdio libxml2 libxslt docbook_xsl samba libmtp # ToDo: a ligther version of libsoup to have FTP/HTTP support? diff --git a/pkgs/development/libraries/harfbuzz/default.nix b/pkgs/development/libraries/harfbuzz/default.nix index d2546ebd496d..2d84b1e73a82 100644 --- a/pkgs/development/libraries/harfbuzz/default.nix +++ b/pkgs/development/libraries/harfbuzz/default.nix @@ -1,38 +1,49 @@ { stdenv, fetchurl, pkgconfig, glib, freetype, cairo, libintlOrEmpty -, icu, graphite2 +, icu, graphite2, harfbuzz # The icu variant uses and propagates the non-icu one. , withIcu ? false # recommended by upstream as default, but most don't needed and it's big , withGraphite2 ? true # it is small and major distros do include it }: -# TODO: split non-icu and icu lib into different outputs? -# (icu is a ~30 MB dependency, the rest is very small in comparison) +let + version = "1.1.2"; + inherit (stdenv.lib) optional optionals optionalString; +in -stdenv.mkDerivation rec { - name = "harfbuzz-1.1.2"; +stdenv.mkDerivation { + name = "harfbuzz${optionalString withIcu "-icu"}-${version}"; src = fetchurl { - url = "http://www.freedesktop.org/software/harfbuzz/release/${name}.tar.bz2"; + url = "http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-${version}.tar.bz2"; sha256 = "07s6z3hbrb4rdfgzmln169wxz4nm5y7qbr02ik5c7drxpn85fb2a"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" ]; + outputBin = "dev"; configureFlags = [ ( "--with-graphite2=" + (if withGraphite2 then "yes" else "no") ) # not auto-detected by default ( "--with-icu=" + (if withIcu then "yes" else "no") ) ]; - buildInputs = [ pkgconfig glib freetype cairo ] # recommended by upstream + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ glib freetype cairo ] # recommended by upstream ++ libintlOrEmpty; propagatedBuildInputs = [] - ++ stdenv.lib.optional withGraphite2 graphite2 - ++ stdenv.lib.optional withIcu icu + ++ optional withGraphite2 graphite2 + ++ optionals withIcu [ icu harfbuzz ] ; - meta = { + # Slightly hacky; some pkgs expect them in a single directory. + postInstall = optionalString withIcu '' + rm "$out"/lib/libharfbuzz.* "$dev/lib/pkgconfig/harfbuzz.pc" + ln -s {'${harfbuzz.out}',"$out"}/lib/libharfbuzz.la + ln -s {'${harfbuzz.dev}',"$dev"}/lib/pkgconfig/harfbuzz.pc + ''; + + meta = with stdenv.lib; { description = "An OpenType text shaping engine"; homepage = http://www.freedesktop.org/wiki/Software/HarfBuzz; - maintainers = [ stdenv.lib.maintainers.eelco ]; - platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; + maintainers = [ maintainers.eelco ]; + platforms = with platforms; linux ++ darwin; }; } diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix index 98f6511f3917..0d0ff38fb47f 100644 --- a/pkgs/development/libraries/hunspell/default.nix +++ b/pkgs/development/libraries/hunspell/default.nix @@ -8,8 +8,10 @@ stdenv.mkDerivation rec { sha256 = "0v14ff9s37vkh45diaddndcrj0hmn67arh8xh8k79q9c1vgc1cm7"; }; - propagatedBuildInputs = [ ncurses readline ]; - configureFlags = "--with-ui --with-readline"; + outputs = [ "dev" "out" "bin" "man" ]; + + buildInputs = [ ncurses readline ]; + configureFlags = [ "--with-ui" "--with-readline" ]; meta = with stdenv.lib; { homepage = http://hunspell.sourceforge.net; diff --git a/pkgs/development/libraries/icu/default.nix b/pkgs/development/libraries/icu/default.nix index 224e9302baa6..d2604b03f74f 100644 --- a/pkgs/development/libraries/icu/default.nix +++ b/pkgs/development/libraries/icu/default.nix @@ -13,6 +13,9 @@ stdenv.mkDerivation ({ sha256 = "05j86714qaj0lvhvyr2s1xncw6sk0h2dcghb3iiwykbkbh8fjr1s"; }; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + makeFlags = stdenv.lib.optionalString stdenv.isDarwin "CXXFLAGS=-headerpad_max_install_names"; @@ -37,6 +40,8 @@ stdenv.mkDerivation ({ sed -i 's/INSTALL_CMD=.*install/INSTALL_CMD=install/' $out/lib/icu/${version}/pkgdata.inc ''; + postFixup = ''moveToOutput lib/icu "$dev" ''; + enableParallelBuilding = true; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/imlib2/default.nix b/pkgs/development/libraries/imlib2/default.nix index 3ff608a4ac33..8d79fcc50a8e 100644 --- a/pkgs/development/libraries/imlib2/default.nix +++ b/pkgs/development/libraries/imlib2/default.nix @@ -1,21 +1,17 @@ { stdenv, fetchurl, xlibsWrapper, libjpeg, libtiff, giflib, libpng, bzip2, pkgconfig }: stdenv.mkDerivation rec { - name = "imlib2-1.4.6"; + name = "imlib2-1.4.8"; src = fetchurl { url = "mirror://sourceforge/enlightenment/${name}.tar.bz2"; - sha256 = "0x1j0ylpclkp8cfpwfpkjywqz124bqskyxbw8pvwzkv2gmrbwldg"; + sha256 = "0xxhgkd1axlcmf3kp1d7naiygparpg8l3sg3d263rhl2z0gm7aw9"; }; buildInputs = [ xlibsWrapper libjpeg libtiff giflib libpng bzip2 ]; nativeBuildInputs = [ pkgconfig ]; - # From - # https://github.com/PhantomX/slackbuilds/blob/master/imlib2/patches/imlib2-giflib51.patch - patches = [ ./giflib51.patch ]; - preConfigure = '' substituteInPlace imlib2-config.in \ --replace "@my_libs@" "" diff --git a/pkgs/development/libraries/imlib2/giflib51.patch b/pkgs/development/libraries/imlib2/giflib51.patch deleted file mode 100644 index 97eaeb0b96e6..000000000000 --- a/pkgs/development/libraries/imlib2/giflib51.patch +++ /dev/null @@ -1,64 +0,0 @@ -diff -ruN imlib2-1.4.6.orig/src/modules/loaders/loader_gif.c imlib2-1.4.6/src/modules/loaders/loader_gif.c ---- imlib2-1.4.6.orig/src/modules/loaders/loader_gif.c 2013-12-21 10:16:10.000000000 +0000 -+++ imlib2-1.4.6/src/modules/loaders/loader_gif.c 2014-05-27 09:52:35.857291512 +0000 -@@ -36,7 +36,7 @@ - #endif - if (fd < 0) - return 0; -- gif = DGifOpenFileHandle(fd); -+ gif = DGifOpenFileHandle(fd, NULL); - if (!gif) - { - close(fd); -@@ -60,13 +60,13 @@ - h = gif->Image.Height; - if (!IMAGE_DIMENSIONS_OK(w, h)) - { -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - return 0; - } - rows = malloc(h * sizeof(GifRowType *)); - if (!rows) - { -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - return 0; - } - for (i = 0; i < h; i++) -@@ -78,7 +78,7 @@ - rows[i] = malloc(w * sizeof(GifPixelType)); - if (!rows[i]) - { -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - for (i = 0; i < h; i++) - { - if (rows[i]) -@@ -150,7 +150,7 @@ - im->data = (DATA32 *) malloc(sizeof(DATA32) * w * h); - if (!im->data) - { -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - free(rows); - return 0; - } -@@ -181,7 +181,7 @@ - last_per = (int)per; - if (!(progress(im, (int)per, 0, last_y, w, i))) - { -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - for (i = 0; i < h; i++) - { - free(rows[i]); -@@ -198,7 +198,7 @@ - { - progress(im, 100, 0, last_y, w, h); - } -- DGifCloseFile(gif); -+ DGifCloseFile(gif, NULL); - for (i = 0; i < h; i++) - { - free(rows[i]); \ No newline at end of file diff --git a/pkgs/development/libraries/jasper/default.nix b/pkgs/development/libraries/jasper/default.nix index 40d54ed400a3..50bebca6b312 100644 --- a/pkgs/development/libraries/jasper/default.nix +++ b/pkgs/development/libraries/jasper/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, unzip, xorg, libjpeg }: +{ stdenv, fetchurl, unzip, libjpeg, autoreconfHook }: stdenv.mkDerivation rec { name = "jasper-1.900.1"; @@ -18,11 +18,16 @@ stdenv.mkDerivation rec { ./jasper-CVE-2014-9029.diff ]; - nativeBuildInputs = [unzip]; + # newer reconf to recognize a multiout flag + nativeBuildInputs = [ unzip autoreconfHook ]; propagatedBuildInputs = [ libjpeg ]; configureFlags = "--enable-shared"; + outputs = [ "dev" "out" "man" "bin" ]; + + enableParallelBuilding = true; + meta = { homepage = https://www.ece.uvic.ca/~frodo/jasper/; description = "JPEG2000 Library"; diff --git a/pkgs/development/libraries/java/lombok/default.nix b/pkgs/development/libraries/java/lombok/default.nix new file mode 100644 index 000000000000..05ad908b3c36 --- /dev/null +++ b/pkgs/development/libraries/java/lombok/default.nix @@ -0,0 +1,18 @@ +{stdenv, fetchurl}: + +stdenv.mkDerivation rec { + name = "lombok-1.16.8"; + src = fetchurl { + url = "https://projectlombok.org/downloads/${name}.jar"; + sha256 = "0s7ak6gx1h04da2rdhvc0fk896cwqm2m7g3chqcjpsrkgfdv4cpy"; + }; + phases = [ "installPhase" ]; + installPhase = "mkdir -p $out/share/java; cp $src $out/share/java/lombok.jar"; + meta = { + description = "A library that can write a lot of boilerplate for your Java project"; + platforms = stdenv.lib.platforms.all; + license = stdenv.lib.licenses.mit; + homepage = https://projectlombok.org/; + maintainers = [ stdenv.lib.maintainers.CrystalGamma ]; + }; +} diff --git a/pkgs/development/libraries/json-c/default.nix b/pkgs/development/libraries/json-c/default.nix index ad425f2a3812..d5e0694e0516 100644 --- a/pkgs/development/libraries/json-c/default.nix +++ b/pkgs/development/libraries/json-c/default.nix @@ -9,11 +9,13 @@ stdenv.mkDerivation rec { patches = [ ./unused-variable.patch ]; - buildInputs = [ autoreconfHook ]; # won't configure without it, no idea why + outputs = [ "dev" "out" ]; + + nativeBuildInputs = [ autoreconfHook ]; # won't configure without it, no idea why # compatibility hack (for mypaint at least) postInstall = '' - ln -s json-c.pc "$out/lib/pkgconfig/json.pc" + ln -s json-c.pc "$dev/lib/pkgconfig/json.pc" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/kde-frameworks-5.19/attica.nix b/pkgs/development/libraries/kde-frameworks-5.19/attica.nix new file mode 100644 index 000000000000..98721876c120 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/attica.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "attica"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix b/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix new file mode 100644 index 000000000000..38c41d9271d8 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/baloo.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kconfig +, kcoreaddons, kcrash, kdbusaddons, kfilemetadata, ki18n, kidletime +, kio, lmdb, makeQtWrapper, qtbase, qtquick1, solid +}: + +kdeFramework { + name = "baloo"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + kconfig kcrash kdbusaddons lmdb qtquick1 solid + ]; + propagatedBuildInputs = [ + kauth kcoreaddons kfilemetadata ki18n kio kidletime qtbase + ]; + postInstall = '' + wrapQtProgram "$out/bin/baloo_file" + wrapQtProgram "$out/bin/baloo_file_extractor" + wrapQtProgram "$out/bin/balooctl" + wrapQtProgram "$out/bin/baloosearch" + wrapQtProgram "$out/bin/balooshow" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix new file mode 100644 index 000000000000..f981b0516f72 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/bluez-qt.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtdeclarative +}: + +kdeFramework { + name = "bluez-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtdeclarative ]; + preConfigure = '' + substituteInPlace CMakeLists.txt \ + --replace /lib/udev/rules.d "$out/lib/udev/rules.d" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix b/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix new file mode 100644 index 000000000000..44cc99daf261 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/breeze-icons.nix @@ -0,0 +1,10 @@ +{ kdeFramework +, extra-cmake-modules +, qtsvg +}: + +kdeFramework { + name = "breeze-icons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtsvg ]; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/default.nix new file mode 100644 index 000000000000..bb96048d6ff5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/default.nix @@ -0,0 +1,114 @@ +# Maintainer's Notes: +# +# How To Update +# 1. Edit the URL in ./manifest.sh +# 2. Run ./manifest.sh +# 3. Fix build errors. + +{ pkgs, debug ? false }: + +let + + inherit (pkgs) lib makeSetupHook stdenv; + + mirror = "mirror://kde"; + srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; }; + + packages = self: with self; { + kdeFramework = args: + let + inherit (args) name; + inherit (srcs."${name}") src version; + in stdenv.mkDerivation (args // { + name = "${name}-${version}"; + inherit src; + + outputs = args.outputs or [ "dev" "out" ]; + + cmakeFlags = + (args.cmakeFlags or []) + ++ [ "-DBUILD_TESTING=OFF" ] + ++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug"; + + meta = { + license = with lib.licenses; [ + lgpl21Plus lgpl3Plus bsd2 mit gpl2Plus gpl3Plus fdl12 + ]; + platforms = lib.platforms.linux; + homepage = "http://www.kde.org"; + } // (args.meta or {}); + }); + + attica = callPackage ./attica.nix {}; + baloo = callPackage ./baloo.nix {}; + bluez-qt = callPackage ./bluez-qt.nix {}; + breeze-icons = callPackage ./breeze-icons.nix {}; + extra-cmake-modules = callPackage ./extra-cmake-modules {}; + frameworkintegration = callPackage ./frameworkintegration.nix {}; + kactivities = callPackage ./kactivities.nix {}; + kapidox = callPackage ./kapidox.nix {}; + karchive = callPackage ./karchive.nix {}; + kauth = callPackage ./kauth {}; + kbookmarks = callPackage ./kbookmarks.nix {}; + kcmutils = callPackage ./kcmutils {}; + kcodecs = callPackage ./kcodecs.nix {}; + kcompletion = callPackage ./kcompletion.nix {}; + kconfig = callPackage ./kconfig.nix {}; + kconfigwidgets = callPackage ./kconfigwidgets {}; + kcoreaddons = callPackage ./kcoreaddons.nix {}; + kcrash = callPackage ./kcrash.nix {}; + kdbusaddons = callPackage ./kdbusaddons.nix {}; + kdeclarative = callPackage ./kdeclarative.nix {}; + kded = callPackage ./kded.nix {}; + kdelibs4support = callPackage ./kdelibs4support {}; + kdesignerplugin = callPackage ./kdesignerplugin.nix {}; + kdewebkit = callPackage ./kdewebkit.nix {}; + kdesu = callPackage ./kdesu.nix {}; + kdnssd = callPackage ./kdnssd.nix {}; + kdoctools = callPackage ./kdoctools {}; + kemoticons = callPackage ./kemoticons.nix {}; + kfilemetadata = callPackage ./kfilemetadata {}; + kglobalaccel = callPackage ./kglobalaccel.nix {}; + kguiaddons = callPackage ./kguiaddons.nix {}; + khtml = callPackage ./khtml.nix {}; + ki18n = callPackage ./ki18n.nix {}; + kiconthemes = callPackage ./kiconthemes {}; + kidletime = callPackage ./kidletime.nix {}; + kimageformats = callPackage ./kimageformats.nix {}; + kinit = callPackage ./kinit {}; + kio = callPackage ./kio {}; + kitemmodels = callPackage ./kitemmodels.nix {}; + kitemviews = callPackage ./kitemviews.nix {}; + kjobwidgets = callPackage ./kjobwidgets.nix {}; + kjs = callPackage ./kjs.nix {}; + kjsembed = callPackage ./kjsembed.nix {}; + kmediaplayer = callPackage ./kmediaplayer.nix {}; + knewstuff = callPackage ./knewstuff.nix {}; + knotifications = callPackage ./knotifications.nix {}; + knotifyconfig = callPackage ./knotifyconfig.nix {}; + kpackage = callPackage ./kpackage {}; + kparts = callPackage ./kparts.nix {}; + kpeople = callPackage ./kpeople.nix {}; + kplotting = callPackage ./kplotting.nix {}; + kpty = callPackage ./kpty.nix {}; + kross = callPackage ./kross.nix {}; + krunner = callPackage ./krunner.nix {}; + kservice = callPackage ./kservice {}; + ktexteditor = callPackage ./ktexteditor {}; + ktextwidgets = callPackage ./ktextwidgets.nix {}; + kunitconversion = callPackage ./kunitconversion.nix {}; + kwallet = callPackage ./kwallet.nix {}; + kwidgetsaddons = callPackage ./kwidgetsaddons.nix {}; + kwindowsystem = callPackage ./kwindowsystem.nix {}; + kxmlgui = callPackage ./kxmlgui.nix {}; + kxmlrpcclient = callPackage ./kxmlrpcclient.nix {}; + modemmanager-qt = callPackage ./modemmanager-qt.nix {}; + networkmanager-qt = callPackage ./networkmanager-qt.nix {}; + oxygen-icons5 = callPackage ./oxygen-icons5.nix {}; + plasma-framework = callPackage ./plasma-framework {}; + solid = callPackage ./solid.nix {}; + sonnet = callPackage ./sonnet.nix {}; + threadweaver = callPackage ./threadweaver.nix {}; + }; + +in packages diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix new file mode 100644 index 000000000000..1c2ea70442d3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/default.nix @@ -0,0 +1,20 @@ +{ kdeFramework, lib, copyPathsToStore, cmake, pkgconfig, qttools }: + +kdeFramework { + name = "extra-cmake-modules"; + + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + + outputs = [ "out" ]; # this package has no runtime components + setupHook = ./setup-hook.sh; + + # It is OK to propagate these inputs as long as + # extra-cmake-modules is never a propagated input + # of some other derivation. + propagatedNativeBuildInputs = [ cmake pkgconfig qttools ]; + + meta = with lib; { + license = licenses.bsd2; + maintainers = [ maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch new file mode 100644 index 000000000000..a74340a6dc96 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/nix-lib-path.patch @@ -0,0 +1,37 @@ +Index: extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +=================================================================== +--- extra-cmake-modules-5.18.0.orig/kde-modules/KDEInstallDirs.cmake ++++ extra-cmake-modules-5.18.0/kde-modules/KDEInstallDirs.cmake +@@ -200,32 +200,6 @@ + # GNUInstallDirs code deals with re-configuring, but that is dealt with + # by the _define_* macros in this module). + set(_LIBDIR_DEFAULT "lib") +-# Override this default 'lib' with 'lib64' iff: +-# - we are on a Linux, kFreeBSD or Hurd system but NOT cross-compiling +-# - we are NOT on debian +-# - we are on a 64 bits system +-# reason is: amd64 ABI: http://www.x86-64.org/documentation/abi.pdf +-# For Debian with multiarch, use 'lib/${CMAKE_LIBRARY_ARCHITECTURE}' if +-# CMAKE_LIBRARY_ARCHITECTURE is set (which contains e.g. "i386-linux-gnu" +-# See http://wiki.debian.org/Multiarch +-if((CMAKE_SYSTEM_NAME MATCHES "Linux|kFreeBSD" OR CMAKE_SYSTEM_NAME STREQUAL "GNU") +- AND NOT CMAKE_CROSSCOMPILING) +- if (EXISTS "/etc/debian_version") # is this a debian system ? +- if(CMAKE_LIBRARY_ARCHITECTURE) +- set(_LIBDIR_DEFAULT "lib/${CMAKE_LIBRARY_ARCHITECTURE}") +- endif() +- else() # not debian, rely on CMAKE_SIZEOF_VOID_P: +- if(NOT DEFINED CMAKE_SIZEOF_VOID_P) +- message(AUTHOR_WARNING +- "Unable to determine default LIB_INSTALL_LIBDIR directory because no target architecture is known. " +- "Please enable at least one language before including KDEInstallDirs.") +- else() +- if("${CMAKE_SIZEOF_VOID_P}" EQUAL "8") +- set(_LIBDIR_DEFAULT "lib64") +- endif() +- endif() +- endif() +-endif() + + set(_gnu_install_dirs_vars + BINDIR diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series new file mode 100644 index 000000000000..b4569e50a5f7 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/series @@ -0,0 +1 @@ +nix-lib-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh new file mode 100644 index 000000000000..56ed09f4ea59 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/extra-cmake-modules/setup-hook.sh @@ -0,0 +1,81 @@ +_ecmSetXdgDirs() { + addToSearchPathOnce XDG_DATA_DIRS "$1/share" + addToSearchPathOnce XDG_CONFIG_DIRS "$1/etc/xdg" + addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" +} + +_ecmPropagateSharedData() { + local sharedPaths=( \ + "config.cfg" \ + "doc" \ + "kconf_update" \ + "kservices5" \ + "kservicetypes5" \ + "kxmlgui5" \ + "knotifications5" \ + "icons" \ + "sounds" \ + "templates" \ + "wallpapers" \ + "applications" \ + "desktop-directories" \ + "mime" \ + "info" \ + "dbus-1" \ + "interfaces" \ + "services" \ + "system-services" ) + for dir in ${sharedPaths[@]}; do + if [ -d "$1/share/$dir" ]; then + addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + propagateOnce propagatedUserEnvPkgs "$1" + break + fi + done +} + +_ecmConfig() { + # Because we need to use absolute paths here, we must set *all* the paths. + cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" + cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" + cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" + cmakeFlags+=" -DKDE_INSTALL_LIBDIR=${!outputLib}/lib" + cmakeFlags+=" -DKDE_INSTALL_LIBEXECDIR=${!outputLib}/lib/libexec" + cmakeFlags+=" -DKDE_INSTALL_CMAKEPACKAGEDIR=${!outputDev}/lib/cmake" + cmakeFlags+=" -DKDE_INSTALL_QTPLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_PLUGINDIR=${!outputLib}/lib/qt5/plugins" + cmakeFlags+=" -DKDE_INSTALL_QTQUICKIMPORTSDIR=${!outputLib}/lib/qt5/imports" + cmakeFlags+=" -DKDE_INSTALL_QMLDIR=${!outputLib}/lib/qt5/qml" + cmakeFlags+=" -DKDE_INSTALL_INCLUDEDIR=${!outputInclude}/include" + cmakeFlags+=" -DKDE_INSTALL_LOCALSTATEDIR=/var" + cmakeFlags+=" -DKDE_INSTALL_DATAROOTDIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DATADIR=${!outputLib}/share" + cmakeFlags+=" -DKDE_INSTALL_DOCBUNDLEDIR=${!outputLib}/share/doc/HTML" + cmakeFlags+=" -DKDE_INSTALL_KCFGDIR=${!outputLib}/share/config.kcfg" + cmakeFlags+=" -DKDE_INSTALL_KCONFUPDATEDIR=${!outputLib}/share/kconf_update" + cmakeFlags+=" -DKDE_INSTALL_KSERVICES5DIR=${!outputLib}/share/kservices5" + cmakeFlags+=" -DKDE_INSTALL_KSERVICETYPES5DIR=${!outputLib}/share/kservicetypes5" + cmakeFlags+=" -DKDE_INSTALL_KXMLGUI5DIR=${!outputLib}/share/kxmlgui5" + cmakeFlags+=" -DKDE_INSTALL_KNOTIFY5RCDIR=${!outputLib}/share/knotifications5" + cmakeFlags+=" -DKDE_INSTALL_ICONDIR=${!outputLib}/share/icons" + cmakeFlags+=" -DKDE_INSTALL_LOCALEDIR=${!outputLib}/share/locale" + cmakeFlags+=" -DKDE_INSTALL_SOUNDDIR=${!outputLib}/share/sounds" + cmakeFlags+=" -DKDE_INSTALL_TEMPLATEDIR=${!outputLib}/share/templates" + cmakeFlags+=" -DKDE_INSTALL_WALLPAPERDIR=${!outputLib}/share/wallpapers" + cmakeFlags+=" -DKDE_INSTALL_APPDIR=${!outputLib}/share/applications" + cmakeFlags+=" -DKDE_INSTALL_DESKTOPDIR=${!outputLib}/share/desktop-directories" + cmakeFlags+=" -DKDE_INSTALL_MIMEDIR=${!outputLib}/share/mime/packages" + cmakeFlags+=" -DKDE_INSTALL_METAINFODIR=${!outputLib}/share/appdata" + cmakeFlags+=" -DKDE_INSTALL_MANDIR=${!outputLib}/share/man" + cmakeFlags+=" -DKDE_INSTALL_INFODIR=${!outputLib}/share/info" + cmakeFlags+=" -DKDE_INSTALL_DBUSDIR=${!outputLib}/share/dbus-1" + cmakeFlags+=" -DKDE_INSTALL_DBUSINTERFACEDIR=${!outputLib}/share/dbus-1/interfaces" + cmakeFlags+=" -DKDE_INSTALL_DBUSSERVICEDIR=${!outputLib}/share/dbus-1/services" + cmakeFlags+=" -DKDE_INSTALL_DBUSSYSTEMSERVICEDIR=${!outputLib}/share/dbus-1/system-services" + cmakeFlags+=" -DKDE_INSTALL_SYSCONFDIR=${!outputLib}/etc" + cmakeFlags+=" -DKDE_INSTALL_CONFDIR=${!outputLib}/etc/xdg" + cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" +} + +envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) +preConfigureHooks+=(_ecmConfig) diff --git a/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh b/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh new file mode 100755 index 000000000000..7937e6f8bed9 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/fetchsrcs.sh @@ -0,0 +1,57 @@ +#! /usr/bin/env nix-shell +#! nix-shell -i bash -p coreutils findutils gnused nix wget + +set -x + +# The trailing slash at the end is necessary! +RELEASE_URL="http://download.kde.org/stable/frameworks/5.19/" +EXTRA_WGET_ARGS='-A *.tar.xz' + +mkdir tmp; cd tmp + +rm -f ../srcs.csv + +wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS + +find . | while read src; do + if [[ -f "${src}" ]]; then + # Sanitize file name + filename=$(basename "$src" | tr '@' '_') + nameVersion="${filename%.tar.*}" + name=$(echo "$nameVersion" | sed -e 's,-[[:digit:]].*,,' | sed -e 's,-opensource-src$,,') + version=$(echo "$nameVersion" | sed -e 's,^\([[:alpha:]][[:alnum:]]*-\)\+,,') + echo "$name,$version,$src,$filename" >>../srcs.csv + fi +done + +cat >../srcs.nix <>../srcs.nix <>../srcs.nix + +rm -f ../srcs.csv + +cd .. diff --git a/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix b/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix new file mode 100644 index 000000000000..26987c385ad5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/frameworkintegration.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kbookmarks, kcompletion +, kconfig, kconfigwidgets, ki18n, kiconthemes, kio, knotifications +, kwidgetsaddons, libXcursor, qtx11extras +}: + +kdeFramework { + name = "frameworkintegration"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kbookmarks kcompletion kconfig knotifications kwidgetsaddons + libXcursor + ]; + propagatedBuildInputs = [ kconfigwidgets ki18n kio kiconthemes qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix b/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix new file mode 100644 index 000000000000..3225098f4398 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kactivities.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, extra-cmake-modules, boost, kcmutils, kconfig +, kcoreaddons, kdbusaddons, kdeclarative, kglobalaccel, ki18n +, kio, kservice, kwindowsystem, kxmlgui, makeQtWrapper, qtdeclarative +}: + +kdeFramework { + name = "kactivities"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + boost kcmutils kconfig kcoreaddons kdbusaddons kservice + kxmlgui + ]; + propagatedBuildInputs = [ + kdeclarative kglobalaccel ki18n kio kwindowsystem qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kactivitymanagerd" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix b/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix new file mode 100644 index 000000000000..647be8f052c3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kapidox.nix @@ -0,0 +1,12 @@ +{ kdeFramework, lib +, extra-cmake-modules +, python +}: + +kdeFramework { + name = "kapidox"; + nativeBuildInputs = [ extra-cmake-modules python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix b/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix new file mode 100644 index 000000000000..a8d9a0003c3b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/karchive.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "karchive"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch new file mode 100644 index 000000000000..c66f5ecd008f --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kauth/cmake-install-paths.patch @@ -0,0 +1,17 @@ +Index: kauth-5.18.0/KF5AuthConfig.cmake.in +=================================================================== +--- kauth-5.18.0.orig/KF5AuthConfig.cmake.in ++++ kauth-5.18.0/KF5AuthConfig.cmake.in +@@ -4,9 +4,9 @@ set(KAUTH_STUB_FILES_DIR "@PACKAGE_KDE_I + + set(KAUTH_BACKEND_NAME "@KAUTH_BACKEND_NAME@") + set(KAUTH_HELPER_BACKEND_NAME "@KAUTH_HELPER_BACKEND_NAME@") +-set(KAUTH_POLICY_FILES_INSTALL_DIR "@KAUTH_POLICY_FILES_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_DIR "@KAUTH_HELPER_INSTALL_DIR@") +-set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "@KAUTH_HELPER_INSTALL_ABSOLUTE_DIR@") ++set(KAUTH_POLICY_FILES_INSTALL_DIR "${KDE_INSTALL_DATADIR}/polkit-1/actions") ++set(KAUTH_HELPER_INSTALL_DIR "${KDE_INSTALL_LIBEXECDIR}") ++set(KAUTH_HELPER_INSTALL_ABSOLUTE_DIR "${KDE_INSTALL_LIBEXECDIR}") + + find_dependency(KF5CoreAddons "@KF5_DEP_VERSION@") + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix new file mode 100644 index 000000000000..1352d8c5821f --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kauth/default.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules +, kcoreaddons +, polkit-qt +}: + +kdeFramework { + name = "kauth"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ polkit-qt ]; + propagatedBuildInputs = [ kcoreaddons ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kauth/series b/pkgs/development/libraries/kde-frameworks-5.19/kauth/series new file mode 100644 index 000000000000..d2689425c387 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kauth/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix b/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix new file mode 100644 index 000000000000..1a469ab4db6d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kbookmarks.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kconfigwidgets +, kcoreaddons +, kiconthemes +, kxmlgui +}: + +kdeFramework { + name = "kbookmarks"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs + kconfig + kconfigwidgets + kcoreaddons + kiconthemes + kxmlgui + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 000000000000..0d861fa95012 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From f14d2a275323a47104b33eb61c5b6910ae1a9f59 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:43:53 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/kpluginselector.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/kpluginselector.cpp b/src/kpluginselector.cpp +index 9c3431d..d6b1ee2 100644 +--- a/src/kpluginselector.cpp ++++ b/src/kpluginselector.cpp +@@ -305,7 +305,7 @@ void KPluginSelector::addPlugins(const QString &componentName, + QStringList desktopFileNames; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, componentName + QStringLiteral("/kpartplugins"), QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << QStringLiteral("*.desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + desktopFileNames.append(it.next()); + } +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix new file mode 100644 index 000000000000..dbbb783ac615 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcmutils/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfigwidgets +, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews +, kpackage, kservice, kxmlgui +}: + +kdeFramework { + name = "kcmutils"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcoreaddons kiconthemes kitemviews kpackage kxmlgui + ]; + propagatedBuildInputs = [ kconfigwidgets kdeclarative ki18n kservice ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix new file mode 100644 index 000000000000..53a69a69b69c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcodecs.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kcodecs"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix new file mode 100644 index 000000000000..e393774f16a5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcompletion.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kwidgetsaddons +}: + +kdeFramework { + name = "kcompletion"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kwidgetsaddons ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix new file mode 100644 index 000000000000..e132afe59886 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kconfig.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +}: + +kdeFramework { + name = "kconfig"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kreadconfig5" + wrapQtProgram "$out/bin/kwriteconfig5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 000000000000..7a6c0ee90534 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From 4f84780893d505b2d62a14633dd983baa8ec6e28 Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:47:01 -0500 +Subject: [PATCH] qdiriterator follow symlinks + +--- + src/khelpclient.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/khelpclient.cpp b/src/khelpclient.cpp +index 53a331e..80fbb01 100644 +--- a/src/khelpclient.cpp ++++ b/src/khelpclient.cpp +@@ -48,7 +48,7 @@ void KHelpClient::invokeHelp(const QString &anchor, const QString &_appname) + QString docPath; + const QStringList desktopDirs = QStandardPaths::standardLocations(QStandardPaths::ApplicationsLocation); + Q_FOREACH (const QString &dir, desktopDirs) { +- QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QStringList() << appname + QLatin1String(".desktop"), QDir::NoFilter, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString desktopPath(it.next()); + KDesktopFile desktopFile(desktopPath); +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix new file mode 100644 index 000000000000..0e14d06edd36 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kconfigwidgets/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kauth, kcodecs, kconfig +, kdoctools, kguiaddons, ki18n, kwidgetsaddons, makeQtWrapper +}: + +kdeFramework { + name = "kconfigwidgets"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ kguiaddons ]; + propagatedBuildInputs = [ kauth kconfig kcodecs ki18n kwidgetsaddons ]; + patches = [ ./0001-qdiriterator-follow-symlinks.patch ]; + postInstall = '' + wrapQtProgram "$out/bin/preparetips5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix new file mode 100644 index 000000000000..f3a1db7bd484 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcoreaddons.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, shared_mime_info +}: + +kdeFramework { + name = "kcoreaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ shared_mime_info ]; + postInstall = '' + wrapQtProgram "$out/bin/desktoptojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix b/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix new file mode 100644 index 000000000000..bbab78ccb409 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kcrash.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwindowsystem +, qtx11extras +}: + +kdeFramework { + name = "kcrash"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix new file mode 100644 index 000000000000..d2ceab31d14b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdbusaddons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kdbusaddons"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + propagatedBuildInputs = [ qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kquitapp5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix new file mode 100644 index 000000000000..74d107466cfc --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdeclarative.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, extra-cmake-modules, epoxy, kconfig +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kpackage +, kwidgetsaddons, kwindowsystem, makeQtWrapper, pkgconfig +, qtdeclarative +}: + +kdeFramework { + name = "kdeclarative"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ + epoxy kguiaddons kiconthemes kwidgetsaddons + ]; + propagatedBuildInputs = [ + kconfig kglobalaccel ki18n kio kpackage kwindowsystem qtdeclarative + ]; + postInstall = '' + wrapQtProgram "$out/bin/kpackagelauncherqml" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kded.nix b/pkgs/development/libraries/kde-frameworks-5.19/kded.nix new file mode 100644 index 000000000000..47ae2d68c68e --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kded.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kdoctools +, kinit +, kservice +}: + +kdeFramework { + name = "kded"; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kinit kservice ]; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix new file mode 100644 index 000000000000..843db83a99b2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/default.nix @@ -0,0 +1,36 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, docbook_xml_dtd_45, kauth +, karchive, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kcrash, kdbusaddons, kded, kdesignerplugin, kdoctools, kemoticons +, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio, kitemmodels +, kinit, knotifications, kparts, kservice, ktextwidgets +, kunitconversion, kwidgetsaddons, kwindowsystem, kxmlgui +, networkmanager, qtsvg, qtx11extras, xlibs +}: + +# TODO: debug docbook detection + +kdeFramework { + name = "kdelibs4support"; + outputs = [ "dev" "out" ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + setupHook = ./setup-hook.sh; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ + kcompletion kconfig kded kservice kwidgetsaddons + kxmlgui networkmanager qtsvg qtx11extras xlibs.libSM + ]; + propagatedBuildInputs = [ + kauth karchive kconfigwidgets kcoreaddons kcrash kdbusaddons + kdesignerplugin kemoticons kglobalaccel kguiaddons ki18n kio + kiconthemes kitemmodels kinit knotifications kparts ktextwidgets + kunitconversion kwindowsystem + ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXML4_DTD_VERSION=4.5" + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch new file mode 100644 index 000000000000..eabb70254483 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/nix-kde-include-dir.patch @@ -0,0 +1,13 @@ +Index: kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +=================================================================== +--- kdelibs4support-5.18.0.orig/src/kdecore/kstandarddirs.cpp ++++ kdelibs4support-5.18.0/src/kdecore/kstandarddirs.cpp +@@ -292,7 +292,7 @@ static QString relativeInstallPath(const + return QFile::decodeName(ICON_INSTALL_DIR "/"); + } + if (strcmp("include", type) == 0) { +- return QFile::decodeName(INCLUDE_INSTALL_DIR "/"); ++ return QFile::decodeName(qgetenv("NIX_KDE_INCLUDE_DIR")); + } + break; + case 'l': diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series new file mode 100644 index 000000000000..9b08ab208774 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/series @@ -0,0 +1 @@ +nix-kde-include-dir.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh new file mode 100644 index 000000000000..21ac2e83b5da --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdelibs4support/setup-hook.sh @@ -0,0 +1 @@ +export NIX_KDE_INCLUDE_DIR="@dev@/include/" # trailing slash is required! diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix new file mode 100644 index 000000000000..cbc114ccca03 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdesignerplugin.nix @@ -0,0 +1,34 @@ +{ kdeFramework, lib, makeQtWrapper +, extra-cmake-modules +, kcompletion +, kconfig +, kconfigwidgets +, kcoreaddons +, kdewebkit +, kdoctools +, kiconthemes +, kio +, kitemviews +, kplotting +, ktextwidgets +, kwidgetsaddons +, kxmlgui +, sonnet +}: + +kdeFramework { + name = "kdesignerplugin"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit + kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons + kxmlgui + ]; + propagatedBuildInputs = [ kio sonnet ]; + postInstall = '' + wrapQtProgram "$out/bin/kgendesignerplugin" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix new file mode 100644 index 000000000000..364fbd6a720b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdesu.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty +, kservice +}: + +kdeFramework { + name = "kdesu"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kservice ]; + propagatedBuildInputs = [ ki18n kpty ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix new file mode 100644 index 000000000000..d361313d1d49 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdewebkit.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kio, kjobwidgets, kparts, kservice, kwallet, qtwebkit +}: + +kdeFramework { + name = "kdewebkit"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kconfig kcoreaddons kjobwidgets kparts kservice kwallet ]; + propagatedBuildInputs = [ ki18n kio qtwebkit ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix new file mode 100644 index 000000000000..f00432b0c9ce --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdnssd.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, avahi +}: + +kdeFramework { + name = "kdnssd"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ avahi ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix new file mode 100644 index 000000000000..f67c19f42395 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/default.nix @@ -0,0 +1,19 @@ +{ kdeFramework, lib, extra-cmake-modules, docbook_xml_dtd_45 +, docbook5_xsl, karchive, ki18n, makeQtWrapper, perl, perlPackages +}: + +kdeFramework { + name = "kdoctools"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive ]; + propagatedBuildInputs = [ ki18n ]; + propagatedNativeBuildInputs = [ makeQtWrapper perl perlPackages.URI ]; + cmakeFlags = [ + "-DDocBookXML4_DTD_DIR=${docbook_xml_dtd_45}/xml/dtd/docbook" + "-DDocBookXSL_DIR=${docbook5_xsl}/xml/xsl/docbook" + ]; + patches = [ ./kdoctools-no-find-docbook-xml.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch new file mode 100644 index 000000000000..4e3a33efab32 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kdoctools/kdoctools-no-find-docbook-xml.patch @@ -0,0 +1,12 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 5c4863c..f731775 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -46,7 +46,6 @@ set_package_properties(LibXml2 PROPERTIES + ) + + +-find_package(DocBookXML4 "4.5") + + set_package_properties(DocBookXML4 PROPERTIES + TYPE REQUIRED diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix new file mode 100644 index 000000000000..d165f84e3a2d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kemoticons.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, karchive +, kconfig +, kcoreaddons +, kservice +}: + +kdeFramework { + name = "kemoticons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ karchive kconfig kcoreaddons ]; + propagatedBuildInputs = [ kservice ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch new file mode 100644 index 000000000000..732f7b69c828 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/cmake-install-paths.patch @@ -0,0 +1,13 @@ +Index: kfilemetadata-5.18.0/src/CMakeLists.txt +=================================================================== +--- kfilemetadata-5.18.0.orig/src/CMakeLists.txt ++++ kfilemetadata-5.18.0/src/CMakeLists.txt +@@ -49,7 +49,7 @@ install(TARGETS KF5FileMetaData EXPORT K + + install(EXPORT KF5FileMetaDataTargets + NAMESPACE KF5:: +- DESTINATION ${LIB_INSTALL_DIR}/cmake/KF5FileMetaData ++ DESTINATION ${KDE_INSTALL_FULL_CMAKEPACKAGEDIR}/KF5FileMetaData + FILE KF5FileMetaDataTargets.cmake) + + install(FILES diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix new file mode 100644 index 000000000000..9bb4831cf8da --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/default.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules +, attr, ebook_tools, exiv2, ffmpeg, karchive, ki18n, poppler, qtbase, taglib +}: + +kdeFramework { + name = "kfilemetadata"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ attr ebook_tools exiv2 ffmpeg karchive poppler taglib ]; + propagatedBuildInputs = [ qtbase ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series new file mode 100644 index 000000000000..d2689425c387 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kfilemetadata/series @@ -0,0 +1 @@ +cmake-install-paths.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix b/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix new file mode 100644 index 000000000000..c535b3590a38 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kglobalaccel.nix @@ -0,0 +1,23 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kconfig +, kcoreaddons +, kcrash +, kdbusaddons +, kwindowsystem +, makeQtWrapper +, qtx11extras +}: + +kdeFramework { + name = "kglobalaccel"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + postInstall = '' + wrapQtProgram "$out/bin/kglobalaccel5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix new file mode 100644 index 000000000000..bc4e9ab11843 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kguiaddons.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kguiaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix b/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix new file mode 100644 index 000000000000..d40df466ebbd --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/khtml.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, giflib, karchive +, kcodecs, kglobalaccel, ki18n, kiconthemes, kio, kjs +, knotifications, kparts, ktextwidgets, kwallet, kwidgetsaddons +, kwindowsystem, kxmlgui, perl, phonon, qtx11extras, sonnet +}: + +kdeFramework { + name = "khtml"; + nativeBuildInputs = [ extra-cmake-modules perl ]; + buildInputs = [ + giflib karchive kiconthemes knotifications kwallet kwidgetsaddons + kxmlgui phonon + ]; + propagatedBuildInputs = [ + kcodecs kglobalaccel ki18n kio kjs kparts ktextwidgets + kwindowsystem qtx11extras sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix b/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix new file mode 100644 index 000000000000..268006512e7c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/ki18n.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, gettext +, python +, qtdeclarative +, qtscript +}: + +kdeFramework { + name = "ki18n"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtdeclarative qtscript ]; + propagatedNativeBuildInputs = [ gettext python ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch new file mode 100644 index 000000000000..5b3b15d5d5b5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default-theme-breeze.patch @@ -0,0 +1,13 @@ +Index: kiconthemes-5.17.0/src/kicontheme.cpp +=================================================================== +--- kiconthemes-5.17.0.orig/src/kicontheme.cpp ++++ kiconthemes-5.17.0/src/kicontheme.cpp +@@ -557,7 +557,7 @@ void KIconTheme::reconfigure() + // static + QString KIconTheme::defaultThemeName() + { +- return QStringLiteral("oxygen"); ++ return QStringLiteral("breeze"); + } + + void KIconTheme::assignIconsToContextMenu(ContextMenus type, diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix new file mode 100644 index 000000000000..b78b25582beb --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper +, kconfigwidgets, ki18n, breeze-icons, kitemviews, qtsvg +}: + +kdeFramework { + name = "kiconthemes"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ kconfigwidgets kitemviews qtsvg ]; + propagatedBuildInputs = [ breeze-icons ki18n ]; + postInstall = '' + wrapQtProgram "$out/bin/kiconfinder5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series new file mode 100644 index 000000000000..ab5cc8a3edb2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kiconthemes/series @@ -0,0 +1 @@ +default-theme-breeze.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix b/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix new file mode 100644 index 000000000000..fc0865600239 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kidletime.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtbase +, qtx11extras +}: + +kdeFramework { + name = "kidletime"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + propagatedBuildInputs = [ qtbase ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix b/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix new file mode 100644 index 000000000000..49d66bbcc2c6 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kimageformats.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, ilmbase +}: + +kdeFramework { + name = "kimageformats"; + nativeBuildInputs = [ extra-cmake-modules ]; + NIX_CFLAGS_COMPILE = "-I${ilmbase}/include/OpenEXR"; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch b/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch new file mode 100644 index 000000000000..9c76079a382a --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kinit/0001-kinit-libpath.patch @@ -0,0 +1,42 @@ +From 723c9b1268a04127647a1c20eebe9804150566dd Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Sat, 13 Jun 2015 08:57:55 -0500 +Subject: [PATCH] kinit libpath + +--- + src/kdeinit/kinit.cpp | 18 ++++++++++-------- + 1 file changed, 10 insertions(+), 8 deletions(-) + +diff --git a/src/kdeinit/kinit.cpp b/src/kdeinit/kinit.cpp +index 9e775b6..0ac5646 100644 +--- a/src/kdeinit/kinit.cpp ++++ b/src/kdeinit/kinit.cpp +@@ -660,15 +660,17 @@ static pid_t launch(int argc, const char *_name, const char *args, + if (!libpath.isEmpty()) { + if (!l.load()) { + if (libpath_relative) { +- // NB: Because Qt makes the actual dlopen() call, the +- // RUNPATH of kdeinit is *not* respected - see +- // https://sourceware.org/bugzilla/show_bug.cgi?id=13945 +- // - so we try hacking it in ourselves +- QString install_lib_dir = QFile::decodeName( +- CMAKE_INSTALL_PREFIX "/" LIB_INSTALL_DIR "/"); +- libpath = install_lib_dir + libpath; +- l.setFileName(libpath); ++ // Use QT_PLUGIN_PATH to find shared library directories ++ // For KF5, the plugin path is /lib/qt5/plugins/, so kdeinit5 ++ // shared libraries should be in /lib/qt5/plugins/../../ ++ const QRegExp pathSepRegExp(QString::fromLatin1("[:\b]")); ++ const QString up = QString::fromLocal8Bit("/../../"); ++ const QStringList paths = QString::fromLocal8Bit(qgetenv("QT_PLUGIN_PATH")).split(pathSepRegExp, QString::KeepEmptyParts); ++ Q_FOREACH (const QString &path, paths) { ++ l.setFileName(path + up + libpath); + l.load(); ++ if (l.isLoaded()) break; ++ } + } + } + if (!l.isLoaded()) { +-- +2.4.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix new file mode 100644 index 000000000000..5f644d7c424e --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kinit/default.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcrash +, kdoctools, ki18n, kio, kservice, kwindowsystem, libcap +, libcap_progs +}: + +# TODO: setuid wrapper + +kdeFramework { + name = "kinit"; + nativeBuildInputs = [ extra-cmake-modules kdoctools libcap_progs ]; + buildInputs = [ kconfig kcrash kservice libcap ]; + propagatedBuildInputs = [ ki18n kio kwindowsystem ]; + patches = [ ./0001-kinit-libpath.patch ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix new file mode 100644 index 000000000000..a2131ff33850 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kio/default.nix @@ -0,0 +1,33 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, acl, karchive +, kbookmarks, kcompletion, kconfig, kconfigwidgets, kcoreaddons +, kdbusaddons, kdoctools, ki18n, kiconthemes, kitemviews +, kjobwidgets, knotifications, kservice, ktextwidgets, kwallet +, kwidgetsaddons, kwindowsystem, kxmlgui, makeQtWrapper +, qtscript, qtx11extras, solid +}: + +kdeFramework { + name = "kio"; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + acl karchive kconfig kcoreaddons kdbusaddons kiconthemes + knotifications ktextwidgets kwallet kwidgetsaddons + qtscript + ]; + propagatedBuildInputs = [ + kbookmarks kcompletion kconfigwidgets ki18n kitemviews kjobwidgets + kservice kwindowsystem kxmlgui solid qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/kcookiejar5" + wrapQtProgram "$out/bin/ktelnetservice5" + wrapQtProgram "$out/bin/ktrash5" + wrapQtProgram "$out/bin/kmailservice5" + wrapQtProgram "$out/bin/protocoltojson" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch new file mode 100644 index 000000000000..c9ad46b41bb7 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kio/samba-search-path.patch @@ -0,0 +1,28 @@ +Index: kio-5.17.0/src/core/ksambashare.cpp +=================================================================== +--- kio-5.17.0.orig/src/core/ksambashare.cpp ++++ kio-5.17.0/src/core/ksambashare.cpp +@@ -67,13 +67,18 @@ KSambaSharePrivate::~KSambaSharePrivate( + + bool KSambaSharePrivate::isSambaInstalled() + { +- if (QFile::exists(QStringLiteral("/usr/sbin/smbd")) +- || QFile::exists(QStringLiteral("/usr/local/sbin/smbd"))) { +- return true; ++ const QByteArray pathEnv = qgetenv("PATH"); ++ if (!pathEnv.isEmpty()) { ++ QLatin1Char pathSep(':'); ++ QStringList paths = QFile::decodeName(pathEnv).split(pathSep, QString::SkipEmptyParts); ++ for (QStringList::iterator it = paths.begin(); it != paths.end(); ++it) { ++ it->append("/smbd"); ++ if (QFile::exists(*it)) { ++ return true; ++ } ++ } + } + +- //qDebug() << "Samba is not installed!"; +- + return false; + } + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kio/series b/pkgs/development/libraries/kde-frameworks-5.19/kio/series new file mode 100644 index 000000000000..77ca15450047 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kio/series @@ -0,0 +1 @@ +samba-search-path.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix new file mode 100644 index 000000000000..a9024d771cc3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kitemmodels.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemmodels"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix b/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix new file mode 100644 index 000000000000..931019ce495d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kitemviews.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kitemviews"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix new file mode 100644 index 000000000000..746edf12eea0 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kjobwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcoreaddons +, kwidgetsaddons +, qtx11extras +}: + +kdeFramework { + name = "kjobwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcoreaddons kwidgetsaddons ]; + propagatedBuildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix new file mode 100644 index 000000000000..768720f178c8 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kjs.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kdoctools +, makeQtWrapper +}: + +kdeFramework { + name = "kjs"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + postInstall = '' + wrapQtProgram "$out/bin/kjs5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix b/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix new file mode 100644 index 000000000000..22eef2d47bde --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kjsembed.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kdoctools, ki18n, kjs +, makeQtWrapper, qtsvg +}: + +kdeFramework { + name = "kjsembed"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ qtsvg ]; + propagatedBuildInputs = [ ki18n kjs ]; + postInstall = '' + wrapQtProgram "$out/bin/kjscmd5" + wrapQtProgram "$out/bin/kjsconsole" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix b/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix new file mode 100644 index 000000000000..460458b22323 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kmediaplayer.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kparts +, kxmlgui +}: + +kdeFramework { + name = "kmediaplayer"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kxmlgui ]; + propagatedBuildInputs = [ kparts ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix b/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix new file mode 100644 index 000000000000..5bcd6f301462 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/knewstuff.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, karchive +, kcompletion, kconfig, kcoreaddons, ki18n, kiconthemes, kio +, kitemviews, kservice, ktextwidgets, kwidgetsaddons, kxmlgui +}: + +kdeFramework { + name = "knewstuff"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + karchive kcompletion kconfig kcoreaddons kiconthemes + kitemviews ktextwidgets kwidgetsaddons + ]; + propagatedBuildInputs = [ attica ki18n kio kservice kxmlgui ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix new file mode 100644 index 000000000000..7e301dd0f268 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/knotifications.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib +, extra-cmake-modules +, kcodecs +, kconfig +, kcoreaddons +, kwindowsystem +, phonon +, qtx11extras +}: + +kdeFramework { + name = "knotifications"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcodecs kconfig kcoreaddons phonon + ]; + propagatedBuildInputs = [ kwindowsystem qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix b/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix new file mode 100644 index 000000000000..dd99d2d4f1e5 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/knotifyconfig.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, ki18n, kio, phonon +}: + +kdeFramework { + name = "knotifyconfig"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ kcompletion kconfig phonon ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch new file mode 100644 index 000000000000..e9d744448148 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/allow-external-paths.patch @@ -0,0 +1,13 @@ +Index: kpackage-5.18.0/src/kpackage/package.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/package.cpp ++++ kpackage-5.18.0/src/kpackage/package.cpp +@@ -808,7 +808,7 @@ PackagePrivate::PackagePrivate() + : QSharedData(), + fallbackPackage(0), + metadata(0), +- externalPaths(false), ++ externalPaths(true), + valid(false), + checkedValid(false) + { diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix new file mode 100644 index 000000000000..aea1b0d31a0d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/default.nix @@ -0,0 +1,23 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules +, karchive +, kconfig +, kcoreaddons +, kdoctools +, ki18n +, makeQtWrapper +}: + +kdeFramework { + name = "kpackage"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ karchive kconfig ]; + propagatedBuildInputs = [ kcoreaddons ki18n ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + postInstall = '' + wrapQtProgram "$out/bin/kpackagetool5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch new file mode 100644 index 000000000000..ddbf17d00064 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/qdiriterator-follow-symlinks.patch @@ -0,0 +1,26 @@ +Index: kpackage-5.18.0/src/kpackage/packageloader.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/packageloader.cpp ++++ kpackage-5.18.0/src/kpackage/packageloader.cpp +@@ -241,7 +241,7 @@ QList PackageLoader::li + } else { + //qDebug() << "Not cached"; + // If there's no cache file, fall back to listing the directory +- const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories; ++ const QDirIterator::IteratorFlags flags = QDirIterator::Subdirectories | QDirIterator::FollowSymlinks; + const QStringList nameFilters = QStringList(QStringLiteral("metadata.desktop")) << QStringLiteral("metadata.json"); + + QDirIterator it(plugindir, nameFilters, QDir::Files, flags); +Index: kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp +=================================================================== +--- kpackage-5.18.0.orig/src/kpackage/private/packagejobthread.cpp ++++ kpackage-5.18.0/src/kpackage/private/packagejobthread.cpp +@@ -146,7 +146,7 @@ bool indexDirectory(const QString& dir, + + QJsonArray plugins; + +- QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories); ++ QDirIterator it(dir, *metaDataFiles, QDir::Files, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + it.next(); + const QString path = it.fileInfo().absoluteFilePath(); diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series new file mode 100644 index 000000000000..9b7f076efc70 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpackage/series @@ -0,0 +1,2 @@ +allow-external-paths.patch +qdiriterator-follow-symlinks.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix b/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix new file mode 100644 index 000000000000..1c3e0b2cbc51 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kparts.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kiconthemes, kio, kjobwidgets, knotifications, kservice +, ktextwidgets, kwidgetsaddons, kxmlgui +}: + +kdeFramework { + name = "kparts"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kconfig kcoreaddons kiconthemes kjobwidgets knotifications + kservice kwidgetsaddons + ]; + propagatedBuildInputs = [ ki18n kio ktextwidgets kxmlgui ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix new file mode 100644 index 000000000000..4c3877e7efd2 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpeople.nix @@ -0,0 +1,15 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n +, kitemviews, kservice, kwidgetsaddons, qtdeclarative +}: + +kdeFramework { + name = "kpeople"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcoreaddons kitemviews kservice kwidgetsaddons + ]; + propagatedBuildInputs = [ ki18n qtdeclarative ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix b/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix new file mode 100644 index 000000000000..c16f51b5ac3c --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kplotting.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kplotting"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix b/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix new file mode 100644 index 000000000000..2e34e6f674ce --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kpty.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }: + +kdeFramework { + name = "kpty"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ kcoreaddons ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kross.nix b/pkgs/development/libraries/kde-frameworks-5.19/kross.nix new file mode 100644 index 000000000000..7c6f079feaa7 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kross.nix @@ -0,0 +1,14 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kcoreaddons +, kdoctools, ki18n, kiconthemes, kio, kparts, kwidgetsaddons +, kxmlgui, qtscript +}: + +kdeFramework { + name = "kross"; + nativeBuildInputs = [ extra-cmake-modules kdoctools ]; + buildInputs = [ kcompletion kcoreaddons kxmlgui ]; + propagatedBuildInputs = [ ki18n kiconthemes kio kparts kwidgetsaddons qtscript ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix b/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix new file mode 100644 index 000000000000..12d2b54d0eb3 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/krunner.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, ki18n, kio, kservice, plasma-framework, qtquick1, solid +, threadweaver +}: + +kdeFramework { + name = "krunner"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kconfig kcoreaddons kservice qtquick1 solid threadweaver + ]; + propagatedBuildInputs = [ ki18n kio plasma-framework ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch new file mode 100644 index 000000000000..3d8397d8ee2d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0001-qdiriterator-follow-symlinks.patch @@ -0,0 +1,25 @@ +From ae8919eb81abad369e4a26ffcd845b140983398d Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:28:57 -0500 +Subject: [PATCH 1/2] qdiriterator follow symlinks + +--- + src/sycoca/kbuildsycoca.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/kbuildsycoca.cpp b/src/sycoca/kbuildsycoca.cpp +index 1deae14..250baa8 100644 +--- a/src/sycoca/kbuildsycoca.cpp ++++ b/src/sycoca/kbuildsycoca.cpp +@@ -208,7 +208,7 @@ bool KBuildSycoca::build() + QStringList relFiles; + const QStringList dirs = QStandardPaths::locateAll(QStandardPaths::GenericDataLocation, m_resourceSubdir, QStandardPaths::LocateDirectory); + Q_FOREACH (const QString &dir, dirs) { +- QDirIterator it(dir, QDirIterator::Subdirectories); ++ QDirIterator it(dir, QDirIterator::Subdirectories | QDirIterator::FollowSymlinks); + while (it.hasNext()) { + const QString filePath = it.next(); + Q_ASSERT(filePath.startsWith(dir)); // due to the line below... +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch new file mode 100644 index 000000000000..685c68526119 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kservice/0002-no-canonicalize-path.patch @@ -0,0 +1,25 @@ +From 46d124da602d84b7611a7ff0ac0862168d451cdb Mon Sep 17 00:00:00 2001 +From: Thomas Tuegel +Date: Wed, 14 Oct 2015 06:31:29 -0500 +Subject: [PATCH 2/2] no canonicalize path + +--- + src/sycoca/vfolder_menu.cpp | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/sycoca/vfolder_menu.cpp b/src/sycoca/vfolder_menu.cpp +index d3e31c3..d15d743 100644 +--- a/src/sycoca/vfolder_menu.cpp ++++ b/src/sycoca/vfolder_menu.cpp +@@ -415,7 +415,7 @@ VFolderMenu::absoluteDir(const QString &_dir, const QString &baseDir, bool keepR + } + + if (!relative) { +- QString resolved = QDir(dir).canonicalPath(); ++ QString resolved = QDir::cleanPath(dir); + if (!resolved.isEmpty()) { + dir = resolved; + } +-- +2.5.2 + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix new file mode 100644 index 000000000000..3a27d85b9166 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kservice/default.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons +, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem +}: + +kdeFramework { + name = "kservice"; + propagatedNativeBuildInputs = [ extra-cmake-modules ]; + nativeBuildInputs = [ kdoctools ]; + buildInputs = [ kcrash kdbusaddons ]; + propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ]; + patches = [ + ./0001-qdiriterator-follow-symlinks.patch + ./0002-no-canonicalize-path.patch + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix new file mode 100644 index 000000000000..b8df6a5f4c0d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/default.nix @@ -0,0 +1,22 @@ +{ kdeFramework, lib, copyPathsToStore +, extra-cmake-modules, makeQtWrapper, perl +, karchive, kconfig, kguiaddons, kiconthemes, kparts +, libgit2 +, qtscript, qtxmlpatterns +, ki18n, kio, sonnet +}: + +kdeFramework { + name = "ktexteditor"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper perl ]; + buildInputs = [ + karchive kconfig kguiaddons kiconthemes kparts + libgit2 + qtscript qtxmlpatterns + ]; + propagatedBuildInputs = [ ki18n kio sonnet ]; + patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch new file mode 100644 index 000000000000..19ab1e1e5513 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/no-qcoreapplication.patch @@ -0,0 +1,36 @@ +Index: ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp +=================================================================== +--- ktexteditor-5.18.0.orig/src/syntax/data/katehighlightingindexer.cpp ++++ ktexteditor-5.18.0/src/syntax/data/katehighlightingindexer.cpp +@@ -55,19 +55,16 @@ QStringList readListing(const QString &f + + int main(int argc, char *argv[]) + { +- // get app instance +- QCoreApplication app(argc, argv); +- + // ensure enough arguments are passed +- if (app.arguments().size() < 3) ++ if (argc < 3) + return 1; + + // open schema + QXmlSchema schema; +- if (!schema.load(QUrl::fromLocalFile(app.arguments().at(2)))) ++ if (!schema.load(QUrl::fromLocalFile(QString::fromLocal8Bit(argv[2])))) + return 2; + +- const QString hlFilenamesListing = app.arguments().value(3); ++ const QString hlFilenamesListing = QString::fromLocal8Bit(argv[3]); + if (hlFilenamesListing.isEmpty()) { + return 1; + } +@@ -152,7 +149,7 @@ int main(int argc, char *argv[]) + return anyError; + + // create outfile, after all has worked! +- QFile outFile(app.arguments().at(1)); ++ QFile outFile(QString::fromLocal8Bit(argv[1])); + if (!outFile.open(QIODevice::WriteOnly | QIODevice::Truncate)) + return 7; + diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series new file mode 100644 index 000000000000..46cd23829a2f --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/ktexteditor/series @@ -0,0 +1 @@ +no-qcoreapplication.patch diff --git a/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix b/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix new file mode 100644 index 000000000000..e332d4ff9a83 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/ktextwidgets.nix @@ -0,0 +1,16 @@ +{ kdeFramework, lib, extra-cmake-modules, kcompletion, kconfig +, kconfigwidgets, ki18n, kiconthemes, kservice, kwindowsystem +, sonnet +}: + +kdeFramework { + name = "ktextwidgets"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + kcompletion kconfig kconfigwidgets kiconthemes kservice + ]; + propagatedBuildInputs = [ ki18n kwindowsystem sonnet ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix b/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix new file mode 100644 index 000000000000..3cf0f847d83d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kunitconversion.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n }: + +kdeFramework { + name = "kunitconversion"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix new file mode 100644 index 000000000000..5ade5f63a8d0 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kwallet.nix @@ -0,0 +1,21 @@ +{ kdeFramework, lib, extra-cmake-modules, kconfig, kconfigwidgets +, kcoreaddons , kdbusaddons, kdoctools, ki18n, kiconthemes +, knotifications , kservice, kwidgetsaddons, kwindowsystem, libgcrypt +, makeQtWrapper }: + +kdeFramework { + name = "kwallet"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + kconfig kconfigwidgets kcoreaddons kdbusaddons kiconthemes + knotifications kservice kwidgetsaddons libgcrypt + ]; + propagatedBuildInputs = [ ki18n kwindowsystem ]; + postInstall = '' + wrapQtProgram "$out/bin/kwalletd5" + wrapQtProgram "$out/bin/kwallet-query" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix new file mode 100644 index 000000000000..d95f44d3fecf --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kwidgetsaddons.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "kwidgetsaddons"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix b/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix new file mode 100644 index 000000000000..09ab1f2200de --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kwindowsystem.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, qtx11extras +}: + +kdeFramework { + name = "kwindowsystem"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ qtx11extras ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix new file mode 100644 index 000000000000..f081d5f9170e --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kxmlgui.nix @@ -0,0 +1,18 @@ +{ kdeFramework, lib, extra-cmake-modules, attica, kconfig +, kconfigwidgets, kglobalaccel, ki18n, kiconthemes, kitemviews +, ktextwidgets, kwindowsystem, sonnet +}: + +kdeFramework { + name = "kxmlgui"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ + attica kconfig kiconthemes kitemviews ktextwidgets + ]; + propagatedBuildInputs = [ + kconfigwidgets kglobalaccel ki18n kwindowsystem sonnet + ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix b/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix new file mode 100644 index 000000000000..20a300b68bc8 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/kxmlrpcclient.nix @@ -0,0 +1,10 @@ +{ kdeFramework, lib, extra-cmake-modules, ki18n, kio }: + +kdeFramework { + name = "kxmlrpcclient"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ ki18n kio ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix new file mode 100644 index 000000000000..7d7f769d6a9b --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/modemmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, modemmanager +}: + +kdeFramework { + name = "modemmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ modemmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix b/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix new file mode 100644 index 000000000000..333378bd1431 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/networkmanager-qt.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, networkmanager +}: + +kdeFramework { + name = "networkmanager-qt"; + nativeBuildInputs = [ extra-cmake-modules ]; + propagatedBuildInputs = [ networkmanager ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix b/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix new file mode 100644 index 000000000000..ee350f8e1536 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/oxygen-icons5.nix @@ -0,0 +1,13 @@ +{ kdeFramework +, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "oxygen-icons5"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + license = lib.licenses.lgpl3Plus; + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix b/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix new file mode 100644 index 000000000000..d8846f777231 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/plasma-framework/default.nix @@ -0,0 +1,25 @@ +{ kdeFramework, lib, extra-cmake-modules, kactivities, karchive +, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative +, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio +, knotifications, kpackage, kservice, kwindowsystem, kxmlgui +, makeQtWrapper, qtscript, qtx11extras +}: + +kdeFramework { + name = "plasma-framework"; + nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; + buildInputs = [ + karchive kconfig kconfigwidgets kcoreaddons kdbusaddons kguiaddons + kiconthemes knotifications kxmlgui qtscript + ]; + propagatedBuildInputs = [ + kactivities kdeclarative kglobalaccel ki18n kio kpackage kservice kwindowsystem + qtx11extras + ]; + postInstall = '' + wrapQtProgram "$out/bin/plasmapkg2" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/solid.nix b/pkgs/development/libraries/kde-frameworks-5.19/solid.nix new file mode 100644 index 000000000000..afd125e3c597 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/solid.nix @@ -0,0 +1,17 @@ +{ kdeFramework, lib +, extra-cmake-modules +, makeQtWrapper +, qtdeclarative +}: + +kdeFramework { + name = "solid"; + nativeBuildInputs = [ extra-cmake-modules makeQtWrapper ]; + buildInputs = [ qtdeclarative ]; + postInstall = '' + wrapQtProgram "$out/bin/solid-hardware5" + ''; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix b/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix new file mode 100644 index 000000000000..943fe04a1c92 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/sonnet.nix @@ -0,0 +1,13 @@ +{ kdeFramework, lib +, extra-cmake-modules +, hunspell +}: + +kdeFramework { + name = "sonnet"; + nativeBuildInputs = [ extra-cmake-modules ]; + buildInputs = [ hunspell ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix b/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix new file mode 100644 index 000000000000..b86c0b71224d --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/srcs.nix @@ -0,0 +1,565 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/attica-5.19.0.tar.xz"; + sha256 = "0cbvjnv2fcqsxspiy5pzmnnzrpfamlsc9j927kd6gpzai1ckf1lv"; + name = "attica-5.19.0.tar.xz"; + }; + }; + baloo = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/baloo-5.19.0.tar.xz"; + sha256 = "02yy0w13h5wxm74a87zi439f6yd9miid6rb54nia0pgvcka98svg"; + name = "baloo-5.19.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/bluez-qt-5.19.0.tar.xz"; + sha256 = "0609i7rzhnnnp4fqnwscwp6y646ji8kl2hw5sy7azc87yllisnyv"; + name = "bluez-qt-5.19.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/breeze-icons-5.19.0.tar.xz"; + sha256 = "0bwix0jl1dscqfb7ygn9drpd9ivfx4g15vz6h01mswvxa9lz1vj0"; + name = "breeze-icons-5.19.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/extra-cmake-modules-5.19.0.tar.xz"; + sha256 = "1dl3hhbara7iswb5wsc5dp17ar3ljw5f0nrncl8vry9smaz2zl63"; + name = "extra-cmake-modules-5.19.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/frameworkintegration-5.19.0.tar.xz"; + sha256 = "00la7p7wcyqpxyi73h4fjrmm9d2gqzdaljn4468xya4bfns5ijy3"; + name = "frameworkintegration-5.19.0.tar.xz"; + }; + }; + kactivities = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kactivities-5.19.0.tar.xz"; + sha256 = "0yml1sbn3z4jd4vsfs25kqrl03pmlcgamzbgpw3248sabhyg7ks3"; + name = "kactivities-5.19.0.tar.xz"; + }; + }; + kapidox = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kapidox-5.19.0.tar.xz"; + sha256 = "0a9731xrkd6mnqh72592rx6gfnxxdfd7xl8pdpgdn7qs3394k1yz"; + name = "kapidox-5.19.0.tar.xz"; + }; + }; + karchive = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/karchive-5.19.0.tar.xz"; + sha256 = "043spmi7s2d1bj8d3wbgzbhisip6h92kqjhlvg8gyv0a7vy54ymv"; + name = "karchive-5.19.0.tar.xz"; + }; + }; + kauth = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kauth-5.19.0.tar.xz"; + sha256 = "0fm9ih2hkh2rpmlf98yw8z1r5bn2qmpva2k7mrv6ijd5h767fxss"; + name = "kauth-5.19.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kbookmarks-5.19.0.tar.xz"; + sha256 = "0q418jpdc348nqgdavsmxxka4g8sldpdi9n89i1pllfmq10kw9sd"; + name = "kbookmarks-5.19.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kcmutils-5.19.0.tar.xz"; + sha256 = "0qhdjb3zvqq9ycfgb52lz4flgipyplj5ksz8h8y71bbs4w6lazd8"; + name = "kcmutils-5.19.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kcodecs-5.19.0.tar.xz"; + sha256 = "1rzp314fv9n5168j7nhv1c8fjaszpmgdx6javrx4w0hyrjdfkg66"; + name = "kcodecs-5.19.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kcompletion-5.19.0.tar.xz"; + sha256 = "05n0y5kf3bcc4wgn6k0js5cravv1k93xxzrgapm21323qgvfagwd"; + name = "kcompletion-5.19.0.tar.xz"; + }; + }; + kconfig = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kconfig-5.19.0.tar.xz"; + sha256 = "0nk5hfl8yh0kgaa7xi0cc05dl6nf7prvbvxv0i99207xh9dafdmm"; + name = "kconfig-5.19.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kconfigwidgets-5.19.0.tar.xz"; + sha256 = "1nld27chcjwjgwv76s2j77ifmca235yp10bm08rjmvnfn6778ypv"; + name = "kconfigwidgets-5.19.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kcoreaddons-5.19.0.tar.xz"; + sha256 = "07sm0givfdx28p302fkynzsd3xkpn1hbs43d4rscyx18yxfsldcw"; + name = "kcoreaddons-5.19.0.tar.xz"; + }; + }; + kcrash = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kcrash-5.19.0.tar.xz"; + sha256 = "1dy03gp1sj96wn0zfa0dpbvz8pz0ia1j7p1wcif3iqk55pjxdgyl"; + name = "kcrash-5.19.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdbusaddons-5.19.0.tar.xz"; + sha256 = "1bb5aik0kl3kab5399drfjxrm8iysgkf813xgr0y4k64c9kwfp28"; + name = "kdbusaddons-5.19.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdeclarative-5.19.0.tar.xz"; + sha256 = "03g02zy7wjzmpvqzxx32z8ap7jyj9sf432g1d3csb0dcbx2ny52g"; + name = "kdeclarative-5.19.0.tar.xz"; + }; + }; + kded = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kded-5.19.0.tar.xz"; + sha256 = "0nyvg0h2aqy7qr57bad6wyc2rmcv9nhdq0py4fxc3irb6516p9hz"; + name = "kded-5.19.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/kdelibs4support-5.19.0.tar.xz"; + sha256 = "0iqnb2j6gfy8006arwv65vljfhxdnk6aia0zppngb481jnd9n2pn"; + name = "kdelibs4support-5.19.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdesignerplugin-5.19.0.tar.xz"; + sha256 = "11inmvyair796rx4842naf1dnxqvc6bqqzrv700ycvisad646ws5"; + name = "kdesignerplugin-5.19.0.tar.xz"; + }; + }; + kdesu = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdesu-5.19.0.tar.xz"; + sha256 = "19w8m7ji61bpd368lzkwlizcwa1l968l568lksgm2mm9pnyjjhgz"; + name = "kdesu-5.19.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdewebkit-5.19.0.tar.xz"; + sha256 = "04b5qanhxggffnvmi28lspyi8kj4kq7mxhxndar9fmkzzgvy70hj"; + name = "kdewebkit-5.19.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdnssd-5.19.0.tar.xz"; + sha256 = "15a8w2i29mrbhadw6y123mr0cc45ijabnwdfp3lbkd40lk8nq314"; + name = "kdnssd-5.19.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kdoctools-5.19.0.tar.xz"; + sha256 = "06g77n9wxpiv4skc1kz794ppfb2mkmd3fgn6an5kr301xc76cnpn"; + name = "kdoctools-5.19.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kemoticons-5.19.0.tar.xz"; + sha256 = "0fiix2sf2wrvmrpx8whdr1bzm7gbv7pvg02y47w5bl6s9gh176g5"; + name = "kemoticons-5.19.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kfilemetadata-5.19.0.tar.xz"; + sha256 = "11j8if3xhp3xxwibwm6nxb4lh8wx40ni3zf5hki327pxv4vpq3qr"; + name = "kfilemetadata-5.19.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kglobalaccel-5.19.0.tar.xz"; + sha256 = "021j98f7217m83aqxpamg0lzlaiskdaqsd9iabc8wrp1g0nkm05d"; + name = "kglobalaccel-5.19.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kguiaddons-5.19.0.tar.xz"; + sha256 = "019xaf7vpgifcw8wibli9d2b50brhgdaypsqknh6mqq8q9g06jhy"; + name = "kguiaddons-5.19.0.tar.xz"; + }; + }; + khtml = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/khtml-5.19.0.tar.xz"; + sha256 = "0hqa54a9nxy954vy8gf52y89xd3ibz9b4jgh6w347b1alp1zn145"; + name = "khtml-5.19.0.tar.xz"; + }; + }; + ki18n = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/ki18n-5.19.0.tar.xz"; + sha256 = "0v3arc20y5d8afm9zfrz1skd2xg3ng62cq1xvxiq645w6mxf7y05"; + name = "ki18n-5.19.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kiconthemes-5.19.0.tar.xz"; + sha256 = "0riicirgda3w2b30dzsa2lq9xrr4y04qwhxyzq1p8gn2x4pp3g3n"; + name = "kiconthemes-5.19.0.tar.xz"; + }; + }; + kidletime = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kidletime-5.19.0.tar.xz"; + sha256 = "0jlbzqv36ddhfhk8xkkgw0xhq8s371z9ama1cyv2xq8kk4vjywc6"; + name = "kidletime-5.19.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kimageformats-5.19.0.tar.xz"; + sha256 = "1ydizc6b0ncndazk62h8y249yfcx381pwzyivfpka1f69zfgyvv5"; + name = "kimageformats-5.19.0.tar.xz"; + }; + }; + kinit = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kinit-5.19.0.tar.xz"; + sha256 = "03l7pijqdnnsfg6yz9p73p7xa86sldayggl6rc5hpkzmgyczcfzm"; + name = "kinit-5.19.0.tar.xz"; + }; + }; + kio = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kio-5.19.0.tar.xz"; + sha256 = "0c7smp7cajivx53shy65mp9zcc51pha9iyvh37dggfflxy3xf9nv"; + name = "kio-5.19.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kitemmodels-5.19.0.tar.xz"; + sha256 = "0skmim986qnncbzd84vm1wp1fr41jn04af2dgckirsk23d35bln7"; + name = "kitemmodels-5.19.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kitemviews-5.19.0.tar.xz"; + sha256 = "118zv46mvrfwbvl06bb1m8axv92wnp4pfs36hsxvnjl7gfjk5xjn"; + name = "kitemviews-5.19.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kjobwidgets-5.19.0.tar.xz"; + sha256 = "1qzf8nzy8rxkdai9aj2lyrww90245v0p2q115xiz73bsg9rahmji"; + name = "kjobwidgets-5.19.0.tar.xz"; + }; + }; + kjs = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/kjs-5.19.0.tar.xz"; + sha256 = "08m01762hb25vm020g3v37bh40cgvcfrj45ql135klx96x9imfaf"; + name = "kjs-5.19.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/kjsembed-5.19.0.tar.xz"; + sha256 = "1wmkgy8jgm21y2cvcbv1fdv29dxxla8n6ws78kzzbbw4cgqwwl48"; + name = "kjsembed-5.19.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/kmediaplayer-5.19.0.tar.xz"; + sha256 = "1vhqr2c7q8vwzdj29vpmfjfhyal8wp9ffirrnqc98vb6sffs85ay"; + name = "kmediaplayer-5.19.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/knewstuff-5.19.0.tar.xz"; + sha256 = "12acd12vxk9z83zg3yz8lvmmb8737z9lzd4hs9a3jcs1z5k2nhb4"; + name = "knewstuff-5.19.0.tar.xz"; + }; + }; + knotifications = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/knotifications-5.19.0.tar.xz"; + sha256 = "0grgm0ws16gp2j77nslqpl1jpxbi0m6g59zr7v1xnmzdk2j6n4av"; + name = "knotifications-5.19.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/knotifyconfig-5.19.0.tar.xz"; + sha256 = "161brvryxzdkny7sf6icn1jpyi6rnw6jc808gdf5g41v50xpnxfj"; + name = "knotifyconfig-5.19.0.tar.xz"; + }; + }; + kpackage = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kpackage-5.19.0.tar.xz"; + sha256 = "1km4sjgxfljp2pnjnzj48q3c574zvj7341a57n4ifhjwj37yzxdv"; + name = "kpackage-5.19.0.tar.xz"; + }; + }; + kparts = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kparts-5.19.0.tar.xz"; + sha256 = "05g59x2mrqygawzcwgw3igl5n96l649h0kpzh37sfq4i8kg15g7l"; + name = "kparts-5.19.0.tar.xz"; + }; + }; + kpeople = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kpeople-5.19.0.tar.xz"; + sha256 = "1ksf6g71li1xk4q98cvwkam8m8g32x2815kj1gfwbg4g6iw74w98"; + name = "kpeople-5.19.0.tar.xz"; + }; + }; + kplotting = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kplotting-5.19.0.tar.xz"; + sha256 = "169x4m9ms8yhfha8zclnl8wrnfhfqshpwwg4b5bd046pcrkqmnqq"; + name = "kplotting-5.19.0.tar.xz"; + }; + }; + kpty = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kpty-5.19.0.tar.xz"; + sha256 = "0289vzfjwppwqj9h03flzhwm18dnxz11hqhdhr9990x7rw6a4n03"; + name = "kpty-5.19.0.tar.xz"; + }; + }; + kross = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/kross-5.19.0.tar.xz"; + sha256 = "1nv7mrhn7wa4bs2a164x42d3b37akyvhkxqs8cg5fqp4vr2wkw0p"; + name = "kross-5.19.0.tar.xz"; + }; + }; + krunner = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/portingAids/krunner-5.19.0.tar.xz"; + sha256 = "054s8309lxi27gpbg7iygbcxsp0pwrzbzww3h8zp2a9yiic4s5mx"; + name = "krunner-5.19.0.tar.xz"; + }; + }; + kservice = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kservice-5.19.0.tar.xz"; + sha256 = "02lbia26r2462nwksizaxjfkhxfqqs732dp495yx8bjc7wcv3srm"; + name = "kservice-5.19.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/ktexteditor-5.19.0.tar.xz"; + sha256 = "0v3l44w4k43ajs81i8386hszk3x7rajjlb6z3jb7q98vhp91b5dp"; + name = "ktexteditor-5.19.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/ktextwidgets-5.19.0.tar.xz"; + sha256 = "1xydb76r6x1p10bkr2nlqg3md78jw8zvqad0h42dgvl4f5xvjknp"; + name = "ktextwidgets-5.19.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kunitconversion-5.19.0.tar.xz"; + sha256 = "11g1vhqkrb1k748drj7klkbb7jca3dybakcmcgqf53g8vxfih8kb"; + name = "kunitconversion-5.19.0.tar.xz"; + }; + }; + kwallet = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kwallet-5.19.0.tar.xz"; + sha256 = "0z0c62fdfx9syrq6z7bk0ihac4yqyxpycll7h3mijj29km4jnpjm"; + name = "kwallet-5.19.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kwidgetsaddons-5.19.0.tar.xz"; + sha256 = "0b85ng0dj5gpzifqmhyzgx61nb37vq7d0gvfpfazlcp5n27ywivm"; + name = "kwidgetsaddons-5.19.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kwindowsystem-5.19.0.tar.xz"; + sha256 = "115xs34r74j9zcsw69glnh8w59iyh764n3gniawwrk23c6yb8fch"; + name = "kwindowsystem-5.19.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kxmlgui-5.19.0.tar.xz"; + sha256 = "1al2xifiyvl3zpva9nqap8gb6vqfgmf2fnhkmymm02rwg4yn4gah"; + name = "kxmlgui-5.19.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/kxmlrpcclient-5.19.0.tar.xz"; + sha256 = "0lji7cxvh2lmjz42lx6ymz962gr4cyqfzksz0n5vgzfk5z0vq98g"; + name = "kxmlrpcclient-5.19.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/modemmanager-qt-5.19.0.tar.xz"; + sha256 = "05x9jicryjw9fj02arpya8xsh79rsnljnqjfpwbb7pi38f9i8v4w"; + name = "modemmanager-qt-5.19.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/networkmanager-qt-5.19.0.tar.xz"; + sha256 = "0wi0mkygzbvvyil1nyzc3ihgilvpx6j7caqaa9k38p85g93vsq13"; + name = "networkmanager-qt-5.19.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/oxygen-icons5-5.19.0.tar.xz"; + sha256 = "09vfwcyidj3bl0qr4sq78bkc69zp9x8dwp8bsay5y05q8591dkg0"; + name = "oxygen-icons5-5.19.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/plasma-framework-5.19.0.tar.xz"; + sha256 = "1588r1jag0s9hhw4qq7mr2mcdd3d9az5ngb3z1l58xdhvfcc4497"; + name = "plasma-framework-5.19.0.tar.xz"; + }; + }; + solid = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/solid-5.19.0.tar.xz"; + sha256 = "02bnvhscb55r6q5hkyh7rqi6zsc3r974y3x9shi8l0xbs78snkgz"; + name = "solid-5.19.0.tar.xz"; + }; + }; + sonnet = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/sonnet-5.19.0.tar.xz"; + sha256 = "02ringh0wyiq1n19c200bcyf5x2w5jhw0pcxvfjzjai1sjig03x7"; + name = "sonnet-5.19.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.19.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.19/threadweaver-5.19.0.tar.xz"; + sha256 = "1jm1sw7xq76s2ggghm6qqdn7452myy9n7p5zzdb01qbaw2y1x4pw"; + name = "threadweaver-5.19.0.tar.xz"; + }; + }; +} diff --git a/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix b/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix new file mode 100644 index 000000000000..52817921cc72 --- /dev/null +++ b/pkgs/development/libraries/kde-frameworks-5.19/threadweaver.nix @@ -0,0 +1,11 @@ +{ kdeFramework, lib +, extra-cmake-modules +}: + +kdeFramework { + name = "threadweaver"; + nativeBuildInputs = [ extra-cmake-modules ]; + meta = { + maintainers = [ lib.maintainers.ttuegel ]; + }; +} diff --git a/pkgs/development/libraries/lame/default.nix b/pkgs/development/libraries/lame/default.nix index f4ea47e633f9..b324494faff7 100644 --- a/pkgs/development/libraries/lame/default.nix +++ b/pkgs/development/libraries/lame/default.nix @@ -32,6 +32,9 @@ stdenv.mkDerivation rec { patches = [ ./gcc-4.9.patch ]; + outputs = [ "out" "lib" "doc" ]; # a small single header + outputMan = "out"; + nativeBuildInputs = [ ] ++ optional nasmSupport nasm; diff --git a/pkgs/development/libraries/lcms/default.nix b/pkgs/development/libraries/lcms/default.nix index c98a01f6f70f..9365cf0b5f09 100644 --- a/pkgs/development/libraries/lcms/default.nix +++ b/pkgs/development/libraries/lcms/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation { sha256 = "1abkf8iphwyfs3z305z3qczm3z1i9idc1lz4gvfg92jnkz5k5bl0"; }; + outputs = [ "dev" "out" "bin" "man" ]; + meta = { description = "Color management engine"; homepage = http://www.littlecms.com/; diff --git a/pkgs/development/libraries/lcms2/default.nix b/pkgs/development/libraries/lcms2/default.nix index db82c943d7c2..7dea029491aa 100644 --- a/pkgs/development/libraries/lcms2/default.nix +++ b/pkgs/development/libraries/lcms2/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, libtiff, libjpeg, zlib}: +{ stdenv, fetchurl, libtiff, libjpeg, zlib }: stdenv.mkDerivation rec { name = "lcms2-2.7"; @@ -8,13 +8,14 @@ stdenv.mkDerivation rec { sha256 = "0lvaglcjsvnyglgj3cb3pjc22nq8fml1vlx5dmmmw66ywx526925"; }; + outputs = [ "dev" "out" "bin" ]; + propagatedBuildInputs = [ libtiff libjpeg zlib ]; - meta = { + meta = with stdenv.lib; { description = "Color management engine"; homepage = http://www.littlecms.com/; - license = stdenv.lib.licenses.mit; - platforms = stdenv.lib.platforms.all; - maintainers = [ stdenv.lib.maintainers.urkud ]; + license = licenses.mit; + platforms = platforms.all; }; } diff --git a/pkgs/development/libraries/libao/default.nix b/pkgs/development/libraries/libao/default.nix index c0a6d4b6b1f1..776cd0f5b91f 100644 --- a/pkgs/development/libraries/libao/default.nix +++ b/pkgs/development/libraries/libao/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "1bwwv1g9lchaq6qmhvj1pp3hnyqr64ydd4j38x94pmprs4d27b83"; }; + outputs = [ "dev" "out" "doc" ]; + buildInputs = [ pkgconfig ] ++ lib.optional stdenv.isLinux (if usePulseAudio then libpulseaudio else alsaLib) ++ diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix index ff33043dbaea..467dd87f43e9 100644 --- a/pkgs/development/libraries/libarchive/default.nix +++ b/pkgs/development/libraries/libarchive/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { preFixup = '' sed -i $out/lib/libarchive.la \ - -e 's|-lcrypto|-L${openssl}/lib -lcrypto|' \ + -e 's|-lcrypto|-L${openssl.out}/lib -lcrypto|' \ -e 's|-llzo2|-L${lzo}/lib -llzo2|' ''; diff --git a/pkgs/development/libraries/libassuan/default.nix b/pkgs/development/libraries/libassuan/default.nix index a9c83594179f..f2f31963d670 100644 --- a/pkgs/development/libraries/libassuan/default.nix +++ b/pkgs/development/libraries/libassuan/default.nix @@ -8,13 +8,16 @@ stdenv.mkDerivation rec { sha256 = "086bbcdnvs48qq5g4iac7dpk76j0q3jrp16mchdvyx0b720xq1mv"; }; + outputs = [ "dev" "out" "info" ]; + outputBin = "dev"; # libassuan-config + buildInputs = [ libgpgerror pth ]; doCheck = true; # Make sure includes are fixed for callers who don't use libassuan-config postInstall = '' - sed -i 's,#include ,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/assuan.h + sed -i 's,#include ,#include "${libgpgerror.dev}/include/gpg-error.h",g' $dev/include/assuan.h ''; meta = { diff --git a/pkgs/development/libraries/libast/default.nix b/pkgs/development/libraries/libast/default.nix new file mode 100644 index 000000000000..d392f9a38e1d --- /dev/null +++ b/pkgs/development/libraries/libast/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl +, pkgconfig }: + +stdenv.mkDerivation rec { + name = "libast-${version}"; + version = "0.7"; + + src = fetchurl { + url = "http://www.eterm.org/download/${name}.tar.gz"; + sha256 = "1w7bs46r4lykfd83kc3bg9i1rxzzlb4ydk23ikf8mx8avz05q1aj"; + }; + + buildInputs = [ pkgconfig ]; + + meta = with stdenv.lib; { + description = "Library of Assorted Spiffy Things"; + homepage = "http://www.eterm.org"; + license = licenses.bsd2; + maintainers = [ maintainers.AndersonTorres ]; + }; +} + diff --git a/pkgs/development/libraries/libav/default.nix b/pkgs/development/libraries/libav/default.nix index 4d5563adab02..b84b852691fd 100644 --- a/pkgs/development/libraries/libav/default.nix +++ b/pkgs/development/libraries/libav/default.nix @@ -7,10 +7,10 @@ , x264Support ? false, x264 ? null , xvidSupport ? true, xvidcore ? null , faacSupport ? false, faac ? null -, vaapiSupport ? false, libva ? null # ToDo: it has huge closure +, vaapiSupport ? true, libva ? null , vdpauSupport ? true, libvdpau ? null , freetypeSupport ? true, freetype ? null # it's small and almost everywhere -, SDL # only for avplay in $tools, adds nontrivial closure to it +, SDL # only for avplay in $bin, adds nontrivial closure to it , enableGPL ? true # ToDo: some additional default stuff may need GPL , enableUnfree ? faacSupport }: @@ -81,20 +81,18 @@ let enableParallelBuilding = true; - outputs = [ "out" "tools" ]; + outputs = [ "dev" "out" "bin" ]; + setOutputFlags = false; # alltools to build smaller tools, incl. aviocat, ismindex, qt-faststart, etc. buildFlags = "all alltools install-man"; postInstall = '' - # move avplay to get rid of the SDL dependency in the main output - mkdir -p "$tools/bin" - mv "$out/bin/avplay" "$tools/bin" - + moveToOutput bin "$bin" # alltools target compiles an executable in tools/ for every C # source file in tools/, so move those to $out for tool in $(find tools -type f -executable); do - mv "$tool" "$out/bin/" + mv "$tool" "$bin/bin/" done ''; diff --git a/pkgs/development/libraries/libcaca/default.nix b/pkgs/development/libraries/libcaca/default.nix index c3059642382a..7a905d9c82a6 100644 --- a/pkgs/development/libraries/libcaca/default.nix +++ b/pkgs/development/libraries/libcaca/default.nix @@ -11,10 +11,17 @@ stdenv.mkDerivation rec { sha256 = "1x3j6yfyxl52adgnabycr0n38j9hx2j74la0hz0n8cnh9ry4d2qj"; }; + outputs = [ "dev" "bin" "out" "man" ]; + configureFlags = "--disable-x11 --disable-imlib2 --disable-doc"; propagatedBuildInputs = [ ncurses zlib ]; + postInstall = '' + mkdir -p $dev/bin + mv $bin/bin/caca-config $dev/bin/caca-config + ''; + meta = { homepage = http://libcaca.zoy.org/; description = "A graphics library that outputs text instead of pixels"; diff --git a/pkgs/development/libraries/libcanberra/default.nix b/pkgs/development/libraries/libcanberra/default.nix index b441719d31cd..8e3523a27e9f 100644 --- a/pkgs/development/libraries/libcanberra/default.nix +++ b/pkgs/development/libraries/libcanberra/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { postInstall = '' for f in $out/lib/*.la; do - sed 's|-lltdl|-L${libtool}/lib -lltdl|' -i $f + sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $f done ''; diff --git a/pkgs/development/libraries/libdbi-drivers/default.nix b/pkgs/development/libraries/libdbi-drivers/default.nix index ccc0a1996549..f64174778b20 100644 --- a/pkgs/development/libraries/libdbi-drivers/default.nix +++ b/pkgs/development/libraries/libdbi-drivers/default.nix @@ -31,11 +31,11 @@ stdenv.mkDerivation rec { ] ++ optionals (postgresql != null) [ "--with-pgsql" "--with-pgsql_incdir=${postgresql}/include" - "--with-pgsql_libdir=${postgresql}/lib" + "--with-pgsql_libdir=${postgresql.lib}/lib" ] ++ optionals (sqlite != null) [ "--with-sqlite3" - "--with-sqlite3-incdir=${sqlite}/include/sqlite" - "--with-sqlite3-libdir=${sqlite}/lib/sqlite" + "--with-sqlite3-incdir=${sqlite.dev}/include/sqlite" + "--with-sqlite3-libdir=${sqlite.out}/lib/sqlite" ]; installFlags = [ "DESTDIR=\${out}" ]; diff --git a/pkgs/development/libraries/libdrm/default.nix b/pkgs/development/libraries/libdrm/default.nix index 154277f9cc66..ad524ffeb027 100644 --- a/pkgs/development/libraries/libdrm/default.nix +++ b/pkgs/development/libraries/libdrm/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "79cb8e988749794edfb2d777b298d5292eff353bbbb71ed813589e61d2bc2d76"; }; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libpthreadstubs libpciaccess ] ++ stdenv.lib.optional stdenv.isLinux udev; diff --git a/pkgs/development/libraries/libedit/default.nix b/pkgs/development/libraries/libedit/default.nix index 6e8d85cb88d9..7868c2cfd140 100644 --- a/pkgs/development/libraries/libedit/default.nix +++ b/pkgs/development/libraries/libedit/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { postInstall = '' find $out/lib -type f | grep '\.\(la\|pc\)''$' | xargs sed -i \ - -e 's,-lncurses[a-z]*,-L${ncurses}/lib -lncursesw,g' + -e 's,-lncurses[a-z]*,-L${ncurses.out}/lib -lncursesw,g' ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libelf/default.nix b/pkgs/development/libraries/libelf/default.nix index 048902f4fc49..623256bb6b7b 100644 --- a/pkgs/development/libraries/libelf/default.nix +++ b/pkgs/development/libraries/libelf/default.nix @@ -1,6 +1,6 @@ { fetchurl, stdenv, gettext, glibc }: -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { name = "libelf-0.8.13"; src = fetchurl { @@ -15,6 +15,11 @@ stdenv.mkDerivation (rec { nativeBuildInputs = [ glibc ]; }; + # Libelf's custom NLS macros fail to determine the catalog file extension on + # Darwin, so disable NLS for now. + # FIXME: Eventually make Gettext a build input on all platforms. + configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-nls"; + buildInputs = [ gettext ]; meta = { @@ -28,12 +33,3 @@ stdenv.mkDerivation (rec { maintainers = [ ]; }; } - -// - -# Libelf's custom NLS macros fail to determine the catalog file extension on -# Darwin, so disable NLS for now. -# FIXME: Eventually make Gettext a build input on all platforms. -(if stdenv.isDarwin - then { configureFlags = [ "--disable-nls" ]; } - else { })) diff --git a/pkgs/development/libraries/libevent/default.nix b/pkgs/development/libraries/libevent/default.nix index bddda9f3eadd..b0b537ddb175 100644 --- a/pkgs/development/libraries/libevent/default.nix +++ b/pkgs/development/libraries/libevent/default.nix @@ -8,14 +8,14 @@ stdenv.mkDerivation { url = "mirror://sourceforge/levent/libevent-${version}-stable.tar.gz"; sha256 = "18qz9qfwrkakmazdlwxvjmw8p76g70n3faikwvdwznns1agw9hki"; }; + postPatch = "patchShebangs event_rpcgen.py"; + + outputs = [ "dev" "out" ]; + outputBin = "dev"; nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ openssl python ] ++ stdenv.lib.optional stdenv.isCygwin findutils; - patchPhase = '' - patchShebangs event_rpcgen.py - ''; - meta = with stdenv.lib; { description = "Event notification library"; diff --git a/pkgs/development/libraries/libextractor/default.nix b/pkgs/development/libraries/libextractor/default.nix index 18387c904f83..2b6571290dfb 100644 --- a/pkgs/development/libraries/libextractor/default.nix +++ b/pkgs/development/libraries/libextractor/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { configureFlags = "--disable-ltdl-install " + "--with-ltdl-include=${libtool}/include " - + "--with-ltdl-lib=${libtool}/lib " + + "--with-ltdl-lib=${libtool.lib}/lib " + "--enable-xpdf"; # Checks need to be run after "make install", otherwise plug-ins are not in diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index 5c981e664cb4..962f716c120a 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -8,7 +8,9 @@ stdenv.mkDerivation rec { sha256 = "0dya49bnhianl0r65m65xndz6ls2jn1xngyn72gd28ls3n7bnvnh"; }; - patches = if stdenv.isCygwin then [ ./3.2.1-cygwin.patch ] else null; + patches = stdenv.lib.optional stdenv.isCygwin ./3.2.1-cygwin.patch; + + outputs = [ "dev" "out" "doc" ]; buildInputs = stdenv.lib.optional doCheck dejagnu; @@ -21,9 +23,13 @@ stdenv.mkDerivation rec { dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling. - # Install headers in the right place. - postInstall = '' - ln -s${if (stdenv.isFreeBSD || stdenv.isOpenBSD || stdenv.isDarwin) then "" else "r"}v "$out/lib/"libffi*/include "$out/include" + # Install headers and libs in the right places. + postFixup = '' + mkdir -p "$dev/" + mv "$out/lib/${name}/include" "$dev/include" + rmdir "$out/lib/${name}" + substituteInPlace "$dev/lib/pkgconfig/libffi.pc" \ + --replace 'includedir=''${libdir}/libffi-3.2.1' "includedir=$dev" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libgcrypt/1.5.nix b/pkgs/development/libraries/libgcrypt/1.5.nix index 990e73d0a63e..d77946e5ec37 100644 --- a/pkgs/development/libraries/libgcrypt/1.5.nix +++ b/pkgs/development/libraries/libgcrypt/1.5.nix @@ -17,9 +17,9 @@ stdenv.mkDerivation rec { # Make sure libraries are correct for .pc and .la files # Also make sure includes are fixed for callers who don't use libgpgcrypt-config postInstall = '' - sed -i 's,#include ,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/gcrypt.h + sed -i 's,#include ,#include "${libgpgerror.dev}/include/gpg-error.h",g' $out/include/gcrypt.h '' + stdenv.lib.optionalString enableCapabilities '' - sed -i 's,\(-lcap\),-L${libcap}/lib \1,' $out/lib/libgcrypt.la + sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la ''; doCheck = true; diff --git a/pkgs/development/libraries/libgcrypt/default.nix b/pkgs/development/libraries/libgcrypt/default.nix index 835d6f0f5c29..f36113090ce4 100644 --- a/pkgs/development/libraries/libgcrypt/default.nix +++ b/pkgs/development/libraries/libgcrypt/default.nix @@ -10,16 +10,19 @@ stdenv.mkDerivation rec { sha256 = "0959mwfzsxhallxdqlw359xg180ll2skxwyy35qawmfl89cbr7pl"; }; + outputs = [ "dev" "out" "info" ]; + outputBin = "dev"; + buildInputs = [ libgpgerror ] ++ lib.optional enableCapabilities libcap; # Make sure libraries are correct for .pc and .la files # Also make sure includes are fixed for callers who don't use libgpgcrypt-config - postInstall = '' - sed -i 's,#include ,#include "${libgpgerror}/include/gpg-error.h",g' $out/include/gcrypt.h + postFixup = '' + sed -i 's,#include ,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h" '' + stdenv.lib.optionalString enableCapabilities '' - sed -i 's,\(-lcap\),-L${libcap}/lib \1,' $out/lib/libgcrypt.la + sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la ''; # TODO: figure out why this is even necessary and why the missing dylib only crashes diff --git a/pkgs/development/libraries/libgpg-error/default.nix b/pkgs/development/libraries/libgpg-error/default.nix index 26214bd8801b..9c4f3705b3ed 100644 --- a/pkgs/development/libraries/libgpg-error/default.nix +++ b/pkgs/development/libraries/libgpg-error/default.nix @@ -10,6 +10,9 @@ stdenv.mkDerivation rec { postPatch = "sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure"; + outputs = [ "dev" "out" "info" ]; + outputBin = "dev"; # deps want just the lib, most likely + # If architecture-dependent MO files aren't available, they're generated # during build, so we need gettext for cross-builds. crossAttrs.buildInputs = [ gettext ]; @@ -25,7 +28,7 @@ stdenv.mkDerivation rec { doCheck = true; - meta = { + meta = with stdenv.lib; { homepage = "https://www.gnupg.org/related_software/libgpg-error/index.html"; description = "A small library that defines common error values for all GnuPG components"; @@ -36,9 +39,9 @@ stdenv.mkDerivation rec { Daemon and possibly more in the future. ''; - license = stdenv.lib.licenses.lgpl2Plus; - platforms = stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + license = licenses.lgpl2Plus; + platforms = platforms.all; + maintainers = [ maintainers.fuuzetsu ]; }; } diff --git a/pkgs/development/libraries/libguestfs/default.nix b/pkgs/development/libraries/libguestfs/default.nix index 2e3307b54bf5..8901fef21fd0 100644 --- a/pkgs/development/libraries/libguestfs/default.nix +++ b/pkgs/development/libraries/libguestfs/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { configureFlags = "--disable-appliance --disable-daemon"; patches = [ ./libguestfs-syms.patch ]; - NIX_CFLAGS_COMPILE="-I${libxml2}/include/libxml2/"; + NIX_CFLAGS_COMPILE="-I${libxml2.dev}/include/libxml2/"; postInstall = '' for bin in $out/bin/*; do diff --git a/pkgs/development/libraries/libidn/default.nix b/pkgs/development/libraries/libidn/default.nix index c3c6c13c98fc..b16dc8357414 100644 --- a/pkgs/development/libraries/libidn/default.nix +++ b/pkgs/development/libraries/libidn/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1xf4hphhahcjm2xwx147lfpsavjwv9l4c2gf6hx71zxywbz5lpds"; }; + outputs = [ "dev" "out" "bin" "info" "docdev" ]; + doCheck = ! stdenv.isDarwin; buildInputs = stdenv.lib.optional stdenv.isDarwin libiconv; diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index 6d80bfdccf1f..18dbd2de38bf 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.2.1"; + name = "libinput-1.2.2"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "1hy1h0a4zx5wj23sah4kms2z0285yl0kcn4fqlrrp1gqax9qrnz2"; + sha256 = "0rzkp37dnn4qnkx7v3hckx5ryv3lr0vl234pnk6z2vfq40v5pb08"; }; configureFlags = [ @@ -30,11 +30,13 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libevdev mtdev udev libwacom ] + buildInputs = [ libevdev mtdev libwacom ] ++ optionals eventGUISupport [ cairo glib gtk3 ] ++ optionals documentationSupport [ doxygen graphviz ] ++ optionals testsSupport [ check valgrind ]; + propagatedBuildInputs = [ udev ]; + meta = { description = "Handles input devices in Wayland compositors and provides a generic X.Org input driver"; homepage = http://www.freedesktop.org/wiki/Software/libinput; diff --git a/pkgs/development/libraries/libjpeg-turbo/default.nix b/pkgs/development/libraries/libjpeg-turbo/default.nix index 3660a652e79d..79cf45a8005f 100644 --- a/pkgs/development/libraries/libjpeg-turbo/default.nix +++ b/pkgs/development/libraries/libjpeg-turbo/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, nasm }: +{ stdenv, fetchurl, nasm, autoreconfHook }: stdenv.mkDerivation rec { name = "libjpeg-turbo-1.4.2"; @@ -8,7 +8,11 @@ stdenv.mkDerivation rec { sha256 = "0gi349hp1x7mb98s4mf66sb2xay2kjjxj9ihrriw0yiy0k9va6sj"; }; - buildInputs = [ nasm ]; + outputs = [ "dev" "out" "doc" "bin" ]; + + buildInputs = [ autoreconfHook nasm ]; + + enableParallelBuilding = true; doCheck = true; checkTarget = "test"; diff --git a/pkgs/development/libraries/libjpeg/default.nix b/pkgs/development/libraries/libjpeg/default.nix index bf2ebb27f37f..025be2009599 100644 --- a/pkgs/development/libraries/libjpeg/default.nix +++ b/pkgs/development/libraries/libjpeg/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation { configureFlags = optional static "--enable-static --disable-shared"; + outputs = [ "dev" "out" "man" "bin" ]; + meta = { homepage = http://www.ijg.org/; description = "A library that implements the JPEG image file format"; diff --git a/pkgs/development/libraries/libksi/default.nix b/pkgs/development/libraries/libksi/default.nix index 1f6bd05b5b3b..1dd710246818 100644 --- a/pkgs/development/libraries/libksi/default.nix +++ b/pkgs/development/libraries/libksi/default.nix @@ -4,12 +4,12 @@ stdenv.mkDerivation rec { name = "libksi-2015-07-03"; src = fetchFromGitHub { - owner = "rgerhards"; + owner = "Guardtime"; repo = "libksi"; - rev = "b1ac0346395b4f52ec42a050bf33ac223f194443"; - sha256 = "0gg0fl56flwqmsph7j92lgybaa39i715w0nwgkcr58njm0c02wlw"; + rev = "b82dd65bd693722db92397cbe0920170e0d2ae1c"; + sha256 = "1sqd31l55kx6knl0sg26ail1k5rgmamq8760p6aj7bpb4jwb8r1n"; }; - + nativeBuildInputs = [ autoreconfHook ]; buildInputs = [ openssl curl ]; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { ]; meta = with stdenv.lib; { - homepage = "https://github.com/rgerhards/libksi"; + homepage = "https://github.com/GuardTime/libksi"; description = "Keyless Signature Infrastructure API library"; license = licenses.asl20; platforms = platforms.all; diff --git a/pkgs/development/libraries/libmbim/default.nix b/pkgs/development/libraries/libmbim/default.nix index f910741c446e..8baf4a77c362 100644 --- a/pkgs/development/libraries/libmbim/default.nix +++ b/pkgs/development/libraries/libmbim/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0abv0h9c3kbw4bq1b9270sg189jcjj3x3wa91bj836ynwg9m34wl"; }; + outputs = [ "dev" "out" "doc" ]; + preConfigure = '' patchShebangs . ''; diff --git a/pkgs/development/libraries/libmediainfo/default.nix b/pkgs/development/libraries/libmediainfo/default.nix index b3d76b1c931f..8b8bf61a99b7 100644 --- a/pkgs/development/libraries/libmediainfo/default.nix +++ b/pkgs/development/libraries/libmediainfo/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, autoreconfHook, pkgconfig, libzen, zlib }: stdenv.mkDerivation rec { - version = "0.7.83"; + version = "0.7.84"; name = "libmediainfo-${version}"; src = fetchurl { url = "http://mediaarea.net/download/source/libmediainfo/${version}/libmediainfo_${version}.tar.xz"; - sha256 = "0kl5x07j3jp5mnmhpjvdq0a2nnlgvqnhwar0xalvg3b3msdf8417"; + sha256 = "0k657ynfxcw6lvakc8plz0pzfixlqbsiih2idimk9k1dd4xzhq3d"; }; nativeBuildInputs = [ autoreconfHook pkgconfig ]; diff --git a/pkgs/development/libraries/libmicrohttpd/default.nix b/pkgs/development/libraries/libmicrohttpd/default.nix index 3ef4ba77c31c..c68187945334 100644 --- a/pkgs/development/libraries/libmicrohttpd/default.nix +++ b/pkgs/development/libraries/libmicrohttpd/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "07j1p21rvbrrfpxngk8xswzkmjkh94bp1971xfjh1p0ja709qwzj"; }; - outputs = [ "out" "info" ]; + outputs = [ "dev" "out" "docdev" ]; buildInputs = [ libgcrypt ]; diff --git a/pkgs/development/libraries/libmng/default.nix b/pkgs/development/libraries/libmng/default.nix index 234f56863c09..b97ee6a4ced0 100644 --- a/pkgs/development/libraries/libmng/default.nix +++ b/pkgs/development/libraries/libmng/default.nix @@ -8,13 +8,16 @@ stdenv.mkDerivation rec { sha256 = "0l5wa3b9rr4zl49zbbjpapqyccqjwzkzw1ph3p4pk9p5h73h9317"; }; + outputs = [ "dev" "out" "docdev" ]; + outputMan= "docdev"; + propagatedBuildInputs = [ zlib libpng libjpeg lcms2 ]; - meta = { + meta = with stdenv.lib; { description = "Reference library for reading, displaying, writing and examining Multiple-Image Network Graphics"; homepage = http://www.libmng.com; - license = stdenv.lib.licenses.zlib; - maintainers = with stdenv.lib.maintainers; [ marcweber urkud ]; - hydraPlatforms = stdenv.lib.platforms.linux; + license = licenses.zlib; + maintainers = with maintainers; [ marcweber urkud ]; + hydraPlatforms = platforms.linux; }; } diff --git a/pkgs/development/libraries/libmpc/default.nix b/pkgs/development/libraries/libmpc/default.nix index 1e8ea0ffa138..2a4600f52045 100644 --- a/pkgs/development/libraries/libmpc/default.nix +++ b/pkgs/development/libraries/libmpc/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { buildInputs = [ gmp mpfr ]; - CFLAGS = "-I${gmp}/include"; + CFLAGS = "-I${gmp.dev}/include"; doCheck = true; diff --git a/pkgs/development/libraries/libmtp/default.nix b/pkgs/development/libraries/libmtp/default.nix index 13b405019336..671169b9ab3a 100644 --- a/pkgs/development/libraries/libmtp/default.nix +++ b/pkgs/development/libraries/libmtp/default.nix @@ -3,17 +3,19 @@ stdenv.mkDerivation rec { name = "libmtp-1.1.9"; - propagatedBuildInputs = [ libusb1 ]; - buildInputs = [ pkgconfig ]; - - # tried to install files to /lib/udev, hopefully OK - configureFlags = [ "--with-udev=$$out/lib/udev" ]; - src = fetchurl { url = "mirror://sourceforge/libmtp/${name}.tar.gz"; sha256 = "12dinqic0ljnhrwx3rc61jc7q24ybr0mckc2ya5kh1s1np0d7w93"; }; + outputs = [ "dev" "bin" "out" ]; + + propagatedBuildInputs = [ libusb1 ]; + buildInputs = [ pkgconfig ]; + + # tried to install files to /lib/udev, hopefully OK + configureFlags = [ "--with-udev=$$bin/lib/udev" ]; + meta = { homepage = http://libmtp.sourceforge.net; description = "An implementation of Microsoft's Media Transfer Protocol"; diff --git a/pkgs/development/libraries/liboauth/default.nix b/pkgs/development/libraries/liboauth/default.nix index 479a187cf87c..f62fb400199f 100644 --- a/pkgs/development/libraries/liboauth/default.nix +++ b/pkgs/development/libraries/liboauth/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { postInstall = '' substituteInPlace $out/lib/liboauth.la \ - --replace "-lnss3" "-L${nss}/lib -lnss3" + --replace "-lnss3" "-L${nss.out}/lib -lnss3" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libogg/default.nix b/pkgs/development/libraries/libogg/default.nix index 407e218065bb..1aa4b8ad0453 100644 --- a/pkgs/development/libraries/libogg/default.nix +++ b/pkgs/development/libraries/libogg/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "16z74q422jmprhyvy7c9x909li8cqzmvzyr8cgbm52xcsp6pqs1z"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "doc" ]; meta = with stdenv.lib; { homepage = http://xiph.org/ogg/; diff --git a/pkgs/development/libraries/liboil/default.nix b/pkgs/development/libraries/liboil/default.nix index 43b1f3470934..754e308ac15b 100644 --- a/pkgs/development/libraries/liboil/default.nix +++ b/pkgs/development/libraries/liboil/default.nix @@ -8,10 +8,13 @@ stdenv.mkDerivation rec { sha256 = "0sgwic99hxlb1av8cm0albzh8myb7r3lpcwxfm606l0bkc3h4pqh"; }; - buildInputs = [ pkgconfig ]; - patches = [ ./x86_64-cpuid.patch ]; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; # oil-bugreport + + nativeBuildInputs = [ pkgconfig ]; + # fix "argb_paint_i386.c:53:Incorrect register `%rax' used with `l' suffix" # errors configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64"; diff --git a/pkgs/development/libraries/libopus/default.nix b/pkgs/development/libraries/libopus/default.nix index 460aaa2b0eca..b8951e66c8bd 100644 --- a/pkgs/development/libraries/libopus/default.nix +++ b/pkgs/development/libraries/libopus/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { sha256 = "158xprn2086arvdib3vbbygz7z6jqkw2nci7nlywzzwallap0wmr"; }; + outputs = [ "dev" "out" ]; + configureFlags = stdenv.lib.optional fixedPoint "--enable-fixed-point" ++ stdenv.lib.optional withCustomModes "--enable-custom-modes"; diff --git a/pkgs/development/libraries/libpng/12.nix b/pkgs/development/libraries/libpng/12.nix index 7ae3d0e1d682..01e90cb19132 100644 --- a/pkgs/development/libraries/libpng/12.nix +++ b/pkgs/development/libraries/libpng/12.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "0zkra0b9lrpk2axassdgkqinmc2ba6b473sm52xbpyknaqs2fljy"; }; + outputs = [ "dev" "out" "man" ]; + propagatedBuildInputs = [ zlib ]; passthru = { inherit zlib; }; @@ -21,6 +23,8 @@ stdenv.mkDerivation rec { configureFlags = "--enable-static"; + postInstall = ''mv "$out/bin" "$dev/bin"''; + meta = with stdenv.lib; { description = "The official reference implementation for the PNG file format"; homepage = http://www.libpng.org/pub/png/libpng.html; diff --git a/pkgs/development/libraries/libpng/default.nix b/pkgs/development/libraries/libpng/default.nix index 4e18dcb680f9..6faed97aaee2 100644 --- a/pkgs/development/libraries/libpng/default.nix +++ b/pkgs/development/libraries/libpng/default.nix @@ -18,13 +18,18 @@ in stdenv.mkDerivation rec { url = "mirror://sourceforge/libpng/libpng-${version}.tar.xz"; inherit sha256; }; - postPatch = whenPatched "gunzip < ${patch_src} | patch -Np1"; + outputs = [ "dev" "out" "man" ]; + propagatedBuildInputs = [ zlib ]; + preConfigure = "export bin=$dev"; + doCheck = true; + postInstall = ''mv "$out/bin" "$dev/bin"''; + passthru = { inherit zlib; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/libproxy/default.nix b/pkgs/development/libraries/libproxy/default.nix index 7085236feb52..0f0808506398 100644 --- a/pkgs/development/libraries/libproxy/default.nix +++ b/pkgs/development/libraries/libproxy/default.nix @@ -7,6 +7,8 @@ stdenv.mkDerivation rec { sha256 = "0jw6454gxjykmbnbh544axi8hzz9gmm4jz1y5gw1hdqnakg36gyw"; }; + outputs = [ "dev" "out" ]; # to deal with propagatedBuildInputs + nativeBuildInputs = [ pkgconfig cmake ]; propagatedBuildInputs = [ zlib ] # now some optional deps, but many more are possible diff --git a/pkgs/development/libraries/libpsl/default.nix b/pkgs/development/libraries/libpsl/default.nix index 8a8346211941..a620826576cc 100644 --- a/pkgs/development/libraries/libpsl/default.nix +++ b/pkgs/development/libraries/libpsl/default.nix @@ -3,10 +3,10 @@ let - listVersion = "2016-03-30"; + listVersion = "2016-04-05"; listSources = fetchFromGitHub { - sha256 = "0433ck6ykcq6pc48mvgif9f785q0ndprk77jsk58gb5289b87yns"; - rev = "6ec573d549e25fc89d930bb64939d947bae38f68"; + sha256 = "08ai0yyym0mvsn92fasfn5b5rdrjbavxxl1hhp60g1m0iamfzpa4"; + rev = "1e0c6b000874f98f28663870909e32ee6323fe1d"; repo = "list"; owner = "publicsuffix"; }; diff --git a/pkgs/development/libraries/libqmi/default.nix b/pkgs/development/libraries/libqmi/default.nix index 9699d67d7b87..82768cd350dd 100644 --- a/pkgs/development/libraries/libqmi/default.nix +++ b/pkgs/development/libraries/libqmi/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "101ppan2q1h4pyp2zbn9b8sdwy2c7fk9rp91yykxz3afrvzbymq8"; }; + outputs = [ "dev" "out" "docdev" ]; + preBuild = '' patchShebangs . ''; diff --git a/pkgs/development/libraries/libraw/default.nix b/pkgs/development/libraries/libraw/default.nix index 3d564fc00f8b..031886d34516 100644 --- a/pkgs/development/libraries/libraw/default.nix +++ b/pkgs/development/libraries/libraw/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { sha256 = "043kckxjqanw8dl3m9f6kvsf0l20ywxmgxd1xb0slj6m8l4w4hz6"; }; - buildInputs = [ lcms2 jasper ] ; + buildInputs = [ lcms2 jasper ]; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/development/libraries/librsvg/default.nix b/pkgs/development/libraries/librsvg/default.nix index ea1910733e7d..0768a21bf543 100644 --- a/pkgs/development/libraries/librsvg/default.nix +++ b/pkgs/development/libraries/librsvg/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic"; NIX_CFLAGS_COMPILE - = stdenv.lib.optionalString stdenv.isDarwin "-I${cairo}/include/cairo"; + = stdenv.lib.optionalString stdenv.isDarwin "-I${cairo.dev}/include/cairo"; # It wants to add loaders and update the loaders.cache in gdk-pixbuf # Patching the Makefiles to it creates rsvg specific loaders and the @@ -47,7 +47,7 @@ stdenv.mkDerivation rec { # Merge gdkpixbuf and librsvg loaders postInstall = '' mv $GDK_PIXBUF/loaders.cache $GDK_PIXBUF/loaders.cache.tmp - cat ${gdk_pixbuf}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache + cat ${gdk_pixbuf.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache $GDK_PIXBUF/loaders.cache.tmp > $GDK_PIXBUF/loaders.cache rm $GDK_PIXBUF/loaders.cache.tmp ''; } diff --git a/pkgs/development/libraries/libsamplerate/default.nix b/pkgs/development/libraries/libsamplerate/default.nix index 481d82c0c9ad..f0ff549c7168 100644 --- a/pkgs/development/libraries/libsamplerate/default.nix +++ b/pkgs/development/libraries/libsamplerate/default.nix @@ -1,6 +1,4 @@ -{ stdenv, fetchurl, pkgconfig -, fftw, libsndfile -}: +{ stdenv, fetchurl, pkgconfig, libsndfile }: stdenv.mkDerivation rec { name = "libsamplerate-0.1.8"; @@ -11,12 +9,14 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ fftw libsndfile ]; + buildInputs = [ libsndfile ]; # maybe interesting configure flags: #--disable-fftw disable usage of FFTW #--disable-cpu-clip disable tricky cpu specific clipper + outputs = [ "dev" "bin" "out" ]; + postConfigure = stdenv.lib.optionalString stdenv.isDarwin '' # need headers from the Carbon.framework in /System/Library/Frameworks to diff --git a/pkgs/development/libraries/libsndfile/default.nix b/pkgs/development/libraries/libsndfile/default.nix index 48a2999e7af9..5be8730ba015 100644 --- a/pkgs/development/libraries/libsndfile/default.nix +++ b/pkgs/development/libraries/libsndfile/default.nix @@ -13,6 +13,10 @@ stdenv.mkDerivation rec { buildInputs = [ pkgconfig flac libogg libvorbis ] ++ stdenv.lib.optional stdenv.isDarwin Carbon; + enableParallelBuilding = true; + + outputs = [ "dev" "out" "bin" "doc" ]; + # need headers from the Carbon.framework in /System/Library/Frameworks to # compile this on darwin -- not sure how to handle preConfigure = stdenv.lib.optionalString stdenv.isDarwin diff --git a/pkgs/development/libraries/libsodium/default.nix b/pkgs/development/libraries/libsodium/default.nix index 660ea2809123..e8b3bc1cebc9 100644 --- a/pkgs/development/libraries/libsodium/default.nix +++ b/pkgs/development/libraries/libsodium/default.nix @@ -1,14 +1,16 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - name = "libsodium-1.0.8"; + name = "libsodium-1.0.10"; src = fetchurl { url = "https://download.libsodium.org/libsodium/releases/${name}.tar.gz"; - sha256 = "09hr604k9gdss2r321x5dv3wn11fdl87nswr18g68lkqab993wf0"; + sha256 = "1gn45g956lyz8l6iq187yc6l627vyivyp8qc5dkr6dnhdnlqddvi"; }; - NIX_LDFLAGS = stdenv.lib.optionalString stdenv.cc.isGNU "-lssp"; + outputs = [ "dev" "out" ]; + + enableParallelBuilding = true; doCheck = true; diff --git a/pkgs/development/libraries/libsoup/default.nix b/pkgs/development/libraries/libsoup/default.nix index 3d10e6135055..aa84c507c97a 100644 --- a/pkgs/development/libraries/libsoup/default.nix +++ b/pkgs/development/libraries/libsoup/default.nix @@ -18,11 +18,13 @@ stdenv.mkDerivation { patchShebangs libsoup/ ''; + outputs = [ "dev" "out" ]; + buildInputs = libintlOrEmpty ++ [ intltool python sqlite ]; nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ glib libxml2 gobjectIntrospection ] ++ stdenv.lib.optionals gnomeSupport [ libgnome_keyring ]; - passthru.propagatedUserEnvPackages = [ glib_networking ]; + passthru.propagatedUserEnvPackages = [ glib_networking.out ]; # glib_networking is a runtime dependency, not a compile-time dependency configureFlags = "--disable-tls-check --enable-vala=no" + stdenv.lib.optionalString (!gnomeSupport) " --without-gnome"; diff --git a/pkgs/development/libraries/libssh/default.nix b/pkgs/development/libraries/libssh/default.nix index 17538a6c3803..adfd11d9b197 100644 --- a/pkgs/development/libraries/libssh/default.nix +++ b/pkgs/development/libraries/libssh/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { sed -i 's,nacl/,sodium/,g' ./include/libssh/curve25519.h src/curve25519.c ''; + outputs = [ "dev" "out" ]; + buildInputs = [ zlib openssl libsodium ]; nativeBuildInputs = [ cmake pkgconfig ]; diff --git a/pkgs/development/libraries/libssh2/default.nix b/pkgs/development/libraries/libssh2/default.nix index 326817843351..855e57c0550a 100644 --- a/pkgs/development/libraries/libssh2/default.nix +++ b/pkgs/development/libraries/libssh2/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "116mh112w48vv9k3f15ggp5kxw5sj4b88dzb5j69llsh7ba1ymp4"; }; + outputs = [ "dev" "out" "docdev" ]; + buildInputs = [ openssl zlib ]; crossAttrs = { diff --git a/pkgs/development/libraries/libtasn1/default.nix b/pkgs/development/libraries/libtasn1/default.nix index 1ae26c48fc21..5ac8cc94d044 100644 --- a/pkgs/development/libraries/libtasn1/default.nix +++ b/pkgs/development/libraries/libtasn1/default.nix @@ -8,6 +8,9 @@ stdenv.mkDerivation rec { sha256 = "1j8iixynchziw1y39lnibyl5h81m4p78w3i4f28q2vgwjgf801x4"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + buildInputs = [ perl texinfo ]; doCheck = true; diff --git a/pkgs/development/libraries/libtheora/default.nix b/pkgs/development/libraries/libtheora/default.nix index da590adae062..129dface2d93 100644 --- a/pkgs/development/libraries/libtheora/default.nix +++ b/pkgs/development/libraries/libtheora/default.nix @@ -8,6 +8,9 @@ stdenv.mkDerivation rec { sha256 = "0swiaj8987n995rc7hw0asvpwhhzpjiws8kr3s6r44bqqib2k5a0"; }; + outputs = [ "dev" "out" "docdev" ]; + outputDoc = "docdev"; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ libogg libvorbis ]; diff --git a/pkgs/development/libraries/libtiff/default.nix b/pkgs/development/libraries/libtiff/default.nix index 2c559d221abe..a506279c2a4a 100644 --- a/pkgs/development/libraries/libtiff/default.nix +++ b/pkgs/development/libraries/libtiff/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { sha256 = "136nf1rj9dp5jgv1p7z4dk0xy3wki1w0vfjbk82f645m0w4samsd"; }; - outputs = [ "out" "doc" "man" ]; + outputs = [ "dev" "out" "bin" "doc" ]; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/development/libraries/libtorrent-rasterbar/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/default.nix index 725b98cdae65..e2809e9d483b 100644 --- a/pkgs/development/libraries/libtorrent-rasterbar/default.nix +++ b/pkgs/development/libraries/libtorrent-rasterbar/default.nix @@ -1,6 +1,6 @@ { callPackage, ... } @ args: callPackage ./generic.nix (args // { - version = "1.0.6"; - sha256 = "1qypc5lx82vlqm9016knxx8khxpc9dy78a0q2x5jmxjk8v6g994r"; + version = "1.0.9"; + sha256 = "1kfydlvmx4pgi5lpbhqr4p3jr78p3f61ic32046mkp4yfyydrspl"; }) diff --git a/pkgs/development/libraries/libtoxcore/new-api/default.nix b/pkgs/development/libraries/libtoxcore/new-api/default.nix index 9702fbd02da3..eff8e2449a13 100644 --- a/pkgs/development/libraries/libtoxcore/new-api/default.nix +++ b/pkgs/development/libraries/libtoxcore/new-api/default.nix @@ -23,8 +23,8 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "--with-libsodium-headers=${libsodium}/include" - "--with-libsodium-libs=${libsodium}/lib" + "--with-libsodium-headers=${libsodium.dev}/include" + "--with-libsodium-libs=${libsodium.out}/lib" "--enable-ntox" "--enable-daemon" ]; diff --git a/pkgs/development/libraries/libtoxcore/old-api/default.nix b/pkgs/development/libraries/libtoxcore/old-api/default.nix index 471fafdad38b..2fb5e93eab95 100644 --- a/pkgs/development/libraries/libtoxcore/old-api/default.nix +++ b/pkgs/development/libraries/libtoxcore/old-api/default.nix @@ -27,8 +27,8 @@ stdenv.mkDerivation rec { ''; configureFlags = [ - "--with-libsodium-headers=${libsodium}/include" - "--with-libsodium-libs=${libsodium}/lib" + "--with-libsodium-headers=${libsodium.dev}/include" + "--with-libsodium-libs=${libsodium.out}/lib" "--enable-ntox" "--enable-daemon" ]; diff --git a/pkgs/development/libraries/libunwind/default.nix b/pkgs/development/libraries/libunwind/default.nix index 3fc8b5085590..da09e2fcbe25 100644 --- a/pkgs/development/libraries/libunwind/default.nix +++ b/pkgs/development/libraries/libunwind/default.nix @@ -20,6 +20,8 @@ stdenv.mkDerivation rec { sed -i -e '/LIBLZMA/s:-lzma:-llzma:' configure ''; + outputs = [ "dev" "out" ]; + propagatedBuildInputs = [ xz ]; NIX_CFLAGS_COMPILE = if stdenv.system == "x86_64-linux" then "-fPIC" else ""; @@ -30,7 +32,7 @@ stdenv.mkDerivation rec { postInstall = '' find $out -name \*.la | while read file; do - sed -i 's,-llzma,${xz}/lib/liblzma.la,' $file + sed -i 's,-llzma,${xz.out}/lib/liblzma.la,' $file done ''; diff --git a/pkgs/development/libraries/libusb/default.nix b/pkgs/development/libraries/libusb/default.nix index 7aec64d596fc..b1872779b707 100644 --- a/pkgs/development/libraries/libusb/default.nix +++ b/pkgs/development/libraries/libusb/default.nix @@ -3,6 +3,9 @@ stdenv.mkDerivation { name = "libusb-compat-0.1.5"; + outputs = [ "dev" "out" ]; # get rid of propagating systemd closure + outputBin = "dev"; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ libusb1 ]; diff --git a/pkgs/development/libraries/libusb1/default.nix b/pkgs/development/libraries/libusb1/default.nix index 75d6bdb4cc6a..fe920bba411f 100644 --- a/pkgs/development/libraries/libusb1/default.nix +++ b/pkgs/development/libraries/libusb1/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, udev ? null, libobjc, IOKit }: +{ stdenv, fetchurl, pkgconfig, libudev ? null, libobjc, IOKit }: stdenv.mkDerivation rec { name = "libusb-1.0.19"; @@ -8,15 +8,17 @@ stdenv.mkDerivation rec { sha256 = "0h38p9rxfpg9vkrbyb120i1diq57qcln82h5fr7hvy82c20jql3c"; }; + outputs = [ "dev" "out" ]; # get rid of propagating systemd closure + buildInputs = [ pkgconfig ]; propagatedBuildInputs = - stdenv.lib.optional stdenv.isLinux udev ++ + stdenv.lib.optional stdenv.isLinux libudev ++ stdenv.lib.optionals stdenv.isDarwin [ libobjc IOKit ]; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isLinux "-lgcc_s"; preFixup = stdenv.lib.optionalString stdenv.isLinux '' - sed 's,-ludev,-L${udev}/lib -ludev,' -i $out/lib/libusb-1.0.la + sed 's,-ludev,-L${libudev.out}/lib -ludev,' -i $out/lib/libusb-1.0.la ''; meta = { diff --git a/pkgs/development/libraries/libva/default.nix b/pkgs/development/libraries/libva/default.nix index 557d0f591553..9e22aa1d37cf 100644 --- a/pkgs/development/libraries/libva/default.nix +++ b/pkgs/development/libraries/libva/default.nix @@ -1,10 +1,9 @@ { stdenv, lib, fetchurl, libX11, pkgconfig, libXext, libdrm, libXfixes, wayland, libffi -, mesa_noglu ? null +, mesa_noglu +, minimal ? true, libva }: -let - withMesa = mesa_noglu != null; -in stdenv.mkDerivation rec { +stdenv.mkDerivation rec { name = "libva-1.6.2"; src = fetchurl { @@ -12,9 +11,15 @@ in stdenv.mkDerivation rec { sha256 = "1l4bij21shqbfllbxicmqgmay4v509v9hpxyyia9wm7gvsfg05y4"; }; - buildInputs = [ libX11 libXext pkgconfig libdrm libXfixes wayland libffi mesa_noglu ]; + outputs = [ "dev" "out" "bin" ]; - configureFlags = lib.optionals withMesa [ + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ libdrm ] + ++ lib.optionals (!minimal) [ libva libX11 libXext libXfixes wayland libffi mesa_noglu ]; + # TODO: share libs between minimal and !minimal - perhaps just symlink them + + configureFlags = lib.optionals (!minimal) [ "--with-drivers-path=${mesa_noglu.driverLink}/lib/dri" "--enable-glx" ]; diff --git a/pkgs/development/libraries/libvdpau/default.nix b/pkgs/development/libraries/libvdpau/default.nix index 446f2917fe71..3337a89dd1ce 100644 --- a/pkgs/development/libraries/libvdpau/default.nix +++ b/pkgs/development/libraries/libvdpau/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "857a01932609225b9a3a5bf222b85e39b55c08787d0ad427dbd9ec033d58d736"; }; + outputs = [ "dev" "out" ]; + buildInputs = with xorg; [ pkgconfig dri2proto libXext ]; propagatedBuildInputs = [ xorg.libX11 ]; diff --git a/pkgs/development/libraries/libvirt/default.nix b/pkgs/development/libraries/libvirt/default.nix index 343f3b757e33..d2cb7223cbfa 100644 --- a/pkgs/development/libraries/libvirt/default.nix +++ b/pkgs/development/libraries/libvirt/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, fetchpatch , pkgconfig, makeWrapper , libxml2, gnutls, devicemapper, perl, python -, iproute, iptables, readline, lvm2, utillinux, udev, libpciaccess, gettext +, iproute, iptables, readline, lvm2, utillinux, systemd, libpciaccess, gettext , libtasn1, ebtables, libgcrypt, yajl, pmutils, libcap_ng , dnsmasq, libnl, libpcap, libxslt, xhtml1, numad, numactl, perlPackages , curl, libiconv, gmp, xen @@ -24,14 +24,14 @@ stdenv.mkDerivation rec { gettext libtasn1 libgcrypt yajl libxslt xhtml1 perlPackages.XMLXPath curl libpcap ] ++ stdenv.lib.optionals stdenv.isLinux [ - libpciaccess devicemapper lvm2 utillinux udev libcap_ng + libpciaccess devicemapper lvm2 utillinux systemd.udev.lib libcap_ng libnl numad numactl xen ] ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv gmp ]; preConfigure = stdenv.lib.optionalString stdenv.isLinux '' - PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${udev}/sbin:$PATH + PATH=${iproute}/sbin:${iptables}/sbin:${ebtables}/sbin:${lvm2}/sbin:${systemd.udev.bin}/bin:$PATH substituteInPlace configure --replace 'as_dummy="/bin:/usr/bin:/usr/sbin"' 'as_dummy="${numad}/bin"' '' + '' PATH=${dnsmasq}/bin:$PATH diff --git a/pkgs/development/libraries/libvorbis/default.nix b/pkgs/development/libraries/libvorbis/default.nix index 68f1fe720856..0022799c88fe 100644 --- a/pkgs/development/libraries/libvorbis/default.nix +++ b/pkgs/development/libraries/libvorbis/default.nix @@ -8,7 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1lg1n3a6r41492r7in0fpvzc7909mc5ir9z0gd3qh2pz4yalmyal"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "doc" ]; + nativeBuildInputs = [ pkgconfig ]; propagatedBuildInputs = [ libogg ]; diff --git a/pkgs/development/libraries/libvpx/default.nix b/pkgs/development/libraries/libvpx/default.nix index 6a4756670786..5c593dd1f75e 100644 --- a/pkgs/development/libraries/libvpx/default.nix +++ b/pkgs/development/libraries/libvpx/default.nix @@ -72,6 +72,9 @@ stdenv.mkDerivation rec { patchPhase = ''patchShebangs .''; + outputs = [ "dev" "out" "bin" ]; + setOutputFlags = false; + configureFlags = [ (enableFeature (vp8EncoderSupport || vp8DecoderSupport) "vp8") (enableFeature vp8EncoderSupport "vp8-encoder") @@ -146,6 +149,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postInstall = ''moveToOutput bin "$bin" ''; + crossAttrs = let isCygwin = stdenv.cross.libc == "msvcrt"; isDarwin = stdenv.cross.libc == "libSystem"; diff --git a/pkgs/development/libraries/libvpx/git.nix b/pkgs/development/libraries/libvpx/git.nix index 31b1c197e9ff..064fb807a214 100644 --- a/pkgs/development/libraries/libvpx/git.nix +++ b/pkgs/development/libraries/libvpx/git.nix @@ -73,6 +73,9 @@ stdenv.mkDerivation rec { patchPhase = ''patchShebangs .''; + outputs = [ "dev" "out" "bin" ]; + setOutputFlags = false; + configureFlags = [ (enableFeature (vp8EncoderSupport || vp8DecoderSupport) "vp8") (enableFeature vp8EncoderSupport "vp8-encoder") @@ -147,6 +150,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postInstall = ''moveToOutput bin "$bin" ''; + crossAttrs = let isCygwin = stdenv.cross.libc == "msvcrt"; isDarwin = stdenv.cross.libc == "libSystem"; diff --git a/pkgs/development/libraries/libwnck/3.x.nix b/pkgs/development/libraries/libwnck/3.x.nix index 6c6c0812c43c..a763af96667b 100644 --- a/pkgs/development/libraries/libwnck/3.x.nix +++ b/pkgs/development/libraries/libwnck/3.x.nix @@ -8,6 +8,9 @@ stdenv.mkDerivation { sha256 = "d48ac9c7f50c0d563097f63d07bcc83744c7d92a1b4ef65e5faeab32b5ccb723"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + patches = [ ./install_introspection_to_prefix.patch ]; buildInputs = [ pkgconfig intltool ]; diff --git a/pkgs/development/libraries/libwnck/default.nix b/pkgs/development/libraries/libwnck/default.nix index 6a4479bdda38..bb5258120494 100644 --- a/pkgs/development/libraries/libwnck/default.nix +++ b/pkgs/development/libraries/libwnck/default.nix @@ -12,6 +12,9 @@ stdenv.mkDerivation rec { sha256 = "17isfjvrzgj5znld2a7zsk9vd39q9wnsysnw5jr8iz410z935xw3"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + buildInputs = [ pkgconfig gtk intltool xorg.libX11 xorg.libXres ]; # ?another optional: startup-notification diff --git a/pkgs/development/libraries/libxkbcommon/default.nix b/pkgs/development/libraries/libxkbcommon/default.nix index ea74bea152c2..2bf7bbaabb31 100644 --- a/pkgs/development/libraries/libxkbcommon/default.nix +++ b/pkgs/development/libraries/libxkbcommon/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "176ii5dn2wh74q48sd8ac37ljlvgvp5f506glr96z6ibfhj7igch"; }; + outputs = [ "dev" "out" ]; + buildInputs = [ pkgconfig yacc flex xkeyboard_config libxcb ]; configureFlags = '' diff --git a/pkgs/development/libraries/libxklavier/default.nix b/pkgs/development/libraries/libxklavier/default.nix index d69276a070bb..f074b31bb682 100644 --- a/pkgs/development/libraries/libxklavier/default.nix +++ b/pkgs/development/libraries/libxklavier/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { sha256 = "016lpdv35z0qsw1cprdc2k5qzkdi5waj6qmr0a2q6ljn9g2kpv7b"; }; + outputs = [ "dev" "out" "docdev" ]; + # TODO: enable xmodmap support, needs xmodmap DB propagatedBuildInputs = with xorg; [ libX11 libXi xkeyboard_config libxml2 libICE glib libxkbfile isocodes ]; diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix index cac8f10d37aa..f7e175373e12 100644 --- a/pkgs/development/libraries/libxml2/default.nix +++ b/pkgs/development/libraries/libxml2/default.nix @@ -1,10 +1,6 @@ -{ stdenv, fetchurl, zlib, xz, python ? null, pythonSupport ? true, findXMLCatalogs }: +{ stdenv, fetchurl, zlib, xz, python, findXMLCatalogs }: -assert pythonSupport -> python != null; - -#TODO: share most stuff between python and non-python builds, perhaps via multiple-output - -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { name = "libxml2-${version}"; version = "2.9.3"; @@ -13,9 +9,10 @@ stdenv.mkDerivation (rec { sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad"; }; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "bin" "doc" "py" ]; + propagatedBuildOutputs = "out bin py"; - buildInputs = stdenv.lib.optional pythonSupport python + buildInputs = [ python ] # Libxml2 has an optional dependency on liblzma. However, on impure # platforms, it may end up using that from /usr/lib, and thus lack a # RUNPATH for that, leading to undefined references for its users. @@ -23,10 +20,21 @@ stdenv.mkDerivation (rec { propagatedBuildInputs = [ zlib findXMLCatalogs ]; - passthru = { inherit pythonSupport version; }; + configureFlags = "--with-python=${python}"; enableParallelBuilding = true; + preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"''; + installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"''; + + postFixup = '' + moveToOutput bin/xml2-config "$dev" + moveToOutput lib/xml2Conf.sh "$dev" + moveToOutput share/man/man1 "$bin" + ''; + + passthru = { inherit version; pythonSupport = true; }; + meta = { homepage = http://xmlsoft.org/; description = "An XML parsing library for C"; @@ -34,14 +42,4 @@ stdenv.mkDerivation (rec { platforms = stdenv.lib.platforms.unix; maintainers = [ stdenv.lib.maintainers.eelco ]; }; - -} // stdenv.lib.optionalAttrs pythonSupport { - configureFlags = "--with-python=${python}"; - - # this is a pair of ugly hacks to make python stuff install into the right place - preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$out"''; - installFlags = ''pythondir="$(out)/lib/${python.libPrefix}/site-packages"''; - -} // stdenv.lib.optionalAttrs (!pythonSupport) { - configureFlags = "--with-python=no"; # otherwise build impurity bites us -}) +} diff --git a/pkgs/development/libraries/libxslt/default.nix b/pkgs/development/libraries/libxslt/default.nix index 9aa70ea04716..0eda42879ece 100644 --- a/pkgs/development/libraries/libxslt/default.nix +++ b/pkgs/development/libraries/libxslt/default.nix @@ -17,14 +17,13 @@ stdenv.mkDerivation rec { }) ]; - outputs = [ "out" "doc" ]; + outputs = [ "dev" "out" "bin" "doc" ]; buildInputs = [ libxml2 ]; propagatedBuildInputs = [ findXMLCatalogs ]; configureFlags = [ - "--with-libxml-prefix=${libxml2}" "--without-python" "--without-crypto" "--without-debug" @@ -32,11 +31,17 @@ stdenv.mkDerivation rec { "--without-debugger" ]; - meta = { + postFixup = '' + moveToOutput bin/xslt-config "$dev" + moveToOutput lib/xsltConf.sh "$dev" + moveToOutput share/man/man1 "$bin" + ''; + + meta = with stdenv.lib; { homepage = http://xmlsoft.org/XSLT/; description = "A C library and tools to do XSL transformations"; license = "bsd"; - platforms = stdenv.lib.platforms.unix; - maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = platforms.unix; + maintainers = [ maintainers.eelco ]; }; } diff --git a/pkgs/development/libraries/log4cxx/default.nix b/pkgs/development/libraries/log4cxx/default.nix index b2e13a1e9ab8..cae6e5c0a55e 100644 --- a/pkgs/development/libraries/log4cxx/default.nix +++ b/pkgs/development/libraries/log4cxx/default.nix @@ -20,6 +20,9 @@ stdenv.mkDerivation rec { }' src/examples/cpp/console.cpp \ src/main/cpp/inputstreamreader.cpp \ src/main/cpp/socketoutputstream.cpp + '' + stdenv.lib.optionalString stdenv.isDarwin '' + sed -i 's/namespace std { class locale; }/#include /' src/main/include/log4cxx/helpers/simpledateformat.h + sed -i 's/\(#include \)/\1\n#include /' src/main/cpp/stringhelper.cpp ''; buildInputs = [autoconf automake libtool libxml2 cppunit boost apr aprutil db expat]; diff --git a/pkgs/development/libraries/mailcore2/default.nix b/pkgs/development/libraries/mailcore2/default.nix index de82bd0243e9..f535b19bd0eb 100644 --- a/pkgs/development/libraries/mailcore2/default.nix +++ b/pkgs/development/libraries/mailcore2/default.nix @@ -23,9 +23,10 @@ stdenv.mkDerivation rec { substituteInPlace CMakeLists.txt \ --replace "tidy/tidy.h" "tidy.h" \ --replace "/usr/include/tidy" "${libtidy}/include" \ - --replace "/usr/include/libxml2" "${libxml2}/include/libxml2" + --replace "/usr/include/libxml2" "${libxml2.dev}/include/libxml2" substituteInPlace src/core/basetypes/MCHTMLCleaner.cpp \ --replace buffio.h tidybuffio.h +>>>>>>> master ''; cmakeFlags = [ diff --git a/pkgs/development/libraries/mesa/default.nix b/pkgs/development/libraries/mesa/default.nix index 1c2257998e86..ad6bf8ba3190 100644 --- a/pkgs/development/libraries/mesa/default.nix +++ b/pkgs/development/libraries/mesa/default.nix @@ -1,6 +1,5 @@ -{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, flex, bison, autoreconfHook, substituteAll -, python, libxml2Python, file, expat, makedepend, pythonPackages -, libdrm, xorg, wayland, udev, llvmPackages, libffi, libomxil-bellagio +{ stdenv, fetchurl, fetchpatch, pkgconfig, intltool, autoreconfHook, substituteAll +, file, expat, libdrm, xorg, wayland, libudev, llvmPackages, libffi, libomxil-bellagio , libvdpau, libelf, libva , grsecEnabled , enableTextureFloats ? false # Texture floats are patented, see docs/patents.txt @@ -21,12 +20,13 @@ else - libOSMesa is in $osmesa (~4 MB) */ +with { inherit (stdenv.lib) optional optionalString; }; + let version = "11.1.2"; # this is the default search path for DRI drivers - driverLink = "/run/opengl-driver" + stdenv.lib.optionalString stdenv.isi686 "-32"; + driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32"; in -with { inherit (stdenv.lib) optional optionals optionalString; }; stdenv.mkDerivation { name = "mesa-noglu-${version}"; @@ -50,7 +50,7 @@ stdenv.mkDerivation { ] ++ optional stdenv.isLinux (substituteAll { src = ./dlopen-absolute-paths.diff; - inherit udev; + libudev = libudev.out; }); postPatch = '' @@ -58,7 +58,7 @@ stdenv.mkDerivation { --replace _EGL_DRIVER_SEARCH_DIR '"${driverLink}"' ''; - outputs = ["out" "drivers" "osmesa"]; + outputs = [ "dev" "out" "drivers" "osmesa" ]; configureFlags = [ "--sysconfdir=/etc" @@ -103,17 +103,17 @@ stdenv.mkDerivation { ] ++ optional enableTextureFloats "--enable-texture-float" ++ optional grsecEnabled "--enable-glx-rts"; # slight performance degradation, enable only for grsec - nativeBuildInputs = [ pkgconfig python makedepend file flex bison pythonPackages.Mako ]; + nativeBuildInputs = [ pkgconfig file ]; propagatedBuildInputs = with xorg; [ libXdamage libXxf86vm ] - ++ optionals stdenv.isLinux [ libdrm ]; + ++ optional stdenv.isLinux libdrm; buildInputs = with xorg; [ - autoreconfHook intltool expat libxml2Python llvmPackages.llvm + autoreconfHook intltool expat llvmPackages.llvm glproto dri2proto dri3proto presentproto libX11 libXext libxcb libXt libXfixes libxshmfence libffi wayland libvdpau libelf libXvMC /* libomxil-bellagio libva */ - ] ++ optional stdenv.isLinux udev; + ] ++ optional stdenv.isLinux libudev; enableParallelBuilding = true; doCheck = false; @@ -133,41 +133,42 @@ stdenv.mkDerivation { $out/lib/vdpau \ $out/lib/libxatracker* - mkdir -p {$osmesa,$drivers}/lib/pkgconfig + mkdir -p {$osmesa,$drivers}/lib/ mv -t $osmesa/lib/ \ $out/lib/libOSMesa* - mv -t $drivers/lib/pkgconfig/ \ - $out/lib/pkgconfig/xatracker.pc - - mv -t $osmesa/lib/pkgconfig/ \ - $out/lib/pkgconfig/osmesa.pc - '' + /* now fix references in .la files */ '' sed "/^libdir=/s,$out,$osmesa," -i \ $osmesa/lib/libOSMesa*.la - '' + /* work around bug #529, but maybe $drivers should also be patchelf-ed */ '' - find $drivers/ $osmesa/ -type f -executable -print0 | xargs -0 strip -S || true + '' + /* set the default search path for DRI drivers; used e.g. by X server */ '' + substituteInPlace "$dev/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}" + '' + /* move vdpau drivers to $drivers/lib, so they are found */ '' + mv "$drivers"/lib/vdpau/* "$drivers"/lib/ && rmdir "$drivers"/lib/vdpau + ''; + #ToDo: @vcunat isn't sure if drirc will be found when in $out/etc/, but it doesn't seem important ATM */ - '' + /* add RPATH so the drivers can find the moved libgallium and libdricore9 */ '' + postFixup = + # add RPATH so the drivers can find the moved libgallium and libdricore9 + # moved here to avoid problems with stripping patchelfed files + '' for lib in $drivers/lib/*.so* $drivers/lib/*/*.so*; do if [[ ! -L "$lib" ]]; then patchelf --set-rpath "$(patchelf --print-rpath $lib):$drivers/lib" "$lib" fi done - '' + /* set the default search path for DRI drivers; used e.g. by X server */ '' - substituteInPlace "$out/lib/pkgconfig/dri.pc" --replace '$(drivers)' "${driverLink}" ''; - #ToDo: @vcunat isn't sure if drirc will be found when in $out/etc/, but it doesn't seem important ATM + # ToDo + /* check $out doesn't depend on llvm */ '' + # builder failures are ignored for some reason + # grep -qv '${llvmPackages.llvm}' -R "$out" passthru = { inherit libdrm version driverLink; }; - meta = { + meta = with stdenv.lib; { description = "An open source implementation of OpenGL"; homepage = http://www.mesa3d.org/; - license = "bsd"; - platforms = stdenv.lib.platforms.mesaPlatforms; - maintainers = with stdenv.lib.maintainers; [ eduarrrd simons vcunat ]; + license = licenses.mit; # X11 variant, in most files + platforms = platforms.mesaPlatforms; + maintainers = with maintainers; [ eduarrrd simons vcunat ]; }; } diff --git a/pkgs/development/libraries/mesa/dlopen-absolute-paths.diff b/pkgs/development/libraries/mesa/dlopen-absolute-paths.diff index a4bb6a72b138..9a5226572239 100644 --- a/pkgs/development/libraries/mesa/dlopen-absolute-paths.diff +++ b/pkgs/development/libraries/mesa/dlopen-absolute-paths.diff @@ -16,7 +16,7 @@ index 4fdf3c2..69ea22d 100644 do { for (version = 1; version >= 0; version--) { - snprintf(name, sizeof(name), "libudev.so.%d", version); -+ snprintf(name, sizeof(name), "@udev@/lib/libudev.so.%d", version); ++ snprintf(name, sizeof(name), "@libudev@/lib/libudev.so.%d", version); udev_handle = dlopen(name, flags); if (udev_handle) return udev_handle; diff --git a/pkgs/development/libraries/mpfr/default.nix b/pkgs/development/libraries/mpfr/default.nix index 581f956b0afd..8a964af01c80 100644 --- a/pkgs/development/libraries/mpfr/default.nix +++ b/pkgs/development/libraries/mpfr/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { patches = [ ./upstream.patch ]; + outputs = [ "dev" "out" "doc" ]; + # mpfr.h requires gmp.h propagatedBuildInputs = [ gmp ]; diff --git a/pkgs/development/libraries/ncurses/default.nix b/pkgs/development/libraries/ncurses/default.nix index 8817e2c5523b..edd263605960 100644 --- a/pkgs/development/libraries/ncurses/default.nix +++ b/pkgs/development/libraries/ncurses/default.nix @@ -20,6 +20,9 @@ stdenv.mkDerivation rec { # gcc-5.patch should be removed after 5.9 patches = [ ./clang.patch ./gcc-5.patch ]; + outputs = [ "dev" "out" "man" ]; + setOutputFlags = false; # some aren't supported + configureFlags = [ "--with-shared" "--without-debug" @@ -33,9 +36,15 @@ stdenv.mkDerivation rec { buildInputs = lib.optional (mouseSupport && stdenv.isLinux) gpm; preConfigure = '' - configureFlagsArray+=("--includedir=$out/include") - export PKG_CONFIG_LIBDIR="$out/lib/pkgconfig" + export PKG_CONFIG_LIBDIR="$dev/lib/pkgconfig" mkdir -p "$PKG_CONFIG_LIBDIR" + configureFlagsArray+=( + "--libdir=$out/lib" + "--includedir=$dev/include" + "--bindir=$dev/bin" + "--mandir=$man/share/man" + "--with-pkg-config-libdir=$PKG_CONFIG_LIBDIR" + ) '' + lib.optionalString stdenv.isSunOS '' sed -i -e '/-D__EXTENSIONS__/ s/-D_XOPEN_SOURCE=\$cf_XOPEN_SOURCE//' \ @@ -55,44 +64,52 @@ stdenv.mkDerivation rec { # When building a wide-character (Unicode) build, create backward # compatibility links from the the "normal" libraries to the # wide-character libraries (e.g. libncurses.so to libncursesw.so). - postInstall = '' + postFixup = '' # Determine what suffixes our libraries have suffix="$(awk -F': ' 'f{print $3; f=0} /default library suffix/{f=1}' config.log)" - libs="$(ls $out/lib/pkgconfig | tr ' ' '\n' | sed "s,\(.*\)$suffix\.pc,\1,g")" + libs="$(ls $dev/lib/pkgconfig | tr ' ' '\n' | sed "s,\(.*\)$suffix\.pc,\1,g")" suffixes="$(echo "$suffix" | awk '{for (i=1; i < length($0); i++) {x=substr($0, i+1, length($0)-i); print x}}')" # Get the path to the config util - cfg=$(basename $out/bin/ncurses*-config) + cfg=$(basename $dev/bin/ncurses*-config) # symlink the full suffixed include directory - ln -svf . $out/include/ncurses$suffix + ln -svf . $dev/include/ncurses$suffix for newsuffix in $suffixes ""; do # Create a non-abi versioned config util links - ln -svf $cfg $out/bin/ncurses$newsuffix-config + ln -svf $cfg $dev/bin/ncurses$newsuffix-config # Allow for end users who #include - ln -svf . $out/include/ncurses$newsuffix + ln -svf . $dev/include/ncurses$newsuffix - for lib in $libs; do + for library in $libs; do for dylibtype in so dll dylib; do - if [ -e "$out/lib/lib''${lib}$suffix.$dylibtype" ]; then - ln -svf lib''${lib}$suffix.$dylibtype $out/lib/lib$lib$newsuffix.$dylibtype - ln -svf lib''${lib}$suffix.$dylibtype.${abiVersion} $out/lib/lib$lib$newsuffix.$dylibtype.${abiVersion} + if [ -e "$out/lib/lib''${library}$suffix.$dylibtype" ]; then + ln -svf lib''${library}$suffix.$dylibtype $out/lib/lib$library$newsuffix.$dylibtype + ln -svf lib''${library}$suffix.$dylibtype.${abiVersion} $out/lib/lib$library$newsuffix.$dylibtype.${abiVersion} fi done for statictype in a dll.a la; do - if [ -e "$out/lib/lib''${lib}$suffix.$statictype" ]; then - ln -svf lib''${lib}$suffix.$statictype $out/lib/lib$lib$newsuffix.$statictype + if [ -e "$out/lib/lib''${library}$suffix.$statictype" ]; then + ln -svf lib''${library}$suffix.$statictype $out/lib/lib$library$newsuffix.$statictype fi done - ln -svf ''${lib}$suffix.pc $out/lib/pkgconfig/$lib$newsuffix.pc + ln -svf ''${library}$suffix.pc $dev/lib/pkgconfig/$library$newsuffix.pc done done + + # move some utilities to $bin + # these programs are used at runtime and don't really belong in $dev + moveToOutput "bin/clear" "$out" + moveToOutput "bin/reset" "$out" + moveToOutput "bin/tabs" "$out" + moveToOutput "bin/tput" "$out" + moveToOutput "bin/tset" "$out" ''; preFixup = '' - rm $out/lib/*.a + rm "$out"/lib/*.a ''; meta = { diff --git a/pkgs/development/libraries/nettle/generic.nix b/pkgs/development/libraries/nettle/generic.nix index 3c439eb404cc..1bfb739712f4 100644 --- a/pkgs/development/libraries/nettle/generic.nix +++ b/pkgs/development/libraries/nettle/generic.nix @@ -9,6 +9,9 @@ stdenv.mkDerivation (rec { inherit src; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + buildInputs = [ gnum4 ]; propagatedBuildInputs = [ gmp ]; @@ -61,5 +64,5 @@ stdenv.lib.optionalAttrs stdenv.isSunOS { # /usr/include/mp.h from OpenSolaris. See # # for details. - configureFlags = [ "--with-include-path=${gmp}/include" ]; + configureFlags = [ "--with-include-path=${gmp.dev}/include" ]; }) diff --git a/pkgs/development/libraries/newt/default.nix b/pkgs/development/libraries/newt/default.nix index f5f72c006c73..8a4b793cad79 100644 --- a/pkgs/development/libraries/newt/default.nix +++ b/pkgs/development/libraries/newt/default.nix @@ -14,16 +14,18 @@ stdenv.mkDerivation rec { buildInputs = [ slang popt ]; + NIX_LDFLAGS = "-lncurses"; + crossAttrs = { makeFlags = "CROSS_COMPILE=${stdenv.cross.config}-"; }; - meta = { + meta = with stdenv.lib; { homepage = https://fedorahosted.org/newt/; description = "Library for color text mode, widget based user interfaces"; - license = stdenv.lib.licenses.lgpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = [ stdenv.lib.maintainers.viric ]; + license = licenses.lgpl2; + platforms = platforms.linux; + maintainers = [ maintainers.viric ]; }; } diff --git a/pkgs/development/libraries/nspr/default.nix b/pkgs/development/libraries/nspr/default.nix index 230c22258e2e..726b5d7b29af 100644 --- a/pkgs/development/libraries/nspr/default.nix +++ b/pkgs/development/libraries/nspr/default.nix @@ -10,6 +10,9 @@ stdenv.mkDerivation { sha256 = "1pk98bmc5xzbl62q5wf2d6mryf0v95z6rsmxz27nclwiaqg0mcg0"; }; + outputs = [ "dev" "out" ]; + outputBin = "dev"; + preConfigure = '' cd nspr ''; @@ -21,6 +24,7 @@ stdenv.mkDerivation { postInstall = '' find $out -name "*.a" -delete + moveToOutput share "$dev" # just aclocal ''; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/nss/default.nix b/pkgs/development/libraries/nss/default.nix index e8be72999527..fc5bffe6b740 100644 --- a/pkgs/development/libraries/nss/default.nix +++ b/pkgs/development/libraries/nss/default.nix @@ -1,6 +1,4 @@ -{ stdenv, fetchurl, nspr, perl, zlib, sqlite -, includeTools ? false -}: +{ stdenv, fetchurl, nspr, perl, zlib, sqlite }: let @@ -46,15 +44,18 @@ in stdenv.mkDerivation rec { INSTALL_TARGET ''; + outputs = [ "dev" "out" "tools" ]; + preConfigure = "cd nss"; makeFlags = [ - "NSPR_INCLUDE_DIR=${nspr}/include/nspr" - "NSPR_LIB_DIR=${nspr}/lib" + "NSPR_INCLUDE_DIR=${nspr.dev}/include/nspr" + "NSPR_LIB_DIR=${nspr.out}/lib" "NSDISTMODE=copy" "BUILD_OPT=1" "SOURCE_PREFIX=\$(out)" "NSS_ENABLE_ECC=1" + "USE_SYSTEM_ZLIB=1" "NSS_USE_SYSTEM_SQLITE=1" ] ++ stdenv.lib.optional stdenv.is64bit "USE_64=1"; @@ -77,8 +78,11 @@ in stdenv.mkDerivation rec { libfile="$out/lib/lib$libname.so" LD_LIBRARY_PATH=$out/lib $out/bin/shlibsign -v -i "$libfile" done - '' + stdenv.lib.optionalString (!includeTools) '' - find $out/bin -type f \( -name nss-config -o -delete \) + + moveToOutput bin "$tools" + moveToOutput bin/nss-config "$dev" + moveToOutput lib/libcrmf.a "$dev" # needed by firefox, for example + rm "$out"/lib/*.a ''; meta = { diff --git a/pkgs/development/libraries/nss_wrapper/default.nix b/pkgs/development/libraries/nss_wrapper/default.nix index 278834190bbf..a81d95e6b987 100644 --- a/pkgs/development/libraries/nss_wrapper/default.nix +++ b/pkgs/development/libraries/nss_wrapper/default.nix @@ -8,7 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0bysdijvi9n0jk74iklbfhbp0kvv81a727lcfd5q03q2hkzjfm18"; }; - buildInputs = [ cmake pkgconfig ]; + buildInputs = [ cmake pkgconfig (stdenv.cc.libc.out or null) ]; + # outputs TODO: missing glibc.out might become a general problem meta = with stdenv.lib; { description = "A wrapper for the user, group and hosts NSS API"; diff --git a/pkgs/development/libraries/opendkim/default.nix b/pkgs/development/libraries/opendkim/default.nix index e89cd880df13..7f4b5ba2e328 100644 --- a/pkgs/development/libraries/opendkim/default.nix +++ b/pkgs/development/libraries/opendkim/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/sbin/opendkim-genkey \ - --prefix PATH : ${openssl}/bin + --prefix PATH : ${openssl.bin}/bin ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/openldap/default.nix b/pkgs/development/libraries/openldap/default.nix index 7d836cd5a0df..cc5a26a557d5 100644 --- a/pkgs/development/libraries/openldap/default.nix +++ b/pkgs/development/libraries/openldap/default.nix @@ -1,26 +1,15 @@ { stdenv, fetchurl, openssl, cyrus_sasl, db, groff }: stdenv.mkDerivation rec { - name = "openldap-2.4.42"; + name = "openldap-2.4.44"; src = fetchurl { url = "http://www.openldap.org/software/download/OpenLDAP/openldap-release/${name}.tgz"; - sha256 = "0qwfpb5ipp2l76v11arghq5mr0sjc6xhjfg8a0kgsaw5qpib1dzf"; + sha256 = "0044p20hx07fwgw2mbwj1fkx04615hhs1qyx4mawj2bhqvrnppnp"; }; - # Should be removed with >=2.4.43 - patches = [ - ./CVE-2015-6908.patch - ( - fetchurl { - sha256 = "5bcb3f9fb7186b380efa0a1c2d31ad755e190134b5c4dac07c65bbf7c0b6b3b3"; - url = "https://github.com/LMDB/lmdb/commit/3360cbad668f678fb23c064ca4efcc5c9ae95d10.patch"; - name = "openldap-clang-compilation.patch"; - } - ) - ]; - - outputs = [ "out" "man" ]; + # TODO: separate "out" and "bin" + outputs = [ "dev" "out" "man" "docdev" ]; buildInputs = [ openssl cyrus_sasl db groff ]; @@ -31,12 +20,10 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional (cyrus_sasl == null) "--without-cyrus-sasl" ++ stdenv.lib.optional stdenv.isFreeBSD "--with-pic"; - dontPatchELF = 1; # !!! - # Fixup broken libtool preFixup = '' - sed -e 's,-lsasl2,-L${cyrus_sasl}/lib -lsasl2,' \ - -e 's,-lssl,-L${openssl}/lib -lssl,' \ + sed -e 's,-lsasl2,-L${cyrus_sasl.out}/lib -lsasl2,' \ + -e 's,-lssl,-L${openssl.out}/lib -lssl,' \ -i $out/lib/libldap.la -i $out/lib/libldap_r.la ''; diff --git a/pkgs/development/libraries/openmpi/default.nix b/pkgs/development/libraries/openmpi/default.nix index 18dc2251013e..c1333ff61714 100644 --- a/pkgs/development/libraries/openmpi/default.nix +++ b/pkgs/development/libraries/openmpi/default.nix @@ -20,6 +20,12 @@ in stdenv.mkDerivation rec { sha256 = "14p4px9a3qzjc22lnl6braxrcrmd9rgmy7fh4qpanawn2pgfq6br"; }; + # Bug in openmpi implementation for zero sized messages + # Patch required to make mpi4py pass. Will NOT + # be required when openmpi >= 2.0.0 + # https://www.open-mpi.org/community/lists/users/2015/11/28030.php + patches = [ ./nbc_copy.patch ]; + buildInputs = [ gfortran libibverbs ]; nativeBuildInputs = [ perl ]; @@ -42,4 +48,3 @@ in stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.mornfall ]; }; } - diff --git a/pkgs/development/libraries/openmpi/nbc_copy.patch b/pkgs/development/libraries/openmpi/nbc_copy.patch new file mode 100644 index 000000000000..d496c7cc2d76 --- /dev/null +++ b/pkgs/development/libraries/openmpi/nbc_copy.patch @@ -0,0 +1,30 @@ +commit 4ee20ba31dd64b8f899447cdad78ec2379acfce7 +Author: Gilles Gouaillardet +Date: Tue Nov 10 08:59:03 2015 +0900 + + fix NBC_Copy for legitimate zero size messages + + (back ported from commit open-mpi/ompi@0bd765eddd33e3d4ac18ec644c60a5c160cb48dc) + (back ported from commit open-mpi/ompi@9a70765f27fdf17e70e1a115754fef7e5f16132a) + +diff --git a/ompi/mca/coll/libnbc/nbc_internal.h b/ompi/mca/coll/libnbc/nbc_internal.h +index bf2f1cb..81be8cc 100644 +--- a/ompi/mca/coll/libnbc/nbc_internal.h ++++ b/ompi/mca/coll/libnbc/nbc_internal.h +@@ -501,7 +501,14 @@ static inline int NBC_Copy(void *src, int srccount, MPI_Datatype srctype, void * + } else { + /* we have to pack and unpack */ + res = MPI_Pack_size(srccount, srctype, comm, &size); +- if (MPI_SUCCESS != res || 0 == size) { printf("MPI Error in MPI_Pack_size() (%i:%i)\n", res, size); return (MPI_SUCCESS == res) ? MPI_ERR_SIZE : res;} ++ if (MPI_SUCCESS != res) { ++ printf ("MPI Error in MPI_Pack_size() (%i:%i)", res, size); ++ return res; ++ } ++ ++ if (0 == size) { ++ return OMPI_SUCCESS; ++ } + packbuf = malloc(size); + if (NULL == packbuf) { printf("Error in malloc()\n"); return res; } + pos=0; + diff --git a/pkgs/development/libraries/openssl/default.nix b/pkgs/development/libraries/openssl/default.nix index 081f71b498e1..1e0f419c5f73 100644 --- a/pkgs/development/libraries/openssl/default.nix +++ b/pkgs/development/libraries/openssl/default.nix @@ -16,8 +16,6 @@ let inherit sha256; }; - outputs = [ "out" "man" ]; - patches = [ ./use-etc-ssl-certs.patch ] ++ optional stdenv.isCygwin ./1.0.1-cygwin64.patch @@ -25,6 +23,9 @@ let (versionOlder version "1.0.2" && (stdenv.isDarwin || (stdenv ? cross && stdenv.cross.libc == "libSystem"))) ./darwin-arch.patch; + outputs = [ "dev" "out" "man" "bin" ]; + setOutputFlags = false; + nativeBuildInputs = [ perl ]; buildInputs = stdenv.lib.optional withCryptodev cryptodevHeaders; @@ -44,9 +45,7 @@ let "-DUSE_CRYPTODEV_DIGESTS" ]; - makeFlags = [ - "MANDIR=$(out)/share/man" - ]; + makeFlags = [ "MANDIR=$(man)/share/man" ]; # Parallel building is broken in OpenSSL. enableParallelBuilding = false; @@ -58,14 +57,20 @@ let rm "$out/lib/"*.a fi + mkdir -p $bin + mv $out/bin $bin/ + + mkdir $dev + mv $out/include $dev/ + # remove dependency on Perl at runtime - rm -r $out/etc/ssl/misc $out/bin/c_rehash + rm -r $out/etc/ssl/misc rmdir $out/etc/ssl/{certs,private} ''; postFixup = '' - # Check to make sure we don't depend on perl + # Check to make sure the main output doesn't depend on perl if grep -r '${perl}' $out; then echo "Found an erroneous dependency on perl ^^^" >&2 exit 1 diff --git a/pkgs/development/libraries/p11-kit/default.nix b/pkgs/development/libraries/p11-kit/default.nix index eefed304134f..f2a9bdc12309 100644 --- a/pkgs/development/libraries/p11-kit/default.nix +++ b/pkgs/development/libraries/p11-kit/default.nix @@ -8,6 +8,9 @@ stdenv.mkDerivation rec { sha256 = "1i3a1wdpagm0p3y1bwaz5x5rjhcpqbcrnhkcp10p259vkxk72wz5"; }; + outputs = [ "dev" "out" "docdev" ]; + outputBin = "dev"; + buildInputs = [ pkgconfig libffi libtasn1 libiconv ]; configureFlags = [ diff --git a/pkgs/development/libraries/pango/default.nix b/pkgs/development/libraries/pango/default.nix index bb619c7fda5f..c4456035cca2 100644 --- a/pkgs/development/libraries/pango/default.nix +++ b/pkgs/development/libraries/pango/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchurl, pkgconfig, xlibsWrapper, glib, cairo, libpng, harfbuzz -, fontconfig, freetype, libintlOrEmpty, gobjectIntrospection +{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz +, libintlOrEmpty, gobjectIntrospection }: with stdenv.lib; @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { sha256 = "1dsf45m51i4rcyvh5wlxxrjfhvn5b67d5ckjc6vdcxbddjgmc80k"; }; - buildInputs = with stdenv.lib; [ gobjectIntrospection ] - ++ optional stdenv.isDarwin fontconfig; - nativeBuildInputs = [ pkgconfig ]; + outputs = [ "dev" "out" "bin" "docdev" ]; - propagatedBuildInputs = [ xlibsWrapper glib cairo libpng fontconfig freetype harfbuzz ] ++ libintlOrEmpty; + buildInputs = [ gobjectIntrospection ]; + nativeBuildInputs = [ pkgconfig ]; + propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty; enableParallelBuilding = true; @@ -33,8 +33,6 @@ stdenv.mkDerivation rec { configureFlags = optional stdenv.isDarwin "--without-x"; - postInstall = "rm -rf $out/share/gtk-doc"; - meta = with stdenv.lib; { description = "A library for laying out and rendering of text, with an emphasis on internationalization"; diff --git a/pkgs/development/libraries/pcl/default.nix b/pkgs/development/libraries/pcl/default.nix index 46e2da18aa1e..908d1ea856f5 100644 --- a/pkgs/development/libraries/pcl/default.nix +++ b/pkgs/development/libraries/pcl/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchzip, cmake, qhull, flann, boost, vtk, eigen, pkgconfig, qt4 -, libusb1, libpcap, libXt +, libusb1, libpcap, libXt, libpng }: stdenv.mkDerivation rec { @@ -13,7 +13,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; - buildInputs = [ cmake qhull flann boost vtk eigen pkgconfig qt4 libusb1 libpcap libXt ]; + buildInputs = [ cmake qhull flann boost eigen pkgconfig libusb1 libpcap + libpng vtk qt4 libXt ]; meta = { homepage = http://pointclouds.org/; diff --git a/pkgs/development/libraries/pcre/default.nix b/pkgs/development/libraries/pcre/default.nix index b1bbe0342578..8bce1512d138 100644 --- a/pkgs/development/libraries/pcre/default.nix +++ b/pkgs/development/libraries/pcre/default.nix @@ -1,21 +1,20 @@ -{ stdenv, lib, fetchurl, unicodeSupport ? true, cplusplusSupport ? true -, windows ? null +{ stdenv, fetchurl +, windows ? null, variant ? null, pcre , withCharSize ? 8 }: with stdenv.lib; -assert withCharSize != 8 -> !cplusplusSupport; +assert elem variant [ null "cpp" "pcre16" "pcre32" ]; let - charFlags = if withCharSize == 8 then [ ] - else if withCharSize == 16 then [ "--enable-pcre16" "--disable-pcre8" ] - else if withCharSize == 32 then [ "--enable-pcre32" "--disable-pcre8" ] - else abort "Invalid character size"; + version = "8.38"; + pname = if (variant == null) then "pcre" + else if (variant == "cpp") then "pcre-cpp" + else variant; in stdenv.mkDerivation rec { - name = "pcre${lib.optionalString (withCharSize != 8) (toString withCharSize)}-${version}"; - version = "8.38"; + name = "${pname}-${version}"; src = fetchurl { url = "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-${version}.tar.bz2"; @@ -26,18 +25,26 @@ in stdenv.mkDerivation rec { ./CVE-2016-1283.patch ]; - outputs = [ "out" "doc" "man" ]; + outputs = [ "dev" "out" "bin" "doc" "man" ]; - configureFlags = - [ "--enable-jit" ] - ++ lib.optional unicodeSupport "--enable-unicode-properties" - ++ lib.optional (!cplusplusSupport) "--disable-cpp" - ++ charFlags; + configureFlags = [ + "--enable-jit" + "--enable-unicode-properties" + "--disable-cpp" + ] + ++ optional (variant != null) "--enable-${variant}"; doCheck = with stdenv; !(isCygwin || isFreeBSD); # XXX: test failure on Cygwin # we are running out of stack on both freeBSDs on Hydra + postFixup = '' + moveToOutput bin/pcre-config "$dev" + '' + + optionalString (variant != null) '' + ln -sf -t "$out/lib/" '${pcre.out}'/lib/libpcre{,posix}.so.*.*.* + ''; + crossAttrs = optionalAttrs (stdenv.cross.libc == "msvcrt") { buildInputs = [ windows.mingw_w64_pthreads.crossDrv ]; }; diff --git a/pkgs/development/libraries/pdf2xml/default.nix b/pkgs/development/libraries/pdf2xml/default.nix index c7c5aff24558..4ebb0cbcc260 100644 --- a/pkgs/development/libraries/pdf2xml/default.nix +++ b/pkgs/development/libraries/pdf2xml/default.nix @@ -16,8 +16,8 @@ stdenv.mkDerivation { preBuild = '' cp Makefile.linux Makefile - sed -i 's|/usr/include/libxml2|${libxml2}/include/libxml2|' Makefile - sed -i 's|-lxml2|-lxml2 -L${libxml2}/lib|' Makefile + sed -i 's|/usr/include/libxml2|${libxml2.dev}/include/libxml2|' Makefile + sed -i 's|-lxml2|-lxml2 -L${libxml2.out}/lib|' Makefile sed -i 's|XPDF = xpdf_3.01|XPDF = ${libxpdf}/lib|' Makefile mkdir exe diff --git a/pkgs/development/libraries/polkit/default.nix b/pkgs/development/libraries/polkit/default.nix index cdeaa0cb1d96..5744460008fd 100644 --- a/pkgs/development/libraries/polkit/default.nix +++ b/pkgs/development/libraries/polkit/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { sha256 = "109w86kfqrgz83g9ivggplmgc77rz8kx8646izvm2jb57h4rbh71"; }; + outputs = [ "dev" "out" "bin" ]; # small man pages in $bin + buildInputs = [ pkgconfig glib expat pam intltool spidermonkey gobjectIntrospection ] ++ [ libxslt docbook_xsl docbook_xml_dtd_412 ] # man pages diff --git a/pkgs/development/libraries/poppler/default.nix b/pkgs/development/libraries/poppler/default.nix index 92777f001695..ebcdcc2b3efd 100644 --- a/pkgs/development/libraries/poppler/default.nix +++ b/pkgs/development/libraries/poppler/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { inherit sha256; }; - outputs = [ "out" ] ++ lib.optional (!minimal) "doc"; + outputs = [ "dev" "out" ]; patches = [ ./datadir_env.patch ]; diff --git a/pkgs/development/libraries/portaudio/default.nix b/pkgs/development/libraries/portaudio/default.nix index 46d512814015..5d8c2430ab9f 100644 --- a/pkgs/development/libraries/portaudio/default.nix +++ b/pkgs/development/libraries/portaudio/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { make install # fixup .pc file to find alsa library - sed -i "s|-lasound|-L${alsaLib}/lib -lasound|" "$out/lib/pkgconfig/"*.pc + sed -i "s|-lasound|-L${alsaLib.out}/lib -lasound|" "$out/lib/pkgconfig/"*.pc ''; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/qt-3/default.nix b/pkgs/development/libraries/qt-3/default.nix index 08d8f141deb0..40fa63d75caf 100644 --- a/pkgs/development/libraries/qt-3/default.nix +++ b/pkgs/development/libraries/qt-3/default.nix @@ -49,9 +49,9 @@ stdenv.mkDerivation { ${if cursorSupport then "-L${libXcursor}/lib -I${libXcursor}/include" else ""} ${if mysqlSupport then "-qt-sql-mysql -L${mysql.lib}/lib/mysql -I${mysql.lib}/include/mysql" else ""} ${if xftSupport then "-xft - -L${libXft}/lib -I${libXft}/include - -L${libXft.freetype}/lib -I${libXft.freetype}/include - -L${libXft.fontconfig}/lib -I${libXft.fontconfig}/include" else "-no-xft"} + -L${libXft.out}/lib -I${libXft.dev}/include + -L${libXft.freetype.out}/lib -I${libXft.freetype.dev}/include + -L${libXft.fontconfig.lib}/lib -I${libXft.fontconfig.dev}/include" else "-no-xft"} "; patches = [ diff --git a/pkgs/development/libraries/qt-4.x/4.8/default.nix b/pkgs/development/libraries/qt-4.x/4.8/default.nix index 17e0485b29fe..788fb8741402 100644 --- a/pkgs/development/libraries/qt-4.x/4.8/default.nix +++ b/pkgs/development/libraries/qt-4.x/4.8/default.nix @@ -53,19 +53,24 @@ stdenv.mkDerivation rec { ./libressl.patch (substituteAll { src = ./dlopen-absolute-paths.diff; - inherit cups icu libXfixes; - glibc = stdenv.cc.libc; + cups = if cups != null then cups.out else null; + icu = icu.out; + libXfixes = libXfixes.out; + glibc = stdenv.cc.libc.out; openglDriver = if mesaSupported then mesa.driverLink else "/no-such-path"; }) ] ++ stdenv.lib.optional gtkStyle (substituteAll { src = ./dlopen-gtkstyle.diff; # substituteAll ignores env vars starting with capital letter - gconf = GConf; - inherit gnome_vfs libgnomeui gtk; + gconf = GConf.out; + gtk = gtk.out; + libgnomeui = libgnomeui.out; + gnome_vfs = gnome_vfs.out; }) ++ stdenv.lib.optional flashplayerFix (substituteAll { src = ./dlopen-webkit-nsplugin.diff; - inherit gtk gdk_pixbuf; + gtk = gtk.out; + gdk_pixbuf = gdk_pixbuf.out; }) ++ [(fetchpatch { name = "fix-medium-font.patch"; @@ -113,7 +118,7 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ libXrender libXrandr libXinerama libXcursor libXext libXfixes libXv libXi - libSM zlib libpng openssl dbus.libs freetype fontconfig glib ] + libSM zlib libpng openssl dbus freetype fontconfig glib ] # Qt doesn't directly need GLU (just GL), but many apps use, it's small and doesn't remain a runtime-dep if not used ++ optional mesaSupported mesa_glu ++ optional ((buildWebkit || buildMultimedia) && stdenv.isLinux ) alsaLib @@ -131,7 +136,7 @@ stdenv.mkDerivation rec { enableParallelBuilding = false; NIX_CFLAGS_COMPILE = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) - "-I${glib}/include/glib-2.0 -I${glib}/lib/glib-2.0/include"; + "-I${glib.dev}/include/glib-2.0 -I${glib.out}/lib/glib-2.0/include"; NIX_LDFLAGS = optionalString (stdenv.isFreeBSD || stdenv.isDarwin) "-lglib-2.0"; diff --git a/pkgs/development/libraries/qt-5/5.4/default.nix b/pkgs/development/libraries/qt-5/5.4/default.nix index 9b1324d11373..df2fb8ad1862 100644 --- a/pkgs/development/libraries/qt-5/5.4/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/default.nix @@ -37,21 +37,19 @@ let inherit src; propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); + nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; dontAddPrefix = args.dontAddPrefix or true; dontFixLibtool = args.dontFixLibtool or true; configureScript = args.configureScript or "qmake"; + outputs = args.outputs or [ "dev" "out" ]; + setOutputFlags = false; + enableParallelBuilding = args.enableParallelBuilding or true; - meta = { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - } // (args.meta or {}); + meta = self.qtbase.meta // (args.meta or {}); }); addPackages = self: with self; @@ -110,7 +108,10 @@ let ]; makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; + fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; }; -in makeScope pkgs.newScope addPackages + self = makeScope pkgs.newScope addPackages; + +in self diff --git a/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh b/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh new file mode 100644 index 000000000000..7ca3e33b613c --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.4/fix-qt-module-cmake-config.sh @@ -0,0 +1,5 @@ +fixQtModuleCMakeConfig() { + local module="$1" + sed -e "/set(imported_location/ s@\\\${_qt5${module}_install_prefix}@${!outputLib}@" \ + -i "${!outputDev}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake" +} diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix index 36bd3822bf73..0585601db765 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper +{ stdenv, lib, fetchurl, copyPathsToStore, fixQtModuleCMakeConfig , srcs , xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi @@ -14,8 +14,7 @@ , mysql ? null, postgresql ? null # options -, mesaSupported, mesa, mesa_glu -, buildDocs ? false +, mesaSupported, mesa , buildExamples ? false , buildTests ? false , developerBuild ? false @@ -37,6 +36,8 @@ stdenv.mkDerivation { sourceRoot = "qt-everywhere-opensource-src-${version}"; + outputs = [ "dev" "out" ]; + postUnpack = '' mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase ''; @@ -60,27 +61,27 @@ stdenv.mkDerivation { sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + --replace "@glibc@" "${stdenv.cc.libc.out}" substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + --replace "@glibc@" "${stdenv.cc.libc.out}" substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ - --replace "@libXcursor@" "${libXcursor}" + --replace "@libXcursor@" "${libXcursor.out}" substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ - --replace "@openssl@" "${openssl}" + --replace "@openssl@" "${openssl.out}" substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ - --replace "@dbus_libs@" "${dbus}" + --replace "@dbus_libs@" "${dbus.lib}" substituteInPlace \ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace "@libX11@" "${libX11}" + --replace "@libX11@" "${libX11.out}" '' + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk.out}" substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ + --replace "@gtk@" "${gtk.out}" \ --replace "@gnome_vfs@" "${gnome_vfs}" \ --replace "@libgnomeui@" "${libgnomeui}" \ --replace "@gconf@" "${GConf}" @@ -88,16 +89,40 @@ stdenv.mkDerivation { + lib.optionalString mesaSupported '' substituteInPlace \ qtbase/src/plugins/platforms/xcb/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + --replace "@mesa_lib@" "${mesa.out}" + substituteInPlace qtbase/mkspecs/common/linux.conf \ + --replace "@mesa_lib@" "${mesa.out}" \ + --replace "@mesa_inc@" "${mesa.dev}" ''; + setOutputFlags = false; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" - export configureFlags+=" -docdir $out/share/doc/qt5" + _multioutQtDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "$dev" + moveToOutput "include" "$dev" + moveToOutput "mkspecs" "$dev" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "$dev/share" + moveToOutput "share/doc" "$dev" + + mkdir -p "$dev/lib" + lndir -silent "$out/lib" "$dev/lib" + if [[ -h "$dev/lib/cmake" ]]; then rm "$dev/lib/cmake"; fi + if [[ -h "$dev/lib/pkgconfig" ]]; then rm "$dev/lib/pkgconfig"; fi + } + preFixupHooks+=(_multioutQtDevs) + + configureFlags+="\ + -plugindir $out/lib/qt5/plugins \ + -importdir $out/lib/qt5/imports \ + -qmldir $out/lib/qt5/qml \ + -docdir $out/share/doc/qt5" ''; prefixKey = "-prefix "; @@ -172,40 +197,46 @@ stdenv.mkDerivation { # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag # if dependency paths contain the string "pq", which can occur in the hash. # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq"; propagatedBuildInputs = [ xlibs.libXcomposite libX11 libxcb libXext libXrender libXi - fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre + fontconfig freetype openssl dbus glib udev libxml2 libxslt pcre zlib libjpeg libpng libtiff sqlite icu xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon ] - # Qt doesn't directly need GLU (just GL), but many apps use, it's small and - # doesn't remain a runtime-dep if not used - ++ lib.optionals mesaSupported [ mesa mesa_glu ] - ++ lib.optional (cups != null) cups - ++ lib.optional (mysql != null) mysql.lib - ++ lib.optional (postgresql != null) postgresql - ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + ++ lib.optional mesaSupported mesa; buildInputs = [ bison flex gperf ruby ] - ++ lib.optional developerBuild gdb; + ++ lib.optional developerBuild gdb + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; - nativeBuildInputs = [ python perl pkgconfig ]; - - propagatedNativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ fixQtModuleCMakeConfig lndir python perl pkgconfig ]; # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; - postInstall = + postFixup = '' # Don't retain build-time dependencies like gdb and ruby. - sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri - '' - + lib.optionalString buildDocs '' - make docs && make install_docs + sed '/QMAKE_DEFAULT_.*DIRS/ d' -i "$dev/mkspecs/qconfig.pri" + + fixQtModuleCMakeConfig "Concurrent" + fixQtModuleCMakeConfig "Core" + fixQtModuleCMakeConfig "DBus" + fixQtModuleCMakeConfig "Gui" + fixQtModuleCMakeConfig "Network" + fixQtModuleCMakeConfig "OpenGL" + fixQtModuleCMakeConfig "OpenGLExtensions" + fixQtModuleCMakeConfig "PrintSupport" + fixQtModuleCMakeConfig "Sql" + fixQtModuleCMakeConfig "Test" + fixQtModuleCMakeConfig "Widgets" + fixQtModuleCMakeConfig "Xml" ''; inherit lndir; @@ -214,9 +245,9 @@ stdenv.mkDerivation { enableParallelBuilding = true; meta = with lib; { - homepage = http://qt-project.org; + homepage = http://www.qt.io; description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; + license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; maintainers = with maintainers; [ bbenoist qknight ttuegel ]; platforms = platforms.linux; }; diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch index d6e08cd24106..d5c4c2b97cb6 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/dlopen-gl.patch @@ -10,7 +10,7 @@ Index: qt-everywhere-opensource-src-5.4.2/qtbase/src/plugins/platforms/xcb/qglxi QLibrary lib(QLatin1String("GL")); + if (!lib.load()) { + // Fallback to Mesa driver -+ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ lib.setFileName(QLatin1String("@mesa_lib@/lib/libGL")); + } glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); } diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch index 10115e8144ad..56ee0a411d4d 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/mkspecs-libgl.patch @@ -8,8 +8,8 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf QMAKE_LIBDIR_X11 = -QMAKE_INCDIR_OPENGL = -QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib ++QMAKE_INCDIR_OPENGL = @mesa_inc@/include ++QMAKE_LIBDIR_OPENGL = @mesa_lib@/lib QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh index b86b6df28ac8..c44cd2234d76 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.4/qtbase/setup-hook.sh @@ -1,45 +1,26 @@ if [[ -z "$QMAKE" ]]; then -linkDependencyDir() { +_qtLinkDependencyDir() { @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" if [[ -n "$NIX_QT_SUBMODULE" ]]; then find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" fi } -addQtModule() { - if [[ -d "$1/mkspecs" ]]; then +_qtLinkModule() { + if [ -d "$1/mkspecs" ]; then # $1 is a Qt module - linkDependencyDir "$1" mkspecs + _qtLinkDependencyDir "$1" mkspecs for dir in bin include lib share; do - if [[ -d "$1/$dir" ]]; then - linkDependencyDir "$1" "$dir" + if [ -d "$1/$dir" ]; then + _qtLinkDependencyDir "$1" "$dir" fi done fi } -propagateRuntimeDeps() { - local propagated - for dir in "etc/xdg" "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports" "share"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - break - fi - done -} - -rmQtModules() { +_qtRmModules() { cat "$out/nix-support/qt-inputs" | while read file; do if [[ -h "$out/$file" ]]; then rm "$out/$file" @@ -55,14 +36,65 @@ rmQtModules() { rm "$out/nix-support/qt-inputs" } -rmQMake() { +addToSearchPathOnceWithCustomDelimiter() { + local delim="$1" + local search="$2" + local target="$3" + local dirs + local exported + IFS="$delim" read -a dirs <<< "${!search}" + for dir in ${dirs[@]}; do + if [ "z$dir" == "z$target" ]; then exported=1; fi + done + if [ -z $exported ]; then + eval "export ${search}=\"${!search}${!search:+$delim}$target\"" + fi +} + +addToSearchPathOnce() { + addToSearchPathOnceWithCustomDelimiter ':' "$@" +} + +propagateOnce() { + addToSearchPathOnceWithCustomDelimiter ' ' "$@" +} + +_qtPropagateRuntimeDependencies() { + for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do + if [ -d "$1/$dir" ]; then + propagateOnce propagatedBuildInputs "$1" + break + fi + done + addToSearchPathOnce QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPathOnce QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" +} + +_qtRmQmake() { rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" } -setQMakePath() { +_qtSetQmakePath() { export PATH="$qtOut/bin${PATH:+:}$PATH" } +_qtMultioutModuleDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "${!outputDev}" + moveToOutput "include" "${!outputDev}" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "${!outputDev}/share" + moveToOutput "share/doc" "${!outputDev}" +} + +_qtMultioutDevs() { + # This is necessary whether the package is a Qt module or not + moveToOutput "mkspecs" "${!outputDev}" +} + qtOut="" if [[ -z "$NIX_QT_SUBMODULE" ]]; then qtOut=`mktemp -d` @@ -72,7 +104,7 @@ fi mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" -cp "@out@/bin/qmake" "$qtOut/bin" +cp "@dev@/bin/qmake" "$qtOut/bin" cat >"$qtOut/bin/qt.conf" <isLoaded()) { - udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 1); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); if (!udevLibrary->load()) { - udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 0); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); if (!udevLibrary->load()) { qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); return false; diff --git a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix index fa7383fc1e76..2c9575f122e7 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtserialport/default.nix @@ -1,7 +1,16 @@ -{ qtSubmodule, qtbase }: +{ qtSubmodule, qtbase, substituteAll, libudev }: qtSubmodule { name = "qtserialport"; qtInputs = [ qtbase ]; - patches = [ ./0001-dlopen-serialport-udev.patch ]; + + patches = [ + (substituteAll { + src = ./0001-dlopen-serialport-udev.patch; + libudev = libudev.out; + }) + ]; + postFixup = '' + fixQtModuleCMakeConfig "SerialPort" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix index b9ccac7cf933..a460d6da4c2a 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtsvg.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtsvg.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtsvg"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "Svg" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qttools.nix b/pkgs/development/libraries/qt-5/5.4/qttools.nix index 65edc4508128..16887c4265a8 100644 --- a/pkgs/development/libraries/qt-5/5.4/qttools.nix +++ b/pkgs/development/libraries/qt-5/5.4/qttools.nix @@ -3,4 +3,13 @@ qtSubmodule { name = "qttools"; qtInputs = [ qtbase ]; + postFixup = '' + moveToOutput "bin/qdbus" "$out" + moveToOutput "bin/qtpaths" "$out" + + fixQtModuleCMakeConfig "Designer" + fixQtModuleCMakeConfig "Help" + fixQtModuleCMakeConfig "LinguistTools" + fixQtModuleCMakeConfig "UiTools" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch index f3b9d407bd72..1c360cd81aa2 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/0003-dlopen-webkit-udev.patch @@ -16,13 +16,13 @@ index 60ff317..da8ac69 100644 { m_libUdev.setLoadHints(QLibrary::ResolveAllSymbolsHint); - m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 1); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 1); ++ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); m_loaded = m_libUdev.load(); if (resolveMethods()) return true; - m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 0); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 0); ++ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); m_loaded = m_libUdev.load(); return resolveMethods(); } diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix index 596c02d39afb..7ed3017b95a3 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtwebkit/default.nix @@ -1,6 +1,6 @@ { qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors , fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt -, sqlite, udev +, sqlite, libudev , bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby , substituteAll , flashplayerFix ? false @@ -18,16 +18,21 @@ qtSubmodule { patches = let dlopen-webkit-nsplugin = substituteAll { src = ./0001-dlopen-webkit-nsplugin.patch; - inherit gtk gdk_pixbuf; + gtk = gtk.out; + gdk_pixbuf = gdk_pixbuf.out; }; dlopen-webkit-gtk = substituteAll { src = ./0002-dlopen-webkit-gtk.patch; - inherit gtk; + gtk = gtk.out; }; dlopen-webkit-udev = substituteAll { src = ./0003-dlopen-webkit-udev.patch; - inherit udev; + udev = libudev.out; }; in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ] ++ [ dlopen-webkit-udev ]; + postFixup = '' + fixQtModuleCMakeConfig "WebKit" + fixQtModuleCMakeConfig "WebKitWidgets" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix index fbdfbbcf0dbe..c0d0f9e7d714 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtwebsockets.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtwebsockets"; qtInputs = [ qtbase qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "WebSockets" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix index a765161e2d7e..db92f1353627 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtx11extras.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtx11extras"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "X11Extras" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix index 9a8ddbba2bd2..3b22132e4c38 100644 --- a/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix +++ b/pkgs/development/libraries/qt-5/5.4/qtxmlpatterns.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtxmlpatterns"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "XmlPatterns" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/default.nix b/pkgs/development/libraries/qt-5/5.5/default.nix index 9b1324d11373..955d57350c29 100644 --- a/pkgs/development/libraries/qt-5/5.5/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/default.nix @@ -1,15 +1,20 @@ -# Maintainer's Notes: -# -# Minor updates: -# 1. Edit ./fetchsrcs.sh to point to the updated URL. -# 2. Run ./fetchsrcs.sh. -# 3. Build and enjoy. -# -# Major updates: -# We prefer not to immediately overwrite older versions with major updates, so -# make a copy of this directory first. After copying, be sure to delete ./tmp -# if it exists. Then follow the minor update instructions. Be sure to check if -# any new components have been added and package them as necessary. +/* + +# Minor Updates + +1. Edit ./fetchsrcs.sh to point to the updated URL. +2. Run ./fetchsrcs.sh. +3. Build and enjoy. + +# Major Updates + +1. Make a copy of this directory. (We like to keep the old version around + for a short time after major updates.) +2. Delete the tmp/ subdirectory of the copy. +3. Follow the minor update instructions above. +4. Package any new Qt modules, if necessary. + +*/ { pkgs @@ -37,21 +42,19 @@ let inherit src; propagatedBuildInputs = args.qtInputs ++ (args.propagatedBuildInputs or []); + nativeBuildInputs = (args.nativeBuildInputs or []) ++ [ self.fixQtModuleCMakeConfig ]; NIX_QT_SUBMODULE = args.NIX_QT_SUBMODULE or true; dontAddPrefix = args.dontAddPrefix or true; dontFixLibtool = args.dontFixLibtool or true; configureScript = args.configureScript or "qmake"; + outputs = args.outputs or [ "dev" "out" ]; + setOutputFlags = args.setOutputFlags or false; + enableParallelBuilding = args.enableParallelBuilding or true; - meta = { - homepage = http://qt-project.org; - description = "A cross-platform application framework for C++"; - license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; - maintainers = with maintainers; [ bbenoist qknight ttuegel ]; - platforms = platforms.linux; - } // (args.meta or {}); + meta = self.qtbase.meta // (args.meta or {}); }); addPackages = self: with self; @@ -61,6 +64,7 @@ let qtbase = callPackage ./qtbase { mesa = pkgs.mesa_noglu; + harfbuzz = pkgs.harfbuzz-icu; cups = if stdenv.isLinux then pkgs.cups else null; # GNOME dependencies are not used unless gtkStyle == true inherit (pkgs.gnome) libgnomeui GConf gnome_vfs; @@ -110,7 +114,10 @@ let ]; makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; + fixQtModuleCMakeConfig = makeSetupHook { } ./fix-qt-module-cmake-config.sh; }; -in makeScope pkgs.newScope addPackages + self = makeScope pkgs.newScope addPackages; + +in self diff --git a/pkgs/development/libraries/qt-5/5.5/fix-qt-module-cmake-config.sh b/pkgs/development/libraries/qt-5/5.5/fix-qt-module-cmake-config.sh new file mode 100644 index 000000000000..7ca3e33b613c --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.5/fix-qt-module-cmake-config.sh @@ -0,0 +1,5 @@ +fixQtModuleCMakeConfig() { + local module="$1" + sed -e "/set(imported_location/ s@\\\${_qt5${module}_install_prefix}@${!outputLib}@" \ + -i "${!outputDev}/lib/cmake/Qt5${module}/Qt5${module}Config.cmake" +} diff --git a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh index d61665455bf4..f29bbb73639b 100644 --- a/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh +++ b/pkgs/development/libraries/qt-5/5.5/make-qt-wrapper.sh @@ -1,11 +1,3 @@ -addQtDependency() { - addToSearchPath QT_PLUGIN_PATH "$1/lib/qt5/plugins" - addToSearchPath QML_IMPORT_PATH "$1/lib/qt5/imports" - addToSearchPath QML2_IMPORT_PATH "$1/lib/qt5/qml" - addToSearchPath XDG_CONFIG_DIRS "$1/etc/xdg" - addToSearchPath XDG_DATA_DIRS "$1/share" -} - wrapQtProgram() { local prog="$1" shift @@ -13,8 +5,8 @@ wrapQtProgram() { --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ "$@" } @@ -27,16 +19,16 @@ makeQtWrapper() { --prefix QT_PLUGIN_PATH : "$QT_PLUGIN_PATH" \ --prefix QML_IMPORT_PATH : "$QML_IMPORT_PATH" \ --prefix QML2_IMPORT_PATH : "$QML2_IMPORT_PATH" \ - --prefix XDG_CONFIG_DIRS : "$XDG_CONFIG_DIRS" \ - --prefix XDG_DATA_DIRS : "$XDG_DATA_DIRS" \ + --prefix XDG_CONFIG_DIRS : "$NIX_WRAP_XDG_CONFIG_DIRS" \ + --prefix XDG_DATA_DIRS : "$NIX_WRAP_XDG_DATA_DIRS" \ "$@" } # cannot use addToSearchPath because these directories may not exist yet -export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}$out/lib/qt5/plugins" -export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}$out/lib/qt5/imports" -export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}$out/lib/qt5/qml" -export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}$out/etc/xdg" -export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}$out/share" - -envHooks+=(addQtDependency) +export QT_PLUGIN_PATH="$QT_PLUGIN_PATH${QT_PLUGIN_PATH:+:}${!outputLib}/lib/qt5/plugins" +export QML_IMPORT_PATH="$QML_IMPORT_PATH${QML_IMPORT_PATH:+:}${!outputLib}/lib/qt5/imports" +export QML2_IMPORT_PATH="$QML2_IMPORT_PATH${QML2_IMPORT_PATH:+:}${!outputLib}/lib/qt5/qml" +export XDG_CONFIG_DIRS="$XDG_CONFIG_DIRS${XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" +export XDG_DATA_DIRS="$XDG_DATA_DIRS${XDG_DATA_DIRS:+:}${!outputLib}/share" +export NIX_WRAP_XDG_CONFIG_DIRS="$NIX_WRAP_XDG_CONFIG_DIRS${NIX_WRAP_XDG_CONFIG_DIRS:+:}${!outputLib}/etc/xdg" +export NIX_WRAP_XDG_DATA_DIRS="$NIX_WRAP_XDG_DATA_DIRS${NIX_WRAP_XDG_DATA_DIRS:+:}${!outputLib}/share" diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index ffa0a95be2c0..35410d55e66d 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -1,10 +1,11 @@ -{ stdenv, lib, fetchurl, copyPathsToStore, makeWrapper +{ stdenv, lib, fetchurl, copyPathsToStore, fixQtModuleCMakeConfig , srcs , xlibs, libX11, libxcb, libXcursor, libXext, libXrender, libXi , xcbutil, xcbutilimage, xcbutilkeysyms, xcbutilwm, libxkbcommon -, fontconfig, freetype, openssl, dbus, glib, udev, libxml2, libxslt, pcre16 -, zlib, libjpeg, libpng, libtiff, sqlite, icu, harfbuzz +, fontconfig, freetype, harfbuzz +, openssl, dbus, glib, udev, libxml2, libxslt, pcre16 +, zlib, libjpeg, libpng, libtiff, sqlite, icu , coreutils, bison, flex, gdb, gperf, lndir, ruby , python, perl, pkgconfig @@ -14,8 +15,7 @@ , mysql ? null, postgresql ? null # options -, mesaSupported, mesa, mesa_glu -, buildDocs ? false +, mesaSupported, mesa , buildExamples ? false , buildTests ? false , developerBuild ? false @@ -43,6 +43,8 @@ stdenv.mkDerivation { sourceRoot = "qt-everywhere-opensource-src-${version}"; + outputs = [ "dev" "out" ]; + postUnpack = '' mv qtbase-opensource-src-${version} ./qt-everywhere-opensource-src-${version}/qtbase ''; @@ -70,44 +72,68 @@ stdenv.mkDerivation { sed -i 's/PATHS.*NO_DEFAULT_PATH//' "qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in" substituteInPlace qtbase/src/network/kernel/qdnslookup_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + --replace "@glibc@" "${stdenv.cc.libc.out}" substituteInPlace qtbase/src/network/kernel/qhostinfo_unix.cpp \ - --replace "@glibc@" "${stdenv.cc.libc}" + --replace "@glibc@" "${stdenv.cc.libc.out}" substituteInPlace qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp \ - --replace "@libXcursor@" "${libXcursor}" + --replace "@libXcursor@" "${libXcursor.out}" substituteInPlace qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp \ - --replace "@openssl@" "${openssl}" + --replace "@openssl@" "${openssl.out}" substituteInPlace qtbase/src/dbus/qdbus_symbols.cpp \ - --replace "@dbus_libs@" "${dbus}" + --replace "@dbus_libs@" "${dbus.lib}" substituteInPlace \ qtbase/src/plugins/platforminputcontexts/compose/generator/qtablegenerator.cpp \ - --replace "@libX11@" "${libX11}" + --replace "@libX11@" "${libX11.out}" '' + lib.optionalString gtkStyle '' - substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk}" + substituteInPlace qtbase/src/widgets/styles/qgtk2painter.cpp --replace "@gtk@" "${gtk.out}" substituteInPlace qtbase/src/widgets/styles/qgtkstyle_p.cpp \ - --replace "@gtk@" "${gtk}" \ - --replace "@gnome_vfs@" "${gnome_vfs}" \ - --replace "@libgnomeui@" "${libgnomeui}" \ - --replace "@gconf@" "${GConf}" + --replace "@gtk@" "${gtk.out}" \ + --replace "@gnome_vfs@" "${gnome_vfs.out}" \ + --replace "@libgnomeui@" "${libgnomeui.out}" \ + --replace "@gconf@" "${GConf.out}" '' + lib.optionalString mesaSupported '' substituteInPlace \ qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp \ - --replace "@mesa@" "${mesa}" - substituteInPlace qtbase/mkspecs/common/linux.conf --replace "@mesa@" "${mesa}" + --replace "@mesa_lib@" "${mesa.out}" + substituteInPlace qtbase/mkspecs/common/linux.conf \ + --replace "@mesa_lib@" "${mesa.out}" \ + --replace "@mesa_inc@" "${mesa.dev}" ''; + setOutputFlags = false; preConfigure = '' export LD_LIBRARY_PATH="$PWD/qtbase/lib:$PWD/qtbase/plugins/platforms:$LD_LIBRARY_PATH" export MAKEFLAGS=-j$NIX_BUILD_CORES - export configureFlags+="-plugindir $out/lib/qt5/plugins -importdir $out/lib/qt5/imports -qmldir $out/lib/qt5/qml" - export configureFlags+=" -docdir $out/share/doc/qt5" + _multioutQtDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "$dev" + moveToOutput "include" "$dev" + moveToOutput "mkspecs" "$dev" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "$dev/share" + moveToOutput "share/doc" "$dev" + + mkdir -p "$dev/lib" + lndir -silent "$out/lib" "$dev/lib" + if [[ -h "$dev/lib/cmake" ]]; then rm "$dev/lib/cmake"; fi + if [[ -h "$dev/lib/pkgconfig" ]]; then rm "$dev/lib/pkgconfig"; fi + } + preFixupHooks+=(_multioutQtDevs) + + configureFlags+="\ + -plugindir $out/lib/qt5/plugins \ + -importdir $out/lib/qt5/imports \ + -qmldir $out/lib/qt5/qml \ + -docdir $out/share/doc/qt5" ''; prefixKey = "-prefix "; @@ -184,40 +210,53 @@ stdenv.mkDerivation { # PostgreSQL autodetection fails sporadically because Qt omits the "-lpq" flag # if dependency paths contain the string "pq", which can occur in the hash. # To prevent these failures, we need to override PostgreSQL detection. - PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql}/lib -lpq"; + PSQL_LIBS = lib.optionalString (postgresql != null) "-L${postgresql.lib}/lib -lpq"; propagatedBuildInputs = [ + dbus glib libxml2 libxslt openssl pcre16 sqlite udev zlib + + # Image formats + libjpeg libpng libtiff + + # Text rendering + fontconfig freetype harfbuzz icu + + # X11 libs xlibs.libXcomposite libX11 libxcb libXext libXrender libXi - fontconfig freetype openssl dbus.libs glib udev libxml2 libxslt pcre16 - zlib libjpeg libpng libtiff sqlite icu harfbuzz xcbutil xcbutilimage xcbutilkeysyms xcbutilwm libxkbcommon ] - # Qt doesn't directly need GLU (just GL), but many apps use, it's small and - # doesn't remain a runtime-dep if not used - ++ lib.optionals mesaSupported [ mesa mesa_glu ] - ++ lib.optional (cups != null) cups - ++ lib.optional (mysql != null) mysql.lib - ++ lib.optional (postgresql != null) postgresql - ++ lib.optionals gtkStyle [gnome_vfs libgnomeui gtk GConf]; + ++ lib.optional mesaSupported mesa; buildInputs = [ bison flex gperf ruby ] - ++ lib.optional developerBuild gdb; + ++ lib.optional developerBuild gdb + ++ lib.optional (cups != null) cups + ++ lib.optional (mysql != null) mysql.lib + ++ lib.optional (postgresql != null) postgresql + ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; - nativeBuildInputs = [ python perl pkgconfig ]; - - propagatedNativeBuildInputs = [ makeWrapper ]; + nativeBuildInputs = [ fixQtModuleCMakeConfig lndir python perl pkgconfig ]; # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; - postInstall = + postFixup = '' # Don't retain build-time dependencies like gdb and ruby. - sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $out/mkspecs/qconfig.pri - '' - + lib.optionalString buildDocs '' - make docs && make install_docs + sed '/QMAKE_DEFAULT_.*DIRS/ d' -i $dev/mkspecs/qconfig.pri + + fixQtModuleCMakeConfig "Concurrent" + fixQtModuleCMakeConfig "Core" + fixQtModuleCMakeConfig "DBus" + fixQtModuleCMakeConfig "Gui" + fixQtModuleCMakeConfig "Network" + fixQtModuleCMakeConfig "OpenGL" + fixQtModuleCMakeConfig "OpenGLExtensions" + fixQtModuleCMakeConfig "PrintSupport" + fixQtModuleCMakeConfig "Sql" + fixQtModuleCMakeConfig "Test" + fixQtModuleCMakeConfig "Widgets" + fixQtModuleCMakeConfig "Xml" ''; inherit lndir; @@ -226,9 +265,9 @@ stdenv.mkDerivation { enableParallelBuilding = true; meta = with lib; { - homepage = http://qt-project.org; + homepage = http://www.qt.io; description = "A cross-platform application framework for C++"; - license = "GPL/LGPL"; + license = with licenses; [ fdl13 gpl2 lgpl21 lgpl3 ]; maintainers = with maintainers; [ bbenoist qknight ttuegel ]; platforms = platforms.linux; }; diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch index 14411a95f3ac..59f510ac54da 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/dlopen-gl.patch @@ -10,7 +10,7 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_in QLibrary lib(QLatin1String("GL")); + if (!lib.load()) { + // Fallback to Mesa driver -+ lib.setFileName(QLatin1String("@mesa@/lib/libGL")); ++ lib.setFileName(QLatin1String("@mesa_lib@/lib/libGL")); + } glXGetProcAddressARB = (qt_glXGetProcAddressARB) lib.resolve("glXGetProcAddressARB"); } diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch index 10115e8144ad..56ee0a411d4d 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/mkspecs-libgl.patch @@ -8,8 +8,8 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf QMAKE_LIBDIR_X11 = -QMAKE_INCDIR_OPENGL = -QMAKE_LIBDIR_OPENGL = -+QMAKE_INCDIR_OPENGL = @mesa@/include -+QMAKE_LIBDIR_OPENGL = @mesa@/lib ++QMAKE_INCDIR_OPENGL = @mesa_inc@/include ++QMAKE_LIBDIR_OPENGL = @mesa_lib@/lib QMAKE_INCDIR_OPENGL_ES2 = $$QMAKE_INCDIR_OPENGL QMAKE_LIBDIR_OPENGL_ES2 = $$QMAKE_LIBDIR_OPENGL QMAKE_INCDIR_EGL = diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh index b86b6df28ac8..9cf1ef9ccb61 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/setup-hook.sh @@ -1,45 +1,26 @@ if [[ -z "$QMAKE" ]]; then -linkDependencyDir() { +_qtLinkDependencyDir() { @lndir@/bin/lndir -silent "$1/$2" "$qtOut/$2" if [[ -n "$NIX_QT_SUBMODULE" ]]; then find "$1/$2" -printf "$2/%P\n" >> "$out/nix-support/qt-inputs" fi } -addQtModule() { - if [[ -d "$1/mkspecs" ]]; then +_qtLinkModule() { + if [ -d "$1/mkspecs" ]; then # $1 is a Qt module - linkDependencyDir "$1" mkspecs + _qtLinkDependencyDir "$1" mkspecs for dir in bin include lib share; do - if [[ -d "$1/$dir" ]]; then - linkDependencyDir "$1" "$dir" + if [ -d "$1/$dir" ]; then + _qtLinkDependencyDir "$1" "$dir" fi done fi } -propagateRuntimeDeps() { - local propagated - for dir in "etc/xdg" "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports" "share"; do - if [[ -d "$1/$dir" ]]; then - propagated= - for pkg in $propagatedBuildInputs; do - if [[ "z$pkg" == "z$1" ]]; then - propagated=1 - break - fi - done - if [[ -z $propagated ]]; then - propagatedBuildInputs="$propagatedBuildInputs $1" - fi - break - fi - done -} - -rmQtModules() { +_qtRmModules() { cat "$out/nix-support/qt-inputs" | while read file; do if [[ -h "$out/$file" ]]; then rm "$out/$file" @@ -55,14 +36,66 @@ rmQtModules() { rm "$out/nix-support/qt-inputs" } -rmQMake() { +addToSearchPathOnceWithCustomDelimiter() { + local delim="$1" + local search="$2" + local target="$3" + local dirs + local exported + IFS="$delim" read -a dirs <<< "${!search}" + for dir in ${dirs[@]}; do + if [ "z$dir" == "z$target" ]; then exported=1; fi + done + if [ -z $exported ]; then + eval "export ${search}=\"${!search}${!search:+$delim}$target\"" + fi +} + +addToSearchPathOnce() { + addToSearchPathOnceWithCustomDelimiter ':' "$@" +} + +propagateOnce() { + addToSearchPathOnceWithCustomDelimiter ' ' "$@" +} + +_qtPropagateRuntimeDependencies() { + for dir in "lib/qt5/plugins" "lib/qt5/qml" "lib/qt5/imports"; do + if [ -d "$1/$dir" ]; then + propagateOnce propagatedBuildInputs "$1" + propagateOnce propagatedUserEnvPkgs "$1" + break + fi + done + addToSearchPathOnce QT_PLUGIN_PATH "$1/lib/qt5/plugins" + addToSearchPathOnce QML_IMPORT_PATH "$1/lib/qt5/imports" + addToSearchPathOnce QML2_IMPORT_PATH "$1/lib/qt5/qml" +} + +_qtRmQmake() { rm "$qtOut/bin/qmake" "$qtOut/bin/qt.conf" } -setQMakePath() { +_qtSetQmakePath() { export PATH="$qtOut/bin${PATH:+:}$PATH" } +_qtMultioutModuleDevs() { + # We cannot simply set these paths in configureFlags because libQtCore retains + # references to the paths it was built with. + moveToOutput "bin" "${!outputDev}" + moveToOutput "include" "${!outputDev}" + + # The destination directory must exist or moveToOutput will do nothing + mkdir -p "${!outputDev}/share" + moveToOutput "share/doc" "${!outputDev}" +} + +_qtMultioutDevs() { + # This is necessary whether the package is a Qt module or not + moveToOutput "mkspecs" "${!outputDev}" +} + qtOut="" if [[ -z "$NIX_QT_SUBMODULE" ]]; then qtOut=`mktemp -d` @@ -72,7 +105,7 @@ fi mkdir -p "$qtOut/bin" "$qtOut/mkspecs" "$qtOut/include" "$qtOut/nix-support" "$qtOut/lib" "$qtOut/share" -cp "@out@/bin/qmake" "$qtOut/bin" +cp "@dev@/bin/qmake" "$qtOut/bin" cat >"$qtOut/bin/qt.conf" <isLoaded()) { - udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 1); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 1); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); if (!udevLibrary->load()) { - udevLibrary->setFileNameAndVersion(QStringLiteral("udev"), 0); -+ udevLibrary->setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 0); ++ udevLibrary->setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); if (!udevLibrary->load()) { qWarning("Failed to load the library: %s, supported version(s): %i and %i", qPrintable(udevLibrary->fileName()), 1, 0); return false; diff --git a/pkgs/development/libraries/qt-5/5.5/qtserialport/default.nix b/pkgs/development/libraries/qt-5/5.5/qtserialport/default.nix index fa7383fc1e76..3f409f9c0e08 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtserialport/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtserialport/default.nix @@ -1,7 +1,15 @@ -{ qtSubmodule, qtbase }: +{ qtSubmodule, qtbase, substituteAll, libudev }: qtSubmodule { name = "qtserialport"; qtInputs = [ qtbase ]; - patches = [ ./0001-dlopen-serialport-udev.patch ]; + patches = [ + (substituteAll { + src = ./0001-dlopen-serialport-udev.patch; + libudev = libudev.out; + }) + ]; + postFixup = '' + fixQtModuleCMakeConfig "SerialPort" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qtsvg.nix b/pkgs/development/libraries/qt-5/5.5/qtsvg.nix index b9ccac7cf933..a460d6da4c2a 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtsvg.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtsvg.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtsvg"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "Svg" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qttools.nix b/pkgs/development/libraries/qt-5/5.5/qttools.nix index 65edc4508128..1472691c5254 100644 --- a/pkgs/development/libraries/qt-5/5.5/qttools.nix +++ b/pkgs/development/libraries/qt-5/5.5/qttools.nix @@ -3,4 +3,14 @@ qtSubmodule { name = "qttools"; qtInputs = [ qtbase ]; + postFixup = '' + moveToOutput "bin/qdbus" "$out" + moveToOutput "bin/qtpaths" "$out" + + fixQtModuleCMakeConfig "Designer" + fixQtModuleCMakeConfig "Help" + fixQtModuleCMakeConfig "LinguistTools" + fixQtModuleCMakeConfig "UiPlugin" + fixQtModuleCMakeConfig "UiTools" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qtwebkit/0003-dlopen-webkit-udev.patch b/pkgs/development/libraries/qt-5/5.5/qtwebkit/0003-dlopen-webkit-udev.patch index f3b9d407bd72..1c360cd81aa2 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtwebkit/0003-dlopen-webkit-udev.patch +++ b/pkgs/development/libraries/qt-5/5.5/qtwebkit/0003-dlopen-webkit-udev.patch @@ -16,13 +16,13 @@ index 60ff317..da8ac69 100644 { m_libUdev.setLoadHints(QLibrary::ResolveAllSymbolsHint); - m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 1); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 1); ++ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 1); m_loaded = m_libUdev.load(); if (resolveMethods()) return true; - m_libUdev.setFileNameAndVersion(QStringLiteral("udev"), 0); -+ m_libUdev.setFileNameAndVersion(QStringLiteral("@udev@/lib/libudev"), 0); ++ m_libUdev.setFileNameAndVersion(QStringLiteral("@libudev@/lib/libudev"), 0); m_loaded = m_libUdev.load(); return resolveMethods(); } diff --git a/pkgs/development/libraries/qt-5/5.5/qtwebkit/default.nix b/pkgs/development/libraries/qt-5/5.5/qtwebkit/default.nix index 596c02d39afb..b441a2448d76 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtwebkit/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtwebkit/default.nix @@ -1,6 +1,6 @@ { qtSubmodule, stdenv, qtdeclarative, qtlocation, qtmultimedia, qtsensors , fontconfig, gdk_pixbuf, gtk, libwebp, libxml2, libxslt -, sqlite, udev +, sqlite, libudev , bison2, flex, gdb, gperf, perl, pkgconfig, python, ruby , substituteAll , flashplayerFix ? false @@ -18,16 +18,21 @@ qtSubmodule { patches = let dlopen-webkit-nsplugin = substituteAll { src = ./0001-dlopen-webkit-nsplugin.patch; - inherit gtk gdk_pixbuf; + gtk = gtk.out; + gdk_pixbuf = gdk_pixbuf.out; }; dlopen-webkit-gtk = substituteAll { src = ./0002-dlopen-webkit-gtk.patch; - inherit gtk; + gtk = gtk.out; }; dlopen-webkit-udev = substituteAll { src = ./0003-dlopen-webkit-udev.patch; - inherit udev; + libudev = libudev.out; }; in optionals flashplayerFix [ dlopen-webkit-nsplugin dlopen-webkit-gtk ] ++ [ dlopen-webkit-udev ]; + postFixup = '' + fixQtModuleCMakeConfig "WebKit" + fixQtModuleCMakeConfig "WebKitWidgets" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qtwebsockets.nix b/pkgs/development/libraries/qt-5/5.5/qtwebsockets.nix index fbdfbbcf0dbe..c0d0f9e7d714 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtwebsockets.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtwebsockets.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtwebsockets"; qtInputs = [ qtbase qtdeclarative ]; + postFixup = '' + fixQtModuleCMakeConfig "WebSockets" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qtx11extras.nix b/pkgs/development/libraries/qt-5/5.5/qtx11extras.nix index a765161e2d7e..db92f1353627 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtx11extras.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtx11extras.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtx11extras"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "X11Extras" + ''; } diff --git a/pkgs/development/libraries/qt-5/5.5/qtxmlpatterns.nix b/pkgs/development/libraries/qt-5/5.5/qtxmlpatterns.nix index 9a8ddbba2bd2..3b22132e4c38 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtxmlpatterns.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtxmlpatterns.nix @@ -3,4 +3,7 @@ qtSubmodule { name = "qtxmlpatterns"; qtInputs = [ qtbase ]; + postFixup = '' + fixQtModuleCMakeConfig "XmlPatterns" + ''; } diff --git a/pkgs/development/libraries/rdkafka/default.nix b/pkgs/development/libraries/rdkafka/default.nix index 947b06021cd2..32fff70ebfba 100644 --- a/pkgs/development/libraries/rdkafka/default.nix +++ b/pkgs/development/libraries/rdkafka/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { buildInputs = [ zlib perl ]; + NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow"; + postPatch = '' patchShebangs . ''; diff --git a/pkgs/development/libraries/readline/6.3.nix b/pkgs/development/libraries/readline/6.3.nix index f770fabb35d3..11d4271b168b 100644 --- a/pkgs/development/libraries/readline/6.3.nix +++ b/pkgs/development/libraries/readline/6.3.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "0hzxr9jxqqx5sxsv9vmlxdnvlr9vi4ih1avjb869hbs6p5qn1fjn"; }; + outputs = [ "dev" "out" "doc" ]; + propagatedBuildInputs = [ncurses]; patchFlags = "-p0"; diff --git a/pkgs/development/libraries/schroedinger/default.nix b/pkgs/development/libraries/schroedinger/default.nix index 33f5ba867d6a..2df7d0518942 100644 --- a/pkgs/development/libraries/schroedinger/default.nix +++ b/pkgs/development/libraries/schroedinger/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, orc, pkgconfig}: +{ stdenv, fetchurl, orc, pkgconfig }: stdenv.mkDerivation { name = "schroedinger-1.0.11"; @@ -11,16 +11,12 @@ stdenv.mkDerivation { sha256 = "04prr667l4sn4zx256v1z36a0nnkxfdqyln48rbwlamr6l3jlmqy"; }; - buildInputs = [orc pkgconfig]; + outputs = [ "dev" "out" "docdev" ]; - # The test suite is known not to build against Orc >0.4.16 in Schroedinger 1.0.11. - # A fix is in upstream, so test when pulling 1.0.12 if this is still needed. See: - # http://www.mail-archive.com/schrodinger-devel@lists.sourceforge.net/msg00415.html - preBuild = '' - substituteInPlace Makefile \ - --replace "SUBDIRS = schroedinger doc tools testsuite" "SUBDIRS = schroedinger doc tools" \ - --replace "DIST_SUBDIRS = schroedinger doc tools testsuite" "DIST_SUBDIRS = schroedinger doc tools" - ''; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ orc ]; + + doCheck = true; meta = with stdenv.lib; { homepage = "http://diracvideo.org/"; diff --git a/pkgs/development/libraries/science/math/openblas/0.2.14.nix b/pkgs/development/libraries/science/math/openblas/0.2.14.nix deleted file mode 100644 index 2fac8a4db08b..000000000000 --- a/pkgs/development/libraries/science/math/openblas/0.2.14.nix +++ /dev/null @@ -1,65 +0,0 @@ -{ stdenv, fetchurl, gfortran, perl, which, config, coreutils -# Most packages depending on openblas expect integer width to match pointer width, -# but some expect to use 32-bit integers always (for compatibility with reference BLAS). -, blas64 ? null -}: - -with stdenv.lib; - -let blas64_ = blas64; in - -let local = config.openblas.preferLocalBuild or false; - binary = - { i686-linux = "32"; - x86_64-linux = "64"; - x86_64-darwin = "64"; - }."${stdenv.system}" or (throw "unsupported system: ${stdenv.system}"); - genericFlags = - [ "DYNAMIC_ARCH=1" - "NUM_THREADS=64" - ]; - localFlags = config.openblas.flags or - optionals (hasAttr "target" config.openblas) [ "TARGET=${config.openblas.target}" ]; - blas64 = if blas64_ != null then blas64_ else hasPrefix "x86_64" stdenv.system; - - version = "0.2.14"; -in -stdenv.mkDerivation { - name = "openblas-${version}"; - src = fetchurl { - url = "https://github.com/xianyi/OpenBLAS/archive/v${version}.tar.gz"; - sha256 = "2411c4f56f477b42dff54db2b7ffc0b7cf53bb9778d54982595c64cc69c40fc1"; - name = "openblas-${version}.tar.gz"; - }; - - inherit blas64; - - nativeBuildInputs = optionals stdenv.isDarwin [coreutils] ++ [gfortran perl which]; - - makeFlags = - (if local then localFlags else genericFlags) - ++ - optionals stdenv.isDarwin ["MACOSX_DEPLOYMENT_TARGET=10.9"] - ++ - [ - "FC=gfortran" - # Note that clang is available through the stdenv on OSX and - # thus is not an explicit dependency. - "CC=${if stdenv.isDarwin then "clang" else "gcc"}" - ''PREFIX="''$(out)"'' - "BINARY=${binary}" - "USE_OPENMP=${if stdenv.isDarwin then "0" else "1"}" - "INTERFACE64=${if blas64 then "1" else "0"}" - ]; - - doCheck = true; - checkTarget = "tests"; - - meta = with stdenv.lib; { - description = "Basic Linear Algebra Subprograms"; - license = licenses.bsd3; - homepage = "https://github.com/xianyi/OpenBLAS"; - platforms = platforms.unix; - maintainers = with maintainers; [ ttuegel ]; - }; -} diff --git a/pkgs/development/libraries/scmccid/default.nix b/pkgs/development/libraries/scmccid/default.nix index 7dcde2a09a8c..f88bd64f597b 100644 --- a/pkgs/development/libraries/scmccid/default.nix +++ b/pkgs/development/libraries/scmccid/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { buildInputs = [ patchelf ]; installPhase = '' - RPATH=${libusb}/lib:${stdenv.cc.libc}/lib + RPATH=${libusb.out}/lib:${stdenv.cc.libc.out}/lib for a in proprietary/*/Contents/Linux/*.so*; do if ! test -L $a; then diff --git a/pkgs/development/libraries/skalibs/default.nix b/pkgs/development/libraries/skalibs/default.nix index e8b3403df405..349e5582013f 100644 --- a/pkgs/development/libraries/skalibs/default.nix +++ b/pkgs/development/libraries/skalibs/default.nix @@ -2,7 +2,7 @@ let - version = "2.3.7.0"; + version = "2.3.9.0"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/skalibs"; rev = "refs/tags/v${version}"; - sha256 = "11k84vckwvxphjswqxv677p6riyb2hgx1kh15f865hnk8n21fldx"; + sha256 = "1c5ap14f2yr3izz8s1blgp5g4r898kzppay7xrga2j216i51zfpw"; }; dontDisableStatic = true; @@ -23,7 +23,14 @@ in stdenv.mkDerivation rec { "--libdir=\${prefix}/lib" "--includedir=\${prefix}/include" "--sysdepdir=\${prefix}/lib/skalibs/sysdeps" - ] ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]); + ] + ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]) + # On darwin, the target triplet from -dumpmachine includes version number, but + # skarnet.org software uses the triplet to test binary compatibility. + # Explicitly setting target ensures code can be compiled against a skalibs + # binary built on a different version of darwin. + # http://www.skarnet.org/cgi-bin/archive.cgi?1:mss:623:heiodchokfjdkonfhdph + ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}"); meta = { homepage = http://skarnet.org/software/skalibs/; diff --git a/pkgs/development/libraries/slang/default.nix b/pkgs/development/libraries/slang/default.nix index bf1f38fbb83d..e83718673aae 100644 --- a/pkgs/development/libraries/slang/default.nix +++ b/pkgs/development/libraries/slang/default.nix @@ -7,20 +7,29 @@ stdenv.mkDerivation rec { sha256 = "0aqd2cjabj6nhd4r3dc4vhqif2bf3dmqnrn2gj0xm4gqyfd177jy"; }; + outputs = [ "dev" "out" "doc" ]; + # Fix some wrong hardcoded paths preConfigure = '' - sed -i -e "s|/usr/lib/terminfo|${ncurses}/lib/terminfo|" configure - sed -i -e "s|/usr/lib/terminfo|${ncurses}/lib/terminfo|" src/sltermin.c + sed -i -e "s|/usr/lib/terminfo|${ncurses.out}/lib/terminfo|" configure + sed -i -e "s|/usr/lib/terminfo|${ncurses.out}/lib/terminfo|" src/sltermin.c sed -i -e "s|/bin/ln|ln|" src/Makefile.in + sed -i -e "s|-ltermcap|-lncurses|" ./configure ''; configureFlags = "--with-png=${libpng} --with-z=${zlib} --with-pcre=${pcre} --with-readline=${readline}"; - buildInputs = [ncurses pcre libpng zlib readline]; + buildInputs = [ pcre libpng zlib readline ]; + propagatedBuildInputs = [ ncurses ]; - meta = { + postInstall = '' + find "$out"/lib/ -name '*.so' -exec chmod +x "{}" \; + sed '/^Libs:/s/$/ -lncurses/' -i "$dev"/lib/pkgconfig/slang.pc + ''; + + meta = with stdenv.lib; { description = "A multi-platform programmer's library designed to allow a developer to create robust software"; homepage = http://www.jedsoft.org/slang/; - license = stdenv.lib.licenses.gpl2Plus; - platforms = stdenv.lib.platforms.unix; - maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + license = licenses.gpl2Plus; + platforms = platforms.unix; + maintainers = [ maintainers.fuuzetsu ]; }; } diff --git a/pkgs/development/libraries/smpeg/default.nix b/pkgs/development/libraries/smpeg/default.nix index c2473ae2c5db..2f300abebbf1 100644 --- a/pkgs/development/libraries/smpeg/default.nix +++ b/pkgs/development/libraries/smpeg/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/smpeg-config \ --prefix PATH ":" "${pkgconfig}/bin" \ - --prefix PKG_CONFIG_PATH ":" "${SDL}/lib/pkgconfig" + --prefix PKG_CONFIG_PATH ":" "${SDL.dev}/lib/pkgconfig" ''; meta = { diff --git a/pkgs/development/libraries/socket_wrapper/default.nix b/pkgs/development/libraries/socket_wrapper/default.nix index 0c6f40c8b143..bff4f393d1db 100644 --- a/pkgs/development/libraries/socket_wrapper/default.nix +++ b/pkgs/development/libraries/socket_wrapper/default.nix @@ -9,6 +9,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ (stdenv.cc.libc.out or null) ]; meta = with stdenv.lib; { description = "a library passing all socket communications through unix sockets"; diff --git a/pkgs/development/libraries/speex/default.nix b/pkgs/development/libraries/speex/default.nix index 9a1c00e63b9d..8e3cf899e40b 100644 --- a/pkgs/development/libraries/speex/default.nix +++ b/pkgs/development/libraries/speex/default.nix @@ -2,7 +2,7 @@ stdenv.mkDerivation rec { name = "speex-1.2rc2"; - + src = fetchurl { url = "http://downloads.us.xiph.org/releases/speex/${name}.tar.gz"; sha256 = "14g8ph39inkrif749lzjm089g7kwk0hymq1a3i9ch5gz8xr7r8na"; @@ -11,7 +11,9 @@ stdenv.mkDerivation rec { postPatch = '' sed -i '/AC_CONFIG_MACRO_DIR/i PKG_PROG_PKG_CONFIG' configure.ac ''; - + + outputs = [ "dev" "out" "doc" ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; buildInputs = [ fftw speexdsp ]; diff --git a/pkgs/development/libraries/speexdsp/default.nix b/pkgs/development/libraries/speexdsp/default.nix index 7112afbea8a2..56b1900837ac 100644 --- a/pkgs/development/libraries/speexdsp/default.nix +++ b/pkgs/development/libraries/speexdsp/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { patches = [ ./build-fix.patch ]; postPatch = "sed '3i#include ' -i ./include/speex/speexdsp_config_types.h.in"; + outputs = [ "dev" "out" "doc" ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; buildInputs = [ fftw ]; diff --git a/pkgs/development/libraries/sqlite/default.nix b/pkgs/development/libraries/sqlite/default.nix index 24be2c2a9c85..feb5e5d30407 100644 --- a/pkgs/development/libraries/sqlite/default.nix +++ b/pkgs/development/libraries/sqlite/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation { sha1 = "c4b4dcd735a4daf5a2e2bb90f374484c8d4dad29"; }; + outputs = [ "dev" "out" "bin" ]; + buildInputs = lib.optionals interactive [ readline ncurses ]; configureFlags = [ "--enable-threadsafe" ]; diff --git a/pkgs/development/libraries/srtp/default.nix b/pkgs/development/libraries/srtp/default.nix index 98cf160e8b51..ba213dc98e76 100644 --- a/pkgs/development/libraries/srtp/default.nix +++ b/pkgs/development/libraries/srtp/default.nix @@ -5,13 +5,13 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "libsrtp-${version}"; - version = "1.5.2"; + version = "1.5.4"; src = fetchFromGitHub { owner = "cisco"; repo = "libsrtp"; rev = "v${version}"; - sha256 = "0iy1il72gnjcwbi16wf4kzdqs1xx8is9qvs6m49pg37218s26gdw"; + sha256 = "0s029m4iw0nsvnsm2hlz8yajrasdvf315iv2dw8mfm7nhbshwsqa"; }; buildInputs = [ pkgconfig ]; @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { ] ++ optional (openssl != null) "--enable-openssl"; postInstall = '' - rmdir $out/bin + rm -rf $out/bin ''; meta = { diff --git a/pkgs/development/libraries/tokyo-cabinet/default.nix b/pkgs/development/libraries/tokyo-cabinet/default.nix index 0b210a589d41..b8969588b3c5 100644 --- a/pkgs/development/libraries/tokyo-cabinet/default.nix +++ b/pkgs/development/libraries/tokyo-cabinet/default.nix @@ -12,8 +12,8 @@ stdenv.mkDerivation rec { postInstall = '' sed -i "$out/lib/pkgconfig/tokyocabinet.pc" \ - -e 's|-lz|-L${zlib}/lib -lz|g; - s|-lbz2|-L${bzip2}/lib -lbz2|g' + -e 's|-lz|-L${zlib.out}/lib -lz|g; + s|-lbz2|-L${bzip2.out}/lib -lbz2|g' ''; meta = { diff --git a/pkgs/development/libraries/uid_wrapper/default.nix b/pkgs/development/libraries/uid_wrapper/default.nix index 35d7f53173fb..0675ec68b4e8 100644 --- a/pkgs/development/libraries/uid_wrapper/default.nix +++ b/pkgs/development/libraries/uid_wrapper/default.nix @@ -9,6 +9,7 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ cmake pkgconfig ]; + buildInputs = [ (stdenv.cc.libc.out or null) ]; meta = with stdenv.lib; { description = "a wrapper for the user, group and hosts NSS API"; diff --git a/pkgs/development/libraries/v8/3.14.nix b/pkgs/development/libraries/v8/3.14.nix new file mode 100644 index 000000000000..fee0f868ea92 --- /dev/null +++ b/pkgs/development/libraries/v8/3.14.nix @@ -0,0 +1,28 @@ +{ stdenv, callPackage, fetchFromGitHub, python, ... } @ args: +with stdenv.lib; +let + version = "3.14.5.10"; + sha256 = "08vhl84166x13b3cbx8y0g99yqx772zd33gawsa1nxqkyrykql6k"; +in +(callPackage ./generic.nix (args // { + inherit version sha256; +})).overrideDerivation (oldAttrs:{ + patchPhase = [ + oldAttrs.patchPhase + "sed -i 's,#!/usr/bin/python,#!${python}/bin/python,' build/gyp_v8" + ]; + + # http://code.google.com/p/v8/issues/detail?id=2149 + NIX_CFLAGS_COMPILE = concatStringsSep " " [ + oldAttrs.NIX_CFLAGS_COMPILE + "-Wno-unused-local-typedefs" + "-Wno-aggressive-loop-optimizations" + ]; + + src = fetchFromGitHub { + owner = "v8"; + repo = "v8"; + rev = "${version}"; + inherit sha256; + }; +}) diff --git a/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch b/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch new file mode 100644 index 000000000000..3bc0fff4d509 --- /dev/null +++ b/pkgs/development/libraries/v8/fix-GetLocalizedMessage-usage.patch @@ -0,0 +1,27 @@ +From dbe142c4eda0f15fad9fa85743dd11b81292fa8f Mon Sep 17 00:00:00 2001 +From: Timothy J Fontaine +Date: Thu, 23 May 2013 13:57:59 -0700 +Subject: [PATCH] v8: fix GetLocalizedMessage usage + +As is the backport of the abort on uncaught exception wouldn't compile +because we it was passing in `this` when it was unnecessary. +--- + deps/v8/src/isolate.cc | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/isolate.cc b/src/isolate.cc +index 04a438b..5a5293e 100644 +--- a/src/isolate.cc ++++ b/src/isolate.cc +@@ -1161,7 +1161,7 @@ void Isolate::DoThrow(Object* exception, MessageLocation* location) { + (report_exception || can_be_caught_externally)) { + fatal_exception_depth++; + fprintf(stderr, "%s\n\nFROM\n", +- *MessageHandler::GetLocalizedMessage(this, message_obj)); ++ *MessageHandler::GetLocalizedMessage(message_obj)); + PrintCurrentStackTrace(stderr); + OS::Abort(); + } +-- +1.8.1.6 + diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix index 0510fde811c6..60e332de0c3d 100644 --- a/pkgs/development/libraries/wayland/default.nix +++ b/pkgs/development/libraries/wayland/default.nix @@ -1,5 +1,5 @@ { lib, stdenv, fetchurl, pkgconfig -, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto +, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, libxml2 , expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0) }: @@ -8,18 +8,18 @@ assert expat != null; stdenv.mkDerivation rec { name = "wayland-${version}"; - version = "1.9.0"; + version = "1.10.0"; src = fetchurl { url = "http://wayland.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1yhy62vkbq8j8c9zaa6yzvn75cd99kfa8n2zfdwl80x019r711ww"; + sha256 = "1p307ly1yyqjnzn9dbv78yffql2qszn84qk74lwanl3gma8fgxjb"; }; configureFlags = "--with-scanner --disable-documentation"; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat ]; + buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ]; meta = { description = "Reference implementation of the wayland protocol"; diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix new file mode 100644 index 000000000000..0ae9d9d59c8a --- /dev/null +++ b/pkgs/development/libraries/wayland/protocols.nix @@ -0,0 +1,27 @@ +{ lib, stdenv, fetchurl, pkgconfig +, wayland +}: + +stdenv.mkDerivation rec { + name = "wayland-protocols-${version}"; + version = "1.3"; + + src = fetchurl { + url = "http://wayland.freedesktop.org/releases/${name}.tar.xz"; + sha256 = "0byqvrsm6bkvylvzqy8wh5wpszwl5ra1z0yjqzqmw8przlrhdkbb"; + }; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ wayland ]; + + meta = { + description = "Wayland protocol extensions"; + homepage = http://wayland.freedesktop.org/; + license = lib.licenses.mit; + platforms = lib.platforms.linux; + maintainers = with lib.maintainers; [ ]; + }; + + passthru.version = version; +} diff --git a/pkgs/development/libraries/wcslib/default.nix b/pkgs/development/libraries/wcslib/default.nix index b6ca281f0530..08258f677a40 100644 --- a/pkgs/development/libraries/wcslib/default.nix +++ b/pkgs/development/libraries/wcslib/default.nix @@ -1,14 +1,14 @@ { fetchurl, stdenv, flex }: stdenv.mkDerivation rec { - version = "5.14"; + version = "5.15"; name = "wcslib-${version}"; buildInputs = [ flex ]; src = fetchurl { url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2"; - sha256 ="0zz3747m6gjzglgsqrrslwk2qkb6swsx8gmaxa459dvbcg914gsd"; + sha256 ="1s2nig327g4bimd9xshlk11ww09a7mrjmsbpdcd8smsmn2kl1glb"; }; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/webkitgtk/2.4.nix b/pkgs/development/libraries/webkitgtk/2.4.nix index e8f0a3d4da7e..cc7644f742d5 100644 --- a/pkgs/development/libraries/webkitgtk/2.4.nix +++ b/pkgs/development/libraries/webkitgtk/2.4.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, perl, python, ruby, bison, gperf, flex , pkgconfig, which, gettext, gobjectIntrospection , gtk2, gtk3, wayland, libwebp, enchant, sqlite -, libxml2, libsoup, libsecret, libxslt, harfbuzz +, libxml2, libsoup, libsecret, libxslt, harfbuzz, xorg , gst-plugins-base , withGtk2 ? false , enableIntrospection ? !stdenv.isDarwin @@ -71,7 +71,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk2 libwebp enchant libxml2 libxslt - gst-plugins-base sqlite + gst-plugins-base sqlite xorg.libXt ] ++ optionals enableCredentialStorage [ libsecret ] ++ (if stdenv.isDarwin then [ diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index 1abfcbb6c860..cf22eb3aadde 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -2,7 +2,7 @@ , pkgconfig, gettext, gobjectIntrospection, libnotify , gtk2, gtk3, wayland, libwebp, enchant , libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs -, enableGeoLocation ? false, geoclue2, sqlite +, enableGeoLocation ? false, geoclue2, sqlite, xorg , enableCredentialStorage ? !stdenv.isDarwin , gst-plugins-base, readline, libedit }: @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { buildInputs = [ gtk2 libwebp enchant libnotify libxml2 libxslt harfbuzz libpthreadstubs - gst-plugins-base + gst-plugins-base xorg.libXt ] ++ optionals enableCredentialStorage [ libsecret ] ++ (if stdenv.isDarwin then [ diff --git a/pkgs/development/libraries/wildmidi/default.nix b/pkgs/development/libraries/wildmidi/default.nix index 8660d15e06a3..4dec0555ae9f 100644 --- a/pkgs/development/libraries/wildmidi/default.nix +++ b/pkgs/development/libraries/wildmidi/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake ]; - buildInputs = [ alsaLib ]; + buildInputs = [ alsaLib stdenv.cc.libc/*couldn't find libm*/ ]; preConfigure = '' substituteInPlace CMakeLists.txt \ diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix index 50220c227f7c..e023665f0701 100644 --- a/pkgs/development/libraries/wxGTK-2.8/default.nix +++ b/pkgs/development/libraries/wxGTK-2.8/default.nix @@ -33,10 +33,10 @@ stdenv.mkDerivation rec { # These variables are used by configure to find some dependencies. SEARCH_INCLUDE = - "${libXinerama}/include ${libSM}/include ${libXxf86vm}/include"; + "${libXinerama.dev}/include ${libSM.dev}/include ${libXxf86vm.dev}/include"; SEARCH_LIB = - "${libXinerama}/lib ${libSM}/lib ${libXxf86vm}/lib " - + optionalString withMesa "${mesa}/lib "; + "${libXinerama.out}/lib ${libSM.out}/lib ${libXxf86vm.out}/lib " + + optionalString withMesa "${mesa.out}/lib "; # Work around a bug in configure. NIX_CFLAGS_COMPILE = [ "-DHAVE_X11_XLIB_H=1" "-lX11" "-lcairo" ]; diff --git a/pkgs/development/libraries/x264/default.nix b/pkgs/development/libraries/x264/default.nix index 3c2423434939..754b76de0617 100644 --- a/pkgs/development/libraries/x264/default.nix +++ b/pkgs/development/libraries/x264/default.nix @@ -13,6 +13,8 @@ stdenv.mkDerivation rec { sed -i s,/bin/bash,${stdenv.shell}, configure version.sh ''; + outputs = [ "out" "lib" ]; # leaving 52 kB of headers + configureFlags = [ "--enable-shared" ] ++ stdenv.lib.optional (!stdenv.isi686) "--enable-pic" ++ stdenv.lib.optional (enable10bit) "--bit-depth=10"; diff --git a/pkgs/development/libraries/x265/default.nix b/pkgs/development/libraries/x265/default.nix index 736c350bc068..c41dc12bd2f1 100644 --- a/pkgs/development/libraries/x265/default.nix +++ b/pkgs/development/libraries/x265/default.nix @@ -49,6 +49,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake yasm ]; + NIX_LDFLAGS = "-L${stdenv.cc.libc.out}/lib"; #outputs TODO: this is strange + meta = with stdenv.lib; { description = "Library for encoding h.265/HEVC video streams"; homepage = http://x265.org; diff --git a/pkgs/development/libraries/xapian/1.0.x.nix b/pkgs/development/libraries/xapian/1.0.x.nix deleted file mode 100644 index b89900d2b05e..000000000000 --- a/pkgs/development/libraries/xapian/1.0.x.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ stdenv, fetchurl, zlib }: - -stdenv.mkDerivation { - name = "xapian-1.0.23"; - - src = fetchurl { - url = http://oligarchy.co.uk/xapian/1.0.23/xapian-core-1.0.23.tar.gz; - sha256 = "0aed7296bd56b4b49aba944cc744e1e76fff8cfb0a70fd5b1f49d4c62a97ecc6"; - }; - - buildInputs = [ zlib ]; - - meta = { - description = "Xapian Probabilistic Information Retrieval library"; - homepage = "http://xapian.org"; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/libraries/xapian/bindings/1.0.x.nix b/pkgs/development/libraries/xapian/bindings/1.0.x.nix deleted file mode 100644 index 5d69f73d7973..000000000000 --- a/pkgs/development/libraries/xapian/bindings/1.0.x.nix +++ /dev/null @@ -1,73 +0,0 @@ -{ stdenv, composableDerivation, fetchurl, xapian10, pkgconfig -, python ? null, php ? null, ruby ? null }: - -let inherit (composableDerivation) wwf; in - -composableDerivation.composableDerivation {} rec { - - name = "xapian-bindings-1.0.23"; - - src = fetchurl { - url = "http://oligarchy.co.uk/xapian/1.0.23/${name}.tar.gz"; - sha256 = "6028123c3cd9bfc380b672b89f5420f7d5c063fc3511dee4dd5d34033ccb6911"; - }; - - buildInputs = [ xapian10 pkgconfig ]; - - # most interpreters aren't tested yet.. (see python for example how to do it) - flags = - wwf { - name = "python"; - enable = { - buildInputs = [ python ]; - # export same env vars as in pythonNew - preConfigure = '' - export PYTHON_LIB=$out/lib/${python.libPrefix}/site-packages - mkdir -p $out/nix-support - echo "export NIX_PYTHON_SITES=\"$out:\$NIX_PYTHON_SITES\"" >> $out/nix-support/setup-hook - echo "export PYTHONPATH=\"$PYTHON_LIB:\$PYTHONPATH\"" >> $out/nix-support/setup-hook - ''; - }; - } - // wwf { - name = "php"; - enable = { - buildInputs = [ php ]; - preConfigure = '' - export PHP_EXTENSION_DIR=$out/lib/php # TODO use a sane directory. Its not used anywhere by now - ''; - }; - } - // wwf { - name = "ruby"; - enable = { - buildInputs = [ ruby ]; - preConfigure = '' - export RUBY_LIB=$out/${ruby.libPath} - export RUBY_LIB_ARCH=$RUBY_LIB - mkdir -p $out/nix-support - echo "export RUBYLIB=\"$RUBY_LIB:\$RUBYLIB\"" >> $out/nix-support/setup-hook - echo "export GEM_PATH=\"$out:\$GEM_PATH\"" >> $out/nix-support/setup-hook - ''; - }; - } - - # note: see configure --help to get see which env vars can be used - # // wwf { name = "tcl"; enable = { buildInputs = [ tcl ];};} - # // wwf { name = "csharp"; } - # // wwf { name = "java"; } - ; - - cfg = { - pythonSupport = true; - phpSupport = true; - rubySupport = true; - }; - - meta = { - description = "Bindings for the Xapian library"; - homepage = xapian10.meta.homepage; - license = stdenv.lib.licenses.gpl2Plus; - maintainers = [ stdenv.lib.maintainers.chaoflow ]; - }; -} diff --git a/pkgs/development/libraries/xapian/bindings/default.nix b/pkgs/development/libraries/xapian/bindings/default.nix index 740b71c59a7d..ed7c1e046d55 100644 --- a/pkgs/development/libraries/xapian/bindings/default.nix +++ b/pkgs/development/libraries/xapian/bindings/default.nix @@ -5,11 +5,11 @@ let inherit (composableDerivation) wwf; in composableDerivation.composableDerivation {} rec { - name = "xapian-bindings-1.2.8"; + name = "xapian-bindings-1.2.23"; src = fetchurl { - url = "http://oligarchy.co.uk/xapian/1.2.8/${name}.tar.gz"; - sha256 = "eb740c619c75d288e65a1c2f86faecdca53d44d3f9896bcc080085839887b124"; + url = "http://oligarchy.co.uk/xapian/1.2.23/${name}.tar.xz"; + sha256 = "05929d9bq9df25kh2i6gk2w09w7p5qknf9cc7mrm2g46finbbd0r"; }; buildInputs = [ xapian pkgconfig zlib ]; @@ -24,8 +24,8 @@ composableDerivation.composableDerivation {} rec { preConfigure = '' export PYTHON_LIB=$out/lib/${python.libPrefix}/site-packages mkdir -p $out/nix-support - echo "export NIX_PYTHON_SITES=\"$out:\$NIX_PYTHON_SITES\"" >> $out/nix-support/setup-hook - echo "export PYTHONPATH=\"$PYTHON_LIB:\$PYTHONPATH\"" >> $out/nix-support/setup-hook + echo "export NIX_PYTHON_SITES=\"$out:\$NIX_PYTHON_SITES\"" >> $out/nix-support/setup-hook + echo "export PYTHONPATH=\"$PYTHON_LIB:\$PYTHONPATH\"" >> $out/nix-support/setup-hook ''; }; } @@ -46,8 +46,8 @@ composableDerivation.composableDerivation {} rec { export RUBY_LIB=$out/${ruby.libPath} export RUBY_LIB_ARCH=$RUBY_LIB mkdir -p $out/nix-support - echo "export RUBYLIB=\"$RUBY_LIB:\$RUBYLIB\"" >> $out/nix-support/setup-hook - echo "export GEM_PATH=\"$out:\$GEM_PATH\"" >> $out/nix-support/setup-hook + echo "export RUBYLIB=\"$RUBY_LIB:\$RUBYLIB\"" >> $out/nix-support/setup-hook + echo "export GEM_PATH=\"$out:\$GEM_PATH\"" >> $out/nix-support/setup-hook ''; }; } @@ -60,11 +60,11 @@ composableDerivation.composableDerivation {} rec { cfg = { pythonSupport = true; - phpSupport = true; + phpSupport = false; rubySupport = true; }; - meta = { + meta = { description = "Bindings for the Xapian library"; homepage = xapian.meta.homepage; license = stdenv.lib.licenses.gpl2Plus; diff --git a/pkgs/development/libraries/xapian/default.nix b/pkgs/development/libraries/xapian/default.nix index 89f97292d39d..8a09d835f3da 100644 --- a/pkgs/development/libraries/xapian/default.nix +++ b/pkgs/development/libraries/xapian/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "xapian-${version}"; - version = "1.2.21"; + version = "1.2.23"; src = fetchurl { url = "http://oligarchy.co.uk/xapian/${version}/xapian-core-${version}.tar.xz"; - sha256 = "0grd2s6gf8yzqwdaa50g57j9d81mxkrrpkyldm2shgyizdc8gx33"; + sha256 = "0z9lhvfaazzmd611bnii9a0d19sqnjs0s9vbcgjhcv8s9spax0wp"; }; outputs = [ "out" "doc" ]; diff --git a/pkgs/development/libraries/zlib/default.nix b/pkgs/development/libraries/zlib/default.nix index 7a6f480215c7..59713bb8d205 100644 --- a/pkgs/development/libraries/zlib/default.nix +++ b/pkgs/development/libraries/zlib/default.nix @@ -2,7 +2,7 @@ let version = "1.2.8"; in -stdenv.mkDerivation (rec { +stdenv.mkDerivation rec { name = "zlib-${version}"; src = fetchurl { @@ -20,15 +20,31 @@ stdenv.mkDerivation (rec { --replace 'ARFLAGS="-o"' 'ARFLAGS="-r"' ''; - configureFlags = if static then "" else "--shared"; + outputs = [ "dev" "out" "static" ]; + setOutputFlags = false; + outputDoc = "dev"; # single tiny man3 page + preConfigure = '' if test -n "$crossConfig"; then export CC=$crossConfig-gcc - configureFlags=${if static then "" else "--shared"} fi ''; + configureFlags = stdenv.lib.optional (!static) "--shared"; + + postInstall = '' + moveToOutput lib/libz.a "$static" + '' + # jww (2015-01-06): Sometimes this library install as a .so, even on + # Darwin; others time it installs as a .dylib. I haven't yet figured out + # what causes this difference. + + stdenv.lib.optionalString stdenv.isDarwin '' + for file in $out/lib/*.so* $out/lib/*.dylib* ; do + install_name_tool -id "$file" $file + done + ''; + # As zlib takes part in the stdenv building, we don't want references # to the bootstrap-tools libgcc (as uses to happen on arm/mips) NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.isDarwin) "-static-libgcc " @@ -58,13 +74,5 @@ stdenv.mkDerivation (rec { license = licenses.zlib; platforms = platforms.all; }; -} // (if stdenv.isDarwin then { - postInstall = '' - # jww (2015-01-06): Sometimes this library install as a .so, even on - # Darwin; others time it installs as a .dylib. I haven't yet figured out - # what causes this difference. - for file in $out/lib/*.so* $out/lib/*.dylib* ; do - install_name_tool -id "$file" $file - done - ''; -} else {})) +} + diff --git a/pkgs/development/mobile/androidenv/androidndk.nix b/pkgs/development/mobile/androidenv/androidndk.nix index 595c98f76aaa..0ae5fc3b5403 100644 --- a/pkgs/development/mobile/androidenv/androidndk.nix +++ b/pkgs/development/mobile/androidenv/androidndk.nix @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { find $out \( \ \( -type f -a -name "*.so*" \) -o \ \( -type f -a -perm -0100 \) \ - \) -exec patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-*so.? \ - --set-rpath ${zlib}/lib:${ncurses}/lib {} \; + \) -exec patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-*so.? \ + --set-rpath ${stdenv.lib.makeLibraryPath [ zlib ncurses ]} {} \; # fix ineffective PROGDIR / MYNDKDIR determination for i in ndk-build ndk-gdb ndk-gdb-py do diff --git a/pkgs/development/mobile/androidenv/androidndk_r8e.nix b/pkgs/development/mobile/androidenv/androidndk_r8e.nix index 90994ae708e5..428cef49a2d1 100644 --- a/pkgs/development/mobile/androidenv/androidndk_r8e.nix +++ b/pkgs/development/mobile/androidenv/androidndk_r8e.nix @@ -54,8 +54,8 @@ stdenv.mkDerivation rec { find $out \( \ \( -type f -a -name "*.so*" \) -o \ \( -type f -a -perm -0100 \) \ - \) -exec patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-*so.? \ - --set-rpath ${zlib}/lib:${ncurses}/lib {} \; + \) -exec patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-*so.? \ + --set-rpath ${zlib.out}/lib:${ncurses.out}/lib {} \; # fix ineffective PROGDIR / MYNDKDIR determination for i in ndk-build ndk-gdb ndk-gdb-py do diff --git a/pkgs/development/mobile/androidenv/androidsdk.nix b/pkgs/development/mobile/androidenv/androidsdk.nix index 01ba759f4f69..aa009cb301a3 100644 --- a/pkgs/development/mobile/androidenv/androidsdk.nix +++ b/pkgs/development/mobile/androidenv/androidsdk.nix @@ -7,6 +7,8 @@ }: { platformVersions, abiVersions, useGoogleAPIs, useExtraSupportLibs ? false, useGooglePlayServices ? false }: +with { inherit (stdenv.lib) makeLibraryPath; }; + stdenv.mkDerivation rec { name = "android-sdk-${version}"; version = "24.4"; @@ -39,7 +41,7 @@ stdenv.mkDerivation rec { for i in emulator emulator-arm emulator-mips emulator-x86 mksdcard do - patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i done @@ -48,7 +50,7 @@ stdenv.mkDerivation rec { for i in emulator64-arm emulator64-mips emulator64-x86 do - patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 $i + patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i patchelf --set-rpath ${stdenv.cc.cc}/lib64 $i done ''} @@ -58,7 +60,7 @@ stdenv.mkDerivation rec { wrapProgram `pwd`/android \ --prefix PATH : ${jdk}/bin \ - --prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib + --prefix LD_LIBRARY_PATH : ${makeLibraryPath [ glib gtk libXtst ]} wrapProgram `pwd`/uiautomatorviewer \ --prefix PATH : ${jdk}/bin \ @@ -74,7 +76,7 @@ stdenv.mkDerivation rec { do wrapProgram `pwd`/$i \ --prefix PATH : ${file}/bin \ - --suffix LD_LIBRARY_PATH : `pwd`/lib:${libX11_32bit}/lib:${libxcb_32bit}/lib:${libXau_32bit}/lib:${libXdmcp_32bit}/lib:${libXext_32bit}/lib:${mesa_32bit}/lib + --suffix LD_LIBRARY_PATH : `pwd`/lib:${makeLibraryPath [ libX11_32bit libxcb_32bit libXau_32bit libXdmcp_32bit libXext_32bit mesa_32bit ]} done ${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") '' @@ -82,7 +84,7 @@ stdenv.mkDerivation rec { do wrapProgram `pwd`/$i \ --prefix PATH : ${file}/bin \ - --suffix LD_LIBRARY_PATH : `pwd`/lib:${libX11}/lib:${libxcb}/lib:${libXau}/lib:${libXdmcp}/lib:${libXext}/lib:${mesa}/lib:${alsaLib}/lib + --suffix LD_LIBRARY_PATH : `pwd`/lib:${makeLibraryPath [ libX11 libxcb libXau libXdmcp libXext mesa alsaLib ]} done ''} ''} @@ -94,11 +96,11 @@ stdenv.mkDerivation rec { # The monitor requires some more patching cd lib/monitor-x86 - patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux.so.2 monitor - patchelf --set-rpath ${libX11}/lib:${libXext}/lib:${libXrender}/lib:${freetype}/lib:${fontconfig}/lib libcairo-swt.so + patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux.so.2 monitor + patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so wrapProgram `pwd`/monitor \ - --prefix LD_LIBRARY_PATH : ${gtk}/lib:${atk}/lib:${stdenv.cc.cc}/lib:${libXtst}/lib + --prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk atk stdenv.cc.cc libXtst ]} cd ../.. '' @@ -107,11 +109,11 @@ stdenv.mkDerivation rec { # The monitor requires some more patching cd lib/monitor-x86_64 - patchelf --set-interpreter ${stdenv.cc.libc}/lib/ld-linux-x86-64.so.2 monitor - patchelf --set-rpath ${libX11}/lib:${libXext}/lib:${libXrender}/lib:${freetype}/lib:${fontconfig}/lib libcairo-swt.so + patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 monitor + patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so wrapProgram `pwd`/monitor \ - --prefix LD_LIBRARY_PATH : ${gtk}/lib:${atk}/lib:${stdenv.cc.cc}/lib::${libXtst}/lib + --prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk atk stdenv.cc.cc libXtst ]} cd ../.. '' diff --git a/pkgs/development/mobile/androidenv/build-tools.nix b/pkgs/development/mobile/androidenv/build-tools.nix index 2918acd8c15e..1f4bf6e4cfdf 100644 --- a/pkgs/development/mobile/androidenv/build-tools.nix +++ b/pkgs/development/mobile/androidenv/build-tools.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { # Patch the interpreter for i in aapt aidl bcc_compat dexdump llvm-rs-cc do - patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i done # These binaries need to find libstdc++ and libgcc_s @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { # These binaries also need zlib in addition to libstdc++ for i in arm-linux-androideabi-ld i686-linux-android-ld mipsel-linux-android-ld split-select zipalign do - patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:${zlib_32bit}/lib:`pwd`/lib $i done diff --git a/pkgs/development/mobile/androidenv/platform-tools.nix b/pkgs/development/mobile/androidenv/platform-tools.nix index 1243ba429a39..1654b13d13b1 100644 --- a/pkgs/development/mobile/androidenv/platform-tools.nix +++ b/pkgs/development/mobile/androidenv/platform-tools.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { '' for i in adb dmtracedump fastboot hprof-conv sqlite3 do - patchelf --set-interpreter ${stdenv_32bit.cc.libc}/lib/ld-linux.so.2 $i + patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib:`pwd`/lib $i done diff --git a/pkgs/development/mobile/flashtool/default.nix b/pkgs/development/mobile/flashtool/default.nix index d22eeb6c2138..b33fc13224a3 100644 --- a/pkgs/development/mobile/flashtool/default.nix +++ b/pkgs/development/mobile/flashtool/default.nix @@ -33,7 +33,7 @@ stdenv.mkDerivation rec { buildPhase = '' ln -s ${platformTools}/platform-tools/adb x10flasher_lib/adb.linux ln -s ${platformTools}/platform-tools/fastboot x10flasher_lib/fastboot.linux - ln -s ${libusb1}/lib/libusb-1.0.so.0 ./x10flasher_lib/linux/lib32/libusbx-1.0.so + ln -s ${libusb1.out}/lib/libusb-1.0.so.0 ./x10flasher_lib/linux/lib32/libusbx-1.0.so chmod +x x10flasher_lib/unyaffs.linux.x86 x10flasher_lib/bin2elf x10flasher_lib/bin2sin patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" x10flasher_lib/unyaffs.linux.x86 diff --git a/pkgs/development/ocaml-modules/camlzip/default.nix b/pkgs/development/ocaml-modules/camlzip/default.nix index de800a295bca..d392b5f789c1 100644 --- a/pkgs/development/ocaml-modules/camlzip/default.nix +++ b/pkgs/development/ocaml-modules/camlzip/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation { postPatch = '' substitute ${./META} META --subst-var-by VERSION "${version}" substituteInPlace Makefile \ - --subst-var-by ZLIB_LIBDIR "${zlib}/lib" \ + --subst-var-by ZLIB_LIBDIR "${zlib.out}/lib" \ --subst-var-by ZLIB_INCLUDE "${zlib}/include" ''; diff --git a/pkgs/development/ocaml-modules/cryptokit/default.nix b/pkgs/development/ocaml-modules/cryptokit/default.nix index f56ec3cbed62..a2cf545e84c5 100644 --- a/pkgs/development/ocaml-modules/cryptokit/default.nix +++ b/pkgs/development/ocaml-modules/cryptokit/default.nix @@ -7,11 +7,11 @@ in assert stdenv.lib.versionAtLeast ocaml_version "3.12"; stdenv.mkDerivation { - name = "cryptokit-1.9"; + name = "cryptokit-1.10"; src = fetchurl { - url = http://forge.ocamlcore.org/frs/download.php/1166/cryptokit-1.9.tar.gz; - sha256 = "1jh0jqiwkjy9qplnfcm5r25zdgyk36sxb0c87ks3rjj7khrw1a2n"; + url = http://forge.ocamlcore.org/frs/download.php/1493/cryptokit-1.10.tar.gz; + sha256 = "1k2f2ixm7jcsgrzn9lz1hm9qqgq71lk9lxy3v3cwsd8xdrj3jrnv"; }; buildInputs = [zlib ocaml findlib ncurses]; diff --git a/pkgs/development/ocaml-modules/expat/default.nix b/pkgs/development/ocaml-modules/expat/default.nix index f4837bd047f5..b6ee0d192e33 100644 --- a/pkgs/development/ocaml-modules/expat/default.nix +++ b/pkgs/development/ocaml-modules/expat/default.nix @@ -28,8 +28,8 @@ stdenv.mkDerivation { postPatch = '' substituteInPlace "unittest.ml" \ --replace "/home/maas/xml-samples/REC-xml-19980210.xml.txt" "${testcase}" - substituteInPlace Makefile --replace "EXPAT_LIBDIR=/usr/local/lib" "EXPAT_LIBDIR=${expat}/lib" \ - substituteInPlace Makefile --replace "EXPAT_INCDIR=/usr/local/include" "EXPAT_INCDIR=${expat}/include" \ + substituteInPlace Makefile --replace "EXPAT_LIBDIR=/usr/local/lib" "EXPAT_LIBDIR=${expat.out}/lib" \ + substituteInPlace Makefile --replace "EXPAT_INCDIR=/usr/local/include" "EXPAT_INCDIR=${expat.dev}/include" \ ''; configurePhase = "true"; # Skip configure diff --git a/pkgs/development/ocaml-modules/ocaml-text/default.nix b/pkgs/development/ocaml-modules/ocaml-text/default.nix index 9c84045de60d..64e0bb5ba010 100644 --- a/pkgs/development/ocaml-modules/ocaml-text/default.nix +++ b/pkgs/development/ocaml-modules/ocaml-text/default.nix @@ -1,11 +1,12 @@ -{stdenv, fetchurl, libiconv, ocaml, findlib, ncurses}: +{ stdenv, fetchzip, libiconv, ocaml, findlib, ncurses }: -stdenv.mkDerivation { - name = "ocaml-text-0.7.1"; +stdenv.mkDerivation rec { + name = "ocaml-text-${version}"; + version = "0.8"; - src = fetchurl { - url = "https://github.com/vbmithr/ocaml-text/archive/0.7.1.tar.gz"; - sha256 = "0dn096q9gjfj7ibj237mb7lq0742a760zawka6i064qns727qwrg"; + src = fetchzip { + url = "https://github.com/vbmithr/ocaml-text/archive/${version}.tar.gz"; + sha256 = "11jamdfn5s19a0yvl012q1xvdk1grkp4rkrn819imqrvdplqkn1y"; }; buildInputs = [ocaml findlib ncurses libiconv]; diff --git a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix index 20362a51a7be..9314481cbcfe 100644 --- a/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix +++ b/pkgs/development/perl-modules/Compress-Raw-Zlib/default.nix @@ -12,7 +12,7 @@ buildPerlPackage rec { cat > config.in <catdir( $sqlite_base, 'lib' ); +- $sqlite_inc = File::Spec->catdir( $sqlite_base, 'include' ); +- } +- if ( $sqlite_local = (grep(/USE_LOCAL_SQLITE=.*/, @ARGV))[0] ) { +- $sqlite_local =~ /=(.*)/; +- $sqlite_local = "$1" ? 1 : 0; +- if ( $sqlite_local ) { +- # Keep these from making into CFLAGS/LDFLAGS +- undef $sqlite_lib; +- undef $sqlite_inc; +- } +- } ++my ($sqlite_local, $sqlite_lib, $sqlite_inc); ++if ( 1 ) { ++ $sqlite_lib = '@sqlite_out@/lib'; ++ $sqlite_inc = '@sqlite_dev@/include'; + + # Now check for a compatible sqlite3 + unless ( $sqlite_local ) { diff --git a/pkgs/development/perl-modules/generic/builder.sh b/pkgs/development/perl-modules/generic/builder.sh index 7c51bf1b5917..9ee8be87c028 100644 --- a/pkgs/development/perl-modules/generic/builder.sh +++ b/pkgs/development/perl-modules/generic/builder.sh @@ -28,6 +28,7 @@ preConfigure() { perl Makefile.PL PREFIX=$out INSTALLDIRS=site $makeMakerFlags } + postFixup() { # If a user installs a Perl package, she probably also wants its # dependencies in the user environment (since Perl modules don't diff --git a/pkgs/development/perl-modules/generic/default.nix b/pkgs/development/perl-modules/generic/default.nix index 6cd4134cc9c4..91a004a7f686 100644 --- a/pkgs/development/perl-modules/generic/default.nix +++ b/pkgs/development/perl-modules/generic/default.nix @@ -1,13 +1,15 @@ perl: -{ buildInputs ? [], ... } @ attrs: +{ buildInputs ? [], name, ... } @ attrs: perl.stdenv.mkDerivation ( { + outputs = [ "out" "docdev" ]; + doCheck = true; - + checkTarget = "test"; - + # Prevent CPAN downloads. PERL_AUTOINSTALL = "--skipdeps"; @@ -23,7 +25,7 @@ perl.stdenv.mkDerivation ( attrs // { - name = "perl-" + attrs.name; + name = "perl-" + name; builder = ./builder.sh; buildInputs = buildInputs ++ [ perl ]; } diff --git a/pkgs/development/pharo/vm/default.nix b/pkgs/development/pharo/vm/default.nix index 0628e8545e73..2dc3cbc3ff99 100644 --- a/pkgs/development/pharo/vm/default.nix +++ b/pkgs/development/pharo/vm/default.nix @@ -6,22 +6,22 @@ rec { base-url = http://files.pharo.org/vm/src/vm-unix-sources/blessed; pharo-no-spur = pharo-vm-build rec { - version = "2015.08.06"; + version = "2016.02.18"; name = "pharo-vm-i386-${version}"; binary-basename = "pharo-vm"; src = fetchurl { url = "${base-url}/pharo-vm-${version}.tar.bz2"; - sha256 = "1kmb6phxb94d37awwldwbkj704l6m0c6sv0m54mcz6d4rx41fqgp"; + sha256 = "16n2zg7v2s1ml0vvpbhkw6khmgn637sr0d7n2b28qm5yc8pfhcj4"; }; }; pharo-spur = pharo-vm-build rec { - version = "2016.02.15"; + version = "2016.04.04"; name = "pharo-vm-spur-i386-${version}"; binary-basename = "pharo-spur-vm"; src = fetchurl { url = "${base-url}/pharo-vm-spur-${version}.tar.bz2"; - sha256 = "1lyz6wkxg9cmhgbg32a27kyj1syvk3p3015ga83z98353xlz91rx"; + sha256 = "1kmf782vdk9xbzi2yn1vpzksv8m04ry8n2ih16jhcihibxzcmz23"; }; }; } diff --git a/pkgs/development/python-modules/cgkit/scons-env.patch b/pkgs/development/python-modules/cgkit/scons-env.patch new file mode 100644 index 000000000000..65e9d58a0ae4 --- /dev/null +++ b/pkgs/development/python-modules/cgkit/scons-env.patch @@ -0,0 +1,22 @@ +diff --git a/supportlib/SConstruct b/supportlib/SConstruct +index 7f797b9..07907e9 100644 +--- a/supportlib/SConstruct ++++ b/supportlib/SConstruct +@@ -5,7 +5,7 @@ + # library. + ###################################################################### + +-import sys, glob, os.path ++import sys, glob, os.path, os + + # Read the options + vars = Variables("cpp_config.cfg") +@@ -16,7 +16,7 @@ vars.Add("CPPPATH", "The include directories", []) + vars.Add("MSVS_VERSION", "The preferred version of MS Visual Studio") + + # Create the construction environment +-env = Environment(variables = vars) ++env = Environment(variables = vars, ENV = os.environ) + + # Build the files in "obj" + env.VariantDir("obj", "src", duplicate=0) diff --git a/pkgs/development/python-modules/pygobject/default.nix b/pkgs/development/python-modules/pygobject/default.nix index 6f7139330407..897210a4046c 100644 --- a/pkgs/development/python-modules/pygobject/default.nix +++ b/pkgs/development/python-modules/pygobject/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "1f5dfxjnil2glfwxnqr14d2cjfbkghsbsn8n04js2c2icr7iv2pv"; }; - outputs = [ "out" "doc" ]; + outputs = [ "out" "docdev" ]; configureFlags = "--disable-introspection"; diff --git a/pkgs/development/python-modules/sphinx-fix-tests-with-pygments-2.1.patch b/pkgs/development/python-modules/sphinx-fix-tests-with-pygments-2.1.patch deleted file mode 100644 index 5aa4af873cd5..000000000000 --- a/pkgs/development/python-modules/sphinx-fix-tests-with-pygments-2.1.patch +++ /dev/null @@ -1,63 +0,0 @@ -From 5574aba60ed76f2bae947722122ac4d71ab8ed5a Mon Sep 17 00:00:00 2001 -From: Takeshi KOMIYA -Date: Mon, 18 Jan 2016 12:38:02 +0900 -Subject: [PATCH] Fix tests are broken with pygments-2.1 - ---- - tests/test_build_html.py | 2 +- - tests/test_intl.py | 10 ++++++---- - 2 files changed, 7 insertions(+), 5 deletions(-) - -diff --git a/tests/test_build_html.py b/tests/test_build_html.py -index e330761..17ea089 100644 ---- a/tests/test_build_html.py -+++ b/tests/test_build_html.py -@@ -82,7 +82,7 @@ def checker(nodes): - (".//a[@href='_downloads/img1.png']", ''), - (".//pre", u'"quotes"'), - (".//pre", u"'included'"), -- (".//pre/span[@class='s']", u'üöä'), -+ (".//pre/span[@class='s2']", u'üöä'), - (".//div[@class='inc-pyobj1 highlight-text']//pre", - r'^class Foo:\n pass\n\s*$'), - (".//div[@class='inc-pyobj2 highlight-text']//pre", -diff --git a/tests/test_intl.py b/tests/test_intl.py -index 4c665d4..b24ec65 100644 ---- a/tests/test_intl.py -+++ b/tests/test_intl.py -@@ -694,14 +694,15 @@ def test_additional_targets_should_not_be_translated(app, status, warning): - yield assert_count(expected_expr, result, 1) - - # C code block with lang should not be translated but be *C* highlighted -- expected_expr = """#include <stdio.h>""" -+ expected_expr = ("""#include """ -+ """<stdio.h>""") - yield assert_count(expected_expr, result, 1) - - # doctest block should not be translated but be highlighted - expected_expr = ( - """>>> """ - """import sys """ -- """# sys importing""") -+ """# sys importing""") - yield assert_count(expected_expr, result, 1) - - ## raw.txt -@@ -754,14 +755,15 @@ def test_additional_targets_should_be_translated(app, status, warning): - yield assert_count(expected_expr, result, 1) - - # C code block with lang should be translated and be *C* highlighted -- expected_expr = """#include <STDIO.H>""" -+ expected_expr = ("""#include """ -+ """<STDIO.H>""") - yield assert_count(expected_expr, result, 1) - - # doctest block should not be translated but be highlighted - expected_expr = ( - """>>> """ - """import sys """ -- """# SYS IMPORTING""") -+ """# SYS IMPORTING""") - yield assert_count(expected_expr, result, 1) - - ## raw.txt diff --git a/pkgs/development/python-modules/yolk/default.nix b/pkgs/development/python-modules/yolk/default.nix new file mode 100644 index 000000000000..7cfcb1e0f0d0 --- /dev/null +++ b/pkgs/development/python-modules/yolk/default.nix @@ -0,0 +1,23 @@ +{ lib, fetchurl, buildPythonApplication, pythonPackages }: + +with lib; + +buildPythonApplication rec { + name = "yolk-${version}"; + version = "0.4.3"; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/y/yolk/yolk-${version}.tar.gz"; + sha256 = "1f6xwx210jnl5nq0m3agh2p1cxmaizawaf3fwq43q4yw050fn1qw"; + }; + + buildInputs = with pythonPackages; [ nose ]; + + meta = { + description = "Command-line tool for querying PyPI and Python packages installed on your system"; + homepage = "https://github.com/cakebread/yolk"; + maintainer = with maintainers; [ profpatsch ]; + license = licenses.bsd3; + }; +} + diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix index 68e9fc6b4585..7a7b603b449b 100644 --- a/pkgs/development/r-modules/default.nix +++ b/pkgs/development/r-modules/default.nix @@ -2311,7 +2311,7 @@ let xml2 = old.xml2.overrideDerivation (attrs: { preConfigure = '' - export LIBXML_INCDIR=${pkgs.libxml2}/include/libxml2 + export LIBXML_INCDIR=${pkgs.libxml2.dev}/include/libxml2 patchShebangs configure ''; }); @@ -2383,7 +2383,7 @@ let }); devEMF = old.devEMF.overrideDerivation (attrs: { - NIX_CFLAGS_LINK = "-L${pkgs.xorg.libXft}/lib -lXft"; + NIX_CFLAGS_LINK = "-L${pkgs.xorg.libXft.out}/lib -lXft"; }); slfm = old.slfm.overrideDerivation (attrs: { diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 05be9090c84a..24699ad69040 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -76,8 +76,8 @@ in ncursesw = attrs: { buildInputs = [ ncurses ]; buildFlags = [ - "--with-cflags=-I${ncurses}/include" - "--with-ldflags=-L${ncurses}/lib" + "--with-cflags=-I${ncurses.dev}/include" + "--with-ldflags=-L${ncurses.out}/lib" ]; }; @@ -85,12 +85,12 @@ in buildFlags = [ "--use-system-libraries" "--with-zlib-dir=${zlib}" - "--with-xml2-lib=${libxml2}/lib" - "--with-xml2-include=${libxml2}/include/libxml2" - "--with-xslt-lib=${libxslt}/lib" - "--with-xslt-include=${libxslt}/include" - "--with-exslt-lib=${libxslt}/lib" - "--with-exslt-include=${libxslt}/include" + "--with-xml2-lib=${libxml2.out}/lib" + "--with-xml2-include=${libxml2.dev}/include/libxml2" + "--with-xslt-lib=${libxslt.out}/lib" + "--with-xslt-include=${libxslt.dev}/include" + "--with-exslt-lib=${libxslt.out}/lib" + "--with-exslt-include=${libxslt.dev}/include" ] ++ lib.optional stdenv.isDarwin "--with-iconv-dir=${libiconv}"; }; @@ -118,8 +118,8 @@ in sqlite3 = attrs: { buildFlags = [ - "--with-sqlite3-include=${sqlite}/include" - "--with-sqlite3-lib=${sqlite}/lib" + "--with-sqlite3-include=${sqlite.dev}/include" + "--with-sqlite3-lib=${sqlite.out}/lib" ]; }; diff --git a/pkgs/development/tools/build-managers/cargo/snapshot.nix b/pkgs/development/tools/build-managers/cargo/snapshot.nix index 4a779cc456e9..c01ba2b53860 100644 --- a/pkgs/development/tools/build-managers/cargo/snapshot.nix +++ b/pkgs/development/tools/build-managers/cargo/snapshot.nix @@ -48,8 +48,8 @@ stdenv.mkDerivation { mkdir -p "$out" ./install.sh "--prefix=$out" '' + (if stdenv.isLinux then '' - patchelf --interpreter "${stdenv.glibc}/lib/${stdenv.cc.dynamicLinker}" \ - --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib}/lib" \ + patchelf --interpreter "${stdenv.glibc.out}/lib/${stdenv.cc.dynamicLinker}" \ + --set-rpath "${stdenv.cc.cc}/lib/:${stdenv.cc.cc}/lib64/:${zlib.out}/lib" \ "$out/bin/cargo" '' else "") + postInstall; } diff --git a/pkgs/development/tools/build-managers/cmake/2.8.nix b/pkgs/development/tools/build-managers/cmake/2.8.nix index 60a941a66375..80fdce59607b 100644 --- a/pkgs/development/tools/build-managers/cmake/2.8.nix +++ b/pkgs/development/tools/build-managers/cmake/2.8.nix @@ -47,8 +47,9 @@ stdenv.mkDerivation rec { propagatedBuildInputs = optional wantPS ps; - CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" buildInputs; - + CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" + (concatMap (p: [ p p.out ]) buildInputs); + configureFlags = "--docdir=/share/doc/${name} --mandir=/share/man --system-libs" + stdenv.lib.optionalString useQt4 " --qt-gui"; diff --git a/pkgs/development/tools/build-managers/cmake/default.nix b/pkgs/development/tools/build-managers/cmake/default.nix index c8ed91b96fb0..9d0ff6e1f174 100644 --- a/pkgs/development/tools/build-managers/cmake/default.nix +++ b/pkgs/development/tools/build-managers/cmake/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, pkgconfig , bzip2, curl, expat, libarchive, xz, zlib , useNcurses ? false, ncurses, useQt4 ? false, qt4 , wantPS ? false, ps ? null @@ -25,26 +25,34 @@ stdenv.mkDerivation rec { sha256 = "1yl0z422gr7zfc638chifv343vx0ig5gasvrh7nzf7b15488qgxp"; }; - enableParallelBuilding = true; - patches = # Don't search in non-Nix locations such as /usr, but do search in # Nixpkgs' Glibc. optional (stdenv ? glibc) ./search-path-3.2.patch ++ optional stdenv.isCygwin ./3.2.2-cygwin.patch; + outputs = [ "out" "doc" ]; + setOutputFlags = false; + + setupHook = ./setup-hook.sh; + buildInputs = - [ bzip2 curl expat libarchive xz zlib ] + [ setupHook pkgconfig bzip2 curl expat libarchive xz zlib ] ++ optional useNcurses ncurses ++ optional useQt4 qt4; propagatedBuildInputs = optional wantPS ps; - CMAKE_PREFIX_PATH = stdenv.lib.concatStringsSep ":" buildInputs; - + preConfigure = with stdenv; optionalString (stdenv ? glibc) + '' + fixCmakeFiles . + substituteInPlace Modules/Platform/UnixPaths.cmake \ + --subst-var-by glibc_bin ${glibc.bin or glibc} \ + --subst-var-by glibc_dev ${glibc.dev or glibc} \ + --subst-var-by glibc_lib ${glibc.out or glibc} + ''; configureFlags = [ "--docdir=/share/doc/${name}" - "--mandir=/share/man" "--no-system-jsoncpp" ] ++ optional (!stdenv.isCygwin) "--system-libs" @@ -52,22 +60,18 @@ stdenv.mkDerivation rec { ++ ["--"] ++ optional (!useNcurses) "-DBUILD_CursesDialog=OFF"; - setupHook = ./setup-hook.sh; - dontUseCmakeConfigure = true; - preConfigure = optionalString (stdenv ? glibc) - '' - source $setupHook - fixCmakeFiles . - substituteInPlace Modules/Platform/UnixPaths.cmake \ - --subst-var-by glibc ${stdenv.glibc} - ''; + enableParallelBuilding = true; - meta = { + preInstall = ''mkdir "$doc" ''; + + postInstall = ''moveToOutput "share/cmake-*/Help" "$doc" ''; + + meta = with stdenv.lib; { homepage = http://www.cmake.org/; description = "Cross-Platform Makefile Generator"; - platforms = if useQt4 then qt4.meta.platforms else stdenv.lib.platforms.all; - maintainers = with stdenv.lib.maintainers; [ urkud mornfall ttuegel ]; + platforms = if useQt4 then qt4.meta.platforms else platforms.all; + maintainers = with maintainers; [ urkud mornfall ttuegel ]; }; } diff --git a/pkgs/development/tools/build-managers/cmake/search-path-3.2.patch b/pkgs/development/tools/build-managers/cmake/search-path-3.2.patch index b0447e706071..0a2d4ad43ab7 100644 --- a/pkgs/development/tools/build-managers/cmake/search-path-3.2.patch +++ b/pkgs/development/tools/build-managers/cmake/search-path-3.2.patch @@ -53,21 +53,21 @@ index 20ee1d1..39834e6 100644 - -list(APPEND CMAKE_SYSTEM_PROGRAM_PATH - /usr/pkg/bin -+ "@glibc@" ++ "@glibc_bin@" ) list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES - /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 -+ "@glibc@/lib" ++ "@glibc_lib@/lib" ) list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES - /usr/include -+ "@glibc@/include" ++ "@glibc_dev@/include" ) list(APPEND CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES - /usr/include -+ "@glibc@/include" ++ "@glibc_dev@/include" ) # Enable use of lib64 search path variants by default. diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh index 670376efdcab..b14e9984bc3c 100755 --- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh +++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh @@ -13,7 +13,7 @@ fixCmakeFiles() { } cmakeConfigurePhase() { - eval "$preConfigure" + runHook preConfigure if [ -z "$dontFixCmake" ]; then fixCmakeFiles . @@ -53,10 +53,11 @@ cmakeConfigurePhase() { cmake ${cmakeDir:-.} $cmakeFlags "${cmakeFlagsArray[@]}" - eval "$postConfigure" + runHook postConfigure } if [ -z "$dontUseCmakeConfigure" -a -z "$configurePhase" ]; then + setOutputFlags= configurePhase=cmakeConfigurePhase fi diff --git a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix index 9ac201070182..de6f96ce99f6 100644 --- a/pkgs/development/tools/build-managers/gnumake/4.1/default.nix +++ b/pkgs/development/tools/build-managers/gnumake/4.1/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation { ./no-tty-name.patch ]; + outputs = [ "out" "doc" ]; + meta = { homepage = http://www.gnu.org/software/make/; description = "A tool to control the generation of non-source files from sources"; diff --git a/pkgs/development/tools/build-managers/gradle/default.nix b/pkgs/development/tools/build-managers/gradle/default.nix index c2b24c69904f..96477e55d26a 100644 --- a/pkgs/development/tools/build-managers/gradle/default.nix +++ b/pkgs/development/tools/build-managers/gradle/default.nix @@ -4,6 +4,8 @@ rec { gradleGen = {name, src} : stdenv.mkDerivation rec { inherit name src; + buildPhase = ":"; + installPhase = '' mkdir -pv $out/lib/gradle/ cp -rv lib/ $out/lib/gradle/ @@ -15,7 +17,21 @@ rec { --add-flags "-classpath $gradle_launcher_jar org.gradle.launcher.GradleMain" ''; - phases = "unpackPhase installPhase"; + fixupPhase = if (!stdenv.isLinux) then ":" else + let arch = if stdenv.is64bit then "amd64" else "i386"; in '' + mkdir patching + pushd patching + jar xf $out/lib/gradle/lib/native-platform-linux-${arch}-0.10.jar + patchelf --set-rpath "${stdenv.cc.cc}/lib:${stdenv.cc.cc}/lib64" net/rubygrapefruit/platform/linux-${arch}/libnative-platform.so + jar cf native-platform-linux-${arch}-0.10.jar . + mv native-platform-linux-${arch}-0.10.jar $out/lib/gradle/lib/ + popd + + # The scanner doesn't pick up the runtime dependency in the jar. + # Manually add a reference where it will be found. + mkdir $out/nix-support + echo ${stdenv.cc.cc} > $out/nix-support/manual-runtime-dependencies + ''; buildInputs = [ unzip jdk makeWrapper ]; diff --git a/pkgs/development/tools/database/liquibase/default.nix b/pkgs/development/tools/database/liquibase/default.nix new file mode 100644 index 000000000000..7d89555085d7 --- /dev/null +++ b/pkgs/development/tools/database/liquibase/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, jre, makeWrapper }: + +stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "liquibase"; + version = "3.4.2"; + + src = fetchurl { + url = "https://github.com/liquibase/liquibase/releases/download/${pname}-parent-${version}/${name}-bin.tar.gz"; + sha256 = "1kvxqjz8jmqpmb1clhp2asxmgfk6ynqjir8fldc321v9a5wnqby5"; + }; + + buildInputs = [ jre makeWrapper ]; + + unpackPhase = '' + tar xfz ${src} + ''; + + installPhase = '' + mkdir -p $out/{bin,lib,sdk} + mv ./* $out/ + wrapProgram $out/liquibase --prefix PATH ":" ${jre}/bin --set LIQUIBASE_HOME $out; + ln -s $out/liquibase $out/bin/liquibase + ''; + + meta = with stdenv.lib; { + description = "Version Control for your database"; + homepage = "http://www.liquibase.org/"; + license = licenses.asl20; + maintainers = with maintainers; [ nequissimus ]; + }; +} diff --git a/pkgs/development/tools/documentation/doxygen/default.nix b/pkgs/development/tools/documentation/doxygen/default.nix index 0b16723866bf..7373d8584c23 100644 --- a/pkgs/development/tools/documentation/doxygen/default.nix +++ b/pkgs/development/tools/documentation/doxygen/default.nix @@ -3,14 +3,14 @@ stdenv.mkDerivation rec { name = "doxygen-1.8.11"; - + src = fetchurl { url = "ftp://ftp.stack.nl/pub/users/dimitri/${name}.src.tar.gz"; sha256 = "0ja02pm3fpfhc5dkry00kq8mn141cqvdqqpmms373ncbwi38pl35"; }; nativeBuildInputs = [ cmake ]; - + buildInputs = [ perl python flex bison ] ++ stdenv.lib.optional (qt4 != null) qt4 @@ -18,6 +18,7 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ]; cmakeFlags = + [ "-DICONV_INCLUDE_DIR=${libiconv}/include" ] ++ stdenv.lib.optional (qt4 != null) "-Dbuild_wizard=YES"; NIX_CFLAGS_COMPILE = diff --git a/pkgs/development/tools/documentation/gtk-doc/default.nix b/pkgs/development/tools/documentation/gtk-doc/default.nix index bb70b1ad3641..b080be846cd9 100644 --- a/pkgs/development/tools/documentation/gtk-doc/default.nix +++ b/pkgs/development/tools/documentation/gtk-doc/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { sha256 = "0hpxcij9xx9ny3gs9p0iz4r8zslw8wqymbyababiyl7603a6x90y"; }; + outputDocdev = "out"; + # maybe there is a better way to pass the needed dtd and xsl files # "-//OASIS//DTD DocBook XML V4.1.2//EN" and "http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl" preConfigure = '' diff --git a/pkgs/development/tools/electron/default.nix b/pkgs/development/tools/electron/default.nix index dd7dabf2bf28..aae4b413c3d9 100644 --- a/pkgs/development/tools/electron/default.nix +++ b/pkgs/development/tools/electron/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchurl, buildEnv, makeDesktopItem, makeWrapper, zlib, glib, alsaLib +{ stdenv, fetchurl, buildEnv, zlib, glib, alsaLib , dbus, gtk, atk, pango, freetype, fontconfig, libgnome_keyring3, gdk_pixbuf , cairo, cups, expat, libgpgerror, nspr, gconf, nss, xorg, libcap, unzip , systemd, libnotify +, version ? "0.36.2", sha256 ? "01d78j8dfrdygm1r141681b3bfz1f1xqg9vddz7j52z1mlfv9f1d", ... }: let atomEnv = buildEnv { @@ -16,15 +17,15 @@ let }; in stdenv.mkDerivation rec { name = "electron-${version}"; - version = "0.36.2"; + inherit version; src = fetchurl { url = "https://github.com/atom/electron/releases/download/v${version}/electron-v${version}-linux-x64.zip"; - sha256 = "01d78j8dfrdygm1r141681b3bfz1f1xqg9vddz7j52z1mlfv9f1d"; + inherit sha256; name = "${name}.zip"; }; - buildInputs = [ atomEnv makeWrapper unzip ]; + buildInputs = [ atomEnv unzip ]; phases = [ "installPhase" "fixupPhase" ]; @@ -35,8 +36,12 @@ in stdenv.mkDerivation rec { unzip -d $out/bin $src patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ $out/bin/electron - wrapProgram $out/bin/electron \ - --prefix "LD_LIBRARY_PATH" : "${atomEnv}/lib:${atomEnv}/lib64" + ''; + + postFixup = '' + patchelf \ + --set-rpath "${atomEnv}/lib:${atomEnv}/lib64:$out/bin:$(patchelf --print-rpath $out/bin/electron)" \ + $out/bin/electron ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix index 39ec59e849f2..ed38d573abf1 100644 --- a/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix +++ b/pkgs/development/tools/erlang/rebar3-nix-bootstrap/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { meta = { description = "Shim command to help bootstrap a rebar3 project on Nix"; license = stdenv.lib.licenses.asl20; - homepage = "https://github.com/erl-nix/rebar3-nix-bootstrap"; + homepage = "https://github.com/erlang-nix/rebar3-nix-bootstrap"; maintainers = with stdenv.lib.maintainers; [ ericbmerritt ]; }; } diff --git a/pkgs/development/tools/galen/default.nix b/pkgs/development/tools/galen/default.nix index 7ff283176e1d..3ee29f2267a5 100644 --- a/pkgs/development/tools/galen/default.nix +++ b/pkgs/development/tools/galen/default.nix @@ -2,14 +2,14 @@ stdenv.mkDerivation rec { pname = "galen"; - version = "2.2.3"; + version = "2.2.4"; name = "${pname}-${version}"; inherit jdk; src = fetchurl { url = "https://github.com/galenframework/galen/releases/download/galen-${version}/galen-bin-${version}.zip"; - sha256 = "13kvxbw68g82rv8bp9g4fkrrsd7nag1a4bspilqi2wnxc51c8mqq"; + sha256 = "0qx6pza6aw880ph76wbypcgy983pln8k4ad2indagb5qhiz4zw1d"; }; buildInputs = [ unzip ]; diff --git a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix index 87dc173dd878..724942c57c83 100644 --- a/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/cabal2nix.nix @@ -6,12 +6,12 @@ mkDerivation rec { pname = "cabal2nix"; - version = "20160308"; + version = "20160406"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; + sha256 = "02dn2zllanf3rl16ny17j80h7p6gcdqkhadh3ypkr38gd9w16pc6"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix index 5aa4370b26f9..870f3d40961e 100644 --- a/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix +++ b/pkgs/development/tools/haskell/cabal2nix/distribution-nixpkgs.nix @@ -11,8 +11,8 @@ mkDerivation rec { src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; - rev = "v20160308"; - sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; + rev = "v20160406"; + sha256 = "02dn2zllanf3rl16ny17j80h7p6gcdqkhadh3ypkr38gd9w16pc6"; }; postUnpack = "sourceRoot+=/${pname}"; libraryHaskellDepends = [ diff --git a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix index ce1d9303cdcd..461cf464f454 100644 --- a/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix +++ b/pkgs/development/tools/haskell/cabal2nix/hackage2nix.nix @@ -7,12 +7,12 @@ mkDerivation rec { pname = "hackage2nix"; - version = "20160308"; + version = "20160406"; src = fetchFromGitHub { owner = "nixos"; repo = "cabal2nix"; rev = "v${version}"; - sha256 = "02lj3x0rgpxvaimwbbjjgwm4ka0wkk4x5h35jjygz6bkr5lv3m52"; + sha256 = "02dn2zllanf3rl16ny17j80h7p6gcdqkhadh3ypkr38gd9w16pc6"; }; postUnpack = "sourceRoot+=/${pname}"; isLibrary = false; diff --git a/pkgs/development/tools/misc/autogen/default.nix b/pkgs/development/tools/misc/autogen/default.nix index bba50b320892..d2ddcabc0b1e 100644 --- a/pkgs/development/tools/misc/autogen/default.nix +++ b/pkgs/development/tools/misc/autogen/default.nix @@ -9,6 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0sfmmy19k9z0j3f738fyk6ljf6b66410cvd5zzyplxi2683j10qs"; }; + outputs = [ "dev" "bin" "lib" "out" "man" "info" ]; + nativeBuildInputs = [ which pkgconfig perl ]; buildInputs = [ guile libxml2 ]; @@ -20,6 +22,17 @@ stdenv.mkDerivation rec { substituteInPlace pkg/libopts/mklibsrc.sh --replace /tmp $TMPDIR ''; + postInstall = '' + mkdir -p $dev/bin + mv $bin/bin/autoopts-config $dev/bin + + for f in $lib/lib/autogen/tpl-config.tlib $out/share/autogen/tpl-config.tlib; do + sed -e "s|$dev/include|/no-such-autogen-include-path|" -i $f + sed -e "s|$bin/bin|/no-such-autogen-bin-path|" -i $f + sed -e "s|$lib/lib|/no-such-autogen-lib-path|" -i $f + done + ''; + #doCheck = true; # 2 tests fail because of missing /dev/tty meta = with stdenv.lib; { diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix index 9bcb87dd789e..80b5643aad14 100644 --- a/pkgs/development/tools/misc/binutils/default.nix +++ b/pkgs/development/tools/misc/binutils/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { ./fix-update-symbol-version.patch ]; - outputs = [ "out" "info" ]; + outputs = (optional (cross == null) "dev") ++ [ "out" "info" ]; nativeBuildInputs = [ bison ]; buildInputs = [ zlib ]; @@ -75,6 +75,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postFixup = optionalString (cross == null) "ln -s $out/bin $dev/bin"; # tools needed for development + meta = with stdenv.lib; { description = "Tools for manipulating binaries (linker, assembler, etc.)"; longDescription = '' diff --git a/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch b/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch new file mode 100644 index 000000000000..bb0785fe192e --- /dev/null +++ b/pkgs/development/tools/misc/binutils/pt-pax-flags-20121023.patch @@ -0,0 +1,1786 @@ +--- binutils-2.23/bfd/elf-bfd.h ++++ binutils-2.23/bfd/elf-bfd.h +@@ -1577,6 +1577,9 @@ struct elf_obj_tdata + /* Segment flags for the PT_GNU_STACK segment. */ + unsigned int stack_flags; + ++ /* Segment flags for the PT_PAX_FLAGS segment. */ ++ unsigned int pax_flags; ++ + /* Symbol version definitions in external objects. */ + Elf_Internal_Verdef *verdef; + +--- binutils-2.23/bfd/elf.c ++++ binutils-2.23/bfd/elf.c +@@ -1158,6 +1158,7 @@ get_segment_type (unsigned int p_type) + case PT_GNU_EH_FRAME: pt = "EH_FRAME"; break; + case PT_GNU_STACK: pt = "STACK"; break; + case PT_GNU_RELRO: pt = "RELRO"; break; ++ case PT_PAX_FLAGS: pt = "PAX_FLAGS"; break; + default: pt = NULL; break; + } + return pt; +@@ -2477,6 +2478,9 @@ bfd_section_from_phdr (bfd *abfd, Elf_Internal_Phdr *hdr, int hdr_index) + case PT_GNU_RELRO: + return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "relro"); + ++ case PT_PAX_FLAGS: ++ return _bfd_elf_make_section_from_phdr (abfd, hdr, hdr_index, "pax_flags"); ++ + default: + /* Check for any processor-specific program segment types. */ + bed = get_elf_backend_data (abfd); +@@ -3551,6 +3555,11 @@ get_program_header_size (bfd *abfd, struct bfd_link_info *info) + ++segs; + } + ++ { ++ /* We need a PT_PAX_FLAGS segment. */ ++ ++segs; ++ } ++ + for (s = abfd->sections; s != NULL; s = s->next) + { + if ((s->flags & SEC_LOAD) != 0 +@@ -4153,6 +4162,20 @@ _bfd_elf_map_sections_to_segments (bfd *abfd, struct bfd_link_info *info) + } + } + ++ { ++ amt = sizeof (struct elf_segment_map); ++ m = bfd_zalloc (abfd, amt); ++ if (m == NULL) ++ goto error_return; ++ m->next = NULL; ++ m->p_type = PT_PAX_FLAGS; ++ m->p_flags = elf_tdata (abfd)->pax_flags; ++ m->p_flags_valid = 1; ++ ++ *pm = m; ++ pm = &m->next; ++ } ++ + free (sections); + elf_tdata (abfd)->segment_map = mfirst; + } +@@ -5417,7 +5440,8 @@ rewrite_elf_program_header (bfd *ibfd, bfd *obfd) + 6. PT_TLS segment includes only SHF_TLS sections. + 7. SHF_TLS sections are only in PT_TLS or PT_LOAD segments. + 8. PT_DYNAMIC should not contain empty sections at the beginning +- (with the possible exception of .dynamic). */ ++ (with the possible exception of .dynamic). ++ 9. PT_PAX_FLAGS segments do not include any sections. */ + #define IS_SECTION_IN_INPUT_SEGMENT(section, segment, bed) \ + ((((segment->p_paddr \ + ? IS_CONTAINED_BY_LMA (section, segment, segment->p_paddr) \ +@@ -5425,6 +5449,7 @@ rewrite_elf_program_header (bfd *ibfd, bfd *obfd) + && (section->flags & SEC_ALLOC) != 0) \ + || IS_NOTE (segment, section)) \ + && segment->p_type != PT_GNU_STACK \ ++ && segment->p_type != PT_PAX_FLAGS \ + && (segment->p_type != PT_TLS \ + || (section->flags & SEC_THREAD_LOCAL)) \ + && (segment->p_type == PT_LOAD \ +--- binutils-2.23/bfd/elflink.c ++++ binutils-2.23/bfd/elflink.c +@@ -5545,16 +5545,30 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, + return TRUE; + + bed = get_elf_backend_data (output_bfd); ++ ++ elf_tdata (output_bfd)->pax_flags = PF_NORANDEXEC; ++ if (info->execheap) ++ elf_tdata (output_bfd)->pax_flags |= PF_NOMPROTECT; ++ else if (info->noexecheap) ++ elf_tdata (output_bfd)->pax_flags |= PF_MPROTECT; ++ + if (info->execstack) +- elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X; ++ { ++ elf_tdata (output_bfd)->stack_flags = PF_R | PF_W | PF_X; ++ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; ++ } + else if (info->noexecstack) +- elf_tdata (output_bfd)->stack_flags = PF_R | PF_W; ++ { ++ elf_tdata (output_bfd)->stack_flags = PF_R | PF_W; ++ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; ++ } + else + { + bfd *inputobj; + asection *notesec = NULL; + int exec = 0; + ++ elf_tdata (output_bfd)->pax_flags |= PF_NOEMUTRAMP; + for (inputobj = info->input_bfds; + inputobj; + inputobj = inputobj->link_next) +@@ -5567,7 +5581,11 @@ bfd_elf_size_dynamic_sections (bfd *output_bfd, + if (s) + { + if (s->flags & SEC_CODE) +- exec = PF_X; ++ { ++ elf_tdata (output_bfd)->pax_flags &= ~PF_NOEMUTRAMP; ++ elf_tdata (output_bfd)->pax_flags |= PF_EMUTRAMP; ++ exec = PF_X; ++ } + notesec = s; + } + else if (bed->default_execstack) +--- binutils-2.23/binutils/readelf.c ++++ binutils-2.23/binutils/readelf.c +@@ -2740,6 +2740,7 @@ get_segment_type (unsigned long p_type) + return "GNU_EH_FRAME"; + case PT_GNU_STACK: return "GNU_STACK"; + case PT_GNU_RELRO: return "GNU_RELRO"; ++ case PT_PAX_FLAGS: return "PAX_FLAGS"; + + default: + if ((p_type >= PT_LOPROC) && (p_type <= PT_HIPROC)) +--- binutils-2.23/include/bfdlink.h ++++ binutils-2.23/include/bfdlink.h +@@ -322,6 +322,14 @@ struct bfd_link_info + /* TRUE if PT_GNU_RELRO segment should be created. */ + unsigned int relro: 1; + ++ /* TRUE if PT_PAX_FLAGS segment should be created with PF_NOMPROTECT ++ flags. */ ++ unsigned int execheap: 1; ++ ++ /* TRUE if PT_PAX_FLAGS segment should be created with PF_MPROTECT ++ flags. */ ++ unsigned int noexecheap: 1; ++ + /* TRUE if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment + should be created. */ + unsigned int eh_frame_hdr: 1; +--- binutils-2.23/include/elf/common.h ++++ binutils-2.23/include/elf/common.h +@@ -429,6 +429,7 @@ + #define PT_SUNW_EH_FRAME PT_GNU_EH_FRAME /* Solaris uses the same value */ + #define PT_GNU_STACK (PT_LOOS + 0x474e551) /* Stack flags */ + #define PT_GNU_RELRO (PT_LOOS + 0x474e552) /* Read-only after relocation */ ++#define PT_PAX_FLAGS (PT_LOOS + 0x5041580) /* PaX flags */ + + /* Program segment permissions, in program header p_flags field. */ + +@@ -439,6 +440,21 @@ + #define PF_MASKOS 0x0FF00000 /* New value, Oct 4, 1999 Draft */ + #define PF_MASKPROC 0xF0000000 /* Processor-specific reserved bits */ + ++/* Flags to control PaX behavior. */ ++ ++#define PF_PAGEEXEC (1 << 4) /* Enable PAGEEXEC */ ++#define PF_NOPAGEEXEC (1 << 5) /* Disable PAGEEXEC */ ++#define PF_SEGMEXEC (1 << 6) /* Enable SEGMEXEC */ ++#define PF_NOSEGMEXEC (1 << 7) /* Disable SEGMEXEC */ ++#define PF_MPROTECT (1 << 8) /* Enable MPROTECT */ ++#define PF_NOMPROTECT (1 << 9) /* Disable MPROTECT */ ++#define PF_RANDEXEC (1 << 10) /* Enable RANDEXEC */ ++#define PF_NORANDEXEC (1 << 11) /* Disable RANDEXEC */ ++#define PF_EMUTRAMP (1 << 12) /* Enable EMUTRAMP */ ++#define PF_NOEMUTRAMP (1 << 13) /* Disable EMUTRAMP */ ++#define PF_RANDMMAP (1 << 14) /* Enable RANDMMAP */ ++#define PF_NORANDMMAP (1 << 15) /* Disable RANDMMAP */ ++ + /* Values for section header, sh_type field. */ + + #define SHT_NULL 0 /* Section header table entry unused */ +--- binutils-2.23/ld/emultempl/elf32.em ++++ binutils-2.23/ld/emultempl/elf32.em +@@ -2285,6 +2285,16 @@ fragment <: ++[a-f0-9]+ <.text>: + [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; + [ ]*[a-f0-9]+: c0 c0 04 00 48 00 addl r12=24,r1 + [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; +--- binutils-2.23/ld/testsuite/ld-ia64/merge2.d ++++ binutils-2.23/ld/testsuite/ld-ia64/merge2.d +@@ -4,7 +4,7 @@ + #objdump: -d + + #... +-0+1e0 <.text>: ++[a-f0-9]+ <.text>: + [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; + [ ]*[a-f0-9]+: c0 c0 04 00 48 00 addl r12=24,r1 + [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; +--- binutils-2.23/ld/testsuite/ld-ia64/merge3.d ++++ binutils-2.23/ld/testsuite/ld-ia64/merge3.d +@@ -4,7 +4,7 @@ + #objdump: -d + + #... +-0+210 <.text>: ++[a-f0-9]+ <.text>: + [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; + [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 + [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; +--- binutils-2.23/ld/testsuite/ld-ia64/merge4.d ++++ binutils-2.23/ld/testsuite/ld-ia64/merge4.d +@@ -4,7 +4,7 @@ + #objdump: -d + + #... +-0+240 <.text>: ++[a-f0-9]+ <.text>: + [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; + [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 + [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; +--- binutils-2.23/ld/testsuite/ld-ia64/merge5.d ++++ binutils-2.23/ld/testsuite/ld-ia64/merge5.d +@@ -4,7 +4,7 @@ + #objdump: -d + + #... +-0+270 <.text>: ++[a-f0-9]+ <.text>: + [ ]*[a-f0-9]+: 0b 60 80 02 00 24 \[MMI\] addl r12=32,r1;; + [ ]*[a-f0-9]+: c0 40 05 00 48 00 addl r12=40,r1 + [ ]*[a-f0-9]+: 00 00 04 00 nop.i 0x0;; +--- binutils-2.23/ld/testsuite/ld-ia64/tlsbin.rd ++++ binutils-2.23/ld/testsuite/ld-ia64/tlsbin.rd +@@ -36,13 +36,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align +- +PHDR +0x0+40 0x40+40 0x40+40 0x0+188 0x0+188 R E 0x8 +- +INTERP +0x0+1c8 0x40+1c8 0x40+1c8 0x[0-9a-f]+ 0x[0-9a-f]+ R +0x1 ++ +PHDR +0x0+40 0x40+40 0x40+40 (0x[0-9a-f]+) \1 R E 0x8 ++ +INTERP +0x0+([0-9a-f]+) (0x40+\1) \2 0x[0-9a-f]+ 0x[0-9a-f]+ R +0x1 + .*Requesting program interpreter.* + +LOAD +0x0+ 0x40+ 0x40+ 0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ R E 0x10000 + +LOAD +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+0[0-9a-f]+ 0x0+0[0-9a-f]+ RW +0x10000 + +DYNAMIC +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+150 0x0+150 RW +0x8 + +TLS +0x0+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x60+1[0-9a-f]+ 0x0+60 0x0+a0 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + +IA_64_UNWIND .* R +0x8 + #... + +--- binutils-2.23/ld/testsuite/ld-ia64/tlspic.rd ++++ binutils-2.23/ld/testsuite/ld-ia64/tlspic.rd +@@ -40,6 +40,7 @@ Program Headers: + +LOAD +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+0[0-9a-f]+ 0x0+0[0-9a-f]+ RW +0x10000 + +DYNAMIC +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+140 0x0+140 RW +0x8 + +TLS +0x0+1[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+11[0-9a-f]+ 0x0+60 0x0+80 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + +IA_64_UNWIND +0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+1[0-9a-f]+ 0x0+18 0x0+18 R +0x8 + #... + +--- binutils-2.23/ld/testsuite/ld-mips-elf/multi-got-no-shared.d ++++ binutils-2.23/ld/testsuite/ld-mips-elf/multi-got-no-shared.d +@@ -8,9 +8,9 @@ + .*: +file format.* + + Disassembly of section \.text: +-004000b0 <[^>]*> 3c1c0043 lui gp,0x43 +-004000b4 <[^>]*> 279c9ff0 addiu gp,gp,-24592 +-004000b8 <[^>]*> afbc0008 sw gp,8\(sp\) ++004000d0 <[^>]*> 3c1c0043 lui gp,0x43 ++004000d4 <[^>]*> 279c9ff0 addiu gp,gp,-24592 ++004000d8 <[^>]*> afbc0008 sw gp,8\(sp\) + #... + 00408d60 <[^>]*> 3c1c0043 lui gp,0x43 + 00408d64 <[^>]*> 279c2c98 addiu gp,gp,11416 +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3a.sd +@@ -1,7 +1,7 @@ + + Elf file type is DYN \(Shared object file\) + Entry point .* +-There are 5 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -9,6 +9,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+00000 * 0x0+00000 [^ ]+ * [^ ]+ * R E * 0x.* + * LOAD * [^ ]+ * 0x0+10000 * 0x0+10000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+00400 * 0x0+00400 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -18,3 +19,4 @@ Program Headers: + *0*2 * \.data \.got * + *0*3 * \.dynamic * + *0*4 * ++ *0*5 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-3b.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 8 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -13,6 +13,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -25,3 +26,4 @@ Program Headers: + *0*5 *\.got \.data * + *0*6 *\.dynamic * + *0*7 * ++ *0*8 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-4b.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 8 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -13,6 +13,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -25,3 +26,4 @@ Program Headers: + *0*5 * \.got \.data \.bss * + *0*6 * \.dynamic * + *0*7 * ++ *0*8 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-5b.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 8 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -13,6 +13,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -25,3 +26,4 @@ Program Headers: + *0*5 * \.got \.data \.bss * + *0*6 * \.dynamic * + *0*7 * ++ *0*8 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n32.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 8 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -13,6 +13,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -25,3 +26,4 @@ Program Headers: + *0*5 * \.got \.data \.bss * + *0*6 * \.dynamic * + *0*7 * ++ *0*8 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-n64.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 7 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -12,6 +12,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -23,3 +24,4 @@ Program Headers: + *0*4 * \.got \.data \.bss * + *0*5 * \.dynamic * + *0*6 * ++ *0*7 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd ++++ binutils-2.23/ld/testsuite/ld-mips-elf/pic-and-nonpic-6-o32.sd +@@ -1,7 +1,7 @@ + + Elf file type is EXEC \(Executable file\) + Entry point 0x44000 +-There are 8 program headers, starting at offset .* ++There are [0-9] program headers, starting at offset .* + + Program Headers: + * Type * Offset * VirtAddr * PhysAddr * FileSiz * MemSiz * Flg * Align +@@ -13,6 +13,7 @@ Program Headers: + * LOAD * [^ ]+ * 0x0+80000 * 0x0+80000 [^ ]+ * [^ ]+ * RW * 0x.* + * LOAD * [^ ]+ * 0x0+a0000 * 0x0+a0000 [^ ]+ * [^ ]+ * RW * 0x.* + * DYNAMIC * [^ ]+ * 0x0+42000 * 0x0+42000 .* ++ * PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + * NULL * .* + + *Section to Segment mapping: +@@ -25,3 +26,4 @@ Program Headers: + *0*5 * \.got \.data \.bss * + *0*6 * \.dynamic * + *0*7 * ++ *0*8 * +--- binutils-2.23/ld/testsuite/ld-mips-elf/tlsbin-o32.d ++++ binutils-2.23/ld/testsuite/ld-mips-elf/tlsbin-o32.d +@@ -2,42 +2,42 @@ + + Disassembly of section .text: + +-004000d0 <__start>: +- 4000d0: 3c1c0fc0 lui gp,0xfc0 +- 4000d4: 279c7f30 addiu gp,gp,32560 +- 4000d8: 0399e021 addu gp,gp,t9 +- 4000dc: 27bdfff0 addiu sp,sp,-16 +- 4000e0: afbe0008 sw s8,8\(sp\) +- 4000e4: 03a0f021 move s8,sp +- 4000e8: afbc0000 sw gp,0\(sp\) +- 4000ec: 8f998018 lw t9,-32744\(gp\) +- 4000f0: 27848028 addiu a0,gp,-32728 +- 4000f4: 0320f809 jalr t9 +- 4000f8: 00000000 nop +- 4000fc: 8fdc0000 lw gp,0\(s8\) +- 400100: 00000000 nop +- 400104: 8f998018 lw t9,-32744\(gp\) +- 400108: 27848020 addiu a0,gp,-32736 +- 40010c: 0320f809 jalr t9 +- 400110: 00000000 nop +- 400114: 8fdc0000 lw gp,0\(s8\) +- 400118: 00401021 move v0,v0 +- 40011c: 3c030000 lui v1,0x0 +- 400120: 24638000 addiu v1,v1,-32768 +- 400124: 00621821 addu v1,v1,v0 +- 400128: 7c02283b rdhwr v0,\$5 +- 40012c: 8f83801c lw v1,-32740\(gp\) +- 400130: 00000000 nop +- 400134: 00621821 addu v1,v1,v0 +- 400138: 7c02283b rdhwr v0,\$5 +- 40013c: 3c030000 lui v1,0x0 +- 400140: 24639004 addiu v1,v1,-28668 +- 400144: 00621821 addu v1,v1,v0 +- 400148: 03c0e821 move sp,s8 +- 40014c: 8fbe0008 lw s8,8\(sp\) +- 400150: 03e00008 jr ra +- 400154: 27bd0010 addiu sp,sp,16 ++00400[0-9a-f]{3} <__start>: ++ 400[0-9a-f]{3}: 3c1c0fc0 lui gp,0xfc0 ++ 400[0-9a-f]{3}: 279c7f30 addiu gp,gp,32560 ++ 400[0-9a-f]{3}: 0399e021 addu gp,gp,t9 ++ 400[0-9a-f]{3}: 27bdfff0 addiu sp,sp,-16 ++ 400[0-9a-f]{3}: afbe0008 sw s8,8\(sp\) ++ 400[0-9a-f]{3}: 03a0f021 move s8,sp ++ 400[0-9a-f]{3}: afbc0000 sw gp,0\(sp\) ++ 400[0-9a-f]{3}: 8f998018 lw t9,-32744\(gp\) ++ 400[0-9a-f]{3}: 27848028 addiu a0,gp,-32728 ++ 400[0-9a-f]{3}: 0320f809 jalr t9 ++ 400[0-9a-f]{3}: 00000000 nop ++ 400[0-9a-f]{3}: 8fdc0000 lw gp,0\(s8\) ++ 400[0-9a-f]{3}: 00000000 nop ++ 400[0-9a-f]{3}: 8f998018 lw t9,-32744\(gp\) ++ 400[0-9a-f]{3}: 27848020 addiu a0,gp,-32736 ++ 400[0-9a-f]{3}: 0320f809 jalr t9 ++ 400[0-9a-f]{3}: 00000000 nop ++ 400[0-9a-f]{3}: 8fdc0000 lw gp,0\(s8\) ++ 400[0-9a-f]{3}: 00401021 move v0,v0 ++ 400[0-9a-f]{3}: 3c030000 lui v1,0x0 ++ 400[0-9a-f]{3}: 24638000 addiu v1,v1,-32768 ++ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 ++ 400[0-9a-f]{3}: 7c02283b rdhwr v0,\$5 ++ 400[0-9a-f]{3}: 8f83801c lw v1,-32740\(gp\) ++ 400[0-9a-f]{3}: 00000000 nop ++ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 ++ 400[0-9a-f]{3}: 7c02283b rdhwr v0,\$5 ++ 400[0-9a-f]{3}: 3c030000 lui v1,0x0 ++ 400[0-9a-f]{3}: 24639004 addiu v1,v1,-28668 ++ 400[0-9a-f]{3}: 00621821 addu v1,v1,v0 ++ 400[0-9a-f]{3}: 03c0e821 move sp,s8 ++ 400[0-9a-f]{3}: 8fbe0008 lw s8,8\(sp\) ++ 400[0-9a-f]{3}: 03e00008 jr ra ++ 400[0-9a-f]{3}: 27bd0010 addiu sp,sp,16 + +-00400158 <__tls_get_addr>: +- 400158: 03e00008 jr ra +- 40015c: 00000000 nop ++00400[0-9a-f]{3} <__tls_get_addr>: ++ 400[0-9a-f]{3}: 03e00008 jr ra ++ 400[0-9a-f]{3}: 00000000 nop +--- binutils-2.23/ld/testsuite/ld-powerpc/tls.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tls.d +@@ -9,45 +9,45 @@ + + Disassembly of section \.text: + +-0+100000e8 <_start>: +- 100000e8: 3c 6d 00 00 addis r3,r13,0 +- 100000ec: 60 00 00 00 nop +- 100000f0: 38 63 90 78 addi r3,r3,-28552 +- 100000f4: 3c 6d 00 00 addis r3,r13,0 +- 100000f8: 60 00 00 00 nop +- 100000fc: 38 63 10 00 addi r3,r3,4096 +- 10000100: 3c 6d 00 00 addis r3,r13,0 +- 10000104: 60 00 00 00 nop +- 10000108: 38 63 90 40 addi r3,r3,-28608 +- 1000010c: 3c 6d 00 00 addis r3,r13,0 +- 10000110: 60 00 00 00 nop +- 10000114: 38 63 10 00 addi r3,r3,4096 +- 10000118: 39 23 80 48 addi r9,r3,-32696 +- 1000011c: 3d 23 00 00 addis r9,r3,0 +- 10000120: 81 49 80 50 lwz r10,-32688\(r9\) +- 10000124: e9 22 80 10 ld r9,-32752\(r2\) +- 10000128: 7d 49 18 2a ldx r10,r9,r3 +- 1000012c: 3d 2d 00 00 addis r9,r13,0 +- 10000130: a1 49 90 60 lhz r10,-28576\(r9\) +- 10000134: 89 4d 90 68 lbz r10,-28568\(r13\) +- 10000138: 3d 2d 00 00 addis r9,r13,0 +- 1000013c: 99 49 90 70 stb r10,-28560\(r9\) +- 10000140: 3c 6d 00 00 addis r3,r13,0 +- 10000144: 60 00 00 00 nop +- 10000148: 38 63 90 00 addi r3,r3,-28672 +- 1000014c: 3c 6d 00 00 addis r3,r13,0 +- 10000150: 60 00 00 00 nop +- 10000154: 38 63 10 00 addi r3,r3,4096 +- 10000158: f9 43 80 08 std r10,-32760\(r3\) +- 1000015c: 3d 23 00 00 addis r9,r3,0 +- 10000160: 91 49 80 10 stw r10,-32752\(r9\) +- 10000164: e9 22 80 08 ld r9,-32760\(r2\) +- 10000168: 7d 49 19 2a stdx r10,r9,r3 +- 1000016c: 3d 2d 00 00 addis r9,r13,0 +- 10000170: b1 49 90 60 sth r10,-28576\(r9\) +- 10000174: e9 4d 90 2a lwa r10,-28632\(r13\) +- 10000178: 3d 2d 00 00 addis r9,r13,0 +- 1000017c: a9 49 90 30 lha r10,-28624\(r9\) ++0+10000[0-9a-f]{3} <_start>: ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 78 addi r3,r3,-28552 ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 40 addi r3,r3,-28608 ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 10000[0-9a-f]{3}: 39 23 80 48 addi r9,r3,-32696 ++ 10000[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 ++ 10000[0-9a-f]{3}: 81 49 80 50 lwz r10,-32688\(r9\) ++ 10000[0-9a-f]{3}: e9 22 80 10 ld r9,-32752\(r2\) ++ 10000[0-9a-f]{3}: 7d 49 18 2a ldx r10,r9,r3 ++ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 ++ 10000[0-9a-f]{3}: a1 49 90 60 lhz r10,-28576\(r9\) ++ 10000[0-9a-f]{3}: 89 4d 90 68 lbz r10,-28568\(r13\) ++ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 ++ 10000[0-9a-f]{3}: 99 49 90 70 stb r10,-28560\(r9\) ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 10000[0-9a-f]{3}: f9 43 80 08 std r10,-32760\(r3\) ++ 10000[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 ++ 10000[0-9a-f]{3}: 91 49 80 10 stw r10,-32752\(r9\) ++ 10000[0-9a-f]{3}: e9 22 80 08 ld r9,-32760\(r2\) ++ 10000[0-9a-f]{3}: 7d 49 19 2a stdx r10,r9,r3 ++ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 ++ 10000[0-9a-f]{3}: b1 49 90 60 sth r10,-28576\(r9\) ++ 10000[0-9a-f]{3}: e9 4d 90 2a lwa r10,-28632\(r13\) ++ 10000[0-9a-f]{3}: 3d 2d 00 00 addis r9,r13,0 ++ 10000[0-9a-f]{3}: a9 49 90 30 lha r10,-28624\(r9\) + +-0+10000180 <\.__tls_get_addr>: +- 10000180: 4e 80 00 20 blr ++0+10000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr +--- binutils-2.23/ld/testsuite/ld-powerpc/tls.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tls.g +@@ -8,5 +8,5 @@ + .*: +file format elf64-powerpc + + Contents of section \.got: +- 100101e0 00000000 100181e0 ffffffff ffff8018 .* +- 100101f0 ffffffff ffff8058 .* ++ 10010([0-9a-f]{3}) 00000000 10018\1 ffffffff ffff8018 .* ++ 10010[0-9a-f]{3} ffffffff ffff8058 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tls32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.d +@@ -9,42 +9,42 @@ + + Disassembly of section \.text: + +-0+1800094 <_start>: +- 1800094: 3c 62 00 00 addis r3,r2,0 +- 1800098: 38 63 90 3c addi r3,r3,-28612 +- 180009c: 3c 62 00 00 addis r3,r2,0 +- 18000a0: 38 63 10 00 addi r3,r3,4096 +- 18000a4: 3c 62 00 00 addis r3,r2,0 +- 18000a8: 38 63 90 20 addi r3,r3,-28640 +- 18000ac: 3c 62 00 00 addis r3,r2,0 +- 18000b0: 38 63 10 00 addi r3,r3,4096 +- 18000b4: 39 23 80 24 addi r9,r3,-32732 +- 18000b8: 3d 23 00 00 addis r9,r3,0 +- 18000bc: 81 49 80 28 lwz r10,-32728\(r9\) +- 18000c0: 3d 22 00 00 addis r9,r2,0 +- 18000c4: a1 49 90 30 lhz r10,-28624\(r9\) +- 18000c8: 89 42 90 34 lbz r10,-28620\(r2\) +- 18000cc: 3d 22 00 00 addis r9,r2,0 +- 18000d0: 99 49 90 38 stb r10,-28616\(r9\) +- 18000d4: 3c 62 00 00 addis r3,r2,0 +- 18000d8: 38 63 90 00 addi r3,r3,-28672 +- 18000dc: 3c 62 00 00 addis r3,r2,0 +- 18000e0: 38 63 10 00 addi r3,r3,4096 +- 18000e4: 91 43 80 04 stw r10,-32764\(r3\) +- 18000e8: 3d 23 00 00 addis r9,r3,0 +- 18000ec: 91 49 80 08 stw r10,-32760\(r9\) +- 18000f0: 3d 22 00 00 addis r9,r2,0 +- 18000f4: b1 49 90 30 sth r10,-28624\(r9\) +- 18000f8: a1 42 90 14 lhz r10,-28652\(r2\) +- 18000fc: 3d 22 00 00 addis r9,r2,0 +- 1800100: a9 49 90 18 lha r10,-28648\(r9\) ++0+1800[0-9a-f]{3} <_start>: ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 90 3c addi r3,r3,-28612 ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 90 20 addi r3,r3,-28640 ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 1800[0-9a-f]{3}: 39 23 80 24 addi r9,r3,-32732 ++ 1800[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 ++ 1800[0-9a-f]{3}: 81 49 80 28 lwz r10,-32728\(r9\) ++ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 ++ 1800[0-9a-f]{3}: a1 49 90 30 lhz r10,-28624\(r9\) ++ 1800[0-9a-f]{3}: 89 42 90 34 lbz r10,-28620\(r2\) ++ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 ++ 1800[0-9a-f]{3}: 99 49 90 38 stb r10,-28616\(r9\) ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 ++ 1800[0-9a-f]{3}: 3c 62 00 00 addis r3,r2,0 ++ 1800[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 1800[0-9a-f]{3}: 91 43 80 04 stw r10,-32764\(r3\) ++ 1800[0-9a-f]{3}: 3d 23 00 00 addis r9,r3,0 ++ 1800[0-9a-f]{3}: 91 49 80 08 stw r10,-32760\(r9\) ++ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 ++ 1800[0-9a-f]{3}: b1 49 90 30 sth r10,-28624\(r9\) ++ 1800[0-9a-f]{3}: a1 42 90 14 lhz r10,-28652\(r2\) ++ 1800[0-9a-f]{3}: 3d 22 00 00 addis r9,r2,0 ++ 1800[0-9a-f]{3}: a9 49 90 18 lha r10,-28648\(r9\) + +-0+1800104 <__tls_get_addr>: +- 1800104: 4e 80 00 20 blr ++0+1800[0-9a-f]{3} <__tls_get_addr>: ++ 1800[0-9a-f]{3}: 4e 80 00 20 blr + Disassembly of section \.got: + +-0+1810128 <_GLOBAL_OFFSET_TABLE_-0x4>: +- 1810128: 4e 80 00 21 blrl ++0+1810[0-9a-f]{3} <_GLOBAL_OFFSET_TABLE_-0x4>: ++ 1810[0-9a-f]{3}: 4e 80 00 21 blrl + +-0+181012c <_GLOBAL_OFFSET_TABLE_>: ++0+1810[0-9a-f]{3} <_GLOBAL_OFFSET_TABLE_>: + \.\.\. +--- binutils-2.23/ld/testsuite/ld-powerpc/tls32.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.g +@@ -8,4 +8,4 @@ + .*: +file format elf32-powerpc + + Contents of section \.got: +- 1810128 4e800021 00000000 00000000 00000000 .* ++ 18101[0-9a-f]{2} 4e800021 00000000 00000000 00000000 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tls32.t ++++ binutils-2.23/ld/testsuite/ld-powerpc/tls32.t +@@ -8,5 +8,5 @@ + .*: +file format elf32-powerpc + + Contents of section \.tdata: +- 1810108 12345678 23456789 3456789a 456789ab .* +- 1810118 56789abc 6789abcd 789abcde 00c0ffee .* ++ 18101[0-9a-f]{2} 12345678 23456789 3456789a 456789ab .* ++ 18101[0-9a-f]{2} 56789abc 6789abcd 789abcde 00c0ffee .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.d +@@ -44,4 +44,4 @@ Disassembly of section \.got: + .*: 4e 80 00 21 blrl + + .* <_GLOBAL_OFFSET_TABLE_>: +-.*: 01 81 02 b8 00 00 00 00 00 00 00 00 .* ++.*: 01 81 02 [bd]8 00 00 00 00 00 00 00 00 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.g +@@ -8,4 +8,4 @@ + + Contents of section \.got: + .* 00000000 00000000 00000000 4e800021 .* +-.* 018102b8 00000000 00000000 .* ++.* 018102[bd]8 00000000 00000000 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.r ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsexe32.r +@@ -33,13 +33,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align +- +PHDR +0x000034 0x01800034 0x01800034 0x000c0 0x000c0 R E 0x4 +- +INTERP +0x0000f4 0x018000f4 0x018000f4 0x00011 0x00011 R +0x1 ++ +PHDR +0x000034 0x01800034 0x01800034 (0x000[0-9a-f]{2}) \1 R E 0x4 ++ +INTERP +0x000([0-9a-f]{3}) 0x01800\1 0x01800\1 0x00011 0x00011 R +0x1 + +\[Requesting program interpreter: .*\] + +LOAD .* R E 0x10000 + +LOAD .* RWE 0x10000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0001c 0x00038 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections\.\.\. +@@ -49,6 +50,7 @@ Program Headers: + +03 +\.tdata \.dynamic \.got \.plt + +04 +\.dynamic + +05 +\.tdata \.tbss ++ +06 + + + Relocation section '\.rela\.dyn' at offset .* contains 2 entries: + Offset +Info +Type +Sym\. Value +Symbol's Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsmark.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsmark.d +@@ -9,29 +9,29 @@ + + Disassembly of section \.text: + +-0+100000e8 <_start>: +- 100000e8: 48 00 00 18 b 10000100 <_start\+0x18> +- 100000ec: 60 00 00 00 nop +- 100000f0: 38 63 90 00 addi r3,r3,-28672 +- 100000f4: e8 83 00 00 ld r4,0\(r3\) +- 100000f8: 3c 6d 00 00 addis r3,r13,0 +- 100000fc: 48 00 00 0c b 10000108 <_start\+0x20> +- 10000100: 3c 6d 00 00 addis r3,r13,0 +- 10000104: 4b ff ff e8 b 100000ec <_start\+0x4> +- 10000108: 60 00 00 00 nop +- 1000010c: 38 63 10 00 addi r3,r3,4096 +- 10000110: e8 83 80 00 ld r4,-32768\(r3\) +- 10000114: 3c 6d 00 00 addis r3,r13,0 +- 10000118: 48 00 00 0c b 10000124 <_start\+0x3c> +- 1000011c: 3c 6d 00 00 addis r3,r13,0 +- 10000120: 48 00 00 14 b 10000134 <_start\+0x4c> +- 10000124: 60 00 00 00 nop +- 10000128: 38 63 90 04 addi r3,r3,-28668 +- 1000012c: e8 a3 00 00 ld r5,0\(r3\) +- 10000130: 4b ff ff ec b 1000011c <_start\+0x34> +- 10000134: 60 00 00 00 nop +- 10000138: 38 63 10 00 addi r3,r3,4096 +- 1000013c: e8 a3 80 04 ld r5,-32764\(r3\) ++0+10000[0-9a-f]{3} <_start>: ++ 10000[0-9a-f]{3}: 48 00 00 18 b 10000[0-9a-f]{3} <_start\+0x18> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 00 addi r3,r3,-28672 ++ 10000[0-9a-f]{3}: e8 83 00 00 ld r4,0\(r3\) ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 48 00 00 0c b 10000[0-9a-f]{3} <_start\+0x20> ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 4b ff ff e8 b 10000[0-9a-f]{3} <_start\+0x4> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 10000[0-9a-f]{3}: e8 83 80 00 ld r4,-32768\(r3\) ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 48 00 00 0c b 10000[0-9a-f]{3} <_start\+0x3c> ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 48 00 00 14 b 10000[0-9a-f]{3} <_start\+0x4c> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 04 addi r3,r3,-28668 ++ 10000[0-9a-f]{3}: e8 a3 00 00 ld r5,0\(r3\) ++ 10000[0-9a-f]{3}: 4b ff ff ec b 10000[0-9a-f]{3} <_start\+0x34> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 10 00 addi r3,r3,4096 ++ 10000[0-9a-f]{3}: e8 a3 80 04 ld r5,-32764\(r3\) + +-0+10000140 <\.__tls_get_addr>: +- 10000140: 4e 80 00 20 blr ++0+10000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsmark32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsmark32.d +@@ -9,17 +9,17 @@ + + Disassembly of section \.text: + +-0+1800094 <_start>: +- 1800094: 48 00 00 14 b 18000a8 <_start\+0x14> +- 1800098: 38 63 90 00 addi r3,r3,-28672 +- 180009c: 80 83 00 00 lwz r4,0\(r3\) +- 18000a0: 3c 62 00 00 addis r3,r2,0 +- 18000a4: 48 00 00 0c b 18000b0 <_start\+0x1c> +- 18000a8: 3c 62 00 00 addis r3,r2,0 +- 18000ac: 4b ff ff ec b 1800098 <_start\+0x4> +- 18000b0: 38 63 10 00 addi r3,r3,4096 +- 18000b4: 80 83 80 00 lwz r4,-32768\(r3\) ++0+18000[0-9a-f]{2} <_start>: ++ 18000[0-9a-f]{2}: 48 00 00 14 b 18000[0-9a-f]{2} <_start\+0x14> ++ 18000[0-9a-f]{2}: 38 63 90 00 addi r3,r3,-28672 ++ 18000[0-9a-f]{2}: 80 83 00 00 lwz r4,0\(r3\) ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 48 00 00 0c b 18000[0-9a-f]{2} <_start\+0x1c> ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 4b ff ff ec b 18000[0-9a-f]{2} <_start\+0x4> ++ 18000[0-9a-f]{2}: 38 63 10 00 addi r3,r3,4096 ++ 18000[0-9a-f]{2}: 80 83 80 00 lwz r4,-32768\(r3\) + +-0+18000b8 <__tls_get_addr>: +- 18000b8: 4e 80 00 20 blr +-#pass +\ No newline at end of file ++0+18000[0-9a-f]{2} <__tls_get_addr>: ++ 18000[0-9a-f]{2}: 4e 80 00 20 blr ++#pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1.d +@@ -9,17 +9,17 @@ + + Disassembly of section \.text: + +-0+100000e8 <\.__tls_get_addr>: +- 100000e8: 4e 80 00 20 blr ++0+10000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr + + Disassembly of section \.no_opt1: + +-0+100000ec <\.no_opt1>: +- 100000ec: 38 62 80 08 addi r3,r2,-32760 +- 100000f0: 2c 24 00 00 cmpdi r4,0 +- 100000f4: 41 82 00 10 beq- .* +- 100000f8: 4b ff ff f1 bl 100000e8 <\.__tls_get_addr> +- 100000fc: 60 00 00 00 nop +- 10000100: 48 00 00 0c b .* +- 10000104: 4b ff ff e5 bl 100000e8 <\.__tls_get_addr> +- 10000108: 60 00 00 00 nop ++0+10000[0-9a-f]{3} <\.no_opt1>: ++ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 ++ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 ++ 10000[0-9a-f]{3}: 41 82 00 10 beq- .* ++ 10000[0-9a-f]{3}: 4b ff ff f1 bl 10000[0-9a-f]{3} <\.__tls_get_addr> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 4b ff ff e5 bl 10000[0-9a-f]{3} <\.__tls_get_addr> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1_32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt1_32.d +@@ -9,16 +9,16 @@ + + Disassembly of section \.text: + +-0+1800094 <__tls_get_addr>: +- 1800094: 4e 80 00 20 blr ++0+18000[0-9a-f]{2} <__tls_get_addr>: ++ 18000[0-9a-f]{2}: 4e 80 00 20 blr + + Disassembly of section \.no_opt1: + +-0+1800098 <\.no_opt1>: +- 1800098: 38 6d ff f4 addi r3,r13,-12 +- 180009c: 2c 04 00 00 cmpwi r4,0 +- 18000a0: 41 82 00 0c beq- .* +- 18000a4: 4b ff ff f1 bl 1800094 <__tls_get_addr> +- 18000a8: 48 00 00 08 b .* +- 18000ac: 4b ff ff e9 bl 1800094 <__tls_get_addr> ++0+18000[0-9a-f]{2} <\.no_opt1>: ++ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 ++ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 ++ 18000[0-9a-f]{2}: 41 82 00 0c beq- .* ++ 18000[0-9a-f]{2}: 4b ff ff f1 bl 18000[0-9a-f]{2} <__tls_get_addr> ++ 18000[0-9a-f]{2}: 48 00 00 08 b .* ++ 18000[0-9a-f]{2}: 4b ff ff e9 bl 18000[0-9a-f]{2} <__tls_get_addr> + #pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2.d +@@ -9,15 +9,15 @@ + + Disassembly of section \.text: + +-0+100000e8 <\.__tls_get_addr>: +- 100000e8: 4e 80 00 20 blr ++0+10000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr + + Disassembly of section \.no_opt2: + +-0+100000ec <\.no_opt2>: +- 100000ec: 38 62 80 08 addi r3,r2,-32760 +- 100000f0: 2c 24 00 00 cmpdi r4,0 +- 100000f4: 41 82 00 08 beq- .* +- 100000f8: 38 62 80 08 addi r3,r2,-32760 +- 100000fc: 4b ff ff ed bl 100000e8 <\.__tls_get_addr> +- 10000100: 60 00 00 00 nop ++0+10000[0-9a-f]{3} <\.no_opt2>: ++ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 ++ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 ++ 10000[0-9a-f]{3}: 41 82 00 08 beq- .* ++ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 ++ 10000[0-9a-f]{3}: 4b ff ff ed bl 10000[0-9a-f]{3} <\.__tls_get_addr> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2_32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt2_32.d +@@ -9,15 +9,15 @@ + + Disassembly of section \.text: + +-0+1800094 <__tls_get_addr>: +- 1800094: 4e 80 00 20 blr ++0+18000[0-9a-f]{2} <__tls_get_addr>: ++ 18000[0-9a-f]{2}: 4e 80 00 20 blr + + Disassembly of section \.no_opt2: + +-0+1800098 <\.no_opt2>: +- 1800098: 38 6d ff f4 addi r3,r13,-12 +- 180009c: 2c 04 00 00 cmpwi r4,0 +- 18000a0: 41 82 00 08 beq- .* +- 18000a4: 38 6d ff f4 addi r3,r13,-12 +- 18000a8: 4b ff ff ed bl 1800094 <__tls_get_addr> ++0+18000[0-9a-f]{2} <\.no_opt2>: ++ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 ++ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 ++ 18000[0-9a-f]{2}: 41 82 00 08 beq- .* ++ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 ++ 18000[0-9a-f]{2}: 4b ff ff ed bl 18000[0-9a-f]{2} <__tls_get_addr> + #pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3.d +@@ -9,18 +9,18 @@ + + Disassembly of section \.text: + +-00000000100000e8 <\.__tls_get_addr>: +- 100000e8: 4e 80 00 20 blr ++0000000010000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr + + Disassembly of section \.no_opt3: + +-00000000100000ec <\.no_opt3>: +- 100000ec: 38 62 80 08 addi r3,r2,-32760 +- 100000f0: 48 00 00 0c b .* +- 100000f4: 38 62 80 18 addi r3,r2,-32744 +- 100000f8: 48 00 00 10 b .* +- 100000fc: 4b ff ff ed bl 100000e8 <\.__tls_get_addr> +- 10000100: 60 00 00 00 nop +- 10000104: 48 00 00 0c b .* +- 10000108: 4b ff ff e1 bl 100000e8 <\.__tls_get_addr> +- 1000010c: 60 00 00 00 nop ++0000000010000[0-9a-f]{3} <\.no_opt3>: ++ 10000[0-9a-f]{3}: 38 62 80 08 addi r3,r2,-32760 ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 38 62 80 18 addi r3,r2,-32744 ++ 10000[0-9a-f]{3}: 48 00 00 10 b .* ++ 10000[0-9a-f]{3}: 4b ff ff ed bl 10000[0-9a-f]{3} <\.__tls_get_addr> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 4b ff ff e1 bl 10000[0-9a-f]{3} <\.__tls_get_addr> ++ 10000[0-9a-f]{3}: 60 00 00 00 nop +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3_32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt3_32.d +@@ -9,17 +9,17 @@ + + Disassembly of section \.text: + +-0+1800094 <__tls_get_addr>: +- 1800094: 4e 80 00 20 blr ++0+18000[0-9a-f]{2} <__tls_get_addr>: ++ 18000[0-9a-f]{2}: 4e 80 00 20 blr + + Disassembly of section \.no_opt3: + +-0+1800098 <\.no_opt3>: +- 1800098: 38 6d ff ec addi r3,r13,-20 +- 180009c: 48 00 00 0c b .* +- 18000a0: 38 6d ff f4 addi r3,r13,-12 +- 18000a4: 48 00 00 0c b .* +- 18000a8: 4b ff ff ed bl 1800094 <__tls_get_addr> +- 18000ac: 48 00 00 08 b .* +- 18000b0: 4b ff ff e5 bl 1800094 <__tls_get_addr> ++0+18000[0-9a-f]{2} <\.no_opt3>: ++ 18000[0-9a-f]{2}: 38 6d ff ec addi r3,r13,-20 ++ 18000[0-9a-f]{2}: 48 00 00 0c b .* ++ 18000[0-9a-f]{2}: 38 6d ff f4 addi r3,r13,-12 ++ 18000[0-9a-f]{2}: 48 00 00 0c b .* ++ 18000[0-9a-f]{2}: 4b ff ff ed bl 18000[0-9a-f]{2} <__tls_get_addr> ++ 18000[0-9a-f]{2}: 48 00 00 08 b .* ++ 18000[0-9a-f]{2}: 4b ff ff e5 bl 18000[0-9a-f]{2} <__tls_get_addr> + #pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4.d +@@ -9,40 +9,40 @@ + + Disassembly of section \.text: + +-0+100000e8 <\.__tls_get_addr>: +- 100000e8: 4e 80 00 20 blr ++0+10000[0-9a-f]{3} <\.__tls_get_addr>: ++ 10000[0-9a-f]{3}: 4e 80 00 20 blr + + Disassembly of section \.opt1: + +-0+100000ec <\.opt1>: +- 100000ec: 3c 6d 00 00 addis r3,r13,0 +- 100000f0: 2c 24 00 00 cmpdi r4,0 +- 100000f4: 41 82 00 10 beq- .* +- 100000f8: 60 00 00 00 nop +- 100000fc: 38 63 90 10 addi r3,r3,-28656 +- 10000100: 48 00 00 0c b .* +- 10000104: 60 00 00 00 nop +- 10000108: 38 63 90 10 addi r3,r3,-28656 ++0+10000[0-9a-f]{3} <\.opt1>: ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 ++ 10000[0-9a-f]{3}: 41 82 00 10 beq- .* ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 + + Disassembly of section \.opt2: + +-0+1000010c <\.opt2>: +- 1000010c: 3c 6d 00 00 addis r3,r13,0 +- 10000110: 2c 24 00 00 cmpdi r4,0 +- 10000114: 41 82 00 08 beq- .* +- 10000118: 3c 6d 00 00 addis r3,r13,0 +- 1000011c: 60 00 00 00 nop +- 10000120: 38 63 90 10 addi r3,r3,-28656 ++0+10000[0-9a-f]{3} <\.opt2>: ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 2c 24 00 00 cmpdi r4,0 ++ 10000[0-9a-f]{3}: 41 82 00 08 beq- .* ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 + + Disassembly of section \.opt3: + +-0+10000124 <\.opt3>: +- 10000124: 3c 6d 00 00 addis r3,r13,0 +- 10000128: 48 00 00 0c b .* +- 1000012c: 3c 6d 00 00 addis r3,r13,0 +- 10000130: 48 00 00 10 b .* +- 10000134: 60 00 00 00 nop +- 10000138: 38 63 90 10 addi r3,r3,-28656 +- 1000013c: 48 00 00 0c b .* +- 10000140: 60 00 00 00 nop +- 10000144: 38 63 90 08 addi r3,r3,-28664 ++0+10000[0-9a-f]{3} <\.opt3>: ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 3c 6d 00 00 addis r3,r13,0 ++ 10000[0-9a-f]{3}: 48 00 00 10 b .* ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 10 addi r3,r3,-28656 ++ 10000[0-9a-f]{3}: 48 00 00 0c b .* ++ 10000[0-9a-f]{3}: 60 00 00 00 nop ++ 10000[0-9a-f]{3}: 38 63 90 08 addi r3,r3,-28664 +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4_32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsopt4_32.d +@@ -9,36 +9,36 @@ + + Disassembly of section \.text: + +-0+1800094 <__tls_get_addr>: +- 1800094: 4e 80 00 20 blr ++0+18000[0-9a-f]{2} <__tls_get_addr>: ++ 18000[0-9a-f]{2}: 4e 80 00 20 blr + + Disassembly of section \.opt1: + +-0+1800098 <\.opt1>: +- 1800098: 3c 62 00 00 addis r3,r2,0 +- 180009c: 2c 04 00 00 cmpwi r4,0 +- 18000a0: 41 82 00 0c beq- .* +- 18000a4: 38 63 90 10 addi r3,r3,-28656 +- 18000a8: 48 00 00 08 b .* +- 18000ac: 38 63 90 10 addi r3,r3,-28656 ++0+18000[0-9a-f]{2} <\.opt1>: ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 ++ 18000[0-9a-f]{2}: 41 82 00 0c beq- .* ++ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 ++ 18000[0-9a-f]{2}: 48 00 00 08 b .* ++ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 + + Disassembly of section \.opt2: + +-0+18000b0 <\.opt2>: +- 18000b0: 3c 62 00 00 addis r3,r2,0 +- 18000b4: 2c 04 00 00 cmpwi r4,0 +- 18000b8: 41 82 00 08 beq- .* +- 18000bc: 3c 62 00 00 addis r3,r2,0 +- 18000c0: 38 63 90 10 addi r3,r3,-28656 ++0+18000[0-9a-f]{2} <\.opt2>: ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 2c 04 00 00 cmpwi r4,0 ++ 18000[0-9a-f]{2}: 41 82 00 08 beq- .* ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 + + Disassembly of section \.opt3: + +-0+18000c4 <\.opt3>: +- 18000c4: 3c 62 00 00 addis r3,r2,0 +- 18000c8: 48 00 00 0c b .* +- 18000cc: 3c 62 00 00 addis r3,r2,0 +- 18000d0: 48 00 00 0c b .* +- 18000d4: 38 63 90 10 addi r3,r3,-28656 +- 18000d8: 48 00 00 08 b .* +- 18000dc: 38 63 90 08 addi r3,r3,-28664 ++0+18000[0-9a-f]{2} <\.opt3>: ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 48 00 00 0c b .* ++ 18000[0-9a-f]{2}: 3c 62 00 00 addis r3,r2,0 ++ 18000[0-9a-f]{2}: 48 00 00 0c b .* ++ 18000[0-9a-f]{2}: 38 63 90 10 addi r3,r3,-28656 ++ 18000[0-9a-f]{2}: 48 00 00 08 b .* ++ 18000[0-9a-f]{2}: 38 63 90 08 addi r3,r3,-28664 + #pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.d ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.d +@@ -42,5 +42,5 @@ Disassembly of section \.got: + #... + .*: 4e 80 00 21 blrl + .* <_GLOBAL_OFFSET_TABLE_>: +-.*: 00 01 03 ec .* ++.*: 00 01 [0-9a-f]{2} [0-9a-f]{2} .* + #pass +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.g +@@ -9,5 +9,5 @@ + Contents of section \.got: + .* 00000000 00000000 00000000 00000000 .* + .* 00000000 00000000 00000000 00000000 .* +-.* 00000000 4e800021 000103ec 00000000 .* ++.* 00000000 4e800021 00010[0-9a-f]{3} 00000000 .* + .* 00000000 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.r ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlsso32.r +@@ -35,6 +35,7 @@ Program Headers: + +LOAD .* RWE 0x10000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0+1c 0x0+38 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections\.\.\. +@@ -42,6 +43,7 @@ Program Headers: + +01 +\.tdata \.dynamic \.got \.plt + +02 +\.dynamic + +03 +\.tdata \.tbss ++ +04 + + + Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 18 entries: + Offset +Info +Type +Sym\. Value +Symbol's Name \+ Addend +@@ -52,9 +54,9 @@ Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 18 entries: + [0-9a-f ]+R_PPC_TPREL16 +0+30 +le0 \+ 0 + [0-9a-f ]+R_PPC_TPREL16_HA +0+34 +le1 \+ 0 + [0-9a-f ]+R_PPC_TPREL16_LO +0+34 +le1 \+ 0 +-[0-9a-f ]+R_PPC_TPREL16 +0+103d0 +\.tdata \+ 103e4 +-[0-9a-f ]+R_PPC_TPREL16_HA +0+103d0 +\.tdata \+ 103e8 +-[0-9a-f ]+R_PPC_TPREL16_LO +0+103d0 +\.tdata \+ 103e8 ++[0-9a-f ]+R_PPC_TPREL16 +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} ++[0-9a-f ]+R_PPC_TPREL16_HA +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} ++[0-9a-f ]+R_PPC_TPREL16_LO +0+103[df]0 +\.tdata \+ 10[0-9a-f]{3} + [0-9a-f ]+R_PPC_DTPMOD32 +0 + [0-9a-f ]+R_PPC_DTPREL32 +0 + [0-9a-f ]+R_PPC_DTPMOD32 +0 +--- binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.g +@@ -8,8 +8,8 @@ + .*: +file format elf64-powerpc + + Contents of section \.got: +- 100101a0 00000000 00000001 00000000 00000000 .* +- 100101b0 00000000 00000001 00000000 00000000 .* +- 100101c0 00000000 00000001 00000000 00000000 .* +- 100101d0 00000000 00000001 00000000 00000000 .* +- 100101e0 ffffffff ffff8060 00000000 00000000 .* ++ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* ++ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* ++ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* ++ 10010[0-9a-f]{3} 00000000 00000001 00000000 00000000 .* ++ 10010[0-9a-f]{3} ffffffff ffff8060 00000000 00000000 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.t ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlstoc.t +@@ -8,7 +8,7 @@ + .*: +file format elf64-powerpc + + Contents of section \.tdata: +- 10010148 00c0ffee 00000000 12345678 9abcdef0 .* +- 10010158 23456789 abcdef01 3456789a bcdef012 .* +- 10010168 456789ab cdef0123 56789abc def01234 .* +- 10010178 6789abcd ef012345 789abcde f0123456 .* ++ 10010180 00c0ffee 00000000 12345678 9abcdef0 .* ++ 10010190 23456789 abcdef01 3456789a bcdef012 .* ++ 100101a0 456789ab cdef0123 56789abc def01234 .* ++ 100101b0 6789abcd ef012345 789abcde f0123456 .* +--- binutils-2.23/ld/testsuite/ld-powerpc/tlstocso.g ++++ binutils-2.23/ld/testsuite/ld-powerpc/tlstocso.g +@@ -7,7 +7,7 @@ + .*: +file format elf64-powerpc + + Contents of section \.got: +-.* 00000000 000186c0 00000000 00000000 .* ++.* 00000000 000186f8 00000000 00000000 .* + .* 00000000 00000000 00000000 00000000 .* + .* 00000000 00000000 00000000 00000000 .* + .* 00000000 00000000 00000000 00000000 .* +--- binutils-2.23/ld/testsuite/ld-s390/tlsbin.rd ++++ binutils-2.23/ld/testsuite/ld-s390/tlsbin.rd +@@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + +LOAD .* RW +0x1000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0+60 0x0+a0 R +0x20 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections... +@@ -52,6 +53,7 @@ Program Headers: + +03 +.tdata .dynamic .got * + +04 +.dynamic * + +05 +.tdata .tbss * ++ +06 + + + Relocation section '.rela.dyn' at offset .* contains 4 entries: + Offset +Info +Type +Sym.Value +Sym. Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-s390/tlsbin_64.rd ++++ binutils-2.23/ld/testsuite/ld-s390/tlsbin_64.rd +@@ -36,6 +36,7 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + +LOAD .* RW +0x1000 + +DYNAMIC .* RW +0x8 + +TLS .* 0x0+60 0x0+a0 R +0x20 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections... +@@ -52,6 +53,7 @@ Program Headers: + +03 +.tdata .dynamic .got * + +04 +.dynamic * + +05 +.tdata .tbss * ++ +06 + + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: + +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-s390/tlspic.rd ++++ binutils-2.23/ld/testsuite/ld-s390/tlspic.rd +@@ -39,6 +39,7 @@ Program Headers: + +LOAD .* RW +0x1000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0+60 0x0+80 R +0x20 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections... +@@ -46,6 +47,7 @@ Program Headers: + +01 +.tdata .dynamic .got + +02 +.dynamic + +03 +.tdata .tbss ++ +04 + + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: + Offset +Info +Type +Sym.Value +Sym. Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-s390/tlspic_64.rd ++++ binutils-2.23/ld/testsuite/ld-s390/tlspic_64.rd +@@ -39,6 +39,7 @@ Program Headers: + +LOAD .* RW +0x1000 + +DYNAMIC .* RW +0x8 + +TLS .* 0x0+60 0x0+80 R +0x20 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections... +@@ -46,6 +47,7 @@ Program Headers: + +01 +.tdata .dynamic .got * + +02 +.dynamic * + +03 +.tdata .tbss * ++ +04 + + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: + +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-scripts/empty-aligned.d ++++ binutils-2.23/ld/testsuite/ld-scripts/empty-aligned.d +@@ -8,7 +8,9 @@ + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg +Align + +LOAD +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ [RWE ]+ +0x[0-9a-f]+ ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections\.\.\. + +00 +.text ++ +01 + +--- binutils-2.23/ld/testsuite/ld-sh/tlsbin-2.d ++++ binutils-2.23/ld/testsuite/ld-sh/tlsbin-2.d +@@ -44,6 +44,7 @@ Program Headers: + +LOAD.* + +DYNAMIC.* + +TLS +0x[0-9a-f]+ 0x[0-9a-f]+ 0x[0-9a-f]+ 0x0+18 0x0+28 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections\.\.\. +@@ -53,6 +54,7 @@ Program Headers: + +03 +\.tdata \.dynamic \.got * + +04 +\.dynamic * + +05 +\.tdata \.tbss * ++ +06 + + + Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 4 entries: + Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-sh/tlspic-2.d ++++ binutils-2.23/ld/testsuite/ld-sh/tlspic-2.d +@@ -32,7 +32,7 @@ Key to Flags: + + Elf file type is DYN \(Shared object file\) + Entry point 0x[0-9a-f]+ +-There are 4 program headers, starting at offset [0-9]+ ++There are [0-9] program headers, starting at offset [0-9]+ + + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align +@@ -40,6 +40,7 @@ Program Headers: + +LOAD.* + +DYNAMIC.* + +TLS .* 0x0+18 0x0+20 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections\.\.\. +@@ -47,6 +48,7 @@ Program Headers: + +01 +\.tdata \.dynamic \.got * + +02 +\.dynamic * + +03 +\.tdata \.tbss * ++ +04 + + + Relocation section '\.rela\.dyn' at offset 0x[0-9a-f]+ contains 10 entries: + Offset +Info +Type +Sym\.Value +Sym\. Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-sparc/gotop32.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/gotop32.rd +@@ -31,6 +31,7 @@ Program Headers: + +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x10000 + +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+2000 0x0+2000 RW +0x10000 + +DYNAMIC +0x0+2000 0x0+12000 0x0+12000 0x0+70 0x0+70 RW +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/gotop64.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/gotop64.rd +@@ -31,6 +31,7 @@ Program Headers: + +LOAD +0x0+ 0x0+ 0x0+ 0x0+2000 0x0+2000 R E 0x100000 + +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+2000 0x0+2000 RW +0x100000 + +DYNAMIC +0x0+2000 0x0+102000 0x0+102000 0x0+e0 0x0+e0 RW +0x8 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 1 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunbin32.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunbin32.rd +@@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz MemSiz +Flg Align +- +PHDR +0x0+34 0x0+10034 0x0+10034 0x0+c0 0x0+c0 R E 0x4 +- +INTERP +0x0+f4 0x0+100f4 0x0+100f4 0x0+11 0x0+11 R +0x1 ++ +PHDR +0x0+34 0x0+10034 0x0+10034 (0x[0-9a-f]+) \1 R E 0x4 ++ +INTERP +(0x[0-9a-f]+ ){3}0x0+11 0x0+11 R +0x1 + .*Requesting program interpreter.* + +LOAD .* R E 0x10000 + +LOAD .* RW +0x10000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0+1060 0x0+10a0 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunbin64.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunbin64.rd +@@ -30,13 +30,14 @@ There are [0-9]+ program headers, starting at offset [0-9]+ + + Program Headers: + +Type +Offset +VirtAddr +PhysAddr +FileSiz +MemSiz +Flg Align +- +PHDR +0x0+40 0x0+100040 0x0+100040 0x0+150 0x0+150 R E 0x8 +- +INTERP +0x0+190 0x0+100190 0x0+100190 0x0+19 0x0+19 R +0x1 ++ +PHDR +0x0+40 0x0+100040 0x0+100040 (0x[0-9a-f]+) \1 R E 0x8 ++ +INTERP +0x0+([0-9a-f]+) (0x0+10+\1) \2 0x0+19 0x0+19 R +0x1 + .*Requesting program interpreter.* + +LOAD .* R E 0x100000 + +LOAD .* RW +0x100000 + +DYNAMIC .* RW +0x8 + +TLS .* 0x0+60 0x0+a0 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 4 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic32.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic32.rd +@@ -32,6 +32,7 @@ Program Headers: + +LOAD .* RW +0x10000 + +DYNAMIC .* RW +0x4 + +TLS .* 0x0+ 0x0+24 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 12 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic64.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunnopic64.rd +@@ -32,6 +32,7 @@ Program Headers: + +LOAD .* RW +0x100000 + +DYNAMIC .* RW +0x8 + +TLS .* 0x0+ 0x0+24 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunpic32.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunpic32.rd +@@ -36,6 +36,7 @@ Program Headers: + +LOAD +0x0+2000 0x0+12000 0x0+12000 0x0+184 0x0+184 RWE 0x10000 + +DYNAMIC +0x0+2060 0x0+12060 0x0+12060 0x0+98 0x0+98 RW +0x4 + +TLS +0x0+2000 0x0+12000 0x0+12000 0x0+60 0x0+80 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: +--- binutils-2.23/ld/testsuite/ld-sparc/tlssunpic64.rd ++++ binutils-2.23/ld/testsuite/ld-sparc/tlssunpic64.rd +@@ -36,6 +36,7 @@ Program Headers: + +LOAD +0x0+2000 0x0+102000 0x0+102000 0x0+3a0 0x0+3a0 RWE 0x100000 + +DYNAMIC +0x0+2060 0x0+102060 0x0+102060 0x0+130 0x0+130 RW +0x8 + +TLS +0x0+2000 0x0+102000 0x0+102000 0x0+60 0x0+80 R +0x4 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + #... + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: +--- binutils-2.23/ld/testsuite/ld-x86-64/tlsgdesc.rd ++++ binutils-2.23/ld/testsuite/ld-x86-64/tlsgdesc.rd +@@ -36,12 +36,14 @@ Program Headers: + +LOAD.* + +LOAD.* + +DYNAMIC.* ++ +PAX_FLAGS.* + + Section to Segment mapping: + +Segment Sections... + +00 +.hash .dynsym .dynstr .rela.dyn .rela.plt .plt .text * + +01 +.dynamic .got .got.plt * + +02 +.dynamic * ++ +03 + + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 8 entries: + +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend +--- binutils-2.23/ld/testsuite/ld-x86-64/tlspic.rd ++++ binutils-2.23/ld/testsuite/ld-x86-64/tlspic.rd +@@ -40,6 +40,7 @@ Program Headers: + +LOAD +0x0+11ac 0x0+2011ac 0x0+2011ac 0x0+244 0x0+244 RW +0x200000 + +DYNAMIC +0x0+1210 0x0+201210 0x0+201210 0x0+130 0x0+130 RW +0x8 + +TLS +0x0+11ac 0x0+2011ac 0x0+2011ac 0x0+60 0x0+80 R +0x1 ++ +PAX_FLAGS +0x0+ 0x0+ 0x0+ 0x0+ 0x0+ +0x[48] + + Section to Segment mapping: + +Segment Sections... +@@ -47,6 +48,7 @@ Program Headers: + +01 +.tdata .dynamic .got .got.plt * + +02 +.dynamic * + +03 +.tdata .tbss * ++ +04 + + + Relocation section '.rela.dyn' at offset 0x[0-9a-f]+ contains 14 entries: + +Offset +Info +Type +Symbol's Value +Symbol's Name \+ Addend diff --git a/pkgs/development/tools/misc/distcc/default.nix b/pkgs/development/tools/misc/distcc/default.nix index cf9d7a019204..ed3ad45c463a 100644 --- a/pkgs/development/tools/misc/distcc/default.nix +++ b/pkgs/development/tools/misc/distcc/default.nix @@ -1,4 +1,5 @@ -{ stdenv, fetchFromGitHub, popt, avahi, pkgconfig, python, gtk, runCommand, gcc, autoconf, automake, which, procps +{ stdenv, fetchFromGitHub, popt, avahi, pkgconfig, python, gtk, runCommand +, gcc, autoconf, automake, which, procps, libiberty_static , sysconfDir ? "" # set this parameter to override the default value $out/etc , static ? false }: @@ -15,7 +16,7 @@ let sha256 = "1vj31wcdas8wy52hy6749mlrca9v6ynycdiigx5ay8pnya9z73c6"; }; - buildInputs = [popt avahi pkgconfig python gtk autoconf automake pkgconfig which procps]; + buildInputs = [popt avahi pkgconfig python gtk autoconf automake pkgconfig which procps libiberty_static]; preConfigure = '' export CPATH=$(ls -d ${gcc.cc}/lib/gcc/*/${gcc.cc.version}/plugin/include) diff --git a/pkgs/development/tools/misc/drush/default.nix b/pkgs/development/tools/misc/drush/default.nix index cb534d511eaf..72bbe50422ca 100644 --- a/pkgs/development/tools/misc/drush/default.nix +++ b/pkgs/development/tools/misc/drush/default.nix @@ -32,7 +32,7 @@ stdenv.mkDerivation rec { mkdir -p "$out" cp -r . "$out/src" mkdir "$out/bin" - wrapProgram "$out/src/drush" --prefix PATH : "${which}/bin:${php}/bin:${bash}/bin:${coreutils}/bin:${ncurses}/bin" + wrapProgram "$out/src/drush" --prefix PATH : "${which}/bin:${php}/bin:${bash}/bin:${coreutils}/bin:${ncurses.out}/bin" ln -s "$out/src/drush" "$out/bin/drush" ''; } diff --git a/pkgs/development/tools/misc/eggdbus/default.nix b/pkgs/development/tools/misc/eggdbus/default.nix index 97031a533fae..9f04e2837222 100644 --- a/pkgs/development/tools/misc/eggdbus/default.nix +++ b/pkgs/development/tools/misc/eggdbus/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "118hj63ac65zlg71kydv4607qcg1qpdlql4kvhnwnnhar421jnq4"; }; - buildInputs = [ pkgconfig glib dbus.libs dbus_glib ]; + buildInputs = [ pkgconfig glib dbus dbus_glib ]; meta = { homepage = http://hal.freedesktop.org/releases/; diff --git a/pkgs/development/tools/misc/global/default.nix b/pkgs/development/tools/misc/global/default.nix index 5fdccc9acadd..e6b81ca7eb17 100644 --- a/pkgs/development/tools/misc/global/default.nix +++ b/pkgs/development/tools/misc/global/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ltdl-include=${libtool}/include" - "--with-ltdl-lib=${libtool}/lib" + "--with-ltdl-lib=${libtool.lib}/lib" "--with-ncurses=${ncurses}" "--with-sqlite3=${sqlite}" "--with-exuberant-ctags=${ctags}/bin/ctags" diff --git a/pkgs/development/tools/misc/libtool/libtool2.nix b/pkgs/development/tools/misc/libtool/libtool2.nix index 5d27b469680b..27ec2772e095 100644 --- a/pkgs/development/tools/misc/libtool/libtool2.nix +++ b/pkgs/development/tools/misc/libtool/libtool2.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1qq61k6lp1fp75xs398yzi6wvbx232l7xbyn3p13cnh27mflvgg3"; }; + outputs = [ "out" "lib" ]; + propagatedNativeBuildInputs = [ m4 ]; nativeBuildInputs = [ perl help2man ]; @@ -43,4 +45,3 @@ stdenv.mkDerivation rec { maintainers = [ ]; }; } - diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix index 7154166c2516..77a1f2661682 100644 --- a/pkgs/development/tools/misc/patchelf/default.nix +++ b/pkgs/development/tools/misc/patchelf/default.nix @@ -10,6 +10,8 @@ stdenv.mkDerivation rec { setupHook = [ ./setup-hook.sh ]; + #doCheck = true; # problems when loading libc.so.6 + meta = { homepage = http://nixos.org/patchelf.html; license = "GPL"; diff --git a/pkgs/development/tools/misc/pkgconfig/default.nix b/pkgs/development/tools/misc/pkgconfig/default.nix index d7246d22ca73..d0e63469987b 100644 --- a/pkgs/development/tools/misc/pkgconfig/default.nix +++ b/pkgs/development/tools/misc/pkgconfig/default.nix @@ -1,6 +1,9 @@ -{stdenv, fetchurl, automake, libiconv, vanilla ? false}: +{stdenv, fetchurl, automake, libiconv, vanilla ? false }: -stdenv.mkDerivation (rec { +let + inherit (stdenv.lib) optional; +in +stdenv.mkDerivation rec { name = "pkg-config-0.29"; setupHook = ./setup-hook.sh; @@ -12,17 +15,19 @@ stdenv.mkDerivation (rec { ]; sha256 = "0sq09a39wj4cxf8l2jvkq067g08ywfma4v6nhprnf351s82pfl68"; }; + # Process Requires.private properly, see + # http://bugs.freedesktop.org/show_bug.cgi?id=4738. + patches = optional (!vanilla) ./requires-private.patch + ++ optional stdenv.isCygwin ./2.36.3-not-win32.patch; + preConfigure = stdenv.lib.optionalString (stdenv.system == "mips64el-linux") + ''cp -v ${automake}/share/automake*/config.{sub,guess} .''; buildInputs = stdenv.lib.optional (stdenv.isCygwin || stdenv.isDarwin || stdenv.isSunOS) libiconv; configureFlags = [ "--with-internal-glib" ] ++ stdenv.lib.optional (stdenv.isSunOS) [ "--with-libiconv=gnu" "--with-system-library-path" "--with-system-include-path" "CFLAGS=-DENABLE_NLS" ]; - patches = (if vanilla then [] else [ - # Process Requires.private properly, see - # http://bugs.freedesktop.org/show_bug.cgi?id=4738. - ./requires-private.patch - ]) ++ stdenv.lib.optional stdenv.isCygwin ./2.36.3-not-win32.patch; + postInstall = ''rm "$out"/bin/*-pkg-config''; # clean the duplicate file meta = { description = "A tool that allows packages to find out information about other packages"; @@ -30,9 +35,5 @@ stdenv.mkDerivation (rec { platforms = stdenv.lib.platforms.all; }; -} // (if stdenv.system == "mips64el-linux" then - { - preConfigure = '' - cp -v ${automake}/share/automake*/config.{sub,guess} . - ''; - } else {})) +} + diff --git a/pkgs/development/tools/misc/texinfo/5.2.nix b/pkgs/development/tools/misc/texinfo/5.2.nix index 99582e0f8a3d..d01a2f9cdd06 100644 --- a/pkgs/development/tools/misc/texinfo/5.2.nix +++ b/pkgs/development/tools/misc/texinfo/5.2.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "1njfwh2z34r2c4r0iqa7v24wmjzvsfyz4vplzry8ln3479lfywal"; }; - buildInputs = [ perl xz ] + buildInputs = [ perl xz.bin ] ++ optional interactive ncurses ++ optional doCheck procps; # for tests diff --git a/pkgs/development/tools/misc/travis/Gemfile b/pkgs/development/tools/misc/travis/Gemfile new file mode 100644 index 000000000000..d52f576be243 --- /dev/null +++ b/pkgs/development/tools/misc/travis/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem "travis" diff --git a/pkgs/development/tools/misc/travis/Gemfile.lock b/pkgs/development/tools/misc/travis/Gemfile.lock new file mode 100644 index 000000000000..e84e87fb5232 --- /dev/null +++ b/pkgs/development/tools/misc/travis/Gemfile.lock @@ -0,0 +1,51 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.4.0) + backports (3.6.8) + ethon (0.8.1) + ffi (>= 1.3.0) + faraday (0.9.2) + multipart-post (>= 1.2, < 3) + faraday_middleware (0.10.0) + faraday (>= 0.7.4, < 0.10) + ffi (1.9.10) + gh (0.14.0) + addressable + backports + faraday (~> 0.8) + multi_json (~> 1.0) + net-http-persistent (>= 2.7) + net-http-pipeline + highline (1.7.8) + json (1.8.3) + launchy (2.4.3) + addressable (~> 2.3) + multi_json (1.11.2) + multipart-post (2.0.0) + net-http-persistent (2.9.4) + net-http-pipeline (1.0.1) + pusher-client (0.6.2) + json + websocket (~> 1.0) + travis (1.8.2) + backports + faraday (~> 0.9) + faraday_middleware (~> 0.9, >= 0.9.1) + gh (~> 0.13) + highline (~> 1.6) + launchy (~> 2.1) + pusher-client (~> 0.4) + typhoeus (~> 0.6, >= 0.6.8) + typhoeus (0.8.0) + ethon (>= 0.8.0) + websocket (1.2.2) + +PLATFORMS + ruby + +DEPENDENCIES + travis + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/development/tools/misc/travis/default.nix b/pkgs/development/tools/misc/travis/default.nix new file mode 100644 index 000000000000..adc63ce7c43f --- /dev/null +++ b/pkgs/development/tools/misc/travis/default.nix @@ -0,0 +1,29 @@ +{ stdenv, lib, bundlerEnv, ruby }: + +stdenv.mkDerivation rec { + name = "travis-${version}"; + version = env.gems.travis.version; + + env = bundlerEnv { + inherit ruby; + name = "${name}-gems"; + gemset = ./gemset.nix; + gemfile = ./Gemfile; + lockfile = ./Gemfile.lock; + }; + + phases = ["installPhase"]; + + installPhase = '' + mkdir -p $out/bin + ln -s ${env}/bin/travis $out/bin/travis + ''; + + meta = with lib; { + description = "CLI and Ruby client library for Travis CI"; + homepage = https://github.com/travis-ci/travis.rb; + license = licenses.mit; + maintainers = with maintainers; [ zimbatm ]; + platforms = ruby.meta.platforms; + }; +} diff --git a/pkgs/development/tools/misc/travis/gemset.nix b/pkgs/development/tools/misc/travis/gemset.nix new file mode 100644 index 000000000000..abfd352e90ec --- /dev/null +++ b/pkgs/development/tools/misc/travis/gemset.nix @@ -0,0 +1,146 @@ +{ + addressable = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0mpn7sbjl477h56gmxsjqb89r5s3w7vx5af994ssgc3iamvgzgvs"; + type = "gem"; + }; + version = "2.4.0"; + }; + backports = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1zcgqw7m7jb8n7b2jwla5cq0nw9wsgddxfmn0a9v89ihzd4i1a5k"; + type = "gem"; + }; + version = "3.6.8"; + }; + ethon = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0afvvv4sxs330jhk4xz9kj6qgj70yvd4zsjnb9yvxhmaq49k8yij"; + type = "gem"; + }; + version = "0.8.1"; + }; + faraday = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; + type = "gem"; + }; + version = "0.9.2"; + }; + faraday_middleware = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0nxia26xzy8i56qfyz1bg8dg9yb26swpgci8n5jry8mh4bnx5r5h"; + type = "gem"; + }; + version = "0.10.0"; + }; + ffi = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1m5mprppw0xcrv2mkim5zsk70v089ajzqiq5hpyb0xg96fcyzyxj"; + type = "gem"; + }; + version = "1.9.10"; + }; + gh = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0j7m6jmxzkxvnqgnhmci33a89qpaxxcrm55kk5vz4bcpply04hx2"; + type = "gem"; + }; + version = "0.14.0"; + }; + highline = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nf5lgdn6ni2lpfdn4gk3gi47fmnca2bdirabbjbz1fk9w4p8lkr"; + type = "gem"; + }; + version = "1.7.8"; + }; + json = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; + type = "gem"; + }; + version = "1.8.3"; + }; + launchy = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "190lfbiy1vwxhbgn4nl4dcbzxvm049jwc158r2x7kq3g5khjrxa2"; + type = "gem"; + }; + version = "2.4.3"; + }; + multi_json = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1rf3l4j3i11lybqzgq2jhszq7fh7gpmafjzd14ymp9cjfxqg596r"; + type = "gem"; + }; + version = "1.11.2"; + }; + multipart-post = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; + type = "gem"; + }; + version = "2.0.0"; + }; + net-http-persistent = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1y9fhaax0d9kkslyiqi1zys6cvpaqx9a0y0cywp24rpygwh4s9r4"; + type = "gem"; + }; + version = "2.9.4"; + }; + net-http-pipeline = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0bxjy33yhxwsbnld8xj3zv64ibgfjn9rjpiqkyd5ipmz50pww8v9"; + type = "gem"; + }; + version = "1.0.1"; + }; + pusher-client = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "18ymxz34gmg7jff3h0nyzp5vdg5i06dbdxlrdl2nq4hf14qwj1f4"; + type = "gem"; + }; + version = "0.6.2"; + }; + travis = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ph83whzw5hjkp1kgbkjd2g0vi6kdr9sif6vxvxgjf186id43q0s"; + type = "gem"; + }; + version = "1.8.2"; + }; + typhoeus = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "03x3fxjsnhgayl4s96h0a9975awlvx2v9nmx2ba0cnliglyczdr8"; + type = "gem"; + }; + version = "0.8.0"; + }; + websocket = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1frcsgj4f984db920xwapflqwgrwncw86c1rv94pp5gs2q1iaap4"; + type = "gem"; + }; + version = "1.2.2"; + }; +} \ No newline at end of file diff --git a/pkgs/development/tools/node-webkit/nw11.nix b/pkgs/development/tools/node-webkit/nw11.nix index ed3b99aad009..2fe1ddf42d43 100644 --- a/pkgs/development/tools/node-webkit/nw11.nix +++ b/pkgs/development/tools/node-webkit/nw11.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, makeWrapper , xorg, alsaLib, dbus, glib, gtk, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, udev, libcap +, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, libudev, libcap , libnotify}: let bits = if stdenv.system == "x86_64-linux" then "x64" @@ -35,7 +35,7 @@ in stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/node-webkit/nw patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/node-webkit/nwsnapshot - ln -s ${udev}/lib/libudev.so $out/share/node-webkit/libudev.so.0 + ln -s ${libudev.out}/lib/libudev.so $out/share/node-webkit/libudev.so.0 patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/node-webkit" $out/share/node-webkit/nw patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/node-webkit" $out/share/node-webkit/nwsnapshot diff --git a/pkgs/development/tools/node-webkit/nw12.nix b/pkgs/development/tools/node-webkit/nw12.nix index 7492acb13678..4cacc75d7776 100644 --- a/pkgs/development/tools/node-webkit/nw12.nix +++ b/pkgs/development/tools/node-webkit/nw12.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, makeWrapper , xorg, alsaLib, dbus, glib, gtk, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, udev, libcap +, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, libudev, libcap , libnotify}: let bits = if stdenv.system == "x86_64-linux" then "x64" @@ -37,7 +37,7 @@ in stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/nwjs/nw patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/nwjs/nwjc - ln -s ${udev}/lib/libudev.so $out/share/nwjs/libudev.so.0 + ln -s ${libudev.out}/lib/libudev.so $out/share/nwjs/libudev.so.0 patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nw patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/nwjs" $out/share/nwjs/nwjc diff --git a/pkgs/development/tools/node-webkit/nw9.nix b/pkgs/development/tools/node-webkit/nw9.nix index 213b94102b0d..d8601865c6d1 100644 --- a/pkgs/development/tools/node-webkit/nw9.nix +++ b/pkgs/development/tools/node-webkit/nw9.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, buildEnv, makeWrapper , xorg, alsaLib, dbus, glib, gtk, atk, pango, freetype, fontconfig -, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, udev}: +, gdk_pixbuf, cairo, zlib, nss, nssTools, nspr, gconf, expat, libudev }: let bits = if stdenv.system == "x86_64-linux" then "x64" else "ia32"; @@ -33,7 +33,7 @@ in stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/node-webkit/nw patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $out/share/node-webkit/nwsnapshot - ln -s ${udev}/lib/libudev.so $out/share/node-webkit/libudev.so.0 + ln -s ${libudev.out}/lib/libudev.so $out/share/node-webkit/libudev.so.0 patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/node-webkit" $out/share/node-webkit/nw patchelf --set-rpath "${nwEnv}/lib:${nwEnv}/lib64:$out/share/node-webkit" $out/share/node-webkit/nwsnapshot diff --git a/pkgs/development/tools/phantomjs/default.nix b/pkgs/development/tools/phantomjs/default.nix index 77bc1e5a885f..8b6b655b6a56 100644 --- a/pkgs/development/tools/phantomjs/default.nix +++ b/pkgs/development/tools/phantomjs/default.nix @@ -1,6 +1,9 @@ -{ stdenv, fetchurl, freetype, fontconfig, openssl, unzip }: +{ stdenv, lib, fetchurl, freetype, fontconfig, openssl, unzip }: -assert stdenv.lib.elem stdenv.system [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; +let + platforms = [ "i686-linux" "x86_64-linux" "x86_64-darwin" ]; +in +assert lib.elem stdenv.system platforms; stdenv.mkDerivation rec { name = "phantomjs-1.9.8"; @@ -27,12 +30,12 @@ stdenv.mkDerivation rec { sha256 = "0j0aq8dgzmb210xdrh0v3d4nblskl3zsckl8bzf1a603wcx085cg"; }; - buildInputs = if stdenv.isDarwin then [ unzip ] else []; + buildInputs = lib.optional stdenv.isDarwin unzip; - buildPhase = if stdenv.isDarwin then "" else '' + buildPhase = lib.optionalString (!stdenv.isDarwin) '' patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${freetype}/lib:${fontconfig}/lib:${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${openssl}/lib" \ + --set-rpath "${stdenv.lib.makeLibraryPath [ freetype fontconfig stdenv.cc.cc stdenv.cc.cc openssl ]}" \ bin/phantomjs ''; @@ -60,9 +63,9 @@ stdenv.mkDerivation rec { ''; homepage = http://phantomjs.org/; - license = stdenv.lib.licenses.bsd3; + license = lib.licenses.bsd3; - maintainers = [ stdenv.lib.maintainers.bluescreen303 ]; - platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" ]; + maintainers = [ lib.maintainers.bluescreen303 ]; + inherit platforms; }; } diff --git a/pkgs/development/tools/phantomjs2/default.nix b/pkgs/development/tools/phantomjs2/default.nix index a0f919b404f3..e5af795fa4b7 100644 --- a/pkgs/development/tools/phantomjs2/default.nix +++ b/pkgs/development/tools/phantomjs2/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, +{ stdenv, fetchgit, bison2, flex, fontconfig, freetype, gperf, icu, openssl, libjpeg, libpng, perl, python, ruby, sqlite, darwin, writeScriptBin, cups }: @@ -33,11 +33,13 @@ let in stdenv.mkDerivation rec { name = "phantomjs-${version}"; - version = "2.0.0-20150528"; + version = "2.1.1"; - src = fetchurl { - url = "https://github.com/bprodoehl/phantomjs/archive/v2.0.0-20150528.tar.gz"; - sha256 = "18h37bxxg25lacry9k3vb5yim057bqcxmsifw97jrjp7gzfx56v5"; + # needs git submodules, so can't use fetchFromGitHub + src = fetchgit { + rev = "refs/tags/${version}"; + url = "https://github.com/ariya/phantomjs.git"; + sha256 = "16x104cw5f1dyhf7fg12vlpcywvc9c43r9afhl0dvssgxklrn0q7"; }; buildInputs = [ bison2 flex fontconfig freetype gperf icu openssl libjpeg libpng perl python ruby sqlite ] @@ -49,7 +51,8 @@ in stdenv.mkDerivation rec { patchPhase = '' patchShebangs . - sed -i -e 's|/bin/pwd|pwd|' src/qt/qtbase/configure + sed -i -e 's|/bin/pwd|pwd|' src/qt/qtbase/configure + touch src/qt/{qtbase,qtwebkit,3rdparty}/.git '' + stdenv.lib.optionalString stdenv.isDarwin '' sed -i 's,-licucore,/usr/lib/libicucore.dylib,' src/qt/qtwebkit/Source/WTF/WTF.pri substituteInPlace src/qt/qtwebkit/Tools/qmake/mkspecs/features/features.pri \ @@ -78,7 +81,9 @@ in stdenv.mkDerivation rec { __impureHostDeps = stdenv.lib.optional stdenv.isDarwin "/usr/lib/libicucore.dylib"; - buildPhase = "./build.sh --confirm"; + buildPhase = "./build.py --confirm -j$NIX_BUILD_CORES"; + + enableParallelBuilding = true; installPhase = '' mkdir -p $out/share/doc/phantomjs diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix index 8d9db34446d6..b2f566ece8de 100644 --- a/pkgs/development/tools/selenium/chromedriver/default.nix +++ b/pkgs/development/tools/selenium/chromedriver/default.nix @@ -23,9 +23,9 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin mv chromedriver $out/bin - patchelf --set-interpreter ${glibc}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver + patchelf --set-interpreter ${glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/chromedriver wrapProgram "$out/bin/chromedriver" \ - --prefix LD_LIBRARY_PATH : "$(cat ${stdenv.cc}/nix-support/orig-cc)/lib64:${cairo}/lib:${fontconfig}/lib:${freetype}/lib:${gdk_pixbuf}/lib:${glib}/lib:${gtk}/lib:${libX11}/lib:${nspr}/lib:${nss}/lib:${pango}/lib:${libXrender}/lib:${gconf}/lib:${libXext}/lib:${libXi}/lib:\$LD_LIBRARY_PATH" + --prefix LD_LIBRARY_PATH : "$(cat ${stdenv.cc}/nix-support/orig-cc)/lib64:${stdenv.lib.makeLibraryPath [ cairo fontconfig freetype gdk_pixbuf glib gtk libX11 nspr nss pango libXrender gconf libXext libXi ]}:\$LD_LIBRARY_PATH" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/selenium/server/default.nix b/pkgs/development/tools/selenium/server/default.nix index 2efd85f84010..66d9668fe82d 100644 --- a/pkgs/development/tools/selenium/server/default.nix +++ b/pkgs/development/tools/selenium/server/default.nix @@ -29,7 +29,7 @@ in stdenv.mkDerivation rec { ${jdk}/bin/jar xf $src launchers/launcher-linux-amd64 patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${gcc.cc}/lib/:${gcc.cc}/lib64:${xorg.libX11}/lib" \ + --set-rpath "${gcc.cc}/lib/:${gcc.cc}/lib64:${xorg.libX11.out}/lib" \ launchers/launcher-linux-${arch} ${jdk}/bin/jar uf $src launchers/launcher-linux-${arch} ''; diff --git a/pkgs/development/tools/sslmate/default.nix b/pkgs/development/tools/sslmate/default.nix index 72af18984514..8def4b6a6657 100644 --- a/pkgs/development/tools/sslmate/default.nix +++ b/pkgs/development/tools/sslmate/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { JSONPP TermReadKey ]}" \ - --prefix PATH : "${openssl}/bin" + --prefix PATH : "${openssl.bin}/bin" ''; meta = with stdenv.lib; { diff --git a/pkgs/development/tools/vagrant/default.nix b/pkgs/development/tools/vagrant/default.nix index c113dcbfb7b1..2284c25cf661 100644 --- a/pkgs/development/tools/vagrant/default.nix +++ b/pkgs/development/tools/vagrant/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation rec { # curl: curl, curl-config rm opt/vagrant/embedded/bin/{curl,curl-config} - ln -s ${curl}/bin/curl opt/vagrant/embedded/bin + ln -s ${curl.bin}/bin/curl opt/vagrant/embedded/bin ln -s ${curl}/bin/curl-config opt/vagrant/embedded/bin # libarchive: bsdtar, bsdcpio @@ -61,8 +61,8 @@ stdenv.mkDerivation rec { # openssl: c_rehash, openssl rm opt/vagrant/embedded/bin/{c_rehash,openssl} - ln -s ${openssl}/bin/c_rehash opt/vagrant/embedded/bin - ln -s ${openssl}/bin/openssl opt/vagrant/embedded/bin + ln -s ${openssl.bin}/bin/c_rehash opt/vagrant/embedded/bin + ln -s ${openssl.bin}/bin/openssl opt/vagrant/embedded/bin # ruby: erb, gem, irb, rake, rdoc, ri, ruby rm opt/vagrant/embedded/bin/{erb,gem,irb,rake,rdoc,ri,ruby} @@ -80,14 +80,14 @@ stdenv.mkDerivation rec { # libxml: xml2-config, xmlcatalog, xmllint rm opt/vagrant/embedded/bin/{xml2-config,xmlcatalog,xmllint} - ln -s ${libxml2}/bin/xml2-config opt/vagrant/embedded/bin - ln -s ${libxml2}/bin/xmlcatalog opt/vagrant/embedded/bin - ln -s ${libxml2}/bin/xmllint opt/vagrant/embedded/bin + ln -s ${libxml2.dev}/bin/xml2-config opt/vagrant/embedded/bin + ln -s ${libxml2.bin}/bin/xmlcatalog opt/vagrant/embedded/bin + ln -s ${libxml2.bin}/bin/xmllint opt/vagrant/embedded/bin # libxslt: xslt-config, xsltproc rm opt/vagrant/embedded/bin/{xslt-config,xsltproc} - ln -s ${libxslt}/bin/xslt-config opt/vagrant/embedded/bin - ln -s ${libxslt}/bin/xsltproc opt/vagrant/embedded/bin + ln -s ${libxslt.dev}/bin/xslt-config opt/vagrant/embedded/bin + ln -s ${libxslt.bin}/bin/xsltproc opt/vagrant/embedded/bin mkdir -p "$out" cp -r opt "$out" diff --git a/pkgs/development/web/nodejs/v4.nix b/pkgs/development/web/nodejs/v4.nix index 629864b6e0b5..ccb528173677 100644 --- a/pkgs/development/web/nodejs/v4.nix +++ b/pkgs/development/web/nodejs/v4.nix @@ -43,13 +43,14 @@ in stdenv.mkDerivation { patches = stdenv.lib.optionals stdenv.isDarwin [ ./no-xcode.patch ]; + buildInputs = [ python zlib libuv openssl python ] + ++ optionals stdenv.isLinux [ utillinux http-parser ]; + nativeBuildInputs = [ pkgconfig ] + ++ optional stdenv.isDarwin libtool; + postFixup = '' sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' $out/lib/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py ''; - - buildInputs = [ python which zlib libuv openssl python ] - ++ optionals stdenv.isLinux [ utillinux http-parser ] - ++ optionals stdenv.isDarwin [ pkgconfig openssl libtool ]; setupHook = ./setup-hook.sh; enableParallelBuilding = true; diff --git a/pkgs/development/web/nodejs/v5.nix b/pkgs/development/web/nodejs/v5.nix index c1d45443885e..5cb87ecc0764 100644 --- a/pkgs/development/web/nodejs/v5.nix +++ b/pkgs/development/web/nodejs/v5.nix @@ -6,7 +6,7 @@ assert stdenv.system != "armv5tel-linux"; let - version = "5.9.0"; + version = "5.10.1"; deps = { inherit openssl zlib libuv; @@ -30,7 +30,7 @@ in stdenv.mkDerivation { src = fetchurl { url = "http://nodejs.org/dist/v${version}/node-v${version}.tar.gz"; - sha256 = "0ghgfqs64794g6ggrvsdcqwz2lnhck0yiy2fyyg3in8z91k5l5z5"; + sha256 = "1kdaahq3h89c7mz2qbqx43qdigsswl1i8ll5vw6j8g5m2av7iqn6"; }; configureFlags = concatMap sharedConfigureFlags (builtins.attrNames deps) ++ [ "--without-dtrace" ]; diff --git a/pkgs/games/anki/default.nix b/pkgs/games/anki/default.nix index f4fff289fec8..a298b379c0f8 100644 --- a/pkgs/games/anki/default.nix +++ b/pkgs/games/anki/default.nix @@ -7,7 +7,7 @@ }: let - version = "2.0.33"; + version = "2.0.35"; in stdenv.mkDerivation rec { name = "anki-${version}"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { "http://ankisrs.net/download/mirror/${name}.tgz" "http://ankisrs.net/download/mirror/archive/${name}.tgz" ]; - sha256 = "1d5rf5gcw98m38wam6wh3hyh7qd78ws7zipm67xg744flqsjrzmr"; + sha256 = "1d7k38xzw1nbg83d1aqxf2f76fv3hn2fry99k3vf4lgmhndj52mv"; }; pythonPath = [ pyqt4 pysqlite sqlalchemy pyaudio beautifulsoup httplib2 ] diff --git a/pkgs/games/beret/default.nix b/pkgs/games/beret/default.nix index e2e4f5af977a..81bdbed46e94 100644 --- a/pkgs/games/beret/default.nix +++ b/pkgs/games/beret/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { buildInputs = [ SDL SDL_image SDL_ttf SDL_mixer ]; - NIX_CFLAGS_COMPILE = "-I${SDL}/include/SDL"; + NIX_CFLAGS_COMPILE = "-I${SDL.dev}/include/SDL"; NIX_CFLAGS_LINK = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-framework CoreFoundation -framework OpenGL -framework Cocoa"; diff --git a/pkgs/games/bitsnbots/default.nix b/pkgs/games/bitsnbots/default.nix index 57cd67fbb7ba..82e5ddb06d4d 100644 --- a/pkgs/games/bitsnbots/default.nix +++ b/pkgs/games/bitsnbots/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { makefile = "Makefile.linux"; - NIX_CFLAGS_COMPILE = "-I${SDL}/include/SDL"; + NIX_CFLAGS_COMPILE = "-I${SDL.dev}/include/SDL"; NIX_LDFLAGS = "-lGL"; diff --git a/pkgs/games/extremetuxracer/default.nix b/pkgs/games/extremetuxracer/default.nix index af80467c960d..f2417428880c 100644 --- a/pkgs/games/extremetuxracer/default.nix +++ b/pkgs/games/extremetuxracer/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-tcl=${tcl}/lib" ]; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL}/include/SDL" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL.dev}/include/SDL" ''; meta = { diff --git a/pkgs/games/factorio/default.nix b/pkgs/games/factorio/default.nix index c9517b22a33b..3118c3fffb1b 100644 --- a/pkgs/games/factorio/default.nix +++ b/pkgs/games/factorio/default.nix @@ -1,13 +1,13 @@ { stdenv, callPackage, fetchurl, makeWrapper # Begin libraries -, alsaLib, libX11, libXcursor, libXinerama, libXrandr, libXi +, alsaLib, libX11, libXcursor, libXinerama, libXrandr, libXi, mesa_noglu # Begin download parameters , username ? "" , password ? "" }: let - version = "0.12.20"; + version = "0.12.28"; fetch = callPackage ./fetch.nix { username = username; password = password; }; arch = if stdenv.system == "x86_64-linux" then "x64" @@ -17,12 +17,12 @@ let variants = { x64 = { url = "https://www.factorio.com/get-download/${version}/alpha/linux64"; - sha256 = "1xpzrx3q678519qgjl92fxn3qv55hd188x9jp6dcfk2ljhi1gmqk"; + sha256 = "01si5n9hb2h0c5q8k3hr3nphsakp9kki84qyp70dgddwqsn8wfjl"; }; x32 = { url = "https://www.factorio.com/get-download/${version}/alpha/linux32"; - sha256 = "1dl1dsp4nni5nda437ckyw1ss6w168g19v51h7cdvb3cgsdb7sab"; + sha256 = "13h013ixyhv4rpvh0jv5jry3mrwv65v57nqn16bjh3hr8ip70lkq"; }; }; in @@ -39,6 +39,7 @@ stdenv.mkDerivation rec { libXinerama libXrandr libXi + mesa_noglu ]; buildInputs = [ makeWrapper ]; diff --git a/pkgs/games/gemrb/default.nix b/pkgs/games/gemrb/default.nix index 86da7686eefd..42d80f86e828 100644 --- a/pkgs/games/gemrb/default.nix +++ b/pkgs/games/gemrb/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { # TODO: make libpng, libvorbis, sdl_mixer, freetype, vlc, glew (and other gl reqs) optional # Necessary to find libdl. - CMAKE_LIBRARY_PATH = "${stdenv.cc.libc}/lib"; + CMAKE_LIBRARY_PATH = "${stdenv.cc.libc.out}/lib"; # Can't have -werror because of the Vorbis header files. cmakeFlags = "-DDISABLE_WERROR=ON -DCMAKE_VERBOSE_MAKEFILE=ON"; diff --git a/pkgs/games/hedgewars/default.nix b/pkgs/games/hedgewars/default.nix index 8d601e29d0b0..7d0f59a4e0d0 100644 --- a/pkgs/games/hedgewars/default.nix +++ b/pkgs/games/hedgewars/default.nix @@ -26,11 +26,11 @@ stdenv.mkDerivation rec { -rpath ${SDL_mixer}/lib -rpath ${SDL_net}/lib -rpath ${SDL_ttf}/lib - -rpath ${SDL}/lib - -rpath ${libpng}/lib + -rpath ${SDL.out}/lib + -rpath ${libpng.out}/lib -rpath ${lua5_1}/lib -rpath ${mesa}/lib - -rpath ${zlib}/lib + -rpath ${zlib.out}/lib " ''; diff --git a/pkgs/games/liquidwar/default.nix b/pkgs/games/liquidwar/default.nix index ce346459201d..f97c0ec412fc 100644 --- a/pkgs/games/liquidwar/default.nix +++ b/pkgs/games/liquidwar/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { ]; # To avoid problems finding SDL_types.h. - configureFlags = [ "CFLAGS=-I${SDL}/include/SDL" ]; + configureFlags = [ "CFLAGS=-I${SDL.dev}/include/SDL" ]; meta = with stdenv.lib; { description = "Quick tactics game"; diff --git a/pkgs/games/micropolis/default.nix b/pkgs/games/micropolis/default.nix index 55a02e08003d..a294128969c5 100644 --- a/pkgs/games/micropolis/default.nix +++ b/pkgs/games/micropolis/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { preConfigure = '' cd src - sed -i "s@^CFLAGS.*\$@&\nCFLAGS += -I${libXpm}/include/X11@" tk/makefile + sed -i "s@^CFLAGS.*\$@&\nCFLAGS += -I${libXpm.dev}/include/X11@" tk/makefile sed -i "s@^INCLUDES.*\$@&\n\t-I$PWD/tcl \\\\@" sim/makefile ''; diff --git a/pkgs/games/minetest/default.nix b/pkgs/games/minetest/default.nix index ecd468eaf582..1b201daa371b 100644 --- a/pkgs/games/minetest/default.nix +++ b/pkgs/games/minetest/default.nix @@ -25,7 +25,7 @@ in stdenv.mkDerivation { cmakeFlags = [ "-DENABLE_FREETYPE=1" "-DENABLE_GETTEXT=1" - "-DCURL_INCLUDE_DIR=${curl}/include/curl" + "-DCURL_INCLUDE_DIR=${curl.dev}/include/curl" "-DIRRLICHT_INCLUDE_DIR=${irrlicht}/include/irrlicht" ]; diff --git a/pkgs/games/nexuiz/default.nix b/pkgs/games/nexuiz/default.nix index e40dec3c23fc..0bfebd510c94 100644 --- a/pkgs/games/nexuiz/default.nix +++ b/pkgs/games/nexuiz/default.nix @@ -36,14 +36,14 @@ in stdenv.mkDerivation { ''; NIX_LDFLAGS = '' - -rpath ${zlib}/lib - -rpath ${curl}/lib - -rpath ${libjpeg}/lib - -rpath ${libpng}/lib - -rpath ${libvorbis}/lib - -rpath ${libtheora}/lib - -rpath ${libogg}/lib - -rpath ${libmodplug}/lib + -rpath ${zlib.out}/lib + -rpath ${curl.out}/lib + -rpath ${libjpeg.out}/lib + -rpath ${libpng.out}/lib + -rpath ${libvorbis.out}/lib + -rpath ${libtheora.out}/lib + -rpath ${libogg.out}/lib + -rpath ${libmodplug.out}/lib ''; buildPhase = '' diff --git a/pkgs/games/oilrush/default.nix b/pkgs/games/oilrush/default.nix index d75f02c5e941..ec9c928b7982 100644 --- a/pkgs/games/oilrush/default.nix +++ b/pkgs/games/oilrush/default.nix @@ -1,6 +1,8 @@ { stdenv, config, fetchurl, libX11, libXext, libXinerama, libXrandr , libXrender, fontconfig, freetype, openal }: +with { inherit (stdenv.lib) makeLibraryPath; }; + stdenv.mkDerivation { name = "oilrush"; src = @@ -25,25 +27,25 @@ stdenv.mkDerivation { do patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" $f done - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXrender}/lib:${fontconfig}/lib:${freetype}/lib\ + patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ launcher_$arch patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ libNetwork_$arch.so patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ libQtCoreUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXrender}/lib:${fontconfig}/lib:${freetype}/lib\ + patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtGuiUnigine_$arch.so.4 patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ libQtNetworkUnigine_$arch.so.4 - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXrender}/lib:${fontconfig}/lib:${freetype}/lib\ + patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXrender fontconfig freetype ]}\ libQtWebKitUnigine_$arch.so.4 patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ libQtXmlUnigine_$arch.so.4 patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib\ libRakNet_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXinerama}/lib:${libXrandr}/lib\ + patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ libUnigine_$arch.so - patchelf --set-rpath ${stdenv.cc.cc}/lib64:${stdenv.cc.cc}/lib:${libX11}/lib:${libXext}/lib:${libXinerama}/lib:${libXrandr}/lib\ + patchelf --set-rpath ${stdenv.cc.cc}/lib64:${makeLibraryPath [ stdenv.cc.cc libX11 libXext libXinerama libXrandr ]}\ OilRush_$arch ''; installPhase = '' @@ -53,7 +55,7 @@ stdenv.mkDerivation { mkdir -p "$out/bin" cat << EOF > "$out/bin/oilrush" #! /bin/sh - LD_LIBRARY_PATH=.:${openal}/lib:\$LD_LIBRARY_PATH + LD_LIBRARY_PATH=.:${makeLibraryPath [ openal ]}:\$LD_LIBRARY_PATH cd "$out/opt/oilrush" exec ./launcher_$arch.sh "\$@" EOF diff --git a/pkgs/games/openarena/default.nix b/pkgs/games/openarena/default.nix index 1926afaeb3b6..1e396318bbbd 100644 --- a/pkgs/games/openarena/default.nix +++ b/pkgs/games/openarena/default.nix @@ -15,6 +15,7 @@ stdenv.mkDerivation rec { installPhase = let gameDir = "$out/openarena-$version"; interpreter = "$(< \"$NIX_CC/nix-support/dynamic-linker\")"; + libPath = stdenv.lib.makeLibraryPath [ SDL libogg libvorbis ]; in '' mkdir -pv $out/bin cd $out @@ -23,11 +24,11 @@ stdenv.mkDerivation rec { ${if stdenv.system == "x86_64-linux" then '' patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.x86_64" makeWrapper "${gameDir}/openarena.x86_64" "$out/bin/openarena" \ - --prefix LD_LIBRARY_PATH : "${SDL}/lib:${libogg}/lib:${libvorbis}/lib" + --prefix LD_LIBRARY_PATH : "${libPath}" '' else '' patchelf --set-interpreter "${interpreter}" "${gameDir}/openarena.i386" makeWrapper "${gameDir}/openarena.i386" "$out/bin/openarena" \ - --prefix LD_LIBRARY_PATH : "${SDL}/lib:${libogg}/lib:${libvorbis}/lib" + --prefix LD_LIBRARY_PATH : "${libPath}" ''} ''; diff --git a/pkgs/games/openlierox/default.nix b/pkgs/games/openlierox/default.nix index 2dc4dece75f3..04b74b4214fa 100644 --- a/pkgs/games/openlierox/default.nix +++ b/pkgs/games/openlierox/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { sha256 = "1k35xppfqi3qfysv81xq3hj4qdy9j2ciinbkfdcmwclcsf3nh94z"; }; - NIX_CFLAGS_COMPILE = "-I${libxml2}/include/libxml2"; + NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2"; # The breakpad fails to build on x86_64, and it's only to report bugs upstream cmakeFlags = [ "-DBREAKPAD=0" ]; diff --git a/pkgs/games/openttd/default.nix b/pkgs/games/openttd/default.nix index 65fab09d04dd..7411c161146e 100644 --- a/pkgs/games/openttd/default.nix +++ b/pkgs/games/openttd/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { prefixKey = "--prefix-dir="; configureFlags = [ - "--with-zlib=${zlib}/lib/libz.a" + "--with-zlib=${zlib.static}/lib/libz.a" "--without-liblzo2" ]; diff --git a/pkgs/games/planetaryannihilation/default.nix b/pkgs/games/planetaryannihilation/default.nix index ed682e7bed93..cf968c08287e 100644 --- a/pkgs/games/planetaryannihilation/default.nix +++ b/pkgs/games/planetaryannihilation/default.nix @@ -34,12 +34,12 @@ stdenv.mkDerivation { ln -s ${systemd}/lib/libudev.so.1 $out/lib/libudev.so.0 patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/PA" - patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc xorg.libXdamage xorg.libXfixes gtk glib stdenv.glibc "$out" xorg.libXext pango udev xorg.libX11 xorg.libXcomposite alsaLib atk nspr fontconfig cairo pango nss freetype gnome3.gconf gdk_pixbuf xorg.libXrender ]}:{stdenv.cc.cc}/lib64:${stdenv.glibc}/lib64" "$out/host/CoherentUI_Host" + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib xorg.libXdamage xorg.libXfixes gtk glib stdenv.glibc.out "$out" xorg.libXext pango udev xorg.libX11 xorg.libXcomposite alsaLib atk nspr fontconfig cairo pango nss freetype gnome3.gconf gdk_pixbuf xorg.libXrender ]}:{stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" "$out/host/CoherentUI_Host" - wrapProgram $out/PA --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc stdenv.glibc xorg.libX11 xorg.libXcursor gtk glib curl "$out" ]}:${stdenv.cc.cc}/lib64:${stdenv.glibc}/lib64" + wrapProgram $out/PA --prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib stdenv.glibc.out xorg.libX11 xorg.libXcursor gtk glib curl "$out" ]}:${stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" for f in $out/lib/*; do - patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc curl xorg.libX11 stdenv.glibc xorg.libXcursor "$out" ]}:${stdenv.cc.cc}/lib64:${stdenv.glibc}/lib64" $f + patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc.lib curl xorg.libX11 stdenv.glibc.out xorg.libXcursor "$out" ]}:${stdenv.cc.cc.lib}/lib64:${stdenv.glibc.out}/lib64" $f done ''; diff --git a/pkgs/games/quantumminigolf/default.nix b/pkgs/games/quantumminigolf/default.nix index 940351790166..1b0755077965 100644 --- a/pkgs/games/quantumminigolf/default.nix +++ b/pkgs/games/quantumminigolf/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { inherit (s) url sha256; }; preBuild = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL}/include/SDL" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${SDL.dev}/include/SDL" sed -re 's@"(gfx|fonts|tracks)/@"'"$out"'/share/quantumminigolf/\1/@g' -i *.cpp ''; diff --git a/pkgs/games/rili/default.nix b/pkgs/games/rili/default.nix index 7d1273328453..e0e6de6b8efe 100644 --- a/pkgs/games/rili/default.nix +++ b/pkgs/games/rili/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation { patches = [ ./moderinze_cpp.patch ]; - CPPFLAGS = "-I${SDL}/include -I${SDL}/include/SDL -I${SDL_mixer}/include"; + CPPFLAGS = "-I${SDL.dev}/include -I${SDL.dev}/include/SDL -I${SDL_mixer}/include"; buildInputs = [ SDL SDL_mixer autoreconfHook ]; diff --git a/pkgs/games/sdlmame/default.nix b/pkgs/games/sdlmame/default.nix index 15b7f87ed10f..5e52a92e621a 100644 --- a/pkgs/games/sdlmame/default.nix +++ b/pkgs/games/sdlmame/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { installPhase = '' patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${alsaLib}/lib:${qt48}/lib:${SDL}/lib:${fontconfig}/lib:${freetype}/lib:${SDL_ttf}/lib:${xorg.libX11}/lib:${xorg.libXinerama}/lib:${stdenv.cc.cc}/lib" \ + --set-rpath "${stdenv.lib.makeLibraryPath [ alsaLib qt48 SDL fontconfig freetype SDL_ttf xorg.libX11 xorg.libXinerama stdenv.cc.cc ]}" \ share/sdlmame/sdlmame mkdir -p "$out/bin" diff --git a/pkgs/games/steam/chrootenv.nix b/pkgs/games/steam/chrootenv.nix index e6652d2f0239..7a4fd611b1b4 100644 --- a/pkgs/games/steam/chrootenv.nix +++ b/pkgs/games/steam/chrootenv.nix @@ -1,4 +1,5 @@ -{ lib, buildFHSUserEnv, steam +{ stdenv, lib, writeScript, buildFHSUserEnv, steam +, steam-runtime, steam-runtime-i686 ? null , withJava ? false , withPrimus ? false , nativeOnly ? false @@ -6,10 +7,11 @@ , newStdcpp ? false }: -buildFHSUserEnv { - name = "steam"; +let + self = { + name = "steam"; - targetPkgs = pkgs: with pkgs; [ + targetPkgs = pkgs: with pkgs; [ steamPackages.steam steamPackages.steam-fonts # License agreement @@ -22,12 +24,15 @@ buildFHSUserEnv { which # Needed by gdialog, including in the steam-runtime perl - ] - ++ lib.optional withJava jdk - ++ lib.optional withPrimus primus - ; + # Open URLs + xdg_utils + ] ++ lib.optional withJava jdk + ++ lib.optional withPrimus (primus.override { + stdenv = overrideInStdenv stdenv [ useOldCXXAbi ]; + stdenv_i686 = overrideInStdenv pkgsi686Linux.stdenv [ useOldCXXAbi ]; + }); - multiPkgs = pkgs: with pkgs; [ + multiPkgs = pkgs: with pkgs; [ # These are required by steam with proper errors xlibs.libXcomposite xlibs.libXtst @@ -46,23 +51,47 @@ buildFHSUserEnv { }) ]; - extraBuildCommands = '' - mkdir -p steamrt + extraBuildCommands = '' + mkdir -p steamrt + ln -s ../lib/steam-runtime steamrt/${steam-runtime.arch} + ${lib.optionalString (steam-runtime-i686 != null) '' + ln -s ../lib32/steam-runtime steamrt/${steam-runtime-i686.arch} + ''} + ''; - ln -s ../lib64/steam-runtime steamrt/amd64 - ln -s ../lib32/steam-runtime steamrt/i386 - ''; + extraInstallCommands = '' + mkdir -p $out/share/applications + ln -s ${steam}/share/icons $out/share + ln -s ${steam}/share/pixmaps $out/share + sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop + ''; - extraInstallCommands = '' - mkdir -p $out/share/applications - ln -s ${steam}/share/icons $out/share - ln -s ${steam}/share/pixmaps $out/share - sed "s,/usr/bin/steam,$out/bin/steam,g" ${steam}/share/applications/steam.desktop > $out/share/applications/steam.desktop - ''; + profile = '' + export STEAM_RUNTIME=/steamrt + ''; - profile = '' - export STEAM_RUNTIME=/steamrt - ''; + runScript = "steam"; - runScript = "steam"; -} + passthru.run = buildFHSUserEnv (self // { + name = "steam-run"; + + runScript = + let ldPath = map (x: "/steamrt/${steam-runtime.arch}/" + x) steam-runtime.libs + ++ lib.optionals (steam-runtime-i686 != null) (map (x: "/steamrt/${steam-runtime-i686.arch}/" + x) steam-runtime-i686.libs); + in writeScript "steam-run" '' + #!${stdenv.shell} + run="$1" + if [ "$run" = "" ]; then + echo "Usage: steam-run command-to-run args..." >&2 + exit 1 + fi + shift + export LD_LIBRARY_PATH=${lib.concatStringsSep ":" ldPath}:$LD_LIBRARY_PATH + exec "$run" "$@" + ''; + + passthru = {}; + }); + }; + +in buildFHSUserEnv self diff --git a/pkgs/games/steam/default.nix b/pkgs/games/steam/default.nix index 64f8cfe2c287..ae3fe561272f 100644 --- a/pkgs/games/steam/default.nix +++ b/pkgs/games/steam/default.nix @@ -7,8 +7,13 @@ let steam-runtime = callPackage ./runtime.nix { }; steam-runtime-wrapped = callPackage ./runtime-wrapped.nix { }; steam = callPackage ./steam.nix { }; - steam-chrootenv = callPackage ./chrootenv.nix { }; steam-fonts = callPackage ./fonts.nix { }; + steam-chrootenv = callPackage ./chrootenv.nix { + steam-runtime-i686 = + if pkgs.system == "x86_64-linux" + then pkgs.pkgsi686Linux.steamPackages.steam-runtime + else null; + }; }; in self diff --git a/pkgs/games/tibia/default.nix b/pkgs/games/tibia/default.nix index c1f533276d6e..1af750f462a9 100644 --- a/pkgs/games/tibia/default.nix +++ b/pkgs/games/tibia/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation { mkdir -pv $out/res cp -r * $out/res - patchelf --set-interpreter ${glibc}/lib/ld-linux.so.2 \ + patchelf --set-interpreter ${glibc.out}/lib/ld-linux.so.2 \ --set-rpath ${stdenv.cc.cc}/lib:${libX11}/lib:${mesa}/lib \ "$out/res/Tibia" @@ -41,7 +41,7 @@ stdenv.mkDerivation { cat << EOF > "$out/bin/Tibia" #!${stdenv.shell} cd $out/res - ${glibc}/lib/ld-linux.so.2 --library-path \$LD_LIBRARY_PATH ./Tibia "\$@" + ${glibc.out}/lib/ld-linux.so.2 --library-path \$LD_LIBRARY_PATH ./Tibia "\$@" EOF chmod +x $out/bin/Tibia diff --git a/pkgs/games/trackballs/default.nix b/pkgs/games/trackballs/default.nix index 22d8c944fa8b..7cf741f2faba 100644 --- a/pkgs/games/trackballs/default.nix +++ b/pkgs/games/trackballs/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { postUnpack = optionalString debug "mkdir -p $out/src; cp -R * $out/src ; cd $out/src"; - NIX_CFLAGS_COMPILE = "-iquote ${SDL}/include/SDL"; + NIX_CFLAGS_COMPILE = "-iquote ${SDL.dev}/include/SDL"; configureFlags = optionalString debug "--enable-debug"; patchPhase = '' diff --git a/pkgs/games/trigger/default.nix b/pkgs/games/trigger/default.nix index ad65b54ddcda..382edb6908b4 100644 --- a/pkgs/games/trigger/default.nix +++ b/pkgs/games/trigger/default.nix @@ -1,37 +1,35 @@ -{ fetchurl, stdenv, SDL, freealut, SDL_image, openal, physfs, zlib, mesa, jam }: +{ fetchurl, stdenv, SDL, freealut, SDL_image, openal, physfs, zlib, mesa, glew }: stdenv.mkDerivation rec { - name = "trigger-rally-0.6.1"; + name = "trigger-rally-0.6.3"; src = fetchurl { - url = "mirror://sourceforge/trigger-rally/${name}-src.tar.bz2"; - sha256 = "1fvb6dl5bwclmx0y8ygyrfn8jczc5kxawxlyv6mp592smb5x5hjs"; + url = "mirror://sourceforge/trigger-rally/${name}.tar.gz"; + sha256 = "103mv4vpq335mrmgzlhahrfncq7ds3b5ip5a52967rv2j6hhzpvy"; }; - srcData = fetchurl { - url = "mirror://sourceforge/trigger-rally/${name}-data.tar.bz2"; - sha256 = "04f9d74gz5xvfx6pnmbfxqhp0kd1p16j5lrgcq12wxvla6py4qaw"; - }; - - buildInputs = [ SDL freealut SDL_image openal physfs zlib mesa jam ]; + buildInputs = [ SDL freealut SDL_image openal physfs zlib mesa glew ]; preConfigure = '' - configureFlags="$configureFlags --datadir=$out/share/${name}-data" + sed s,/usr/local,$out, -i bin/*defs + + cd src + export makeFlags="$makeFlags prefix=$out" ''; - # It has some problems installing the README file, so... out. - patchPhase = '' - sed -i /README/d Jamfile + enableParallelBuilding = true; + + postInstall = '' + mkdir -p $out/bin + cat < $out/bin/trigger-rally + #!/bin/sh + exec $out/games/trigger-rally "$@" + EOF + chmod +x $out/bin/trigger-rally ''; - buildPhase = "jam"; - - installPhase = '' - jam install - mkdir -p $out/share - pushd $out/share - tar xf $srcData - ''; + # search.patch : fix c++ error. + patches = [ ./search.patch ]; meta = { description = "Rally"; diff --git a/pkgs/games/trigger/search.patch b/pkgs/games/trigger/search.patch new file mode 100644 index 000000000000..60a69b159b5b --- /dev/null +++ b/pkgs/games/trigger/search.patch @@ -0,0 +1,14 @@ +diff --git a/src/Trigger/main.cpp b/src/Trigger/main.cpp +index 39539e1..680c12c 100644 +--- a/src/Trigger/main.cpp ++++ b/src/Trigger/main.cpp +@@ -890,7 +890,8 @@ bool MainApp::loadAll() + std::smatch mr; // Match Results + std::regex pat(R"(^(\w+)(\..+)$)"); // Pattern + +- if (!std::regex_search(std::string(*fname), mr, pat)) ++ std::string search(*fname); ++ if (!std::regex_search(search, mr, pat)) + continue; + + std::string basefname = mr[1]; diff --git a/pkgs/games/ue4demos/default.nix b/pkgs/games/ue4demos/default.nix index ed2ea23d4158..026f974ff932 100644 --- a/pkgs/games/ue4demos/default.nix +++ b/pkgs/games/ue4demos/default.nix @@ -20,7 +20,7 @@ let cd $out unzip $src - interpreter=$(echo ${stdenv.glibc}/lib/ld-linux*.so.2) + interpreter=$(echo ${stdenv.glibc.out}/lib/ld-linux*.so.2) binary=$(find . -executable -type f) patchelf \ --set-interpreter $interpreter \ diff --git a/pkgs/games/ultrastardx/default.nix b/pkgs/games/ultrastardx/default.nix index 3eabaa090bb0..5027abedcf4f 100644 --- a/pkgs/games/ultrastardx/default.nix +++ b/pkgs/games/ultrastardx/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { # The fpc is not properly wrapped to add -rpath. I add this manually. # I even do a trick on lib/lib64 for libgcc, that I expect it will work. preBuild = '' - export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${SDL}/lib -rpath ${SDL_image}/lib -rpath ${libpng}/lib -rpath ${freetype}/lib -rpath ${portaudio}/lib -rpath ${ffmpeg}/lib -rpath ${zlib}/lib -rpath ${sqlite}/lib -rpath ${libX11}/lib -rpath ${pcre}/lib -rpath ${lua}/lib -rpath ${stdenv.cc.cc}/lib64 -rpath ${stdenv.cc.cc}/lib" + export NIX_LDFLAGS="$NIX_LDFLAGS -rpath ${SDL.out}/lib -rpath ${SDL_image}/lib -rpath ${libpng.out}/lib -rpath ${freetype.out}/lib -rpath ${portaudio}/lib -rpath ${ffmpeg.out}/lib -rpath ${zlib.out}/lib -rpath ${sqlite.out}/lib -rpath ${libX11.out}/lib -rpath ${pcre.out}/lib -rpath ${lua}/lib -rpath ${stdenv.cc.cc.out}/lib64 -rpath ${stdenv.cc.cc.out}/lib" sed -i 414,424d Makefile ''; diff --git a/pkgs/games/warsow/default.nix b/pkgs/games/warsow/default.nix index b525e3cb0f89..9f2dfbab2ecd 100644 --- a/pkgs/games/warsow/default.nix +++ b/pkgs/games/warsow/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { cp -rv basewsw libs $dest # Since 1.03 some modules are _always_ downloaded from server, thus makeWrapper $dest/warsow $out/bin/warsow \ - --suffix-each LD_LIBRARY_PATH ':' "${freetype}/lib" + --suffix-each LD_LIBRARY_PATH ':' "${freetype.out}/lib" makeWrapper $dest/wsw_server $out/bin/wsw_server makeWrapper $dest/wswtv_server $out/bin/wswtv_server ''; diff --git a/pkgs/games/xonotic/default.nix b/pkgs/games/xonotic/default.nix index 7fb7c11694fd..e45bbb20d3a7 100644 --- a/pkgs/games/xonotic/default.nix +++ b/pkgs/games/xonotic/default.nix @@ -32,9 +32,9 @@ stdenv.mkDerivation rec { #''; NIX_LDFLAGS = '' - -rpath ${zlib}/lib - -rpath ${libvorbis}/lib - -rpath ${curl}/lib + -rpath ${zlib.out}/lib + -rpath ${libvorbis.out}/lib + -rpath ${curl.out}/lib ''; buildPhase = '' diff --git a/pkgs/games/xsokoban/default.nix b/pkgs/games/xsokoban/default.nix index e6686a658a90..502771e18ee6 100644 --- a/pkgs/games/xsokoban/default.nix +++ b/pkgs/games/xsokoban/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { preConfigure = '' sed -e 's/getline/my_getline/' -i score.c - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libXpm}/include/X11" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libXpm.dev}/include/X11" for i in $NIX_CFLAGS_COMPILE; do echo $i; ls ''${i#-I}; done chmod a+rw config.h cat >>config.h < +Date: Mon, 5 Aug 2013 15:02:45 -0700 +Subject: x86, asmlinkage, apm: Make APM data structure used from assembler + visible + +Signed-off-by: Andi Kleen +Link: http://lkml.kernel.org/r/1375740170-7446-12-git-send-email-andi@firstfloor.org +Signed-off-by: H. Peter Anvin +--- + arch/x86/kernel/apm_32.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/arch/x86/kernel/apm_32.c b/arch/x86/kernel/apm_32.c +index 53a4e27..3ab0343 100644 +--- a/arch/x86/kernel/apm_32.c ++++ b/arch/x86/kernel/apm_32.c +@@ -392,7 +392,7 @@ static struct cpuidle_device apm_cpuidle_device; + /* + * Local variables + */ +-static struct { ++__visible struct { + unsigned long offset; + unsigned short segment; + } apm_bios_entry; +-- +cgit v0.12 + diff --git a/pkgs/os-specific/linux/kernel/gcc5-link-lguest.patch b/pkgs/os-specific/linux/kernel/gcc5-link-lguest.patch new file mode 100644 index 000000000000..b2474f572ae1 --- /dev/null +++ b/pkgs/os-specific/linux/kernel/gcc5-link-lguest.patch @@ -0,0 +1,46 @@ +From cdd77e87eae52b7251acc5990207a1c4500a84ce Mon Sep 17 00:00:00 2001 +From: Andi Kleen +Date: Tue, 5 Nov 2013 21:22:28 +1030 +Subject: x86, asmlinkage, lguest: Pass in globals into assembler statement + +Tell the compiler that the inline assembler statement +references lguest_entry. + +This fixes compile problems with LTO where the variable +and the assembler code may end up in different files. + +Cc: x86@kernel.org +Cc: rusty@rustcorp.com.au +Signed-off-by: Andi Kleen +Signed-off-by: Rusty Russell +--- + drivers/lguest/x86/core.c | 6 ++++-- + 1 file changed, 4 insertions(+), 2 deletions(-) + +diff --git a/drivers/lguest/x86/core.c b/drivers/lguest/x86/core.c +index 5169239..922a1ac 100644 +--- a/drivers/lguest/x86/core.c ++++ b/drivers/lguest/x86/core.c +@@ -157,7 +157,7 @@ static void run_guest_once(struct lg_cpu *cpu, struct lguest_pages *pages) + * stack, then the address of this call. This stack layout happens to + * exactly match the stack layout created by an interrupt... + */ +- asm volatile("pushf; lcall *lguest_entry" ++ asm volatile("pushf; lcall *%4" + /* + * This is how we tell GCC that %eax ("a") and %ebx ("b") + * are changed by this routine. The "=" means output. +@@ -169,7 +169,9 @@ static void run_guest_once(struct lg_cpu *cpu, struct lguest_pages *pages) + * physical address of the Guest's top-level page + * directory. + */ +- : "0"(pages), "1"(__pa(cpu->lg->pgdirs[cpu->cpu_pgd].pgdir)) ++ : "0"(pages), ++ "1"(__pa(cpu->lg->pgdirs[cpu->cpu_pgd].pgdir)), ++ "m"(lguest_entry) + /* + * We tell gcc that all these registers could change, + * which means we don't have to save and restore them in +-- +cgit v0.12 + diff --git a/pkgs/os-specific/linux/kernel/linux-testing.nix b/pkgs/os-specific/linux/kernel/linux-testing.nix index e58230712a95..e3edaa43b8cd 100644 --- a/pkgs/os-specific/linux/kernel/linux-testing.nix +++ b/pkgs/os-specific/linux/kernel/linux-testing.nix @@ -1,13 +1,13 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6-rc1"; - modDirVersion = "4.6.0-rc1"; + version = "4.6-rc2"; + modDirVersion = "4.6.0-rc2"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/testing/linux-${version}.tar.xz"; - sha256 = "1y73sjd7i48d1c8x52z59imx8g8d00wy67r5666cvwqrq8d407h0"; + sha256 = "0zihk9s1rkgmn0ghiz9xkg0w88w524af5mmad45rbxhm5751nxcr"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/manual-config.nix b/pkgs/os-specific/linux/kernel/manual-config.nix index 238b7ecd242c..ffe09cc2fee5 100644 --- a/pkgs/os-specific/linux/kernel/manual-config.nix +++ b/pkgs/os-specific/linux/kernel/manual-config.nix @@ -74,7 +74,7 @@ let installsFirmware = (config.isEnabled "FW_LOADER") && (isModular || (config.isDisabled "FIRMWARE_IN_KERNEL")); - in (optionalAttrs isModular { outputs = [ "out" "dev" ]; }) // { + in (optionalAttrs isModular { outputs = [ "out" "dev" ]; propagatedBuildOutputs = ""; }) // { passthru = { inherit version modDirVersion config kernelPatches configfile; }; @@ -190,15 +190,6 @@ let $installFlags "''${installFlagsArray[@]}" ''); - # !!! This leaves references to gcc in $dev - # that we might be able to avoid - postFixup = if isModular then '' - # !!! Should this be part of stdenv? Also patchELF should take an argument... - prefix=$dev - patchELF - prefix=$out - '' else null; - meta = { description = "The Linux kernel" + diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 67f6ad9c94a1..a8fb1598af7e 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -35,6 +35,16 @@ in rec { + link_lguest = + { name = "gcc5-link-lguest"; + patch = ./gcc5-link-lguest.patch; + }; + + link_apm = + { name = "gcc5-link-apm"; + patch = ./gcc5-link-apm.patch; + }; + bridge_stp_helper = { name = "bridge-stp-helper"; patch = ./bridge-stp-helper.patch; diff --git a/pkgs/os-specific/linux/klibc/shrunk.nix b/pkgs/os-specific/linux/klibc/shrunk.nix index 066b4fcb4e06..2ce833d104fd 100644 --- a/pkgs/os-specific/linux/klibc/shrunk.nix +++ b/pkgs/os-specific/linux/klibc/shrunk.nix @@ -8,10 +8,10 @@ stdenv.mkDerivation { name = "${klibc.name}"; buildCommand = '' mkdir -p $out/lib - cp -prd ${klibc}/lib/klibc/bin $out/ - cp -p ${klibc}/lib/*.so $out/lib/ + cp -prd ${klibc.out}/lib/klibc/bin $out/ + cp -p ${klibc.out}/lib/*.so $out/lib/ chmod +w $out/* - old=$(echo ${klibc}/lib/klibc-*.so) + old=$(echo ${klibc.out}/lib/klibc-*.so) new=$(echo $out/lib/klibc-*.so) for i in $out/bin/*; do echo $i diff --git a/pkgs/os-specific/linux/libcap/default.nix b/pkgs/os-specific/linux/libcap/default.nix index 8157270d67d7..c8484babcdf8 100644 --- a/pkgs/os-specific/linux/libcap/default.nix +++ b/pkgs/os-specific/linux/libcap/default.nix @@ -3,12 +3,14 @@ stdenv.mkDerivation rec { name = "libcap-${version}"; version = "2.24"; - + src = fetchurl { url = "mirror://kernel/linux/libs/security/linux-privs/libcap2/${name}.tar.xz"; sha256 = "0rbc9qbqs5bp9am9s9g83wxj5k4ixps2agy9dxr1v1fwg27mdr6f"; }; - + + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ perl ]; propagatedBuildInputs = [ attr ]; @@ -16,14 +18,11 @@ stdenv.mkDerivation rec { makeFlags = "lib=lib prefix=$(out)"; - passthru = { - postinst = n : '' - mkdir -p $out/share/doc/${n} - cp ../License $out/share/doc/${n}/License - ''; - }; - - postInstall = passthru.postinst name; + postInstall = '' + rm "$out"/lib/*.a + mkdir -p "$dev/share/doc/${name}" + cp ../License "$dev/share/doc/${name}/License" + ''; meta = { description = "Library for working with POSIX capabilities"; diff --git a/pkgs/os-specific/linux/libcap/man.nix b/pkgs/os-specific/linux/libcap/man.nix index 9aac3c4e1f5a..eeb780f095bd 100644 --- a/pkgs/os-specific/linux/libcap/man.nix +++ b/pkgs/os-specific/linux/libcap/man.nix @@ -10,6 +10,4 @@ stdenv.mkDerivation rec { makeFlags = "MANDIR=$(out)/share/man"; preConfigure = "cd doc"; - - postInstall = libcap.postinst name; } diff --git a/pkgs/os-specific/linux/libcap/pam.nix b/pkgs/os-specific/linux/libcap/pam.nix index b78f32dccbb4..3dd7cd947af2 100644 --- a/pkgs/os-specific/linux/libcap/pam.nix +++ b/pkgs/os-specific/linux/libcap/pam.nix @@ -12,6 +12,4 @@ stdenv.mkDerivation rec { preConfigure = "cd pam_cap"; makeFlags = "${libcap.makeFlags} PAM_CAP=yes"; - - postInstall = libcap.postinst name; } diff --git a/pkgs/os-specific/linux/libcap/progs.nix b/pkgs/os-specific/linux/libcap/progs.nix index ae4446c82e6c..e3871f15f885 100644 --- a/pkgs/os-specific/linux/libcap/progs.nix +++ b/pkgs/os-specific/linux/libcap/progs.nix @@ -21,5 +21,8 @@ stdenv.mkDerivation rec { installFlags = "RAISE_SETFCAP=no"; - postInstall = libcap.postinst name; + postInstall = '' + mkdir -p "$out/share/doc/${name}" + cp ../License "$out/share/doc/${name}/" + ''; } diff --git a/pkgs/os-specific/linux/libnl/default.nix b/pkgs/os-specific/linux/libnl/default.nix index afd9695420e3..1e1ed0a6112c 100644 --- a/pkgs/os-specific/linux/libnl/default.nix +++ b/pkgs/os-specific/linux/libnl/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation { owner = "thom311"; }; + outputs = [ "dev" "bin" "out" "man" ]; + nativeBuildInputs = [ autoreconfHook bison flex pkgconfig ]; meta = { diff --git a/pkgs/os-specific/linux/lvm2/default.nix b/pkgs/os-specific/linux/lvm2/default.nix index 351c2f609814..9147cb813714 100644 --- a/pkgs/os-specific/linux/lvm2/default.nix +++ b/pkgs/os-specific/linux/lvm2/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, udev, utillinux, coreutils, enable_dmeventd ? false }: +{ stdenv, fetchurl, pkgconfig, systemd, libudev, utillinux, coreutils, enable_dmeventd ? false }: let version = "2.02.140"; @@ -22,7 +22,7 @@ stdenv.mkDerivation { ] ++ stdenv.lib.optional enable_dmeventd " --enable-dmeventd"; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ udev ]; + buildInputs = [ libudev ]; preConfigure = '' @@ -30,7 +30,7 @@ stdenv.mkDerivation { --replace /usr/bin/tr ${coreutils}/bin/tr substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \ --replace /usr/sbin/lvm $out/sbin/lvm \ - --replace /usr/bin/udevadm ${udev}/bin/udevadm + --replace /usr/bin/udevadm ${systemd.udev.bin}/bin/udevadm sed -i /DEFAULT_SYS_DIR/d Makefile.in sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in diff --git a/pkgs/os-specific/linux/mdadm/default.nix b/pkgs/os-specific/linux/mdadm/default.nix index 465dc58199ed..3fe9d462412c 100644 --- a/pkgs/os-specific/linux/mdadm/default.nix +++ b/pkgs/os-specific/linux/mdadm/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { # This is to avoid self-references, which causes the initrd to explode # in size and in turn prevents mdraid systems from booting. - allowedReferences = [ stdenv.glibc ]; + allowedReferences = [ stdenv.glibc.out ]; patches = [ ./no-self-references.patch ]; diff --git a/pkgs/os-specific/linux/module-init-tools/default.nix b/pkgs/os-specific/linux/module-init-tools/default.nix index 1302d7b1fef0..ded6e77e43b4 100644 --- a/pkgs/os-specific/linux/module-init-tools/default.nix +++ b/pkgs/os-specific/linux/module-init-tools/default.nix @@ -1,5 +1,7 @@ { stdenv, fetchurl, docbook2x, docbook_sgml_dtd_41 }: +assert (stdenv.lib.elem stdenv.system stdenv.lib.platforms.linux); + stdenv.mkDerivation { name = "module-init-tools-3.16"; @@ -20,6 +22,8 @@ stdenv.mkDerivation { }) ]; + buildInputs = [ stdenv.glibc.dev stdenv.glibc.static ]; + SGML_CATALOG_FILES = "${docbook_sgml_dtd_41}/sgml/dtd/docbook-4.1/docbook.cat"; patches = [ ./module-dir.patch ./docbook2man.patch ]; @@ -29,5 +33,6 @@ stdenv.mkDerivation { meta = { homepage = http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/; description = "Tools for loading and managing Linux kernel modules"; + platforms = stdenv.lib.platforms.linux; }; } diff --git a/pkgs/os-specific/linux/nfs-utils/default.nix b/pkgs/os-specific/linux/nfs-utils/default.nix index 0dde3bca4e47..504d3790d868 100644 --- a/pkgs/os-specific/linux/nfs-utils/default.nix +++ b/pkgs/os-specific/linux/nfs-utils/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { "--with-statedir=/var/lib/nfs" "--with-tirpcinclude=${libtirpc}/include/tirpc" ] - ++ stdenv.lib.optional (stdenv ? glibc) "--with-rpcgen=${stdenv.glibc}/bin/rpcgen"; + ++ stdenv.lib.optional (stdenv ? glibc) "--with-rpcgen=${stdenv.glibc.bin}/bin/rpcgen"; patchPhase = '' diff --git a/pkgs/os-specific/linux/nvidia-x11/builder.sh b/pkgs/os-specific/linux/nvidia-x11/builder.sh index c1f165c45dd5..1f4671a76157 100755 --- a/pkgs/os-specific/linux/nvidia-x11/builder.sh +++ b/pkgs/os-specific/linux/nvidia-x11/builder.sh @@ -34,6 +34,8 @@ installPhase() { cp -prd *.so.* tls "$out/lib/" rm "$out"/lib/lib{glx,nvidia-wfb}.so.* # handled separately + rm $out/lib/libGL.so.1.* # GLVND + if test -z "$libsOnly"; then # Install the X drivers. mkdir -p $out/lib/xorg/modules @@ -60,16 +62,18 @@ installPhase() { libname_short=`echo -n "$libname" | sed 's/so\..*/so/'` - # nvidia's EGL stack seems to expect libGLESv2.so.2 to be available - if [ $(basename "$libname_short") == "libGLESv2.so" ]; then - ln -srnf "$libname" "$libname_short.2" - fi - if [[ "$libname" != "$libname_short" ]]; then ln -srnf "$libname" "$libname_short" fi - if [[ "$libname" != "$libname_short.1" ]]; then - ln -srnf "$libname" "$libname_short.1" + + if [[ $libname_short =~ libEGL.so || $libname_short =~ libEGL_nvidia.so ]]; then + major=0 + else + major=1 + fi + + if [[ "$libname" != "$libname_short.$major" ]]; then + ln -srnf "$libname" "$libname_short.$major" fi done @@ -119,9 +123,6 @@ installPhase() { # For simplicity and dependency reduction, don't support the gtk3 interface. rm $out/lib/libnvidia-gtk3.* - # We distribute these separately in `libvdpau` - rm "$out"/lib/libvdpau{.*,_trace.*} - # Move VDPAU libraries to their place mkdir "$out"/lib/vdpau mv "$out"/lib/libvdpau* "$out"/lib/vdpau diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index fff1135d3118..e67df53c9ed0 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null; let - versionNumber = "358.16"; + versionNumber = "361.42"; # Policy: use the highest stable version as the default (on our master). inherit (stdenv.lib) makeLibraryPath; @@ -28,12 +28,12 @@ stdenv.mkDerivation { if stdenv.system == "i686-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "1cc0zsri92nz2mznabfd6pqckm9mlbszmysqqqh3w5mipwn898nk"; + sha256 = "10jfdrmjcddgp7kg9l3dwxjh4b7sdrg86nwaf6zalfnsc9zh8bg3"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "1xr16faam2zsx8ajwm9g9302m6qjzyjh1zd56g8jhc8jxg8h43sg"; + sha256 = "04yyrzk4xzq1i386mdxfwg4dqiclvj1fm195qsqy0r79zmpc3kq4"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; diff --git a/pkgs/os-specific/linux/pam/default.nix b/pkgs/os-specific/linux/pam/default.nix index f7cadd469d70..d84c6224eebe 100644 --- a/pkgs/os-specific/linux/pam/default.nix +++ b/pkgs/os-specific/linux/pam/default.nix @@ -9,10 +9,14 @@ stdenv.mkDerivation rec { sha256 = "1n9lnf9gjs72kbj1g354v1xhi2j27aqaah15vykh7cnkq08i4arl"; }; + outputs = [ "out" "doc" "man" /* "modules" */ ]; + nativeBuildInputs = [ flex ]; buildInputs = [ cracklib ]; + enableParallelBuilding = true; + crossAttrs = { propagatedBuildInputs = [ flex.crossDrv cracklib.crossDrv ]; preConfigure = preConfigure + '' @@ -31,7 +35,14 @@ stdenv.mkDerivation rec { postInstall = '' mv -v $out/sbin/unix_chkpwd{,.orig} ln -sv /var/setuid-wrappers/unix_chkpwd $out/sbin/unix_chkpwd - ''; + ''; /* + rm -rf $out/etc + mkdir -p $modules/lib + mv $out/lib/security $modules/lib/ + '';*/ + # don't move modules, because libpam needs to (be able to) find them, + # which is done by dlopening $out/lib/security/pam_foo.so + # $out/etc was also missed: pam_env(login:session): Unable to open config file preConfigure = '' configureFlags="$configureFlags --includedir=$out/include/security" diff --git a/pkgs/os-specific/linux/s6-linux-utils/default.nix b/pkgs/os-specific/linux/s6-linux-utils/default.nix index faf5106c67e3..c6065dbfca2d 100644 --- a/pkgs/os-specific/linux/s6-linux-utils/default.nix +++ b/pkgs/os-specific/linux/s6-linux-utils/default.nix @@ -2,7 +2,7 @@ let - version = "2.0.2.0"; + version = "2.0.2.3"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://www.skarnet.org/software/s6-linux-utils/${name}.tar.gz"; - sha256 = "0y6dq4wb5v1c6ps6a7jyq08r2pjksrvz6n3dnfa9c91gzm4m1dxb"; + sha256 = "1hwc3dmqh4cyhx9b4gd48yvjrwmfkz968rncpqc511krpfwzyngr"; }; dontDisableStatic = true; diff --git a/pkgs/os-specific/linux/shadow/default.nix b/pkgs/os-specific/linux/shadow/default.nix index f928dc8e657c..321e94e3aaf4 100644 --- a/pkgs/os-specific/linux/shadow/default.nix +++ b/pkgs/os-specific/linux/shadow/default.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { preBuild = assert glibc != null; '' - substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc}/sbin/nscd + substituteInPlace lib/nscd.c --replace /usr/sbin/nscd ${glibc.bin}/bin/nscd ''; postInstall = diff --git a/pkgs/os-specific/linux/sysstat/default.nix b/pkgs/os-specific/linux/sysstat/default.nix index 6544210b2067..16431c465c16 100644 --- a/pkgs/os-specific/linux/sysstat/default.nix +++ b/pkgs/os-specific/linux/sysstat/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { preConfigure = '' export PATH_CP=$(type -tp cp) export PATH_CHKCONFIG=/no-such-program - export BZIP=${bzip2}/bin/bzip2 + export BZIP=${bzip2.bin}/bin/bzip2 export SYSTEMCTL=systemctl ''; diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index cb1521a4005e..0f066e380c1b 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -1,5 +1,5 @@ -{ stdenv, fetchFromGitHub, pkgconfig, intltool, gperf, libcap, dbus, kmod -, xz, pam, acl, cryptsetup, libuuid, m4, utillinuxMinimal +{ stdenv, fetchFromGitHub, pkgconfig, intltool, gperf, libcap, kmod +, zlib, xz, pam, acl, cryptsetup, libuuid, m4, utillinux, libffi , glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libapparmor, audit, lz4 , kexectools, libmicrohttpd, linuxHeaders, libseccomp , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 @@ -19,18 +19,27 @@ stdenv.mkDerivation rec { sha256 = "1q0pyrljmq73qcan9rfqsiw66l1g159m5in5qgb8zwlwhl928670"; }; - outputs = [ "out" "man" "doc" ]; + patches = [ ./hwdb-location.diff ]; + + /* gave up for now! + outputs = [ "out" "libudev" "doc" ]; # maybe: "dev" + # note: there are many references to ${systemd}/... + outputDev = "out"; + propagatedBuildOutputs = "libudev"; + */ + outputs = [ "out" "man" ]; buildInputs = [ linuxHeaders pkgconfig intltool gperf libcap kmod xz pam acl /* cryptsetup */ libuuid m4 glib libxslt libgcrypt libgpgerror - libmicrohttpd kexectools libseccomp audit lz4 libapparmor + libmicrohttpd kexectools libseccomp libffi audit lz4 libapparmor /* FIXME: we may be able to prevent the following dependencies by generating an autoconf'd tarball, but that's probably not worth it. */ autoreconfHook gettext docbook_xsl docbook_xml_dtd_42 docbook_xml_dtd_45 ]; + configureFlags = [ "--localstatedir=/var" "--sysconfdir=/etc" @@ -74,14 +83,15 @@ stdenv.mkDerivation rec { for i in src/remount-fs/remount-fs.c src/core/mount.c src/core/swap.c src/fsck/fsck.c units/emergency.service.in units/rescue.service.in src/journal/cat.c src/core/shutdown.c src/nspawn/nspawn.c src/shared/generator.c; do test -e $i substituteInPlace $i \ - --replace /usr/bin/getent ${stdenv.glibc}/bin/getent \ - --replace /bin/mount ${utillinuxMinimal}/bin/mount \ - --replace /bin/umount ${utillinuxMinimal}/bin/umount \ - --replace /sbin/swapon ${utillinuxMinimal}/sbin/swapon \ - --replace /sbin/swapoff ${utillinuxMinimal}/sbin/swapoff \ + --replace /usr/bin/getent ${stdenv.glibc.bin}/bin/getent \ + --replace /bin/mount ${utillinux.bin}/bin/mount \ + --replace /bin/umount ${utillinux.bin}/bin/umount \ + --replace /sbin/swapon ${utillinux.bin}/sbin/swapon \ + --replace /sbin/swapoff ${utillinux.bin}/sbin/swapoff \ + --replace /sbin/fsck ${utillinux.bin}/sbin/fsck \ --replace /bin/echo ${coreutils}/bin/echo \ --replace /bin/cat ${coreutils}/bin/cat \ - --replace /sbin/sulogin ${utillinuxMinimal}/sbin/sulogin \ + --replace /sbin/sulogin ${utillinux.bin}/sbin/sulogin \ --replace /usr/lib/systemd/systemd-fsck $out/lib/systemd/systemd-fsck done @@ -89,12 +99,24 @@ stdenv.mkDerivation rec { --replace /usr/lib/systemd/catalog/ $out/lib/systemd/catalog/ configureFlagsArray+=("--with-ntp-servers=0.nixos.pool.ntp.org 1.nixos.pool.ntp.org 2.nixos.pool.ntp.org 3.nixos.pool.ntp.org") + + #export NIX_CFLAGS_LINK+=" -Wl,-rpath,$libudev/lib" ''; + /* + makeFlags = [ + "udevlibexecdir=$(libudev)/lib/udev" + # udev rules refer to $out, and anything but libs should probably go to $out + "udevrulesdir=$(out)/lib/udev/rules.d" + "udevhwdbdir=$(out)/lib/udev/hwdb.d" + ]; + */ + + PYTHON_BINARY = "${coreutils}/bin/env python"; # don't want a build time dependency on Python NIX_CFLAGS_COMPILE = - [ # Can't say ${polkit}/bin/pkttyagent here because that would + [ # Can't say ${polkit.bin}/bin/pkttyagent here because that would # lead to a cyclic dependency. "-UPOLKIT_AGENT_BINARY_PATH" "-DPOLKIT_AGENT_BINARY_PATH=\"/run/current-system/sw/bin/pkttyagent\"" "-fno-stack-protector" @@ -147,8 +169,30 @@ stdenv.mkDerivation rec { # "kernel-install" shouldn't be used on NixOS. find $out -name "*kernel-install*" -exec rm {} \; ''; # */ + /* + # Move lib(g)udev to a separate output. TODO: maybe split them up + # to avoid libudev pulling glib + mkdir -p "$libudev/lib" + mv "$out"/lib/lib{,g}udev* "$libudev/lib/" + + for i in "$libudev"/lib/*.la; do + substituteInPlace $i --replace "$out" "$libudev" + done + for i in "$out"/lib/pkgconfig/{libudev,gudev-1.0}.pc; do + substituteInPlace $i --replace "libdir=$out" "libdir=$libudev" + done + */ enableParallelBuilding = true; + /* + # some libs fail to link to liblzma and/or libffi + postFixup = let extraLibs = stdenv.lib.makeLibraryPath [ xz.out libffi.out zlib.out ]; + in '' + for f in "$out"/lib/*.so.0.*; do + patchelf --set-rpath `patchelf --print-rpath "$f"`':${extraLibs}' "$f" + done + ''; + */ # The interface version prevents NixOS from switching to an # incompatible systemd at runtime. (Switching across reboots is @@ -165,3 +209,4 @@ stdenv.mkDerivation rec { maintainers = [ stdenv.lib.maintainers.eelco stdenv.lib.maintainers.simons ]; }; } + diff --git a/pkgs/os-specific/linux/systemd/hwdb-location.diff b/pkgs/os-specific/linux/systemd/hwdb-location.diff new file mode 100644 index 000000000000..31e7a027f50d --- /dev/null +++ b/pkgs/os-specific/linux/systemd/hwdb-location.diff @@ -0,0 +1,19 @@ +diff --git a/src/libsystemd/sd-hwdb/sd-hwdb.c b/src/libsystemd/sd-hwdb/sd-hwdb.c +index 06c9831..e74825c 100644 +--- a/src/libsystemd/sd-hwdb/sd-hwdb.c ++++ b/src/libsystemd/sd-hwdb/sd-hwdb.c +@@ -268,13 +268,8 @@ static int trie_search_f(sd_hwdb *hwdb, const char *search) { + } + + static const char hwdb_bin_paths[] = +- "/etc/systemd/hwdb/hwdb.bin\0" + "/etc/udev/hwdb.bin\0" +- "/usr/lib/systemd/hwdb/hwdb.bin\0" +-#ifdef HAVE_SPLIT_USR +- "/lib/systemd/hwdb/hwdb.bin\0" +-#endif +- UDEVLIBEXECDIR "/hwdb.bin\0"; ++ ; + + _public_ int sd_hwdb_new(sd_hwdb **ret) { + _cleanup_hwdb_unref_ sd_hwdb *hwdb = NULL; diff --git a/pkgs/os-specific/linux/systemd/libudev.nix b/pkgs/os-specific/linux/systemd/libudev.nix new file mode 100644 index 000000000000..0fe45aee9164 --- /dev/null +++ b/pkgs/os-specific/linux/systemd/libudev.nix @@ -0,0 +1,19 @@ +{ stdenv, systemd }: + +stdenv.mkDerivation { + name = "libudev-${systemd.version}"; + + unpackPhase = ":"; + outputs = [ "dev" "out" ]; + installPhase = '' + mkdir -p "$out/lib" "$dev/lib/pkgconfig" "$dev/include" + cp -P "${systemd}"/lib/libudev.* "$out/lib/" + cp -P "${systemd}"/lib/pkgconfig/libudev.pc "$dev/lib/pkgconfig/" + cp -P "${systemd}"/include/libudev.h "$dev/include/" + + substituteInPlace "$dev"/lib/pkgconfig/*.pc \ + --replace "${systemd}" "$out" + sed "/^includedir=/cincludedir=$dev/include" -i "$dev"/lib/pkgconfig/*.pc + ''; +} + diff --git a/pkgs/os-specific/linux/udev/145.nix b/pkgs/os-specific/linux/udev/145.nix new file mode 100644 index 000000000000..6dd551e1ce13 --- /dev/null +++ b/pkgs/os-specific/linux/udev/145.nix @@ -0,0 +1,53 @@ +{ stdenv, fetchurl, gperf, pkgconfig, glib, acl, libusb, usbutils, pciutils }: + +assert stdenv ? glibc; + +stdenv.mkDerivation rec { + name = "udev-145"; + + src = fetchurl { + url = "mirror://kernel/linux/utils/kernel/hotplug/${name}.tar.bz2"; + sha256 = "1zmibp6n7d582fqx8vmg9vb2a1435hghfpz36056bc25ccwf7yiv"; + }; + + buildInputs = [gperf pkgconfig glib acl libusb usbutils]; + + configureFlags = "--with-pci-ids-path=${pciutils}/share/pci.ids"; + + preConfigure = + '' + substituteInPlace extras/keymap/Makefile.in \ + --replace /usr/include ${stdenv.glibc.dev}/include + ''; + + postInstall = + '' + # Install some rules that really should be installed by default. + for i in 40-alsa.rules 40-infiniband.rules 40-isdn.rules 40-pilot-links.rules 64-device-mapper.rules 64-md-raid.rules; do + cp rules/packages/$i $out/libexec/rules.d/ + done + + # The path to rule_generator.functions in write_cd_rules and + # write_net_rules is broken. Also, don't store the mutable + # persistant rules in /etc/udev/rules.d but in + # /var/lib/udev/rules.d. + for i in $out/libexec/write_cd_rules $out/libexec/write_net_rules; do + substituteInPlace $i \ + --replace /lib/udev $out/libexec \ + --replace /etc/udev/rules.d /var/lib/udev/rules.d + done + + # Don't set PATH to /bin:/sbin; won't work in NixOS. + substituteInPlace $out/libexec/rule_generator.functions \ + --replace 'PATH=' '#PATH=' + + # Don't hardcore the FIRMWARE_DIRS variable; obtain it from the + # environment of the caller. + sed '3,4d' -i $out/libexec/firmware.sh + ''; + + meta = { + homepage = http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html; + description = "Udev manages the /dev filesystem"; + }; +} diff --git a/pkgs/os-specific/linux/util-linux/default.nix b/pkgs/os-specific/linux/util-linux/default.nix index a84740b1a30b..263fa4490dc8 100644 --- a/pkgs/os-specific/linux/util-linux/default.nix +++ b/pkgs/os-specific/linux/util-linux/default.nix @@ -1,6 +1,4 @@ -{ stdenv, fetchurl, zlib, ncurses ? null, perl ? null, pam, systemd ? null -, pkgconfig -}: +{ stdenv, fetchurl, pkgconfig, zlib, ncurses ? null, perl ? null, pam, systemd }: stdenv.mkDerivation rec { name = "util-linux-2.27.1"; @@ -10,12 +8,15 @@ stdenv.mkDerivation rec { sha256 = "1452hz5zx56a3mad8yrg5wb0vy5zi19mpjp6zx1yr6p9xp6qz08a"; }; - outputs = [ "out" "man" ]; - patches = [ ./rtcwake-search-PATH-for-shutdown.patch ]; + outputs = [ "bin" "out" "man" ]; # TODO: $bin is kept the first for now + # due to lots of ${utillinux}/bin occurences and headers being rather small + outputDev = "bin"; + + #FIXME: make it also work on non-nixos? postPatch = '' # Substituting store paths would create a circular dependency on systemd @@ -46,6 +47,9 @@ stdenv.mkDerivation rec { ''} ''; + makeFlags = "usrbin_execdir=$(bin)/bin usrsbin_execdir=$(bin)/sbin"; + + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ zlib pam ] ++ stdenv.lib.optional (ncurses != null) ncurses @@ -53,15 +57,16 @@ stdenv.mkDerivation rec { ++ stdenv.lib.optional (perl != null) perl; postInstall = '' - rm $out/bin/su # su should be supplied by the su package (shadow) + rm "$bin/bin/su" # su should be supplied by the su package (shadow) ''; enableParallelBuilding = true; - meta = { + meta = with stdenv.lib; { homepage = http://www.kernel.org/pub/linux/utils/util-linux/; description = "A set of system utilities for Linux"; - platforms = stdenv.lib.platforms.linux; + license = licenses.gpl2; # also contains parts under more permissive licenses + platforms = platforms.linux; priority = 6; # lower priority than coreutils ("kill") and shadow ("login" etc.) packages }; } diff --git a/pkgs/servers/dns/nsd/default.nix b/pkgs/servers/dns/nsd/default.nix index d11ef186c319..646e50c78f95 100644 --- a/pkgs/servers/dns/nsd/default.nix +++ b/pkgs/servers/dns/nsd/default.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { ++ edf rootServer "root-server" ++ edf rrtypes "draft-rrtypes" ++ edf zoneStats "zone-stats" - ++ [ "--with-ssl=${openssl}" "--with-libevent=${libevent}" ]; + ++ [ "--with-ssl=${openssl.dev}" "--with-libevent=${libevent.dev}" ]; meta = with stdenv.lib; { homepage = http://www.nlnetlabs.nl; diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix index 99d6fe12aa1c..bb4fa9782d6a 100644 --- a/pkgs/servers/http/apache-httpd/2.2.nix +++ b/pkgs/servers/http/apache-httpd/2.2.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl, perl, zlib +{ stdenv, fetchurl, pkgconfig, openssl, perl, zlib , sslSupport, proxySupport ? true , apr, aprutil, pcre , ldapSupport ? true, openldap @@ -20,17 +20,24 @@ stdenv.mkDerivation rec { sha256 = "1b165zi7jrrlz5wmyy3b34lcs3dl4g0dymfb0qxwdnimylcrsbzk"; }; - buildInputs = [perl apr aprutil pcre] ++ - stdenv.lib.optional sslSupport openssl; + # FIXME: -dev depends on -doc + outputs = [ "dev" "out" "doc" ]; + setOutputFlags = false; # it would move $out/modules, etc. - # An apr-util header file includes an apr header file - # through #include "" (quotes) - # passing simply CFLAGS did not help, then I go by NIX_CFLAGS_COMPILE - NIX_CFLAGS_COMPILE = "-iquote ${apr}/include/apr-1"; + propagatedBuildInputs = [ apr ]; # otherwise mod_* fail to find includes often + buildInputs = [ pkgconfig perl aprutil pcre zlib ] ++ + stdenv.lib.optional sslSupport openssl; # Required for ‘pthread_cancel’. NIX_LDFLAGS = (if stdenv.isDarwin then "" else "-lgcc_s"); + patchPhase = '' + sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|" + ''; + + preConfigure = '' + configureFlags="$configureFlags --includedir=$dev/include" + ''; configureFlags = '' --with-z=${zlib} --with-pcre=${pcre} @@ -44,13 +51,18 @@ stdenv.mkDerivation rec { --enable-disk-cache --enable-file-cache --enable-mem-cache + --docdir=$(doc)/share/doc ''; enableParallelBuilding = true; + stripDebugList = "lib modules bin"; + postInstall = '' - echo "removing manual" - rm -rf $out/manual + mkdir -p $doc/share/doc/httpd + mv $out/manual $doc/share/doc/httpd + mkdir -p $dev/bin + mv $out/bin/apxs $dev/bin/apxs ''; passthru = { diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix index a2e039bd399f..a39d0e8e3158 100644 --- a/pkgs/servers/http/apache-httpd/2.4.nix +++ b/pkgs/servers/http/apache-httpd/2.4.nix @@ -24,15 +24,27 @@ stdenv.mkDerivation rec { sha256 = "0k7xm6ldzvakzq39nw6b39190ihlkc28all2gkvckxa1vr8b0i06"; }; + # FIXME: -dev depends on -doc + outputs = [ "dev" "out" "doc" ]; + setOutputFlags = false; # it would move $out/modules, etc. + buildInputs = [perl] ++ + optional sslSupport openssl ++ optional ldapSupport openldap ++ # there is no --with-ldap flag optional libxml2Support libxml2 ++ optional http2Support libnghttp2 ++ optional stdenv.isDarwin libiconv; + patchPhase = '' + sed -i config.layout -e "s|installbuilddir:.*|installbuilddir: $dev/share/build|" + ''; + # Required for ‘pthread_cancel’. NIX_LDFLAGS = stdenv.lib.optionalString (!stdenv.isDarwin) "-lgcc_s"; + preConfigure = '' + configureFlags="$configureFlags --includedir=$dev/include" + ''; configureFlags = '' --with-apr=${apr} --with-apr-util=${aprutil} @@ -46,19 +58,22 @@ stdenv.mkDerivation rec { --enable-imagemap --enable-cgi ${optionalString proxySupport "--enable-proxy"} - ${optionalString sslSupport "--enable-ssl --with-ssl=${openssl}"} + ${optionalString sslSupport "--enable-ssl"} ${optionalString http2Support "--enable-http2 --with-nghttp2=${libnghttp2}"} ${optionalString luaSupport "--enable-lua --with-lua=${lua5}"} - ${optionalString libxml2Support "--with-libxml2=${libxml2}/include/libxml2"} - ''; - - postInstall = '' - echo "removing manual" - rm -rf $out/manual + ${optionalString libxml2Support "--with-libxml2=${libxml2.dev}/include/libxml2"} + --docdir=$(doc)/share/doc ''; enableParallelBuilding = true; + postInstall = '' + mkdir -p $doc/share/doc/httpd + mv $out/manual $doc/share/doc/httpd + mkdir -p $dev/bin + mv $out/bin/apxs $dev/bin/apxs + ''; + passthru = { inherit apr aprutil sslSupport proxySupport ldapSupport; }; diff --git a/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix b/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix index e70c3105408f..178900570d07 100644 --- a/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix +++ b/pkgs/servers/http/apache-modules/mod_fastcgi/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { preBuild = '' cp Makefile.AP2 Makefile - makeFlags="top_dir=${apacheHttpd} prefix=$out" + makeFlags="top_dir=${apacheHttpd}/share prefix=$out" ''; meta = { diff --git a/pkgs/servers/http/apt-cacher-ng/default.nix b/pkgs/servers/http/apt-cacher-ng/default.nix index 9e485946a18d..8958b51e873a 100644 --- a/pkgs/servers/http/apt-cacher-ng/default.nix +++ b/pkgs/servers/http/apt-cacher-ng/default.nix @@ -17,6 +17,7 @@ stdenv.mkDerivation rec { description = "A caching proxy specialized for linux distribution files"; homepage = https://www.unix-ag.uni-kl.de/~bloch/acng/; license = licenses.gpl2; + platforms = platforms.linux; maintainers = [ maintainers.makefu ]; }; } diff --git a/pkgs/servers/http/mini-httpd/default.nix b/pkgs/servers/http/mini-httpd/default.nix index 4cba9bc06687..7fb6a16dd1c3 100644 --- a/pkgs/servers/http/mini-httpd/default.nix +++ b/pkgs/servers/http/mini-httpd/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, boost }: stdenv.mkDerivation rec { - name = "mini-httpd-1.5"; + name = "mini-httpd-1.6"; src = fetchurl { - url = "mirror://savannah/mini-httpd/${name}.tar.gz"; - sha256 = "1x4b6x40ymbaamqqq9p97lc0mnah4q7bza04fjs35c8agpm19zir"; + url = "http://download-mirror.savannah.gnu.org/releases/mini-httpd/${name}.tar.gz"; + sha256 = "04azr1qa70l0fnpbx7nmyxz1lkykjjs2b6p4lhkpg86hs3lrmxly"; }; buildInputs = [ boost ]; diff --git a/pkgs/servers/http/nginx/default.nix b/pkgs/servers/http/nginx/default.nix index 178c0fcbd9e4..b3bc092dc401 100644 --- a/pkgs/servers/http/nginx/default.nix +++ b/pkgs/servers/http/nginx/default.nix @@ -52,7 +52,7 @@ stdenv.mkDerivation rec { [ "--with-file-aio" "--with-aio_module" ] ++ map (mod: "--add-module=${mod.src}") modules; - NIX_CFLAGS_COMPILE = [ "-I${libxml2}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized"; + NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations -Wno-error=conditional-uninitialized"; preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules) + optionalString (hardening && (stdenv.cc.cc.isGNU or false)) '' diff --git a/pkgs/servers/http/nginx/unstable.nix b/pkgs/servers/http/nginx/unstable.nix index e85fb96d2edb..257cf96b4a70 100644 --- a/pkgs/servers/http/nginx/unstable.nix +++ b/pkgs/servers/http/nginx/unstable.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { ++ optional (elem stdenv.system (with platforms; linux ++ freebsd)) "--with-file-aio" ++ map (mod: "--add-module=${mod.src}") modules; - NIX_CFLAGS_COMPILE = [ "-I${libxml2}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations"; + NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations"; preConfigure = (concatMapStringsSep "\n" (mod: mod.preConfigure or "") modules) + optionalString (hardening && (stdenv.cc.cc.isGNU or false)) '' diff --git a/pkgs/servers/http/nix-binary-cache/default.nix b/pkgs/servers/http/nix-binary-cache/default.nix index b007c09b0560..674557d74fc2 100644 --- a/pkgs/servers/http/nix-binary-cache/default.nix +++ b/pkgs/servers/http/nix-binary-cache/default.nix @@ -15,11 +15,11 @@ stdenv.mkDerivation rec { --replace @coreutils@ "${coreutils}/bin" \ --replace @findutils@ "${findutils}/bin" \ --replace @nix@ "${nix}/bin" \ - --replace @xz@ "${xz}/bin" \ - --replace @bzip2@ "${bzip2}/bin" \ + --replace @xz@ "${xz.bin}/bin" \ + --replace @bzip2@ "${bzip2.bin}/bin" \ --replace @gnused@ "${gnused}/bin" \ --replace @gnugrep@ "${gnugrep}/bin" \ - --replace @openssl@ "${openssl}/bin" \ + --replace @openssl@ "${openssl.bin}/bin" \ --replace @lighttpd@ "${lighttpd}/sbin" \ --replace @iproute@ "${iproute}/sbin" \ --replace "xXxXx" "xXxXx" @@ -32,11 +32,11 @@ stdenv.mkDerivation rec { --replace @coreutils@ "${coreutils}/bin" \ --replace @findutils@ "${findutils}/bin" \ --replace @nix@ "${nix}/bin" \ - --replace @xz@ "${xz}/bin" \ - --replace @bzip2@ "${bzip2}/bin" \ + --replace @xz@ "${xz.bin}/bin" \ + --replace @bzip2@ "${bzip2.bin}/bin" \ --replace @gnused@ "${gnused}/bin" \ --replace @gnugrep@ "${gnugrep}/bin" \ - --replace @openssl@ "${openssl}/bin" \ + --replace @openssl@ "${openssl.bin}/bin" \ --replace @lighttpd@ "${lighttpd}/sbin" \ --replace @iproute@ "${iproute}/sbin" \ --replace "xXxXx" "xXxXx" diff --git a/pkgs/servers/http/openresty/default.nix b/pkgs/servers/http/openresty/default.nix index 14f95761cfb1..147e24c014d2 100644 --- a/pkgs/servers/http/openresty/default.nix +++ b/pkgs/servers/http/openresty/default.nix @@ -46,8 +46,8 @@ stdenv.mkDerivation rec { ''; preConfigure = '' - export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2}/include/libxml2 $additionalFlags" - export PATH="$PATH:${stdenv.cc.libc}/sbin" + export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${libxml2.dev}/include/libxml2 $additionalFlags" + export PATH="$PATH:${stdenv.cc.libc.bin}/bin" patchShebangs . ''; diff --git a/pkgs/servers/http/thttpd/default.nix b/pkgs/servers/http/thttpd/default.nix index 706911aeef15..030aa486daa7 100644 --- a/pkgs/servers/http/thttpd/default.nix +++ b/pkgs/servers/http/thttpd/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "thttpd-${version}"; - version = "2.26"; + version = "2.27"; src = fetchurl { url = "http://acme.com/software/thttpd/${name}.tar.gz"; - sha256 = "1idlpnwrd5fpmnfh477h1lzanavx8jxir2d8adax46zy472dg4s6"; + sha256 = "0ykda5k1zzzag59zbd4bkzj1psavq0xnpy7vpk19rhx7mlvvri5i"; }; prePatch = '' diff --git a/pkgs/servers/mail/exim/default.nix b/pkgs/servers/mail/exim/default.nix index d8d1f0dc3a7c..0918e308d263 100644 --- a/pkgs/servers/mail/exim/default.nix +++ b/pkgs/servers/mail/exim/default.nix @@ -1,11 +1,11 @@ { coreutils, fetchurl, db, openssl, pcre, perl, pkgconfig, stdenv }: stdenv.mkDerivation rec { - name = "exim-4.86.2"; + name = "exim-4.87"; src = fetchurl { url = "http://mirror.switch.ch/ftp/mirror/exim/exim/exim4/${name}.tar.bz2"; - sha256 = "1cvfcc1hi60lydv8h3a2rxlfc0v2nflwpvzjj7h7cdsqs2pxwmkp"; + sha256 = "1jbxn13shq90kpn0s73qpjnx5xm8jrpwhcwwgqw5s6sdzw6iwsbl"; }; buildInputs = [ coreutils db openssl pcre perl pkgconfig ]; diff --git a/pkgs/servers/mail/opensmtpd/default.nix b/pkgs/servers/mail/opensmtpd/default.nix index 5e3f084674b2..94bc9f2bfe98 100644 --- a/pkgs/servers/mail/opensmtpd/default.nix +++ b/pkgs/servers/mail/opensmtpd/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { "--with-privsep-user=smtpd" "--with-queue-user=smtpq" "--with-ca-file=/etc/ssl/certs/ca-certificates.crt" - "--with-libevent-dir=${libevent}" + "--with-libevent-dir=${libevent.dev}" "--enable-table-db" ]; diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix index 5e13b4520c9b..7412378f3dec 100644 --- a/pkgs/servers/meteor/default.nix +++ b/pkgs/servers/meteor/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { popd substituteInPlace $out/tools/cli/main.js \ --replace "@INTERPRETER@" "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --replace "@RPATH@" "${stdenv.cc.cc}/lib:${zlib}/lib" \ + --replace "@RPATH@" "${stdenv.cc.cc}/lib:${zlib.out}/lib" \ --replace "@PATCHELF@" "${patchelf}/bin/patchelf" # Patch node. @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { for p in $devBundle/mongodb/bin/mongo{,d}; do patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib:${zlib}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc}/lib:${zlib.out}/lib" \ $p done diff --git a/pkgs/servers/mfi/default.nix b/pkgs/servers/mfi/default.nix new file mode 100644 index 000000000000..e431ca993a90 --- /dev/null +++ b/pkgs/servers/mfi/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "mfi-controller-${version}"; + version = "2.1.11"; + + src = fetchurl { + url = "https://dl.ubnt.com/mfi/${version}/mFi.unix.zip"; + sha256 = "0b9q6025zf9zjzq8dcmcyai8rslx67g52j41gacxsk9i5dspmw90"; + }; + + buildInputs = [ unzip ]; + + dontBuild = true; + + installPhase = '' + mkdir -p $out + cp -ar conf data dl lib webapps $out + ''; + + meta = with stdenv.lib; { + homepage = http://www.ubnt.com/; + description = "Controller for Ubiquiti mFi devices"; + license = licenses.unfree; + platforms = platforms.unix; + maintainers = with maintainers; [ elitak ]; + }; +} diff --git a/pkgs/servers/misc/taskserver/default.nix b/pkgs/servers/misc/taskserver/default.nix index 3d34bb8e11f2..a1502b4d6c44 100644 --- a/pkgs/servers/misc/taskserver/default.nix +++ b/pkgs/servers/misc/taskserver/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, cmake, libuuid, gnutls }: +{ stdenv, fetchurl, cmake, libuuid, gnutls, makeWrapper }: stdenv.mkDerivation rec { name = "taskserver-${version}"; @@ -11,6 +11,26 @@ stdenv.mkDerivation rec { sha256 = "1d110q9vw8g5syzihxymik7hd27z1592wkpz55kya6lphzk8i13v"; }; + patchPhase = '' + pkipath=$out/share/taskd/pki + mkdir -p $pkipath + cp -r pki/* $pkipath + echo "patching paths in pki/generate" + sed -i "s#^\.#$pkipath#" $pkipath/generate + for f in $pkipath/generate* ;do + i=$(basename $f) + echo patching $i + sed -i \ + -e 's/which/type -p/g' \ + -e 's#^\. ./vars#if test -e ./vars;then . ./vars; else echo "cannot find ./vars - copy the template from '$pkipath'/vars into the working directory";exit 1; fi#' $f + + echo wrapping $i + makeWrapper $pkipath/$i $out/bin/taskd-pki-$i \ + --prefix PATH : ${gnutls}/bin/ + done + ''; + + buildInputs = [ makeWrapper ]; nativeBuildInputs = [ cmake libuuid gnutls ]; meta = { @@ -18,6 +38,6 @@ stdenv.mkDerivation rec { homepage = http://taskwarrior.org; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ]; + maintainers = with stdenv.lib.maintainers; [ matthiasbeyer makefu ]; }; } diff --git a/pkgs/servers/monitoring/net-snmp/default.nix b/pkgs/servers/monitoring/net-snmp/default.nix index f2533c99b083..816ac1bdb25e 100644 --- a/pkgs/servers/monitoring/net-snmp/default.nix +++ b/pkgs/servers/monitoring/net-snmp/default.nix @@ -31,6 +31,12 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postInstall = '' + for f in $out/lib/*.la $out/bin/net-snmp-config $out/bin/net-snmp-create-v3-user; do + sed 's|-L${openssl}|-L${openssl.out}|g' -i $f + done + ''; + meta = with stdenv.lib; { description = "Clients and server for the SNMP network monitoring protocol"; homepage = http://net-snmp.sourceforge.net/; diff --git a/pkgs/servers/nosql/arangodb/default.nix b/pkgs/servers/nosql/arangodb/default.nix index 7ccd29bc783a..ffcd507653a0 100644 --- a/pkgs/servers/nosql/arangodb/default.nix +++ b/pkgs/servers/nosql/arangodb/default.nix @@ -15,9 +15,10 @@ stdenv.mkDerivation rec { openssl zlib python gyp go readline ]; + configureFlagsArray = [ "--with-openssl-lib=${openssl.out}/lib" ]; + NIX_CFLAGS_COMPILE = "-Wno-error=strict-overflow"; - configureFlagsArray = [ "--with-openssl-lib=${openssl}/lib" ]; patchPhase = '' substituteInPlace 3rdParty/V8-3.31.74.1/build/gyp/gyp --replace /bin/bash ${bash}/bin/bash diff --git a/pkgs/servers/nosql/mongodb/2.4.8.nix b/pkgs/servers/nosql/mongodb/2.4.8.nix new file mode 100644 index 000000000000..448d260bdb9d --- /dev/null +++ b/pkgs/servers/nosql/mongodb/2.4.8.nix @@ -0,0 +1,45 @@ +# This derivation was resurrected from 4c8ec5e12e187347fd97b1a1a9a43eb19e009ed0 +# by elitak for use with the Ubiquiti mFi Controller package, which breaks at +# runtime on mongodb3+ and jre8+. We will need to pull in sufficiently old +# versions of boost and v8 to build this, as well. +{ stdenv, fetchurl, scons, boost155, v8_3_14, gperftools, pcre, snappy }: +with stdenv.lib; +let + version = "2.4.8"; +in +stdenv.mkDerivation rec { + name = "mongodb-${version}"; + + src = fetchurl { + url = "http://downloads.mongodb.org/src/mongodb-src-r${version}.tar.gz"; + sha256 = "1p6gnharypglfp39halp72fig96fqjhakyy7m76a1prxwpjkqw7x"; + }; + + nativeBuildInputs = [ scons boost155 v8_3_14 gperftools pcre snappy ]; + + postPatch = '' + substituteInPlace SConstruct \ + --replace "Environment( BUILD_DIR" "Environment( ENV = os.environ, BUILD_DIR" \ + --replace 'CCFLAGS=["-Werror", "-pipe"]' 'CCFLAGS=["-pipe"]' + ''; + + NIX_CFLAGS_COMPILE = "-Wno-unused-local-typedefs"; + + buildPhase = '' + export SCONSFLAGS="-j$NIX_BUILD_CORES" + scons all --use-system-all + ''; + + installPhase = '' + mkdir -p $out/lib + scons install --use-system-all --full --prefix=$out + ''; + + meta = { + description = "A scalable, high-performance, open source NoSQL database"; + homepage = http://www.mongodb.org; + license = licenses.agpl3; + maintainers = with maintainers; [ bluescreen303 elitak ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/servers/nosql/rethinkdb/default.nix b/pkgs/servers/nosql/rethinkdb/default.nix index f1b57546c7d7..e61a94e7f07b 100644 --- a/pkgs/servers/nosql/rethinkdb/default.nix +++ b/pkgs/servers/nosql/rethinkdb/default.nix @@ -4,15 +4,13 @@ stdenv.mkDerivation rec { name = "rethinkdb-${version}"; - version = "2.2.4"; + version = "2.3.0"; src = fetchurl { url = "http://download.rethinkdb.com/dist/${name}.tgz"; - sha256 = "0zs07g7arrrvm85mqbkffyzgd255qawn64r6iqdws25lj1kq2qim"; + sha256 = "0b787ibnrmziypiw86yx4gpmlj4ima6j6g9hzshbpilxy7lrq1cb"; }; - patches = [ ./glibc-2.23.patch ]; - postPatch = stdenv.lib.optionalString stdenv.isDarwin '' sed -i 's/raise.*No Xcode or CLT version detected.*/version = "7.0.0"/' external/v8_3.30.33.16/build/gyp/pylib/gyp/xcode_emulation.py diff --git a/pkgs/servers/nosql/rethinkdb/glibc-2.23.patch b/pkgs/servers/nosql/rethinkdb/glibc-2.23.patch deleted file mode 100644 index 818ea1245648..000000000000 --- a/pkgs/servers/nosql/rethinkdb/glibc-2.23.patch +++ /dev/null @@ -1,111 +0,0 @@ -From 84be09f314c4cbf88b4ac8fe9dbff1d36f0f5781 Mon Sep 17 00:00:00 2001 -From: Daniel Mewes -Date: Fri, 5 Feb 2016 18:45:28 -0800 -Subject: [PATCH] Alpinelinux compilation fixes - -by @clandmeter ---- - src/containers/buffer_group.hpp | 1 + - src/containers/printf_buffer.hpp | 1 + - src/errors.cc | 2 +- - src/rdb_protocol/geo/s2/util/math/exactfloat/exactfloat.cc | 4 ++-- - src/rdb_protocol/geo/s2/util/math/mathlimits.h | 12 ++++++------ - src/threading.hpp | 2 ++ - 6 files changed, 13 insertions(+), 9 deletions(-) - -diff --git a/src/containers/buffer_group.hpp b/src/containers/buffer_group.hpp -index 865c5cb..0403db6 100644 ---- a/src/containers/buffer_group.hpp -+++ b/src/containers/buffer_group.hpp -@@ -3,6 +3,7 @@ - #define CONTAINERS_BUFFER_GROUP_HPP_ - - #include -+#include - #include - #include - -diff --git a/src/containers/printf_buffer.hpp b/src/containers/printf_buffer.hpp -index b7a5154..76959f3 100644 ---- a/src/containers/printf_buffer.hpp -+++ b/src/containers/printf_buffer.hpp -@@ -5,6 +5,7 @@ - #include - #include - #include -+#include - - // Cannot include utils.hpp, we are included by utils.hpp. - #include "errors.hpp" -diff --git a/src/errors.cc b/src/errors.cc -index d40c04f..39efc9f 100644 ---- a/src/errors.cc -+++ b/src/errors.cc -@@ -89,7 +89,7 @@ void report_fatal_error(const char *file, int line, const char *msg, ...) { - } - - const char *errno_string_maybe_using_buffer(int errsv, char *buf, size_t buflen) { --#ifdef _GNU_SOURCE -+#ifdef __GLIBC__ - return strerror_r(errsv, buf, buflen); - #elif defined(_WIN32) - UNUSED errno_t res = strerror_s(buf, buflen, errsv); -diff --git a/src/rdb_protocol/geo/s2/util/math/exactfloat/exactfloat.cc b/src/rdb_protocol/geo/s2/util/math/exactfloat/exactfloat.cc -index 3b07392..aa1a1d3 100644 ---- a/src/rdb_protocol/geo/s2/util/math/exactfloat/exactfloat.cc -+++ b/src/rdb_protocol/geo/s2/util/math/exactfloat/exactfloat.cc -@@ -110,9 +110,9 @@ static int BN_ext_count_low_zero_bits(const BIGNUM* bn) { - ExactFloat::ExactFloat(double v) { - BN_init(&bn_); - sign_ = signbit(v) ? -1 : 1; -- if (isnan(v)) { -+ if (std::isnan(v)) { - set_nan(); -- } else if (isinf(v)) { -+ } else if (std::isinf(v)) { - set_inf(sign_); - } else { - // The following code is much simpler than messing about with bit masks, -diff --git a/src/rdb_protocol/geo/s2/util/math/mathlimits.h b/src/rdb_protocol/geo/s2/util/math/mathlimits.h -index 5148422..86af72d 100644 ---- a/src/rdb_protocol/geo/s2/util/math/mathlimits.h -+++ b/src/rdb_protocol/geo/s2/util/math/mathlimits.h -@@ -14,7 +14,7 @@ - #define UTIL_MATH_MATHLIMITS_H__ - - #include --#include -+#include - #include - - #include "rdb_protocol/geo/s2/base/basictypes.h" -@@ -195,11 +195,11 @@ DECL_UNSIGNED_INT_LIMITS(unsigned long long int) - static bool IsNegInf(const Type x) { return _fpclass(x) == _FPCLASS_NINF; } - #else - #define DECL_FP_LIMIT_FUNCS \ -- static bool IsFinite(const Type x) { return !isinf(x) && !isnan(x); } \ -- static bool IsNaN(const Type x) { return isnan(x); } \ -- static bool IsInf(const Type x) { return isinf(x); } \ -- static bool IsPosInf(const Type x) { return isinf(x) && x > 0; } \ -- static bool IsNegInf(const Type x) { return isinf(x) && x < 0; } -+ static bool IsFinite(const Type x) { return !std::isinf(x) && !std::isnan(x); } \ -+ static bool IsNaN(const Type x) { return std::isnan(x); } \ -+ static bool IsInf(const Type x) { return std::isinf(x); } \ -+ static bool IsPosInf(const Type x) { return std::isinf(x) && x > 0; } \ -+ static bool IsNegInf(const Type x) { return std::isinf(x) && x < 0; } - #endif - - // We can't put floating-point constant values in the header here because -diff --git a/src/threading.hpp b/src/threading.hpp -index 14fc6a8..9bf033f 100644 ---- a/src/threading.hpp -+++ b/src/threading.hpp -@@ -1,6 +1,8 @@ - #ifndef THREADING_HPP_ - #define THREADING_HPP_ - -+#include -+#include - #include - #include - diff --git a/pkgs/servers/openafs-client/default.nix b/pkgs/servers/openafs-client/default.nix index abc6d78f20c7..40d3edcf21a4 100644 --- a/pkgs/servers/openafs-client/default.nix +++ b/pkgs/servers/openafs-client/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { for i in `grep -l -R '/usr/\(include\|src\)' .`; do echo "Patch /usr/include and /usr/src in $i" substituteInPlace $i \ - --replace "/usr/include" "${glibc}/include" \ + --replace "/usr/include" "${glibc.dev}/include" \ --replace "/usr/src" "$TMP" done diff --git a/pkgs/servers/plex/default.nix b/pkgs/servers/plex/default.nix index 11f1bc4a988c..22a5c852e15d 100644 --- a/pkgs/servers/plex/default.nix +++ b/pkgs/servers/plex/default.nix @@ -5,13 +5,13 @@ let plexpkg = if enablePlexPass then { - version = "0.9.16.3.1840"; - vsnHash = "cece46d"; - sha256 = "0p1rnia18a67h05f7l7smkpry1ldkpdkyvs9fgrqpay3w0jfk9gd"; + version = "0.9.16.4.1911"; + vsnHash = "ee6e505"; + sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd"; } else { - version = "0.9.15.6.1714"; - vsnHash = "7be11e1"; - sha256 = "1kyk41qnbm8w5bvnisp3d99cf0r72wvlggfi9h4np7sq4p8ksa0g"; + version = "0.9.16.4.1911"; + vsnHash = "ee6e505"; + sha256 = "0lq0lcynmc09d0whynb0x2zgd39dp7z7k86ndgm2clay3zbzqpfd"; }; in stdenv.mkDerivation rec { @@ -40,12 +40,12 @@ in stdenv.mkDerivation rec { # Now we need to patch up the executables and libraries to work on Nix. # Side note: PLEASE don't put spaces in your binary names. This is stupid. for bin in "Plex Media Server" "Plex DLNA Server" "Plex Media Scanner"; do - patchelf --set-interpreter "${glibc}/lib/ld-linux-x86-64.so.2" "$out/usr/lib/plexmediaserver/$bin" + patchelf --set-interpreter "${glibc.out}/lib/ld-linux-x86-64.so.2" "$out/usr/lib/plexmediaserver/$bin" patchelf --set-rpath "$out/usr/lib/plexmediaserver" "$out/usr/lib/plexmediaserver/$bin" done find $out/usr/lib/plexmediaserver/Resources -type f -a -perm -0100 \ - -print -exec patchelf --set-interpreter "${glibc}/lib/ld-linux-x86-64.so.2" '{}' \; + -print -exec patchelf --set-interpreter "${glibc.out}/lib/ld-linux-x86-64.so.2" '{}' \; # executables need libstdc++.so.6 ln -s "${stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]}/libstdc++.so.6" "$out/usr/lib/plexmediaserver/libstdc++.so.6" diff --git a/pkgs/servers/pulseaudio/default.nix b/pkgs/servers/pulseaudio/default.nix index 896b41f6780d..02f5363be8e7 100644 --- a/pkgs/servers/pulseaudio/default.nix +++ b/pkgs/servers/pulseaudio/default.nix @@ -43,6 +43,8 @@ stdenv.mkDerivation rec { patches = [ ./caps-fix.patch ]; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig intltool autoreconfHook ]; propagatedBuildInputs = @@ -50,7 +52,7 @@ stdenv.mkDerivation rec { buildInputs = [ json_c libsndfile speexdsp fftwFloat ] - ++ lib.optionals stdenv.isLinux [ glib dbus.libs ] + ++ lib.optionals stdenv.isLinux [ glib dbus ] ++ lib.optionals (!libOnly) ( [ libasyncns webrtc-audio-processing ] ++ lib.optional jackaudioSupport libjack2 @@ -110,8 +112,9 @@ stdenv.mkDerivation rec { postInstall = lib.optionalString libOnly '' rm -rf $out/{bin,share,etc,lib/{pulse-*,systemd}} - sed 's|-lltdl|-L${libtool}/lib -lltdl|' -i $out/lib/pulseaudio/libpulsecore-${version}.la - ''; + sed 's|-lltdl|-L${libtool.lib}/lib -lltdl|' -i $out/lib/pulseaudio/libpulsecore-${version}.la + '' + + ''moveToOutput lib/cmake "$dev" ''; meta = { description = "Sound server for POSIX and Win32 systems"; diff --git a/pkgs/servers/shellinabox/default.nix b/pkgs/servers/shellinabox/default.nix index 0a651762f185..c9f4e2d253f9 100644 --- a/pkgs/servers/shellinabox/default.nix +++ b/pkgs/servers/shellinabox/default.nix @@ -22,12 +22,12 @@ stdenv.mkDerivation rec { substituteInPlace ./shellinabox/launcher.c --replace "/usr/games" "${openssh}/bin" substituteInPlace ./shellinabox/service.c --replace "/bin/login" "${shadow}/bin/login" substituteInPlace ./shellinabox/launcher.c --replace "/bin/login" "${shadow}/bin/login" - substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl}/bin" + substituteInPlace ./libhttp/ssl.c --replace "/usr/bin" "${openssl.bin}/bin" ''; postInstall = '' wrapProgram $out/bin/shellinaboxd \ - --prefix LD_LIBRARY_PATH : ${openssl}/lib + --prefix LD_LIBRARY_PATH : ${openssl.out}/lib mkdir -p $out/lib cp shellinabox/* $out/lib ''; diff --git a/pkgs/servers/shishi/default.nix b/pkgs/servers/shishi/default.nix index e26fd6ca749e..85dfa805fc14 100644 --- a/pkgs/servers/shishi/default.nix +++ b/pkgs/servers/shishi/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl +{ stdenv, fetchurl, pkgconfig , libgcrypt, libgpgerror, libtasn1 # Optional Dependencies @@ -31,6 +31,7 @@ stdenv.mkDerivation rec { # Fixes support for gcrypt 1.6+ patches = [ ./gcrypt-fix.patch ./freebsd-unistd.patch ]; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ libgcrypt libgpgerror libtasn1 optPam optLibidn optGnutls ]; configureFlags = [ @@ -60,13 +61,13 @@ stdenv.mkDerivation rec { postInstall = '' sed -i $out/lib/libshi{sa,shi}.la \ '' + optionalString (optLibidn != null) '' - -e 's,\(-lidn\),-L${optLibidn}/lib \1,' \ + -e 's,\(-lidn\),-L${optLibidn.out}/lib \1,' \ '' + optionalString (optGnutls != null) '' - -e 's,\(-lgnutls\),-L${optGnutls}/lib \1,' \ + -e 's,\(-lgnutls\),-L${optGnutls.out}/lib \1,' \ '' + '' - -e 's,\(-lgcrypt\),-L${libgcrypt}/lib \1,' \ - -e 's,\(-lgpg-error\),-L${libgpgerror}/lib \1,' \ - -e 's,\(-ltasn1\),-L${libtasn1}/lib \1,' + -e 's,\(-lgcrypt\),-L${libgcrypt.out}/lib \1,' \ + -e 's,\(-lgpg-error\),-L${libgpgerror.out}/lib \1,' \ + -e 's,\(-ltasn1\),-L${libtasn1.out}/lib \1,' ''; meta = { diff --git a/pkgs/servers/sql/mariadb/default.nix b/pkgs/servers/sql/mariadb/default.nix index 9ca1a23ea345..6091703c52cd 100644 --- a/pkgs/servers/sql/mariadb/default.nix +++ b/pkgs/servers/sql/mariadb/default.nix @@ -60,13 +60,15 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optionals stdenv.isDarwin [ "-DWITHOUT_OQGRAPH_STORAGE_ENGINE=1" "-DWITHOUT_TOKUDB=1" - "-DCURSES_LIBRARY=${ncurses}/lib/libncurses.dylib" + "-DCURSES_LIBRARY=${ncurses.out}/lib/libncurses.dylib" ]; # fails to find lex_token.h sometimes enableParallelBuilding = false; outputs = [ "out" "lib" ]; + setOutputFlags = false; + moveToDev = false; prePatch = '' substituteInPlace cmake/libutils.cmake \ @@ -112,8 +114,8 @@ stdenv.mkDerivation rec { '' + '' # Fix the mysql_config sed -i $out/bin/mysql_config \ - -e 's,-lz,-L${zlib}/lib -lz,g' \ - -e 's,-lssl,-L${openssl}/lib -lssl,g' + -e 's,-lz,-L${zlib.out}/lib -lz,g' \ + -e 's,-lssl,-L${openssl.out}/lib -lssl,g' # Add mysql_config to libs since configure scripts use it mkdir -p $lib/bin diff --git a/pkgs/servers/sql/monetdb/default.nix b/pkgs/servers/sql/monetdb/default.nix index afd2222918eb..443dafef55ca 100644 --- a/pkgs/servers/sql/monetdb/default.nix +++ b/pkgs/servers/sql/monetdb/default.nix @@ -17,7 +17,7 @@ composableDerivation.composableDerivation {} { /* perl TODO export these (SWIG only if its present) HAVE_PERL=1 HAVE_PERL_DEVEL=1 HAVE_PERL_SWIG=1 */ }; - buildInputs = [ (pcre.override { unicodeSupport = true; }) + buildInputs = [ pcre openssl readline libxml2 ]; # optional python perl php java ? cfg = { diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index bba2bf2d6825..5fec92a5bf8a 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -10,7 +10,8 @@ let inherit sha256; }; - outputs = [ "out" "doc" ]; + outputs = [ "out" "lib" "doc" ]; + setOutputFlags = false; # $out retains configureFlags :-/ buildInputs = [ zlib readline openssl ] @@ -20,8 +21,11 @@ let makeFlags = [ "world" ]; - configureFlags = - [ "--with-openssl" ] + configureFlags = [ + "--with-openssl" + "--sysconfdir=/etc" + "--libdir=$(lib)/lib" + ] ++ lib.optional (stdenv.isDarwin) "--with-uuid=e2fs" ++ lib.optional (!stdenv.isDarwin) "--with-ossp-uuid"; @@ -36,8 +40,12 @@ let postInstall = '' + moveToOutput "lib/pgxs" "$out" # looks strange, but not deleting it + moveToOutput "lib/*.a" "$out" + moveToOutput "lib/libecpg*" "$out" + # Prevent a retained dependency on gcc-wrapper. - substituteInPlace $out/lib/pgxs/src/Makefile.global --replace ${stdenv.cc}/bin/ld ld + substituteInPlace "$out/lib/pgxs/src/Makefile.global" --replace ${stdenv.cc}/bin/ld ld ''; disallowedReferences = [ stdenv.cc ]; diff --git a/pkgs/servers/ums/default.nix b/pkgs/servers/ums/default.nix index c51aadf0d19c..6e1e8adb8f74 100644 --- a/pkgs/servers/ums/default.nix +++ b/pkgs/servers/ums/default.nix @@ -4,11 +4,11 @@ stdenv.mkDerivation rec { name = "ums-${version}"; - version = "5.4.0"; + version = "6.2.2"; src = fetchurl { url = "mirror://sourceforge/project/unimediaserver/Official%20Releases/Linux/" + stdenv.lib.toUpper "${name}" + "-Java8.tgz"; - sha256 = "0ryp26h7pyqing8pyg0xjrp1wm77wwgya4a7d00wczh885pk16kq"; + sha256 = "1qa999la9hixy0pdj9phjvr6lwqycgdvm94nc1606vz0ivf95b15"; name = "${name}.tgz"; }; diff --git a/pkgs/servers/x11/xorg/builder.sh b/pkgs/servers/x11/xorg/builder.sh index f5b8803a98a3..c9e53f3800d3 100644 --- a/pkgs/servers/x11/xorg/builder.sh +++ b/pkgs/servers/x11/xorg/builder.sh @@ -10,7 +10,7 @@ postInstall() { local r p requires set +o pipefail - requires=$(grep "Requires:" $out/lib/pkgconfig/*.pc | \ + requires=$(grep "Requires:" ${!outputDev}/lib/pkgconfig/*.pc | \ sed "s/Requires://" | sed "s/,/ /g") set -o pipefail @@ -33,10 +33,6 @@ postInstall() { done fi done - - mkdir -p "$out/nix-support" - echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs" - echo "$propagatedNativeBuildInputs" > "$out/nix-support/propagated-native-build-inputs" } diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index bb9e73d31cd3..7ba97cf35b04 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -2347,6 +2347,21 @@ let meta.platforms = stdenv.lib.platforms.unix; }) // {inherit dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ;}; + # TODO: + # With the current state of ./generate-expr-from-tarballs.pl, + # this will get overwritten when next invoked. + # Could add a special case to ./generate-expr-from-tarballs.pl, + # or perhaps there's a cleaner solution. + #xquartz = (mkDerivation "xquartz" { + # name = "xorg-server-1.14.6"; + # builder = ./builder.sh; + # src = fetchurl { + # url = mirror://xorg/individual/xserver/xorg-server-1.14.6.tar.bz2; + # sha256 = "0c57vp1z0p38dj5gfipkmlw6bvbz1mrr0sb3sbghdxxdyq4kzcz8"; + # }; + # buildInputs = [pkgconfig renderproto libdrm openssl libX11 libXau libXaw libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt libXv ]; + #}) // {inherit renderproto libdrm openssl libX11 libXau libXaw libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt libXv ;}; + xorgsgmldoctools = (mkDerivation "xorgsgmldoctools" { name = "xorg-sgml-doctools-1.11"; builder = ./builder.sh; diff --git a/pkgs/servers/x11/xorg/imake-cc-wrapper-uberhack.patch b/pkgs/servers/x11/xorg/imake-cc-wrapper-uberhack.patch new file mode 100644 index 000000000000..fe079eeb42a7 --- /dev/null +++ b/pkgs/servers/x11/xorg/imake-cc-wrapper-uberhack.patch @@ -0,0 +1,13 @@ +diff --git a/imake.c b/imake.c +index c20cd4a..ec2589b 100644 +--- a/imake.c ++++ b/imake.c +@@ -959,7 +959,7 @@ get_libc_version(FILE *inFile) + { + char aout[4096], *tmpdir; + FILE *fp; +- const char *format = "%s -o %s -x c -"; ++ const char *format = "f=$(mktemp imakeXXXXXX.c); cat > $f; %s $f -o %s"; + char *cc; + int len; + char *command; diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 7bd179067cd0..a0405ec077f3 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -48,7 +48,7 @@ in imake = attrs: attrs // { inherit (xorg) xorgcffiles; x11BuildHook = ./imake.sh; - patches = [./imake.patch]; + patches = [./imake.patch ./imake-cc-wrapper-uberhack.patch]; setupHook = if stdenv.isDarwin then ./darwin-imake-setup-hook.sh else null; CFLAGS = [ "-DIMAKE_COMPILETIME_CPP=\\\"${if stdenv.isDarwin then "${args.tradcpp}/bin/cpp" @@ -73,7 +73,7 @@ in libxcb = attrs : attrs // { nativeBuildInputs = [ args.python ]; configureFlags = "--enable-xkb --enable-xinput"; - outputs = [ "out" "doc" "man" ]; + outputs = [ "dev" "out" "doc" ]; }; xcbproto = attrs : attrs // { @@ -81,6 +81,7 @@ in }; libX11 = attrs: attrs // { + outputs = [ "dev" "out" "man" ]; preConfigure = setMalloc0ReturnsNullCrossCompiling + '' sed 's,^as_dummy.*,as_dummy="\$PATH",' -i configure ''; @@ -90,7 +91,6 @@ in rm -rf $out/share/doc ''; CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -"; - outputs = [ "out" "man" ]; }; libAppleWM = attrs: attrs // { @@ -100,7 +100,16 @@ in ''; }; + libXau = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; + + libXdmcp = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + }; + libXfont = attrs: attrs // { + outputs = [ "dev" "out" ]; propagatedBuildInputs = [ args.freetype ]; # propagate link reqs. like bzip2 # prevents "misaligned_stack_error_entering_dyld_stub_binder" configureFlags = lib.optionals isDarwin [ @@ -109,14 +118,10 @@ in }; libXxf86vm = attrs: attrs // { + outputs = [ "dev" "out" ]; preConfigure = setMalloc0ReturnsNullCrossCompiling; }; - libXrandr = attrs: attrs // { - preConfigure = setMalloc0ReturnsNullCrossCompiling; - propagatedBuildInputs = [xorg.libXrender]; - }; - # Propagate some build inputs because of header file dependencies. # Note: most of these are in Requires.private, so maybe builder.sh # should propagate them automatically. @@ -126,7 +131,7 @@ in ''; propagatedBuildInputs = [ xorg.libSM ]; CPP = stdenv.lib.optionalString stdenv.isDarwin "clang -E -"; - outputs = [ "out" "doc" "man" ]; + outputs = [ "dev" "out" "docdev" ]; }; # See https://bugs.freedesktop.org/show_bug.cgi?id=47792 @@ -139,44 +144,106 @@ in propagatedBuildInputs = [ xorg.fixesproto ]; }; + libICE = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + }; + libXcomposite = attrs: attrs // { + outputs = [ "dev" "out" ]; propagatedBuildInputs = [ xorg.libXfixes ]; }; libXaw = attrs: attrs // { + outputs = [ "dev" "out" "docdev" ]; propagatedBuildInputs = [ xorg.libXmu ]; }; + libXcursor = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; + + libXdamage = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; + libXft = attrs: attrs // { + outputs = [ "dev" "out" ]; propagatedBuildInputs = [ xorg.libXrender args.freetype args.fontconfig ]; preConfigure = setMalloc0ReturnsNullCrossCompiling; # the include files need ft2build.h, and Requires.private isn't enough for us postInstall = '' - sed "/^Requires:/s/$/, freetype2/" -i "$out/lib/pkgconfig/xft.pc" + sed "/^Requires:/s/$/, freetype2/" -i "$dev/lib/pkgconfig/xft.pc" ''; }; libXext = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; propagatedBuildInputs = [ xorg.xproto xorg.libXau ]; preConfigure = setMalloc0ReturnsNullCrossCompiling; }; - libSM = attrs: attrs - // { propagatedBuildInputs = [ xorg.libICE ]; }; + libXfixes = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; - libXrender = attrs: attrs - // { preConfigure = setMalloc0ReturnsNullCrossCompiling; }; + libXi = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + }; - libXvMC = attrs: attrs - // { buildInputs = attrs.buildInputs ++ [xorg.renderproto]; }; + libXinerama = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; + + libXmu = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + buildFlags = ''BITMAP_DEFINES=-DBITMAPDIR=\"/no-such-path\"''; + }; + + libXrandr = attrs: attrs // { + outputs = [ "dev" "out" ]; + preConfigure = setMalloc0ReturnsNullCrossCompiling; + propagatedBuildInputs = [xorg.libXrender]; + }; + + libSM = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + propagatedBuildInputs = [ xorg.libICE ]; + }; + + libXrender = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + preConfigure = setMalloc0ReturnsNullCrossCompiling; + }; + + libXres = attrs: attrs // { + outputs = [ "dev" "out" "docdev" ]; + }; + + libXv = attrs: attrs // { + outputs = [ "dev" "out" "docdev" ]; + }; + + libXvMC = attrs: attrs // { + outputs = [ "dev" "out" "doc" ]; + buildInputs = attrs.buildInputs ++ [xorg.renderproto]; + }; libXpm = attrs: attrs // { + outputs = [ "dev" "out" "bin" ]; # tiny man in $bin patchPhase = "sed -i '/USE_GETTEXT_TRUE/d' sxpm/Makefile.in cxpm/Makefile.in"; }; libXpresent = attrs: attrs // { buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ]; }; + libxkbfile = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to avoid propagation + }; + + libxshmfence = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to avoid propagation + }; + setxkbmap = attrs: attrs // { postInstall = '' @@ -193,10 +260,30 @@ in buildInputs = attrs.buildInputs ++ [ args.freetype args.fontconfig ]; }; + xcbutil = attrs: attrs // { + outputs = [ "dev" "out" ]; + }; + xcbutilcursor = attrs: attrs // { meta.maintainers = [ stdenv.lib.maintainers.lovek323 ]; }; + xcbutilimage = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to get rid of propagating others + }; + + xcbutilkeysyms = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to get rid of propagating others + }; + + xcbutilrenderutil = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to get rid of propagating others + }; + + xcbutilwm = attrs: attrs // { + outputs = [ "dev" "out" ]; # mainly to get rid of propagating others + }; + xf86inputevdev = attrs: attrs // { preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c"; installFlags = "sdkdir=\${out}/include/xorg"; @@ -280,7 +367,7 @@ in version = (builtins.parseDrvName attrs.name).version; commonBuildInputs = attrs.buildInputs ++ [ xtrans ]; commonPropagatedBuildInputs = [ - args.zlib args.mesa args.dbus.libs + args.zlib args.mesa args.dbus xf86bigfontproto glproto xf86driproto compositeproto scrnsaverproto resourceproto xf86dgaproto @@ -307,6 +394,7 @@ in in if (!isDarwin) then { + outputs = [ "dev" "out" ]; buildInputs = [ makeWrapper ] ++ commonBuildInputs; propagatedBuildInputs = [ libpciaccess ] ++ commonPropagatedBuildInputs ++ lib.optionals stdenv.isLinux [ args.udev @@ -329,6 +417,12 @@ in --set XKB_BINDIR "${xorg.xkbcomp}/bin" \ --set XORG_DRI_DRIVER_PATH ${args.mesa}/lib/dri \ --add-flags "-xkbdir ${xorg.xkeyboardconfig}/share/X11/xkb" + ( # assert() keeps runtime reference xorgserver-dev in xf86-video-intel and others + cd "$dev" + for f in include/xorg/*.h; do + sed "1i#line 1 \"${attrs.name}/$f\"" -i "$f" + done + ) ''; passthru.version = version; # needed by virtualbox guest additions } else { @@ -402,7 +496,7 @@ in stdenv = if isDarwin then args.clangStdenv else stdenv; buildInputs = attrs.buildInputs ++ lib.optional isDarwin args.bootstrap_cmds; configureFlags = [ - "--with-xserver=${xorg.xorgserver}/bin/X" + "--with-xserver=${xorg.xorgserver.out}/bin/X" ] ++ lib.optionals isDarwin [ "--with-bundle-id-prefix=org.nixos.xquartz" "--with-launchdaemons-dir=\${out}/LaunchDaemons" diff --git a/pkgs/servers/x11/xquartz/default.nix b/pkgs/servers/x11/xquartz/default.nix index 920b66147f26..db0c446617af 100644 --- a/pkgs/servers/x11/xquartz/default.nix +++ b/pkgs/servers/x11/xquartz/default.nix @@ -159,7 +159,7 @@ in stdenv.mkDerivation { --replace "@ENCODINGSDIR@" "${xorg.encodings}/share/fonts/X11/encodings" \ --replace "@MKFONTDIR@" "${xorg.mkfontdir}/bin/mkfontdir" \ --replace "@MKFONTSCALE@" "${xorg.mkfontscale}/bin/mkfontscale" \ - --replace "@FC_CACHE@" "${fontconfig}/bin/fc-cache" \ + --replace "@FC_CACHE@" "${fontconfig.bin}/bin/fc-cache" \ --replace "@FONTCONFIG_FILE@" "$fontsConfPath" cp ${./xinitrc} $out/etc/X11/xinit/xinitrc diff --git a/pkgs/shells/bash/default.nix b/pkgs/shells/bash/default.nix index 60504ecaa9bc..2fa229692eb3 100644 --- a/pkgs/shells/bash/default.nix +++ b/pkgs/shells/bash/default.nix @@ -9,6 +9,8 @@ let shortName = "bash43"; baseConfigureFlags = if interactive then "--with-installed-readline" else "--disable-readline"; sha256 = "1m14s1f61mf6bijfibcjm9y6pkyvz6gibyl8p4hxq90fisi8gimg"; + + inherit (stdenv.lib) optional optionalString; in stdenv.mkDerivation rec { @@ -19,7 +21,12 @@ stdenv.mkDerivation rec { inherit sha256; }; - outputs = [ "out" "doc" ]; + outputs = if (!interactive) # conditional to avoid mass rebuild ATM + then [ "out" "doc" ] + else [ "out" "doc" "info" ]; + + # the man pages are small and useful enough + outputMan = if interactive then "out" else null; NIX_CFLAGS_COMPILE = '' -DSYS_BASHRC="/etc/bashrc" @@ -41,17 +48,17 @@ stdenv.mkDerivation rec { }; in import ./bash-4.3-patches.nix patch) - ++ stdenv.lib.optional stdenv.isCygwin ./cygwin-bash-4.3.33-1.src.patch; + ++ optional stdenv.isCygwin ./cygwin-bash-4.3.33-1.src.patch; crossAttrs = { configureFlags = baseConfigureFlags + " bash_cv_job_control_missing=nomissing bash_cv_sys_named_pipes=nomissing" + - stdenv.lib.optionalString stdenv.isCygwin '' + optionalString stdenv.isCygwin '' --without-libintl-prefix --without-libiconv-prefix --with-installed-readline bash_cv_dev_stdin=present bash_cv_dev_fd=standard - bash_cv_termcap_lib=libncurses + bash_cv_termcap_lib=libncurses ''; }; @@ -59,20 +66,29 @@ stdenv.mkDerivation rec { # Note: Bison is needed because the patches above modify parse.y. nativeBuildInputs = [bison] - ++ stdenv.lib.optional (texinfo != null) texinfo - ++ stdenv.lib.optional interactive readline - ++ stdenv.lib.optional stdenv.isDarwin binutils; + ++ optional (texinfo != null) texinfo + ++ optional interactive readline + ++ optional stdenv.isDarwin binutils; # Bash randomly fails to build because of a recursive invocation to # build `version.h'. enableParallelBuilding = false; postInstall = '' - # Add an `sh' -> `bash' symlink. ln -s bash "$out/bin/sh" ''; - meta = { + postFixup = if interactive + then '' + substituteInPlace "$out/bin/bashbug" \ + --replace '${stdenv.shell}' "$out/bin/bash" + '' + # most space is taken by locale data + else '' + rm -r "$out/share" "$out/bin/bashbug" + ''; + + meta = with stdenv.lib; { homepage = http://www.gnu.org/software/bash/; description = "GNU Bourne-Again Shell, the de facto standard shell on Linux" + @@ -89,11 +105,11 @@ stdenv.mkDerivation rec { Bash without modification. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; - platforms = stdenv.lib.platforms.all; + platforms = platforms.all; - maintainers = [ stdenv.lib.maintainers.simons ]; + maintainers = [ maintainers.simons ]; }; passthru = { diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 521212940672..6b4a91e90142 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { -i "$out/share/fish/functions/alias.fish" \ "$out/share/fish/functions/prompt_pwd.fish" substituteInPlace "$out/share/fish/functions/fish_default_key_bindings.fish" \ - --replace "clear;" "${ncurses}/bin/clear;" + --replace "clear;" "${ncurses.out}/bin/clear;" '' + stdenv.lib.optionalString stdenv.isLinux '' substituteInPlace "$out/share/fish/functions/__fish_print_help.fish" \ --replace "| ul" "| ${utillinux}/bin/ul" @@ -59,6 +59,9 @@ stdenv.mkDerivation rec { '' + '' sed -i "s|/sbin /usr/sbin||" \ "$out/share/fish/functions/__fish_complete_subcommand_root.fish" + + # make fish pick up completions from nix profile + echo "set fish_complete_path (echo \$NIX_PROFILES | tr ' ' '\n')\"/share/fish/vendor_completions.d\" \$fish_complete_path" >> $out/share/fish/config.fish ''; meta = with stdenv.lib; { diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index a7e57b145d61..796521b52334 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -7,12 +7,12 @@ stdenv.mkDerivation rec { name = "oh-my-zsh-git-${version}"; - version = "2016-03-24"; + version = "2016-04-06"; src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; - rev = "9280f2c874b1126ee9399c353d1e0184fd39b4e4"; - sha256 = "1rldqfs5vkqxp3r7nn5q1837a363gml0d5pji0zkl7ia49f7bdnk"; + rev = "d310fac7f65d31f7494532201e02ebf67c9d9555"; + sha256 = "0kx552b0jf5j8qkk1kixdr1z49ly79cvzhdh27848rj3kwb0z8vq"; }; phases = "installPhase"; diff --git a/pkgs/shells/zsh/default.nix b/pkgs/shells/zsh/default.nix index d65b7dc80a8b..fda3e77c61f4 100644 --- a/pkgs/shells/zsh/default.nix +++ b/pkgs/shells/zsh/default.nix @@ -21,13 +21,9 @@ stdenv.mkDerivation { buildInputs = [ ncurses pcre ]; - configureFlags = [ - "--enable-maildir-support" - "--enable-multibyte" - "--enable-zprofile=$out/etc/zprofile" - "--with-tcsetpgrp" - "--enable-pcre" - ]; + preConfigure = '' + configureFlags="--enable-maildir-support --enable-multibyte --enable-zprofile=$out/etc/zprofile --with-tcsetpgrp --enable-pcre" + ''; # the zsh/zpty module is not available on hydra # so skip groups Y Z diff --git a/pkgs/stdenv/adapters.nix b/pkgs/stdenv/adapters.nix index 836dedf1cb18..87d3938f13d3 100644 --- a/pkgs/stdenv/adapters.nix +++ b/pkgs/stdenv/adapters.nix @@ -241,4 +241,5 @@ rec { then pkgs.allStdenvs.stdenvDarwinNaked else pkgs.stdenv; }; + } diff --git a/pkgs/stdenv/common-path.nix b/pkgs/stdenv/common-path.nix index cff6fd0a3eed..da468d56a2cd 100644 --- a/pkgs/stdenv/common-path.nix +++ b/pkgs/stdenv/common-path.nix @@ -7,9 +7,9 @@ pkgs.gawk pkgs.gnutar pkgs.gzip - pkgs.bzip2 + pkgs.bzip2.bin pkgs.gnumake pkgs.bash pkgs.patch - pkgs.xz + pkgs.xz.bin ] diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index 52f8f007b001..22e86c461fa9 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -178,7 +178,7 @@ in rec { allowedRequisites = [ bootstrapTools ] ++ - (with pkgs; [ xz libcxx libcxxabi icu ]) ++ + (with pkgs; [ xz.bin xz.out libcxx libcxxabi icu.out ]) ++ (with pkgs.darwin; [ dyld Libsystem CF locale ]); overrides = persistent1; @@ -214,7 +214,7 @@ in rec { allowedRequisites = [ bootstrapTools ] ++ - (with pkgs; [ icu bash libcxx libcxxabi ]) ++ + (with pkgs; [ xz.bin xz.out icu.out bash libcxx libcxxabi ]) ++ (with pkgs.darwin; [ dyld Libsystem locale ]); overrides = persistent2; @@ -297,9 +297,11 @@ in rec { }; allowedRequisites = (with pkgs; [ - xz libcxx libcxxabi icu gmp gnumake findutils bzip2 llvm zlib libffi - coreutils ed diffutils gnutar gzip ncurses gnused bash gawk - gnugrep llvmPackages.clang-unwrapped patch pcre binutils-raw binutils gettext + xz.out xz.bin libcxx libcxxabi icu.out gmp.out gnumake findutils bzip2.out + bzip2.bin llvm zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar + gzip ncurses.out ncurses.dev ncurses.man gnused bash gawk + gnugrep llvmPackages.clang-unwrapped patch pcre.out binutils-raw.out + binutils-raw.dev binutils gettext ]) ++ (with pkgs.darwin; [ dyld Libsystem CF cctools libiconv locale ]); diff --git a/pkgs/stdenv/darwin/make-bootstrap-tools.nix b/pkgs/stdenv/darwin/make-bootstrap-tools.nix index b0025351b049..561dcc7fdfda 100644 --- a/pkgs/stdenv/darwin/make-bootstrap-tools.nix +++ b/pkgs/stdenv/darwin/make-bootstrap-tools.nix @@ -30,9 +30,9 @@ rec { cp -rL ${darwin.Libsystem}/include $out chmod -R u+w $out/include - cp -rL ${icu}/include* $out/include + cp -rL ${icu.dev}/include* $out/include cp -rL ${libiconv}/include/* $out/include - cp -rL ${gnugrep.pcre}/include/* $out/include + cp -rL ${gnugrep.pcre.dev}/include/* $out/include mv $out/include $out/include-Libsystem # Copy coreutils, bash, etc. @@ -49,23 +49,23 @@ rec { cp -d ${gawk}/bin/awk $out/bin cp ${gnutar}/bin/tar $out/bin cp ${gzip}/bin/gzip $out/bin - cp ${bzip2}/bin/bzip2 $out/bin + cp ${bzip2.bin}/bin/bzip2 $out/bin cp -d ${gnumake}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin - cp -d ${xz}/bin/xz $out/bin + cp -d ${xz.bin}/bin/xz $out/bin # This used to be in-nixpkgs, but now is in the bundle # because I can't be bothered to make it partially static - cp ${curl}/bin/curl $out/bin - cp -d ${curl}/lib/libcurl*.dylib $out/lib - cp -d ${libssh2}/lib/libssh*.dylib $out/lib - cp -d ${openssl}/lib/*.dylib $out/lib + cp ${curl.bin}/bin/curl $out/bin + cp -d ${curl.out}/lib/libcurl*.dylib $out/lib + cp -d ${libssh2.out}/lib/libssh*.dylib $out/lib + cp -d ${openssl.out}/lib/*.dylib $out/lib - cp -d ${gnugrep.pcre}/lib/libpcre*.dylib $out/lib - cp -d ${libiconv}/lib/lib*.dylib $out/lib + cp -d ${gnugrep.pcre.out}/lib/libpcre*.dylib $out/lib + cp -d ${libiconv.lib or libiconv}/lib/lib*.dylib $out/lib cp -d ${gettext}/lib/libintl*.dylib $out/lib chmod +x $out/lib/libintl*.dylib - cp -d ${ncurses}/lib/libncurses*.dylib $out/lib + cp -d ${ncurses.out}/lib/libncurses*.dylib $out/lib # Copy what we need of clang cp -d ${llvmPackages.clang-unwrapped}/bin/clang $out/bin @@ -80,10 +80,10 @@ rec { mkdir $out/include cp -rd ${libcxx}/include/c++ $out/include - cp -d ${icu}/lib/libicu*.dylib $out/lib - cp -d ${zlib}/lib/libz.* $out/lib - cp -d ${gmpxx}/lib/libgmp*.* $out/lib - cp -d ${xz}/lib/liblzma*.* $out/lib + cp -d ${icu.out}/lib/libicu*.dylib $out/lib + cp -d ${zlib.out}/lib/libz.* $out/lib + cp -d ${gmpxx.out}/lib/libgmp*.* $out/lib + cp -d ${xz.out}/lib/liblzma*.* $out/lib # Copy binutils. for i in as ld ar ranlib nm strip otool install_name_tool dsymutil; do @@ -138,7 +138,7 @@ rec { cp ${stdenv.shell} $out/on-server/sh cp ${cpio}/bin/cpio $out/on-server cp ${coreutils_}/bin/mkdir $out/on-server - cp ${bzip2}/bin/bzip2 $out/on-server + cp ${bzip2.bin}/bin/bzip2 $out/on-server chmod u+w $out/on-server/* strip $out/on-server/* diff --git a/pkgs/stdenv/generic/default.nix b/pkgs/stdenv/generic/default.nix index 6dc2553db386..547541d28246 100644 --- a/pkgs/stdenv/generic/default.nix +++ b/pkgs/stdenv/generic/default.nix @@ -82,6 +82,7 @@ let ../../build-support/setup-hooks/compress-man-pages.sh ../../build-support/setup-hooks/strip.sh ../../build-support/setup-hooks/patch-shebangs.sh + ../../build-support/setup-hooks/multiple-outputs.sh ../../build-support/setup-hooks/move-sbin.sh ../../build-support/setup-hooks/move-lib64.sh ../../build-support/setup-hooks/set-source-date-epoch-to-latest.sh @@ -219,12 +220,25 @@ let # The meta attribute is passed in the resulting attribute set, # but it's not part of the actual derivation, i.e., it's not # passed to the builder and is not a dependency. But since we - # include it in the result, it *is* available to nix-env for - # queries. We also a meta.position attribute here to - # identify the source location of the package. - meta = meta // (if pos' != null then { - position = pos'.file + ":" + toString pos'.line; - } else {}); + # include it in the result, it *is* available to nix-env for queries. + meta = { } + # If the packager hasn't specified `outputsToInstall`, choose a default, + # namely `p.bin or p.out or p`; + # if he has specified it, it will be overridden below in `// meta`. + # Note: This default probably shouldn't be globally configurable. + # Services and users should specify outputs explicitly, + # unless they are comfortable with this default. + // { outputsToInstall = + let + outs = outputs'; # the value passed to derivation primitive + hasOutput = out: builtins.elem out outs; + in [( lib.findFirst hasOutput null (["bin" "out"] ++ outs) )]; + } + // meta + # Fill `meta.position` to identify the source location of the package. + // lib.optionalAttrs (pos' != null) + { position = pos'.file + ":" + toString pos'.line; } + ; inherit passthru; } // # Pass through extra attributes that are not inputs, but diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index cca4648d2375..9399ff7a7643 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -174,12 +174,21 @@ ensureDir() { } -installBin() { - mkdir -p $out/bin - cp "$@" $out/bin +# Add $1/lib* into rpaths. +# The function is used in multiple-outputs.sh hook, +# so it is defined here but tried after the hook. +_addRpathPrefix() { + if [ "$NIX_NO_SELF_RPATH" != 1 ]; then + export NIX_LDFLAGS="-rpath $1/lib $NIX_LDFLAGS" + if [ -n "$NIX_LIB64_IN_SELF_RPATH" ]; then + export NIX_LDFLAGS="-rpath $1/lib64 $NIX_LDFLAGS" + fi + if [ -n "$NIX_LIB32_IN_SELF_RPATH" ]; then + export NIX_LDFLAGS="-rpath $1/lib32 $NIX_LDFLAGS" + fi + fi } - # Return success if the specified file is an ELF object. isELF() { local fn="$1" @@ -312,16 +321,7 @@ for i in $crossPkgs; do done -# Add the output as an rpath. -if [ "$NIX_NO_SELF_RPATH" != 1 ]; then - export NIX_LDFLAGS="-rpath $out/lib $NIX_LDFLAGS" - if [ -n "$NIX_LIB64_IN_SELF_RPATH" ]; then - export NIX_LDFLAGS="-rpath $out/lib64 $NIX_LDFLAGS" - fi - if [ -n "$NIX_LIB32_IN_SELF_RPATH" ]; then - export NIX_LDFLAGS="-rpath $out/lib32 $NIX_LDFLAGS" - fi -fi +_addRpathPrefix "$out" # Set the TZ (timezone) environment variable, otherwise commands like @@ -643,7 +643,7 @@ configurePhase() { done fi - if [ -z "$dontAddPrefix" ]; then + if [ -z "$dontAddPrefix" -a -n "$prefix" ]; then configureFlags="${prefixKey:---prefix=}$prefix $configureFlags" fi @@ -708,7 +708,9 @@ checkPhase() { installPhase() { runHook preInstall - mkdir -p "$prefix" + if [ -n "$prefix" ]; then + mkdir -p "$prefix" + fi installTargets=${installTargets:-install} echo "install flags: $installTargets $makeFlags ${makeFlagsArray[@]} $installFlags ${installFlagsArray[@]}" @@ -737,24 +739,29 @@ fixupPhase() { prefix=${!output} runHook fixupOutput done + + # Propagate build inputs and setup hook into the development output. + if [ -n "$propagatedBuildInputs" ]; then - mkdir -p "$out/nix-support" - echo "$propagatedBuildInputs" > "$out/nix-support/propagated-build-inputs" + mkdir -p "${!outputDev}/nix-support" + echo "$propagatedBuildInputs" > "${!outputDev}/nix-support/propagated-build-inputs" fi if [ -n "$propagatedNativeBuildInputs" ]; then - mkdir -p "$out/nix-support" - echo "$propagatedNativeBuildInputs" > "$out/nix-support/propagated-native-build-inputs" - fi - - if [ -n "$propagatedUserEnvPkgs" ]; then - mkdir -p "$out/nix-support" - echo "$propagatedUserEnvPkgs" > "$out/nix-support/propagated-user-env-packages" + mkdir -p "${!outputDev}/nix-support" + echo "$propagatedNativeBuildInputs" > "${!outputDev}/nix-support/propagated-native-build-inputs" fi if [ -n "$setupHook" ]; then - mkdir -p "$out/nix-support" - substituteAll "$setupHook" "$out/nix-support/setup-hook" + mkdir -p "${!outputDev}/nix-support" + substituteAll "$setupHook" "${!outputDev}/nix-support/setup-hook" + fi + + # Propagate user-env packages into the output with binaries, TODO? + + if [ -n "$propagatedUserEnvPkgs" ]; then + mkdir -p "${!outputBin}/nix-support" + echo "$propagatedUserEnvPkgs" > "${!outputBin}/nix-support/propagated-user-env-packages" fi runHook postFixup diff --git a/pkgs/stdenv/linux/default.nix b/pkgs/stdenv/linux/default.nix index f0b6ce7c9f3d..fbadfa80fe15 100644 --- a/pkgs/stdenv/linux/default.nix +++ b/pkgs/stdenv/linux/default.nix @@ -287,11 +287,13 @@ rec { shellPackage = stage4.pkgs.bash; }; + /* outputs TODO allowedRequisites = with stage4.pkgs; [ gzip bzip2 xz bash binutils coreutils diffutils findutils gawk glibc gnumake gnused gnutar gnugrep gnupatch patchelf attr acl paxctl zlib pcre linuxHeaders ed gcc gcc.cc libsigsegv ]; + */ overrides = pkgs: { gcc = cc; diff --git a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix index 3adb00693f75..d6e024c62583 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools-cross.nix @@ -130,20 +130,20 @@ rec { mkdir -p $out/bin $out/lib $out/libexec # Copy what we need of Glibc. - cp -d ${glibc}/lib/ld-*.so* $out/lib - cp -d ${glibc}/lib/libc*.so* $out/lib - cp -d ${glibc}/lib/libc_nonshared.a $out/lib - cp -d ${glibc}/lib/libm*.so* $out/lib - cp -d ${glibc}/lib/libdl*.so* $out/lib - cp -d ${glibc}/lib/librt*.so* $out/lib - cp -d ${glibc}/lib/libpthread*.so* $out/lib - cp -d ${glibc}/lib/libnsl*.so* $out/lib - cp -d ${glibc}/lib/libutil*.so* $out/lib - cp -d ${glibc}/lib/libnss*.so* $out/lib - cp -d ${glibc}/lib/libresolv*.so* $out/lib - cp -d ${glibc}/lib/crt?.o $out/lib + cp -d ${glibc.out}/lib/ld-*.so* $out/lib + cp -d ${glibc.out}/lib/libc*.so* $out/lib + cp -d ${glibc.out}/lib/libc_nonshared.a $out/lib + cp -d ${glibc.out}/lib/libm*.so* $out/lib + cp -d ${glibc.out}/lib/libdl*.so* $out/lib + cp -d ${glibc.out}/lib/librt*.so* $out/lib + cp -d ${glibc.out}/lib/libpthread*.so* $out/lib + cp -d ${glibc.out}/lib/libnsl*.so* $out/lib + cp -d ${glibc.out}/lib/libutil*.so* $out/lib + cp -d ${glibc.out}/lib/libnss*.so* $out/lib + cp -d ${glibc.out}/lib/libresolv*.so* $out/lib + cp -d ${glibc.out}/lib/crt?.o $out/lib - cp -rL ${glibc}/include $out + cp -rL ${glibc.dev}/include $out chmod -R u+w $out/include # Hopefully we won't need these. @@ -166,7 +166,7 @@ rec { cp -d ${gawk}/bin/awk $out/bin cp ${gnutar}/bin/tar $out/bin cp ${gzip}/bin/gzip $out/bin - cp ${bzip2}/bin/bzip2 $out/bin + cp ${bzip2.bin}/bin/bzip2 $out/bin cp -d ${gnumake}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin @@ -199,9 +199,9 @@ rec { rm -rf $out/include/c++/*/ext/parallel cp -d ${gmpxx}/lib/libgmp*.so* $out/lib - cp -d ${mpfr}/lib/libmpfr*.so* $out/lib + cp -d ${mpfr.out}/lib/libmpfr*.so* $out/lib cp -d ${libmpc}/lib/libmpc*.so* $out/lib - cp -d ${zlib}/lib/libz.so* $out/lib + cp -d ${zlib.out}/lib/libz.so* $out/lib cp -d ${libelf}/lib/libelf.so* $out/lib # TBD: Why are these needed for cross but not native tools? @@ -213,7 +213,7 @@ rec { for i in as ld ar ranlib nm strip readelf objdump; do cp ${binutils}/bin/$i $out/bin done - cp -d ${binutils}/lib/lib*.so* $out/lib + cp -d ${binutils.out}/lib/lib*.so* $out/lib chmod -R u+w $out diff --git a/pkgs/stdenv/linux/make-bootstrap-tools.nix b/pkgs/stdenv/linux/make-bootstrap-tools.nix index 68456942d40f..118eef57ffe3 100644 --- a/pkgs/stdenv/linux/make-bootstrap-tools.nix +++ b/pkgs/stdenv/linux/make-bootstrap-tools.nix @@ -37,20 +37,20 @@ rec { mkdir -p $out/bin $out/lib $out/libexec # Copy what we need of Glibc. - cp -d ${glibc}/lib/ld*.so* $out/lib - cp -d ${glibc}/lib/libc*.so* $out/lib - cp -d ${glibc}/lib/libc_nonshared.a $out/lib - cp -d ${glibc}/lib/libm*.so* $out/lib - cp -d ${glibc}/lib/libdl*.so* $out/lib - cp -d ${glibc}/lib/librt*.so* $out/lib - cp -d ${glibc}/lib/libpthread*.so* $out/lib - cp -d ${glibc}/lib/libnsl*.so* $out/lib - cp -d ${glibc}/lib/libutil*.so* $out/lib - cp -d ${glibc}/lib/libnss*.so* $out/lib - cp -d ${glibc}/lib/libresolv*.so* $out/lib - cp -d ${glibc}/lib/crt?.o $out/lib + cp -d ${glibc.out}/lib/ld*.so* $out/lib + cp -d ${glibc.out}/lib/libc*.so* $out/lib + cp -d ${glibc.out}/lib/libc_nonshared.a $out/lib + cp -d ${glibc.out}/lib/libm*.so* $out/lib + cp -d ${glibc.out}/lib/libdl*.so* $out/lib + cp -d ${glibc.out}/lib/librt*.so* $out/lib + cp -d ${glibc.out}/lib/libpthread*.so* $out/lib + cp -d ${glibc.out}/lib/libnsl*.so* $out/lib + cp -d ${glibc.out}/lib/libutil*.so* $out/lib + cp -d ${glibc.out}/lib/libnss*.so* $out/lib + cp -d ${glibc.out}/lib/libresolv*.so* $out/lib + cp -d ${glibc.out}/lib/crt?.o $out/lib - cp -rL ${glibc}/include $out + cp -rL ${glibc.dev}/include $out chmod -R u+w "$out" # glibc can contain linker scripts: find them, copy their deps, @@ -81,12 +81,12 @@ rec { cp -d ${gawk}/bin/awk $out/bin cp ${gnutar}/bin/tar $out/bin cp ${gzip}/bin/gzip $out/bin - cp ${bzip2}/bin/bzip2 $out/bin + cp ${bzip2.bin}/bin/bzip2 $out/bin cp -d ${gnumake}/bin/* $out/bin cp -d ${patch}/bin/* $out/bin cp ${patchelf}/bin/* $out/bin - cp -d ${gnugrep.pcre}/lib/libpcre*.so* $out/lib # needed by grep + cp -d ${gnugrep.pcre.out}/lib/libpcre*.so* $out/lib # needed by grep # Copy what we need of GCC. cp -d ${gcc.cc}/bin/gcc $out/bin @@ -112,16 +112,16 @@ rec { rm -rf $out/include/c++/*/ext/parallel cp -d ${gmpxx}/lib/libgmp*.so* $out/lib - cp -d ${mpfr}/lib/libmpfr*.so* $out/lib + cp -d ${mpfr.out}/lib/libmpfr*.so* $out/lib cp -d ${libmpc}/lib/libmpc*.so* $out/lib - cp -d ${zlib}/lib/libz.so* $out/lib + cp -d ${zlib.out}/lib/libz.so* $out/lib cp -d ${libelf}/lib/libelf.so* $out/lib # Copy binutils. for i in as ld ar ranlib nm strip readelf objdump; do cp ${binutils}/bin/$i $out/bin done - cp -d ${binutils}/lib/lib*.so* $out/lib + cp -d ${binutils.out}/lib/lib*.so* $out/lib chmod -R u+w $out diff --git a/pkgs/test/openftd/default.nix b/pkgs/test/openftd/default.nix index 91042fe05911..13b6b01f3259 100644 --- a/pkgs/test/openftd/default.nix +++ b/pkgs/test/openftd/default.nix @@ -45,5 +45,5 @@ stdenv.mkDerivation { glib gtk pkgconfig dbus_glib realCurl pcre libsexy libgnomeui gtkspell libnotify libgtkhtml ]; - configureFlags="--with-libcurl-libraries=${curl}/lib --with-libcurl-headers=${curl}/include --with-pcre_libraries=${pcre}/lib --with-pcre_headers=${pcre}/include"; + configureFlags="--with-libcurl-libraries=${curl.out}/lib --with-libcurl-headers=${curl.dev}/include --with-pcre_libraries=${pcre.out}/lib --with-pcre_headers=${pcre.dev}/include"; } diff --git a/pkgs/tools/X11/primus/default.nix b/pkgs/tools/X11/primus/default.nix index f0a971dde18f..88589a058783 100644 --- a/pkgs/tools/X11/primus/default.nix +++ b/pkgs/tools/X11/primus/default.nix @@ -4,6 +4,7 @@ # same LD_LIBRARY_PATH. # Other distributions do the same. { stdenv +, stdenv_i686 , primusLib , writeScriptBin , primusLib_i686 ? null @@ -11,8 +12,12 @@ }: let - primus = if useNvidia then primusLib else primusLib.override { nvidia_x11 = null; }; - primus_i686 = if useNvidia then primusLib_i686 else primusLib_i686.override { nvidia_x11 = null; }; + # We override stdenv in case we need different ABI for libGL + primusLib_ = primusLib.override { inherit stdenv; }; + primusLib_i686_ = primusLib_i686.override { stdenv = stdenv_i686; }; + + primus = if useNvidia then primusLib_ else primusLib_.override { nvidia_x11 = null; }; + primus_i686 = if useNvidia then primusLib_i686_ else primusLib_i686_.override { nvidia_x11 = null; }; ldPath = stdenv.lib.makeLibraryPath ([primus] ++ stdenv.lib.optional (primusLib_i686 != null) primus_i686); in writeScriptBin "primusrun" '' diff --git a/pkgs/tools/X11/xlaunch/default.nix b/pkgs/tools/X11/xlaunch/default.nix index 06dfd28b7399..ccf998951a34 100644 --- a/pkgs/tools/X11/xlaunch/default.nix +++ b/pkgs/tools/X11/xlaunch/default.nix @@ -45,7 +45,7 @@ EOF else RESET_OPTION=\"-noreset\" fi; - XCMD=\"\$(egrep \"^Environment=\" /etc/systemd/system/display-manager.service | sed -e \"s/Environment=/ export /\" | sed -e '\\''s/#.*//'\\'' ; echo export _XARGS_=\\\$\\( grep xserver_arguments \\\$SLIM_CFGFILE \\| sed -e s/xserver_arguments// \\| sed -e s/:0/:\${_display}/ \\| sed -e s/vt7/vt\$((7+_display))/ \\) ; echo ${xorgserver}/bin/X \\\$_XARGS_ \$RESET_OPTION )\" + XCMD=\"\$(egrep \"^Environment=\" /etc/systemd/system/display-manager.service | sed -e \"s/Environment=/ export /\" | sed -e '\\''s/#.*//'\\'' ; echo export _XARGS_=\\\$\\( grep xserver_arguments \\\$SLIM_CFGFILE \\| sed -e s/xserver_arguments// \\| sed -e s/:0/:\${_display}/ \\| sed -e s/vt7/vt\$((7+_display))/ \\) ; echo ${xorgserver.out}/bin/X \\\$_XARGS_ \$RESET_OPTION )\" PRE_XCMD=\"\$(egrep \"^ExecStartPre=\" /etc/systemd/system/display-manager.service | sed -e \"\s/ExecStartPre=//\")\" echo \"\$PRE_XCMD\" echo \"\$PRE_XCMD\" | bash diff --git a/pkgs/tools/X11/xpra/default.nix b/pkgs/tools/X11/xpra/default.nix index b0c79342d42a..ae869cfb1c4f 100644 --- a/pkgs/tools/X11/xpra/default.nix +++ b/pkgs/tools/X11/xpra/default.nix @@ -48,7 +48,7 @@ buildPythonApplication rec { --set XKB_BINDIR "${xkbcomp}/bin" \ --set FONTCONFIG_FILE "${fontsConf}" \ --prefix LD_LIBRARY_PATH : ${libfakeXinerama}/lib \ - --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin + --prefix PATH : ${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; preCheck = "exit 0"; @@ -57,7 +57,7 @@ buildPythonApplication rec { #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra # sed -i '3iexport FONTCONFIG_FILE="${fontsConf}"' $out/bin/xpra - # sed -i '4iexport PATH=${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin\${PATH:+:}\$PATH' $out/bin/xpra + # sed -i '4iexport PATH=${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin\${PATH:+:}\$PATH' $out/bin/xpra #''; diff --git a/pkgs/tools/X11/xpra/gtk3.nix b/pkgs/tools/X11/xpra/gtk3.nix index 7fd24a510d5d..f30c0751c3f2 100644 --- a/pkgs/tools/X11/xpra/gtk3.nix +++ b/pkgs/tools/X11/xpra/gtk3.nix @@ -54,7 +54,7 @@ buildPythonApplication rec { --set XKB_BINDIR "${xkbcomp}/bin" \ --set FONTCONFIG_FILE "${fontsConf}" \ --prefix LD_LIBRARY_PATH : ${libfakeXinerama}/lib \ - --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin + --prefix PATH : ${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; preCheck = "exit 0"; @@ -64,7 +64,7 @@ buildPythonApplication rec { #postFixup = '' # sed -i '2iexport XKB_BINDIR="${xkbcomp}/bin"' $out/bin/xpra # sed -i '3iexport FONTCONFIG_FILE="${fontsConf}"' $out/bin/xpra - # sed -i '4iexport PATH=${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin\${PATH:+:}\$PATH' $out/bin/xpra + # sed -i '4iexport PATH=${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin\${PATH:+:}\$PATH' $out/bin/xpra #''; diff --git a/pkgs/tools/admin/gtk-vnc/default.nix b/pkgs/tools/admin/gtk-vnc/default.nix index fddb9505c984..657d08026e4a 100644 --- a/pkgs/tools/admin/gtk-vnc/default.nix +++ b/pkgs/tools/admin/gtk-vnc/default.nix @@ -31,7 +31,7 @@ stdenv.mkDerivation rec { # Fix broken .la files preFixup = '' - sed 's,-lgpg-error,-L${libgpgerror}/lib -lgpg-error,' -i $out/lib/*.la + sed 's,-lgpg-error,-L${libgpgerror.out}/lib -lgpg-error,' -i $out/lib/*.la ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/admin/salt/default.nix b/pkgs/tools/admin/salt/default.nix new file mode 100644 index 000000000000..254b7b9374eb --- /dev/null +++ b/pkgs/tools/admin/salt/default.nix @@ -0,0 +1,51 @@ +{ + stdenv, fetchurl, pythonPackages, openssl, + + # Many Salt modules require various Python modules to be installed, + # passing them in this array enables Salt to find them. + extraInputs ? [] +}: + +pythonPackages.buildPythonApplication rec { + name = "salt-${version}"; + version = "2015.8.8"; + + disabled = pythonPackages.isPy3k; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/s/salt/${name}.tar.gz"; + sha256 = "1xcfcs50pyammb60myph4f8bi2r6iwkxwsnnhrjwvkv2ymxwxv5j"; + }; + + propagatedBuildInputs = with pythonPackages; [ + futures + jinja2 + markupsafe + msgpack + pycrypto + pyyaml + pyzmq + requests + salttesting + tornado + ] ++ extraInputs; + + patches = [ ./fix-libcrypto-loading.patch ]; + + postPatch = '' + substituteInPlace "salt/utils/rsax931.py" \ + --subst-var-by "libcrypto" "${openssl}/lib/libcrypto.so" + ''; + + # The tests fail due to socket path length limits at the very least; + # possibly there are more issues but I didn't leave the test suite running + # as is it rather long. + doCheck = false; + + meta = with stdenv.lib; { + homepage = https://saltstack.com/; + description = "Portable, distributed, remote execution and configuration management system"; + maintainers = with maintainers; [ aneeshusa ]; + license = licenses.asl20; + }; +} diff --git a/pkgs/tools/admin/salt/fix-libcrypto-loading.patch b/pkgs/tools/admin/salt/fix-libcrypto-loading.patch new file mode 100644 index 000000000000..c5cc1bde5d07 --- /dev/null +++ b/pkgs/tools/admin/salt/fix-libcrypto-loading.patch @@ -0,0 +1,11 @@ +diff --git a/salt/utils/rsax931.py b/salt/utils/rsax931.py +index 9eb1f4a..d764f7a 100644 +--- a/salt/utils/rsax931.py ++++ b/salt/utils/rsax931.py +@@ -36,7 +36,7 @@ def _load_libcrypto(): + 'libcrypto.so*')) + lib = lib[0] if len(lib) > 0 else None + if lib: +- return cdll.LoadLibrary(lib) ++ return cdll.LoadLibrary('@libcrypto@') + raise OSError('Cannot locate OpenSSL libcrypto') diff --git a/pkgs/tools/admin/salt/testing.nix b/pkgs/tools/admin/salt/testing.nix new file mode 100644 index 000000000000..8c65defcab58 --- /dev/null +++ b/pkgs/tools/admin/salt/testing.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pythonPackages }: + +pythonPackages.buildPythonApplication rec { + name = "SaltTesting-${version}"; + version = "2015.7.10"; + + disabled = pythonPackages.isPy3k; + + propagatedBuildInputs = with pythonPackages; [ + six + ]; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/S/SaltTesting/${name}.tar.gz"; + sha256 = "0p0y8kb77pis18rcig1kf9dnns4bnfa3mr91q40lq4mw63l1b34h"; + }; + + meta = with stdenv.lib; { + homepage = https://github.com/saltstack/salt-testing; + description = "Common testing tools used in the Salt Stack projects"; + maintainers = with maintainers; [ aneeshusa ]; + license = licenses.asl20; + }; +} diff --git a/pkgs/tools/archivers/gnutar/default.nix b/pkgs/tools/archivers/gnutar/default.nix index 71b43bf2de9a..36d3ebd9816f 100644 --- a/pkgs/tools/archivers/gnutar/default.nix +++ b/pkgs/tools/archivers/gnutar/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, autoreconfHook }: +{ stdenv, fetchurl, autoreconfHook, acl }: stdenv.mkDerivation rec { name = "gnutar-${version}"; @@ -24,7 +24,11 @@ stdenv.mkDerivation rec { substituteInPlace src/system.c --replace '_(' 'N_(' ''; - buildInputs = stdenv.lib.optional stdenv.isDarwin autoreconfHook; + outputs = [ "out" "info" ]; + + buildInputs = [ ] + ++ stdenv.lib.optional stdenv.isLinux acl + ++ stdenv.lib.optional stdenv.isDarwin autoreconfHook; # May have some issues with root compilation because the bootstrap tool # cannot be used as a login shell for now. diff --git a/pkgs/tools/archivers/p7zip/default.nix b/pkgs/tools/archivers/p7zip/default.nix index 6769540d8dfb..a0f3bcb0ebb9 100644 --- a/pkgs/tools/archivers/p7zip/default.nix +++ b/pkgs/tools/archivers/p7zip/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl }: let - version = "9.38"; + version = "15.14.1"; in stdenv.mkDerivation rec { name = "p7zip-${version}"; src = fetchurl { url = "mirror://sourceforge/p7zip/p7zip_${version}_src_all.tar.bz2"; - sha256 = "0mxribb9a3lz3bifz6002hg7vyy8h9piinypian533hw8qvswfx7"; + sha256 = "1m15iwglyjpiw82m7dbpykz8s55imch34w20w09l34116vdb97b9"; }; preConfigure = '' diff --git a/pkgs/tools/archivers/unrar/default.nix b/pkgs/tools/archivers/unrar/default.nix index 768c7afd7eb7..f2fdc71dc86c 100644 --- a/pkgs/tools/archivers/unrar/default.nix +++ b/pkgs/tools/archivers/unrar/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { ''; installPhase = '' - installBin unrar + install -Dt "$out/bin" unrar mkdir -p $out/share/doc/unrar cp acknow.txt license.txt \ diff --git a/pkgs/tools/archivers/zpaq/default.nix b/pkgs/tools/archivers/zpaq/default.nix index 011793248cd7..8a0a3ef4ccaf 100644 --- a/pkgs/tools/archivers/zpaq/default.nix +++ b/pkgs/tools/archivers/zpaq/default.nix @@ -3,11 +3,11 @@ let s = # Generated upstream information rec { baseName="zpaq"; - version="707"; + version="709"; name="${baseName}-${version}"; - hash="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; - url="http://mattmahoney.net/dc/zpaq707.zip"; - sha256="0xbisphv318a33px47vriirdp2jhf99y6hx6gcbfhbhkaqpggjg3"; + hash="105lwd9cckmmhg5v9ddf873wzbkdsl7wfqyd30kn0q78sg3c0avh"; + url="http://mattmahoney.net/dc/zpaq709.zip"; + sha256="105lwd9cckmmhg5v9ddf873wzbkdsl7wfqyd30kn0q78sg3c0avh"; }; in stdenv.mkDerivation { diff --git a/pkgs/tools/audio/beets/default.nix b/pkgs/tools/audio/beets/default.nix index 4532d6424116..0079270e29fa 100644 --- a/pkgs/tools/audio/beets/default.nix +++ b/pkgs/tools/audio/beets/default.nix @@ -128,7 +128,7 @@ in buildPythonApplication rec { }' beets/ui/commands.py '' + optionalString enableBadfiles '' sed -i -e '/self\.run_command(\[/ { - s,"flac","${flac}/bin/flac", + s,"flac","${flac.bin}/bin/flac", s,"mp3val","${mp3val}/bin/mp3val", }' beetsplug/badfiles.py '' + optionalString enableReplaygain '' diff --git a/pkgs/tools/audio/playerctl/default.nix b/pkgs/tools/audio/playerctl/default.nix index 0e2b11a1f06d..bd5a6b1d592f 100644 --- a/pkgs/tools/audio/playerctl/default.nix +++ b/pkgs/tools/audio/playerctl/default.nix @@ -2,14 +2,14 @@ pkgconfig, gobjectIntrospection }: stdenv.mkDerivation rec { - name = "playerctl"; - version = "0.4.2"; + name = "playerctl-${version}"; + version = "0.5.0"; src = fetchFromGitHub { owner = "acrisci"; repo = "playerctl"; rev = "v${version}"; - sha256 = "0dy6wc7qr00p53hlhpbg9x40w4ag95r2i7r1nsyb4ym3wzrvskzh"; + sha256 = "0b4pg5pwblgbf6kvvynzh9dshfikxy5c2ks7733n7wza5wkpgmng"; }; buildInputs = [ diff --git a/pkgs/tools/audio/qastools/default.nix b/pkgs/tools/audio/qastools/default.nix index 920f6913d090..3743b38a2103 100644 --- a/pkgs/tools/audio/qastools/default.nix +++ b/pkgs/tools/audio/qastools/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { cmakeFlags = [ "-DCMAKE_INSALL_PREFIX=$out" - "-DALSA_INCLUDE=${alsaLib}/include/alsa/version.h" + "-DALSA_INCLUDE=${alsaLib.dev}/include/alsa/version.h" ]; meta = with stdenv.lib; { diff --git a/pkgs/tools/backup/partimage/default.nix b/pkgs/tools/backup/partimage/default.nix index 009dc90576b3..18e8bb400253 100644 --- a/pkgs/tools/backup/partimage/default.nix +++ b/pkgs/tools/backup/partimage/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, bzip2, zlib, newt, openssl, pkgconfig, slang +{stdenv, fetchurl, fetchpatch, bzip2, zlib, newt, openssl, pkgconfig, slang , automake, autoconf, libtool, gettext }: stdenv.mkDerivation { @@ -17,6 +17,12 @@ stdenv.mkDerivation { patches = [ ./gentoos-zlib.patch + (fetchpatch { + name = "no-SSLv2.patch"; + url = "https://projects.archlinux.org/svntogit/community.git/plain/trunk" + + "/use-SSLv3-by-default.patch?h=packages/partimage&id=7e95d1c6614e"; + sha256 = "1zfixa6g1nb1hqfzn2wvyvxsr38gm7908zfml2iaqnwy6iz6jd8v"; + }) ]; meta = { diff --git a/pkgs/tools/backup/store-backup/default.nix b/pkgs/tools/backup/store-backup/default.nix index 93a7f9e1e39f..9329cd23e83f 100644 --- a/pkgs/tools/backup/store-backup/default.nix +++ b/pkgs/tools/backup/store-backup/default.nix @@ -41,7 +41,7 @@ stdenv.mkDerivation rec { for p in $out/bin/* do wrapProgram "$p" \ --prefix PERL5LIB ":" "${perlPackages.DBFile}/lib/perl5/site_perl" \ - --prefix PATH ":" "${which}/bin:${bzip2}/bin" + --prefix PATH ":" "${which}/bin:${bzip2.bin}/bin" done patchShebangs $out diff --git a/pkgs/tools/bluetooth/obex-data-server/default.nix b/pkgs/tools/bluetooth/obex-data-server/default.nix index 53e854c34ebc..15167ee57b13 100644 --- a/pkgs/tools/bluetooth/obex-data-server/default.nix +++ b/pkgs/tools/bluetooth/obex-data-server/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { preConfigure = '' addToSearchPath PKG_CONFIG_PATH ${openobex}/lib64/pkgconfig - export PKG_CONFIG_PATH="${dbus_libs}/lib/pkgconfig:$PKG_CONFIG_PATH" + export PKG_CONFIG_PATH="${dbus_libs.dev}/lib/pkgconfig:$PKG_CONFIG_PATH" ''; meta = { diff --git a/pkgs/tools/bluetooth/obexd/default.nix b/pkgs/tools/bluetooth/obexd/default.nix index f900a81caa0e..a3486569b518 100644 --- a/pkgs/tools/bluetooth/obexd/default.nix +++ b/pkgs/tools/bluetooth/obexd/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "1i20dnibvnq9lnkkhajr5xx3kxlwf9q5c4jm19kyb0q1klzgzlb8"; }; - buildInputs = [ glib dbus.libs openobex bluez libical ]; + buildInputs = [ glib dbus openobex bluez libical ]; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/compression/bzip2/default.nix b/pkgs/tools/compression/bzip2/default.nix index 66ff5612dd4a..a165ab2b157b 100644 --- a/pkgs/tools/compression/bzip2/default.nix +++ b/pkgs/tools/compression/bzip2/default.nix @@ -41,6 +41,8 @@ in stdenv.mkDerivation { postInstall = ""; }; + outputs = [ "dev" "bin" "static" ] ++ stdenv.lib.optional sharedLibrary "out"; + preBuild = stdenv.lib.optionalString sharedLibrary '' make -f ${if stdenv.isDarwin then "Makefile-libbz2_dylib" else "Makefile-libbz2_so"} ''; @@ -61,12 +63,15 @@ in stdenv.mkDerivation { ) ''); - installFlags = [ "PREFIX=$(out)" ]; + installFlags = [ "PREFIX=$(bin)" ]; postInstall = '' - rm $out/bin/bunzip2* $out/bin/bzcat* - ln -s bzip2 $out/bin/bunzip2 - ln -s bzip2 $out/bin/bzcat + rm $bin/bin/bunzip2* $bin/bin/bzcat* + ln -s bzip2 $bin/bin/bunzip2 + ln -s bzip2 $bin/bin/bzcat + + mkdir "$static" + mv "$bin/lib" "$static/" ''; postPatch = '' diff --git a/pkgs/tools/compression/gzip/default.nix b/pkgs/tools/compression/gzip/default.nix index 6772e21cb0cb..009246b69a08 100644 --- a/pkgs/tools/compression/gzip/default.nix +++ b/pkgs/tools/compression/gzip/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, xz }: stdenv.mkDerivation rec { name = "gzip-1.6"; @@ -8,8 +8,12 @@ stdenv.mkDerivation rec { sha256 = "0ivqnbhiwd12q8hp3qw6rpsrpw2jg5y2mymk8cn22lsx90dfvprp"; }; + outputs = [ "out" "man" "info" ]; + enableParallelBuilding = true; + buildInputs = [ xz.bin ]; + preConfigure = if stdenv.isCygwin then '' sed -i lib/fpending.h -e 's,include ,,' '' else null; diff --git a/pkgs/tools/compression/kzipmix/default.nix b/pkgs/tools/compression/kzipmix/default.nix index f768189040b5..6fcff7b29280 100644 --- a/pkgs/tools/compression/kzipmix/default.nix +++ b/pkgs/tools/compression/kzipmix/default.nix @@ -12,8 +12,8 @@ stdenv.mkDerivation { mkdir -p $out/bin cp kzip zipmix $out/bin - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/bin/kzip - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/bin/zipmix + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/kzip + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/zipmix ''; meta = { diff --git a/pkgs/tools/compression/pxz/default.nix b/pkgs/tools/compression/pxz/default.nix index 07c3e205a982..f6424b5e8803 100644 --- a/pkgs/tools/compression/pxz/default.nix +++ b/pkgs/tools/compression/pxz/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { gcc -o pxz pxz.c -llzma \ -fopenmp -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -O2 \ -DPXZ_BUILD_DATE=\"nixpkgs\" \ - -DXZ_BINARY=\"${xz}/bin/xz\" \ + -DXZ_BINARY=\"${xz.bin}/bin/xz\" \ -DPXZ_VERSION=\"${version}\" ''; diff --git a/pkgs/tools/compression/xz/default.nix b/pkgs/tools/compression/xz/default.nix index 5f5ee28ca063..5d6a8634b1ba 100644 --- a/pkgs/tools/compression/xz/default.nix +++ b/pkgs/tools/compression/xz/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "1da071wyx921pyx3zkxlnbpp14p6km98pnp66mg1arwi9dxgbxbg"; }; + outputs = [ "dev" "out" "bin" "man" "doc" ]; + doCheck = true; # In stdenv-linux, prevent a dependency on bootstrap-tools. diff --git a/pkgs/tools/filesystems/bindfs/default.nix b/pkgs/tools/filesystems/bindfs/default.nix index 7d79eefb122c..80027c7a0474 100644 --- a/pkgs/tools/filesystems/bindfs/default.nix +++ b/pkgs/tools/filesystems/bindfs/default.nix @@ -12,6 +12,9 @@ stdenv.mkDerivation rec { dontStrip = true; buildInputs = [ fuse pkgconfig ]; + postFixup = '' + ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs + ''; meta = { description = "A FUSE filesystem for mounting a directory to another location"; diff --git a/pkgs/tools/filesystems/btrfs-progs/default.nix b/pkgs/tools/filesystems/btrfs-progs/default.nix index 59935af0a5d4..d0fda2da4142 100644 --- a/pkgs/tools/filesystems/btrfs-progs/default.nix +++ b/pkgs/tools/filesystems/btrfs-progs/default.nix @@ -2,14 +2,14 @@ , asciidoc, xmlto, docbook_xml_dtd_45, docbook_xsl, libxslt }: -let version = "4.5"; in +let version = "4.5.1"; in stdenv.mkDerivation rec { name = "btrfs-progs-${version}"; src = fetchurl { url = "mirror://kernel/linux/kernel/people/kdave/btrfs-progs/btrfs-progs-v${version}.tar.xz"; - sha256 = "04d8w1wqaij6kxhxcirwvy1bkvc7aikkyw981ciwlznblzc16y7f"; + sha256 = "1znf2zhb56zbmdjk3lq107678xwsqwc5gczspypmc5i31qnppy7f"; }; buildInputs = [ diff --git a/pkgs/tools/filesystems/e2fsprogs/default.nix b/pkgs/tools/filesystems/e2fsprogs/default.nix index a53e93960aef..c091158bff63 100644 --- a/pkgs/tools/filesystems/e2fsprogs/default.nix +++ b/pkgs/tools/filesystems/e2fsprogs/default.nix @@ -8,7 +8,11 @@ stdenv.mkDerivation rec { sha256 = "1m72lk90b5i3h9qnmss6aygrzyn8x2avy3hyaq2fb0jglkrkz6ar"; }; - buildInputs = [ pkgconfig libuuid ]; + outputs = [ "bin" "out" "man" ]; + outputDev = "bin"; # just for *.pc + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libuuid ]; crossAttrs = { preConfigure = '' @@ -16,15 +20,20 @@ stdenv.mkDerivation rec { ''; }; - # libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency). - configureFlags = "--enable-elf-shlibs --disable-libuuid --disable-libblkid --disable-uuidd --disable-fsck --enable-symlink-install"; + configureFlags = [ + "--enable-elf-shlibs" "--enable-symlink-install" "--enable-relative-symlinks" + # libuuid, libblkid, uuidd and fsck are in util-linux-ng (the "libuuid" dependency). + "--disable-libuuid" "--disable-uuidd" "--disable-libblkid" "--disable-fsck" + ]; + + # hacky way to make it install *.pc + postInstall = '' + make install-libs + rm "$out"/lib/*.a + ''; enableParallelBuilding = true; - preInstall = "installFlagsArray=('LN=ln -s')"; - - postInstall = "make install-libs"; - meta = { homepage = http://e2fsprogs.sourceforge.net/; description = "Tools for creating and checking ext2/ext3/ext4 filesystems"; diff --git a/pkgs/tools/filesystems/grive2/default.nix b/pkgs/tools/filesystems/grive2/default.nix new file mode 100644 index 000000000000..a3ee1b67bab2 --- /dev/null +++ b/pkgs/tools/filesystems/grive2/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchFromGitHub, pkgconfig, fetchurl, yajl, cmake, libgcrypt, curl, expat, boost, binutils }: + +stdenv.mkDerivation rec { + version = "0.5.0"; + name = "grive2-${version}"; + + src = fetchFromGitHub { + owner = "vitalif"; + repo = "grive2"; + rev = "v${version}"; + sha256 = "0gyic9228j25l5x8qj9xxxp2cgbw6y4skxqx0xrq6qilhv4lj23c"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + + buildInputs = [ libgcrypt yajl curl expat stdenv boost binutils ]; + + meta = with stdenv.lib; { + description = "A console Google Drive client"; + homepage = https://github.com/vitalif/grive2; + license = licenses.gpl2; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix index d3b3b716ffa0..7a8501b7a891 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/blivet.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/blivet.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl, buildPythonApplication, pykickstart, pyparted, pyblock , libselinux, cryptsetup, multipath_tools, lsof, utillinux -, useNixUdev ? true, udev ? null +, useNixUdev ? true, libudev ? null }: -assert useNixUdev -> udev != null; +assert useNixUdev -> libudev != null; buildPythonApplication rec { name = "blivet-${version}"; @@ -21,21 +21,21 @@ buildPythonApplication rec { sed -i -e 's|"multipath"|"${multipath_tools}/sbin/multipath"|' \ blivet/devicelibs/mpath.py blivet/devices.py sed -i -e '/"wipefs"/ { - s|wipefs|${utillinux}/sbin/wipefs| + s|wipefs|${utillinux.bin}/sbin/wipefs| s/-f/--force/ }' blivet/formats/__init__.py sed -i -e 's|"lsof"|"${lsof}/bin/lsof"|' blivet/formats/fs.py - sed -i -r -e 's|"(u?mount)"|"${utillinux}/bin/\1"|' blivet/util.py + sed -i -r -e 's|"(u?mount)"|"${utillinux.bin}/bin/\1"|' blivet/util.py sed -i '/pvscan/s/, *"--cache"//' blivet/devicelibs/lvm.py '' + stdenv.lib.optionalString useNixUdev '' sed -i -e '/find_library/,/find_library/ { - c libudev = "${udev}/lib/libudev.so.1" + c libudev = "${libudev.out}/lib/libudev.so.1" }' blivet/pyudev.py ''; propagatedBuildInputs = [ pykickstart pyparted pyblock libselinux cryptsetup - ] ++ stdenv.lib.optional useNixUdev udev; + ] ++ stdenv.lib.optional useNixUdev libudev; # tests are currently _heavily_ broken upstream doCheck = false; diff --git a/pkgs/tools/filesystems/nixpart/0.4/default.nix b/pkgs/tools/filesystems/nixpart/0.4/default.nix index 1d9838168952..bdf0a5c4323d 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/default.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/default.nix @@ -12,7 +12,7 @@ let inherit stdenv fetchurl buildPythonApplication; inherit pykickstart pyparted pyblock cryptsetup multipath_tools; inherit useNixUdev; - inherit (pkgs) lsof utillinux udev; + inherit (pkgs) lsof utillinux libudev; libselinux = pkgs.libselinux.override { enablePython = true; }; }; @@ -29,12 +29,12 @@ let lvm2 = import ./lvm2.nix { inherit stdenv fetchurl; - inherit (pkgs) pkgconfig utillinux udev coreutils; + inherit (pkgs) pkgconfig utillinux libudev systemd coreutils; }; multipath_tools = import ./multipath-tools.nix { inherit stdenv fetchurl lvm2; - inherit (pkgs) readline udev libaio gzip; + inherit (pkgs) readline systemd libaio gzip; }; parted = import ./parted.nix { diff --git a/pkgs/tools/filesystems/nixpart/0.4/lvm2.nix b/pkgs/tools/filesystems/nixpart/0.4/lvm2.nix index 9e2b0c900794..b92c40ba99e6 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/lvm2.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/lvm2.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, udev, utillinux, coreutils }: +{ stdenv, fetchurl, pkgconfig, libudev, systemd, utillinux, coreutils }: let v = "2.02.106"; @@ -15,7 +15,7 @@ stdenv.mkDerivation { configureFlags = "--disable-readline --enable-udev_rules --enable-udev_sync --enable-pkgconfig --enable-applib"; - buildInputs = [ pkgconfig udev ]; + buildInputs = [ pkgconfig libudev ]; preConfigure = '' @@ -23,7 +23,7 @@ stdenv.mkDerivation { --replace /usr/bin/tr ${coreutils}/bin/tr substituteInPlace scripts/lvm2_activation_generator_systemd_red_hat.c \ --replace /usr/sbin/lvm $out/sbin/lvm \ - --replace /usr/bin/udevadm ${udev}/bin/udevadm + --replace /usr/bin/udevadm ${systemd.udev.bin}/bin/udevadm sed -i /DEFAULT_SYS_DIR/d Makefile.in sed -i /DEFAULT_PROFILE_DIR/d conf/Makefile.in @@ -42,7 +42,7 @@ stdenv.mkDerivation { postInstall = '' substituteInPlace $out/lib/udev/rules.d/13-dm-disk.rules \ - --replace $out/sbin/blkid ${utillinux}/sbin/blkid + --replace $out/sbin/blkid ${utillinux.bin}/sbin/blkid # Systemd stuff mkdir -p $out/etc/systemd/system $out/lib/systemd/system-generators diff --git a/pkgs/tools/filesystems/nixpart/0.4/multipath-tools.nix b/pkgs/tools/filesystems/nixpart/0.4/multipath-tools.nix index 90722d74ace1..b78605504bf8 100644 --- a/pkgs/tools/filesystems/nixpart/0.4/multipath-tools.nix +++ b/pkgs/tools/filesystems/nixpart/0.4/multipath-tools.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, lvm2, libaio, gzip, readline, udev }: +{ stdenv, fetchurl, lvm2, libaio, gzip, readline, systemd }: stdenv.mkDerivation rec { name = "multipath-tools-0.4.9"; @@ -22,8 +22,8 @@ stdenv.mkDerivation rec { substituteInPlace kpartx/kpartx.rules --replace /sbin/kpartx $out/sbin/kpartx substituteInPlace kpartx/kpartx_id --replace /sbin/dmsetup ${lvm2}/sbin/dmsetup - substituteInPlace libmultipath/defaults.h --replace /lib/udev/scsi_id ${udev}/lib/udev/scsi_id - substituteInPlace libmultipath/hwtable.c --replace /lib/udev/scsi_id ${udev}/lib/udev/scsi_id + substituteInPlace libmultipath/defaults.h --replace /lib/udev/scsi_id ${systemd.udev.lib}/lib/udev/scsi_id + substituteInPlace libmultipath/hwtable.c --replace /lib/udev/scsi_id ${systemd.udev.lib}/lib/udev/scsi_id ''; meta = { diff --git a/pkgs/tools/filesystems/svnfs/default.nix b/pkgs/tools/filesystems/svnfs/default.nix index fba066d0f4cb..333714182177 100644 --- a/pkgs/tools/filesystems/svnfs/default.nix +++ b/pkgs/tools/filesystems/svnfs/default.nix @@ -12,10 +12,10 @@ stdenv.mkDerivation { # why is this required? preConfigure='' - export LD_LIBRARY_PATH=${subversion}/lib + export LD_LIBRARY_PATH=${subversion.out}/lib ''; - NIX_CFLAGS_COMPILE="-I ${subversion}/include/subversion-1"; + NIX_CFLAGS_COMPILE="-I ${subversion.dev}/include/subversion-1"; NIX_LDFLAGS="-lsvn_client-1"; meta = { diff --git a/pkgs/tools/filesystems/xfsprogs/default.nix b/pkgs/tools/filesystems/xfsprogs/default.nix index de61809a1aea..e30f67af3e95 100644 --- a/pkgs/tools/filesystems/xfsprogs/default.nix +++ b/pkgs/tools/filesystems/xfsprogs/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { buildInputs = [ gettext libuuid readline ]; - outputs = [ "out" "lib" ]; + outputs = [ "dev" "out" "bin" ]; # TODO: review xfs preConfigure = '' NIX_LDFLAGS="$(echo $NIX_LDFLAGS | sed "s,$out,$lib,g")" @@ -39,8 +39,6 @@ stdenv.mkDerivation rec { "XGETTEXT=xgettext" "--disable-lib64" "--enable-readline" - "--includedir=$(lib)/include" - "--libdir=$(lib)/lib" ]; installFlags = [ "install-dev" ]; diff --git a/pkgs/tools/filesystems/xtreemfs/default.nix b/pkgs/tools/filesystems/xtreemfs/default.nix index 8f090c297813..556cb674212d 100644 --- a/pkgs/tools/filesystems/xtreemfs/default.nix +++ b/pkgs/tools/filesystems/xtreemfs/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { --replace "/usr/local" "${valgrind}" substituteInPlace cpp/CMakeLists.txt \ - --replace '"/lib64" "/usr/lib64"' '"${attr}/lib" "${fuse}/lib"' + --replace '"/lib64" "/usr/lib64"' '"${attr.out}/lib" "${fuse}/lib"' export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${fuse}/include" export NIX_CFLAGS_LINK="$NIX_CFLAGS_LINK -L${fuse}/lib" diff --git a/pkgs/tools/filesystems/yandex-disk/default.nix b/pkgs/tools/filesystems/yandex-disk/default.nix index f32f180f1d6e..966b3df8b175 100644 --- a/pkgs/tools/filesystems/yandex-disk/default.nix +++ b/pkgs/tools/filesystems/yandex-disk/default.nix @@ -43,7 +43,7 @@ stdenv.mkDerivation rec { ${patchelf}/bin/patchelf \ --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "${zlib}/lib:${p.gcclib}" \ + --set-rpath "${zlib.out}/lib:${p.gcclib}" \ $out/bin/yandex-disk ''; diff --git a/pkgs/tools/graphics/gnuplot/default.nix b/pkgs/tools/graphics/gnuplot/default.nix index 8a9df4982a3e..2b78f1fba405 100644 --- a/pkgs/tools/graphics/gnuplot/default.nix +++ b/pkgs/tools/graphics/gnuplot/default.nix @@ -46,7 +46,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/gnuplot \ --prefix PATH : '${gnused}/bin' \ --prefix PATH : '${coreutils}/bin' \ - --prefix PATH : '${fontconfig}/bin' \ + --prefix PATH : '${fontconfig.bin}/bin' \ --run '. ${./set-gdfontpath-from-fontconfig.sh}' ''; diff --git a/pkgs/tools/graphics/graphviz/2.0.nix b/pkgs/tools/graphics/graphviz/2.0.nix index 04fff8053819..02b700111de3 100644 --- a/pkgs/tools/graphics/graphviz/2.0.nix +++ b/pkgs/tools/graphics/graphviz/2.0.nix @@ -16,11 +16,11 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-pngincludedir=${libpng}/include" - "--with-pnglibdir=${libpng}/lib" + "--with-pnglibdir=${libpng.out}/lib" "--with-jpegincludedir=${libjpeg}/include" - "--with-jpeglibdir=${libjpeg}/lib" + "--with-jpeglibdir=${libjpeg.out}/lib" "--with-expatincludedir=${expat}/include" - "--with-expatlibdir=${expat}/lib" + "--with-expatlibdir=${expat.out}/lib" ] ++ stdenv.lib.optional (xlibsWrapper == null) "--without-x"; diff --git a/pkgs/tools/graphics/graphviz/2.32.nix b/pkgs/tools/graphics/graphviz/2.32.nix index 2743bd78aa7c..8da3ea0a1749 100644 --- a/pkgs/tools/graphics/graphviz/2.32.nix +++ b/pkgs/tools/graphics/graphviz/2.32.nix @@ -17,15 +17,15 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optionals (xorg != null) [ xorg.xlibsWrapper xorg.libXrender ] ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; - CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo}/include/cairo"; + CPPFLAGS = stdenv.lib.optionalString (stdenv.system == "x86_64-darwin") "-I${cairo.dev}/include/cairo"; configureFlags = [ "--with-pngincludedir=${libpng}/include" - "--with-pnglibdir=${libpng}/lib" + "--with-pnglibdir=${libpng.out}/lib" "--with-jpegincludedir=${libjpeg}/include" - "--with-jpeglibdir=${libjpeg}/lib" + "--with-jpeglibdir=${libjpeg.out}/lib" "--with-expatincludedir=${expat}/include" - "--with-expatlibdir=${expat}/lib" + "--with-expatlibdir=${expat.out}/lib" "--with-cgraph=no" "--with-sparse=no" ] diff --git a/pkgs/tools/graphics/graphviz/default.nix b/pkgs/tools/graphics/graphviz/default.nix index 5635e3a69ff7..ce620cf30177 100644 --- a/pkgs/tools/graphics/graphviz/default.nix +++ b/pkgs/tools/graphics/graphviz/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat, libXaw +{ stdenv, fetchurl, pkgconfig, libpng, libjpeg, expat , yacc, libtool, fontconfig, pango, gd, xorg, gts, libdevil, gettext, cairo , flex }: @@ -21,22 +21,15 @@ stdenv.mkDerivation rec { ]; buildInputs = - [ pkgconfig libpng libjpeg expat yacc libtool fontconfig gd gts libdevil flex - ] ++ stdenv.lib.optionals (xorg != null) [ xorg.xlibsWrapper xorg.libXrender pango libXaw ] + [ pkgconfig libpng libjpeg expat yacc libtool fontconfig gd gts libdevil flex pango + ] ++ stdenv.lib.optionals (xorg != null) + (with xorg; [ xlibsWrapper libXrender libXaw libXpm ]) ++ stdenv.lib.optional (stdenv.system == "x86_64-darwin") gettext; CPPFLAGS = stdenv.lib.optionalString (xorg != null && stdenv.system == "x86_64-darwin") - "-I${cairo}/include/cairo"; + "-I${cairo.dev}/include/cairo"; - configureFlags = - [ "--with-pngincludedir=${libpng}/include" - "--with-pnglibdir=${libpng}/lib" - "--with-jpegincludedir=${libjpeg}/include" - "--with-jpeglibdir=${libjpeg}/lib" - "--with-expatincludedir=${expat}/include" - "--with-expatlibdir=${expat}/lib" - ] - ++ stdenv.lib.optional (xorg == null) "--without-x"; + configureFlags = stdenv.lib.optional (xorg == null) "--without-x"; postPatch = stdenv.lib.optionalString stdenv.isDarwin '' for foo in cmd/dot/Makefile.in cmd/edgepaint/Makefile.in \ diff --git a/pkgs/tools/graphics/jhead/default.nix b/pkgs/tools/graphics/jhead/default.nix index dfbd7c4e5e06..2fb1c9325c03 100644 --- a/pkgs/tools/graphics/jhead/default.nix +++ b/pkgs/tools/graphics/jhead/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { substituteInPlace jhead.c \ --replace "\" Compiled: \"__DATE__" "" \ - --replace "jpegtran -trim" "${libjpeg}/bin/jpegtran -trim" + --replace "jpegtran -trim" "${libjpeg.bin}/bin/jpegtran -trim" ''; installPhase = '' diff --git a/pkgs/tools/graphics/netpbm/default.nix b/pkgs/tools/graphics/netpbm/default.nix index 3b9f4e64d07d..4a52434d379a 100644 --- a/pkgs/tools/graphics/netpbm/default.nix +++ b/pkgs/tools/graphics/netpbm/default.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation rec { cp config.mk.in config.mk echo "STATICLIB_TOO = n" >> config.mk substituteInPlace "config.mk" \ - --replace "TIFFLIB = NONE" "TIFFLIB = ${libtiff}/lib/libtiff.so" \ + --replace "TIFFLIB = NONE" "TIFFLIB = ${libtiff.out}/lib/libtiff.so" \ --replace "TIFFHDR_DIR =" "TIFFHDR_DIR = ${libtiff}/include" ''; diff --git a/pkgs/tools/graphics/optipng/default.nix b/pkgs/tools/graphics/optipng/default.nix index 08f99469d255..767ea0e54254 100644 --- a/pkgs/tools/graphics/optipng/default.nix +++ b/pkgs/tools/graphics/optipng/default.nix @@ -5,11 +5,11 @@ with stdenv.lib; stdenv.mkDerivation rec { - name = "optipng-0.7.5"; + name = "optipng-0.7.6"; src = fetchurl { url = "mirror://sourceforge/optipng/${name}.tar.gz"; - sha256 = "17b197437z5wn29llpwklk7ihgx8bhc913gvjf4zyb81idwlprbl"; + sha256 = "105yk5qykvhiahzag67gm36s2kplxf6qn5hay02md0nkrcgn6w28"; }; buildInputs = [ libpng ]; diff --git a/pkgs/tools/graphics/pdfread/default.nix b/pkgs/tools/graphics/pdfread/default.nix index 69ab7f27e343..a4184fd9514b 100644 --- a/pkgs/tools/graphics/pdfread/default.nix +++ b/pkgs/tools/graphics/pdfread/default.nix @@ -39,7 +39,7 @@ stdenv.mkDerivation { cp -R *.py pylrs $PYDIR wrapProgram $out/bin/pdfread.py --prefix PYTHONPATH : $PYTHONPATH:${pillow}/$LIBSUFFIX/PIL:$PYDIR \ - --prefix PATH : ${ghostscript}/bin:${pngnq}/bin:${djvulibre}/bin:${unrar}/bin:${optipng}/bin + --prefix PATH : ${ghostscript}/bin:${pngnq}/bin:${djvulibre.bin}/bin:${unrar}/bin:${optipng}/bin ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/graphics/pngcheck/default.nix b/pkgs/tools/graphics/pngcheck/default.nix index 160badaf668b..d288e7018e60 100644 --- a/pkgs/tools/graphics/pngcheck/default.nix +++ b/pkgs/tools/graphics/pngcheck/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { # ''; makefile = "Makefile.unx"; - makeFlags = "ZPATH=${zlib}/lib"; + makeFlags = "ZPATH=${zlib.out}/lib"; buildInputs = [ zlib ]; diff --git a/pkgs/tools/graphics/pngout/default.nix b/pkgs/tools/graphics/pngout/default.nix index 471823ed9235..afc1a2519fe1 100644 --- a/pkgs/tools/graphics/pngout/default.nix +++ b/pkgs/tools/graphics/pngout/default.nix @@ -18,9 +18,9 @@ stdenv.mkDerivation { cp ${folder}/pngout $out/bin ${if stdenv.system == "i686-linux" then '' - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux.so.2 $out/bin/pngout + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux.so.2 $out/bin/pngout '' else if stdenv.system == "x86_64-linux" then '' - patchelf --set-interpreter ${stdenv.glibc}/lib/ld-linux-x86-64.so.2 $out/bin/pngout + patchelf --set-interpreter ${stdenv.glibc.out}/lib/ld-linux-x86-64.so.2 $out/bin/pngout '' else ""} ''; diff --git a/pkgs/tools/graphics/quirc/default.nix b/pkgs/tools/graphics/quirc/default.nix index d84989d4372b..6da565b292f9 100644 --- a/pkgs/tools/graphics/quirc/default.nix +++ b/pkgs/tools/graphics/quirc/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation { src = fetchgit { inherit (s) url sha256 rev; }; - NIX_CFLAGS_COMPILE="-I${SDL}/include/SDL"; + NIX_CFLAGS_COMPILE="-I${SDL.dev}/include/SDL"; configurePhase = '' sed -e 's/-[og] root//g' -i Makefile ''; diff --git a/pkgs/tools/graphics/wkhtmltopdf/default.nix b/pkgs/tools/graphics/wkhtmltopdf/default.nix index 89ea0e944440..bcb7803785b0 100644 --- a/pkgs/tools/graphics/wkhtmltopdf/default.nix +++ b/pkgs/tools/graphics/wkhtmltopdf/default.nix @@ -1,72 +1,114 @@ -{ stdenv, fetchgit, qt4, fontconfig, freetype, libpng, zlib, libjpeg +{ stdenv, fetchFromGitHub, qt4, fontconfig, freetype, libpng, zlib, libjpeg , openssl, libX11, libXext, libXrender, overrideDerivation }: stdenv.mkDerivation rec { - version = "0.12.2.4"; + version = "0.12.3.2"; name = "wkhtmltopdf-${version}"; - src = fetchgit { - url = "https://github.com/wkhtmltopdf/wkhtmltopdf.git"; - rev = "refs/tags/${version}"; - sha256 = "0g96vgi3s633j4myjfzakkyiml1zspvdvbc0q1vhw8fp5n1xdknm"; - fetchSubmodules = false; + src = fetchFromGitHub { + owner = "wkhtmltopdf"; + repo = "wkhtmltopdf"; + rev = "${version}"; + sha256 = "1yyqjhxv4dvpkad79scs7xdx4iz8jpyidr9ya86k3zpfyvh4gq3s"; }; wkQt = overrideDerivation qt4 (deriv: { - name = "qt-mod-4.8.6"; + name = "qt-mod-4.8.7"; enableParallelBuilding = true; - src = fetchgit { - url = "https://github.com/wkhtmltopdf/qt.git"; - rev = "48e71c19c7fc67517fb3dca6d42eacb57341c9ba"; # From git submodule spec in wkhtml repo. - sha256 = "1ygr7g3k900zjf54ji6kkfppqnxaqwbh8npr53g2krdw3bmny6fx"; + src = fetchFromGitHub { + owner = "wkhtmltopdf"; + repo = "qt"; + rev = "fe194f9dac0b515757392a18f7fc9527c91d45ab"; # From git submodule spec in wkhtml repo. + sha256 = "1j2ld2bfacnn3vm2l1870v55sj82bq4y8zkawmlx2y5j63d8vr23"; }; configureFlags = '' - -v -no-separate-debug-info -release -confirm-license -opensource - -qdbus -glib -dbus-linked -openssl-linked + -dbus-linked + -glib + -no-separate-debug-info + -openssl-linked + -qdbus + -v '' + # This is taken from the wkhtml build script that we don't run '' - -fast - -static + -confirm-license -exceptions - -xmlpatterns - -webkit - -system-zlib - -system-libpng - -system-libjpeg + -fast + -graphicssystem raster + -iconv + -largefile + -no-3dnow + -no-accessibility + -no-audio-backend + -no-avx + -no-cups + -no-dbus + -no-declarative + -no-glib + -no-gstreamer + -no-gtkstyle + -no-icu + -no-javascript-jit -no-libmng -no-libtiff - -no-accessibility - -no-stl - -no-qt3support + -nomake demos + -nomake docs + -nomake examples + -nomake tests + -nomake tools + -nomake translations + -no-mitshm + -no-mmx + -no-multimedia + -no-nas-sound + -no-neon + -no-nis + -no-opengl + -no-openvg + -no-pch -no-phonon -no-phonon-backend - -no-opengl - -no-declarative + -no-qt3support + -no-rpath + -no-scripttools + -no-sm -no-sql-ibase -no-sql-mysql -no-sql-odbc -no-sql-psql -no-sql-sqlite -no-sql-sqlite2 - -no-mmx - -no-3dnow -no-sse -no-sse2 - -no-multimedia - -nomake demos - -nomake docs - -nomake examples - -nomake tools - -nomake tests - -nomake translations + -no-sse3 + -no-sse4.1 + -no-sse4.2 + -no-ssse3 + -no-stl + -no-xcursor + -no-xfixes + -no-xinerama + -no-xinput + -no-xkb + -no-xrandr + -no-xshape + -no-xsync + -opensource + -openssl + -release + -static + -system-libjpeg + -system-libpng + -system-zlib + -webkit + -xmlpatterns ''; }); buildInputs = [ wkQt fontconfig freetype libpng zlib libjpeg openssl - libX11 libXext libXrender - ]; + libX11 libXext libXrender + ]; configurePhase = "qmake wkhtmltopdf.pro INSTALLBASE=$out"; diff --git a/pkgs/tools/inputmethods/m17n-db/default.nix b/pkgs/tools/inputmethods/m17n-db/default.nix index fbe7188ef9ac..944d6de1084a 100644 --- a/pkgs/tools/inputmethods/m17n-db/default.nix +++ b/pkgs/tools/inputmethods/m17n-db/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, gettext}: +{ stdenv, fetchurl, gettext }: stdenv.mkDerivation rec { name = "m17n-db-1.7.0"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { buildInputs = [ gettext ]; configureFlags = stdenv.lib.optional (stdenv ? glibc) - "--with-charmaps=${stdenv.glibc}/share/i18n/charmaps" + "--with-charmaps=${stdenv.glibc.out}/share/i18n/charmaps" ; meta = { diff --git a/pkgs/tools/misc/bandwidth/default.nix b/pkgs/tools/misc/bandwidth/default.nix index ff5e47336d3c..853c619859d4 100644 --- a/pkgs/tools/misc/bandwidth/default.nix +++ b/pkgs/tools/misc/bandwidth/default.nix @@ -10,11 +10,13 @@ let else null; in stdenv.mkDerivation rec { - name = "bandwidth-1.1b"; + name = "bandwidth-${version}"; + version = "1.2.0"; src = fetchurl { - url = "http://zsmith.co/archives/${name}.tar.gz"; - sha256 = "01c3ca0x3rh65j1s2g6cg5xr9fvm0lp2wpmv71vhz55xwqqqmiz8"; + url = "https://mutineer.org/file.php?id=ee10698c6a675ece26f08ddb5e6001323d6305c1&p=bandwidth"; + name = "${name}.tar.gz"; + sha256 = "1jq6a4n77gcx68bkr8l79agsmgv8saw9nv183297gnah1g67nvw6"; }; buildInputs = [ nasm ]; @@ -30,9 +32,9 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://zsmith.co/bandwidth.html; - description = "and artificial benchmark for identifying weaknesses in the memory subsystem"; + description = "Artificial benchmark for identifying weaknesses in the memory subsystem"; license = licenses.mit; platforms = platforms.unix; - maintainers = with maintainers; [ wkennington ]; + maintainers = with maintainers; [ nckx wkennington ]; }; } diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix index 3bd5a9cbc589..377e2d62eef6 100644 --- a/pkgs/tools/misc/coreutils/default.nix +++ b/pkgs/tools/misc/coreutils/default.nix @@ -1,4 +1,4 @@ -{ lib, stdenv, fetchurl, perl, gmp ? null +{ lib, stdenv, fetchurl, perl, xz, gmp ? null , aclSupport ? false, acl ? null , selinuxSupport? false, libselinux ? null, libsepol ? null , autoconf, automake114x, texinfo @@ -27,9 +27,11 @@ let sed '2i echo Skipping cp sparse test && exit 0' -i ./tests/cp/sparse.sh ''; + outputs = [ "out" "info" ]; + + nativeBuildInputs = [ perl xz.bin ]; configureFlags = optionalString stdenv.isSunOS "ac_cv_func_inotify_init=no"; - nativeBuildInputs = [ perl ]; buildInputs = [ gmp ] ++ optional aclSupport acl ++ optionals stdenv.isCygwin [ autoconf automake114x texinfo ] # due to patch diff --git a/pkgs/tools/misc/debian-devscripts/default.nix b/pkgs/tools/misc/debian-devscripts/default.nix index 51b9a1e847e6..617cd5f55481 100644 --- a/pkgs/tools/misc/debian-devscripts/default.nix +++ b/pkgs/tools/misc/debian-devscripts/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { -e "s@/usr/(s|)bin/sendmail@${sendmailPath}@g" \ -e "s@/usr/bin/diff@${diffutils}/bin/diff@g" \ -e "s@/usr/bin/gpgv(2|)@${gnupg}/bin/gpgv2@g" \ - -e "s@(command -v|/usr/bin/)curl@${curl}/bin/curl@g" \ + -e "s@(command -v|/usr/bin/)curl@${curl.bin}/bin/curl@g" \ -i {} + sed -e "s@/usr/share/sgml/[^ ]*/manpages/docbook.xsl@${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl@" -i scripts/Makefile sed -r \ diff --git a/pkgs/tools/misc/duc/default.nix b/pkgs/tools/misc/duc/default.nix new file mode 100644 index 000000000000..e113bd86bac3 --- /dev/null +++ b/pkgs/tools/misc/duc/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, tokyocabinet, cairo, pango, ncurses }: + +stdenv.mkDerivation rec { + name = "duc-${version}"; + version = "1.3.3"; + + src = fetchurl { + url = "http://duc.zevv.nl/release/${name}.tar.gz"; + sha256 = "09mp8cq6s43sfhvms4mwhx3lw51vkaxgg34fbfbimafyjh4jdx3k"; + }; + + buildInputs = [ pkgconfig tokyocabinet cairo pango ncurses ]; + + meta = with stdenv.lib; { + homepage = http://duc.zevv.nl/; + description = "Collection of tools for inspecting and visualizing disk usage"; + license = licenses.gpl2; + + platforms = platforms.linux; + maintainers = [ maintainers.lethalman ]; + }; +} diff --git a/pkgs/tools/misc/dumptorrent/default.nix b/pkgs/tools/misc/dumptorrent/default.nix new file mode 100644 index 000000000000..60a2ed29bbf8 --- /dev/null +++ b/pkgs/tools/misc/dumptorrent/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "dumptorrent-${version}"; + version = "1.2"; + + src = fetchurl { + url = "mirror://sourceforge/dumptorrent/dumptorrent-${version}.tar.gz"; + sha256 = "073h03bmpfdy15qh37lvppayld2747i4acpyk0pm5nf2raiak0zm"; + }; + + installPhase = '' + mkdir -p $out/bin + cp ./dumptorrent $out/bin + ''; + + meta = with stdenv.lib; { + description = "Dump .torrent file information"; + homepage = https://sourceforge.net/projects/dumptorrent/; + license = licenses.gpl2; + maintainers = [ maintainers.zohl ]; + platforms = platforms.all; + }; +} diff --git a/pkgs/tools/misc/entr/default.nix b/pkgs/tools/misc/entr/default.nix index e18b115df87c..c6bca6e9d8f6 100644 --- a/pkgs/tools/misc/entr/default.nix +++ b/pkgs/tools/misc/entr/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { postPatch = '' substituteInPlace Makefile.bsd --replace /bin/echo echo substituteInPlace entr.c --replace /bin/cat ${coreutils}/bin/cat - substituteInPlace entr.c --replace /usr/bin/clear ${ncurses}/bin/clear + substituteInPlace entr.c --replace /usr/bin/clear ${ncurses.out}/bin/clear substituteInPlace entr.1 --replace /bin/cat cat substituteInPlace entr.1 --replace /usr/bin/clear clear ''; diff --git a/pkgs/tools/misc/execline/default.nix b/pkgs/tools/misc/execline/default.nix index 7478b1e33eea..1726afca0d02 100644 --- a/pkgs/tools/misc/execline/default.nix +++ b/pkgs/tools/misc/execline/default.nix @@ -2,7 +2,7 @@ let - version = "2.1.4.0"; + version = "2.1.4.5"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/execline"; rev = "refs/tags/v${version}"; - sha256 = "1ih0mmkra3aa697nz7haaifq2hfy3wjj39npxzg9zr37m7yw67yz"; + sha256 = "1k4db9iyskrqf6wbc4dkiqgpn0wb43qc9rf1br7kvy9rrzq3yrj0"; }; dontDisableStatic = true; @@ -25,7 +25,9 @@ in stdenv.mkDerivation rec { "--with-include=${skalibs}/include" "--with-lib=${skalibs}/lib" "--with-dynlib=${skalibs}/lib" - ] ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]); + ] + ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]) + ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}"); meta = { homepage = http://skarnet.org/software/execline/; diff --git a/pkgs/tools/misc/findutils/default.nix b/pkgs/tools/misc/findutils/default.nix index b6ab3985f239..1271aa8c9863 100644 --- a/pkgs/tools/misc/findutils/default.nix +++ b/pkgs/tools/misc/findutils/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation rec { doCheck = !stdenv.isDarwin; + outputs = [ "out" "info" ]; + crossAttrs = { # http://osdir.com/ml/bug-findutils-gnu/2009-08/msg00026.html configureFlags = [ "gl_cv_func_wcwidth_works=yes" ]; diff --git a/pkgs/tools/misc/grub/2.0x.nix b/pkgs/tools/misc/grub/2.0x.nix index 8e52adc76991..ae1df626fe5d 100644 --- a/pkgs/tools/misc/grub/2.0x.nix +++ b/pkgs/tools/misc/grub/2.0x.nix @@ -98,6 +98,9 @@ stdenv.mkDerivation rec { postInstall = '' paxmark pms $out/sbin/grub-{probe,bios-setup} + + # Avoid a runtime reference to gcc + sed -i $out/lib/grub/*/modinfo.sh -e "/grub_target_cppflags=/ s|'.*'|' '|" ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/misc/kde-gtk-config/default.nix b/pkgs/tools/misc/kde-gtk-config/default.nix index 809d0c65c6ec..bf868790de2d 100644 --- a/pkgs/tools/misc/kde-gtk-config/default.nix +++ b/pkgs/tools/misc/kde-gtk-config/default.nix @@ -22,8 +22,8 @@ stdenv.mkDerivation { ]; cmakeFlags = '' - -DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib}/lib/glib-2.0/include - -DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2}/lib/gtk-2.0/include + -DGTK2_GLIBCONFIG_INCLUDE_DIR=${glib.out}/lib/glib-2.0/include + -DGTK2_GDKCONFIG_INCLUDE_DIR=${gtk2.out}/lib/gtk-2.0/include -DGTK2_INCLUDE_DIRS=${gtk2}/include/gtk-2.0 -DKDE4_LIBEXEC_INSTALL_DIR=lib/kde4/libexec ''; diff --git a/pkgs/tools/misc/pipelight/default.nix b/pkgs/tools/misc/pipelight/default.nix index b79f43cfbc35..77fcb186ef1d 100644 --- a/pkgs/tools/misc/pipelight/default.nix +++ b/pkgs/tools/misc/pipelight/default.nix @@ -32,7 +32,7 @@ in stdenv.mkDerivation rec { --wine-path=${wine_custom} \ --gpg-exec=${gnupg}/bin/gpg2 \ --bash-interp=${bash}/bin/bash \ - --downloader=${curl}/bin/curl + --downloader=${curl.bin}/bin/curl $configureFlags ''; diff --git a/pkgs/tools/misc/plowshare/default.nix b/pkgs/tools/misc/plowshare/default.nix index 40540ad1c20d..a1a12a82471d 100644 --- a/pkgs/tools/misc/plowshare/default.nix +++ b/pkgs/tools/misc/plowshare/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { make PREFIX="$out" install for fn in plow{del,down,list,up}; do - wrapProgram "$out/bin/$fn" --prefix PATH : "${curl}/bin:${spidermonkey}/bin" + wrapProgram "$out/bin/$fn" --prefix PATH : "${curl.bin}/bin:${spidermonkey.out}/bin" done ''; diff --git a/pkgs/tools/misc/profile-cleaner/default.nix b/pkgs/tools/misc/profile-cleaner/default.nix index 55c44770c3e1..2c1f3d77def3 100644 --- a/pkgs/tools/misc/profile-cleaner/default.nix +++ b/pkgs/tools/misc/profile-cleaner/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { installPhase = '' PREFIX=\"\" DESTDIR=$out make install wrapProgram $out/bin/profile-cleaner \ - --prefix PATH : "${parallel}/bin:${sqlite}/bin" + --prefix PATH : "${parallel}/bin:${sqlite.bin}/bin" ''; meta = { diff --git a/pkgs/tools/misc/s6-portable-utils/default.nix b/pkgs/tools/misc/s6-portable-utils/default.nix index 0ca0774989de..70b36222cca9 100644 --- a/pkgs/tools/misc/s6-portable-utils/default.nix +++ b/pkgs/tools/misc/s6-portable-utils/default.nix @@ -2,7 +2,7 @@ let - version = "2.0.5.2"; + version = "2.0.5.3"; in stdenv.mkDerivation rec { @@ -10,7 +10,7 @@ in stdenv.mkDerivation rec { src = fetchurl { url = "http://www.skarnet.org/software/s6-portable-utils/${name}.tar.gz"; - sha256 = "0d5dvqz61abr4m2n10by8hccvw51jdvyckvpbbq0c57viri54jzm"; + sha256 = "029fg9c37vwh9yagd69h8r192nrx4mfva8dwgpm1gxkdssrh3gi7"; }; dontDisableStatic = true; @@ -20,7 +20,8 @@ in stdenv.mkDerivation rec { "--with-include=${skalibs}/include" "--with-lib=${skalibs}/lib" "--with-dynlib=${skalibs}/lib" - ]; + ] + ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}"); meta = { homepage = http://www.skarnet.org/software/s6-portable-utils/; diff --git a/pkgs/tools/misc/staruml/default.nix b/pkgs/tools/misc/staruml/default.nix index 4c60e790238e..0d2982c022f9 100644 --- a/pkgs/tools/misc/staruml/default.nix +++ b/pkgs/tools/misc/staruml/default.nix @@ -1,5 +1,12 @@ -{ stdenv, fetchurl, makeWrapper, dpkg, patchelf, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, udev }: +{ stdenv, fetchurl, makeWrapper +, dpkg, patchelf +, gtk2, glib, gdk_pixbuf, alsaLib, nss, nspr, GConf, cups, libgcrypt, dbus, libudev }: +let + inherit (stdenv) lib; + LD_LIBRARY_PATH = lib.makeLibraryPath + [ glib gtk2 gdk_pixbuf alsaLib nss nspr GConf cups libgcrypt dbus ]; +in stdenv.mkDerivation rec { version = "2.6.0"; name = "staruml-${version}"; @@ -16,13 +23,13 @@ stdenv.mkDerivation rec { buildInputs = [ dpkg ]; nativeBuildInputs = [ makeWrapper ]; - + unpackPhase = '' mkdir pkg dpkg-deb -x $src pkg sourceRoot=pkg ''; - + installPhase = '' mkdir $out mv opt/staruml $out/bin @@ -30,14 +37,14 @@ stdenv.mkDerivation rec { ${patchelf}/bin/patchelf \ --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ $out/bin/StarUML - + mkdir -p $out/lib - + ln -s ${stdenv.cc.cc}/lib/libstdc++.so.6 $out/lib/ - ln -s ${udev}/lib/libudev.so.1 $out/lib/libudev.so.0 + ln -s ${libudev.out}/lib/libudev.so.1 $out/lib/libudev.so.0 wrapProgram $out/bin/StarUML \ - --prefix LD_LIBRARY_PATH : $out/lib:${glib}/lib:${gtk2}/lib:${gdk_pixbuf}/lib/:${alsaLib}/lib/:${nss}/lib/:${nspr}/lib/:${GConf}/lib/:${cups}/lib/:${libgcrypt}/lib/:${dbus}/lib/ + --prefix LD_LIBRARY_PATH : $out/lib:${LD_LIBRARY_PATH} ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/misc/svtplay-dl/default.nix b/pkgs/tools/misc/svtplay-dl/default.nix index 270e1c0cb62a..f8c087aa757b 100644 --- a/pkgs/tools/misc/svtplay-dl/default.nix +++ b/pkgs/tools/misc/svtplay-dl/default.nix @@ -3,13 +3,13 @@ stdenv.mkDerivation rec { name = "svtplay-dl-${version}"; - version = "0.30.2016.02.08"; + version = "1.0"; src = fetchFromGitHub { owner = "spaam"; repo = "svtplay-dl"; rev = version; - sha256 = "0nkgc43lf06h0w8k4zm5pdzp6r6jjc6j94ciljcm8333n0ykfzpr"; + sha256 = "0chvljmhj7waq3dfyciiyk3i18hmrczc70qfyhn2ycq0k0nbn0jj"; }; pythonPaths = [ pycrypto requests2 ]; diff --git a/pkgs/tools/misc/tldr/default.nix b/pkgs/tools/misc/tldr/default.nix index f223a97520b0..39a7dc25c094 100644 --- a/pkgs/tools/misc/tldr/default.nix +++ b/pkgs/tools/misc/tldr/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "tldr-${version}"; - version = "1.1.0"; + version = "1.2.0"; src = fetchFromGitHub { - sha256 = "0hxkrzp5njhy7c19v8i3svcb148f1jni7dlv36gc1nmcrz5izsiz"; + sha256 = "1dyvmxdxm92bfs5i6cngk8isa65qp6xlpim4yizs5rnm0rynf9kr"; rev = "v${version}"; repo = "tldr-cpp-client"; owner = "tldr-pages"; @@ -14,13 +14,7 @@ stdenv.mkDerivation rec { buildInputs = [ curl clang libzip ]; nativeBuildInputs = [ pkgconfig ]; - preConfigure = '' - cd src - ''; - - installPhase = '' - install -Dm755 {.,$out/bin}/tldr - ''; + installFlags = [ "PREFIX=$(out)" ]; meta = with stdenv.lib; { description = "Simplified and community-driven man pages"; diff --git a/pkgs/tools/misc/trash-cli/default.nix b/pkgs/tools/misc/trash-cli/default.nix index e3adbfe3887d..75b3cb160671 100644 --- a/pkgs/tools/misc/trash-cli/default.nix +++ b/pkgs/tools/misc/trash-cli/default.nix @@ -19,7 +19,7 @@ python2Packages.buildPythonApplication rec { src = ./nix-paths.patch; df = "${coreutils}/bin/df"; python = "${python2}/bin/${python2.executable}"; - libc = "${stdenv.cc.libc}/lib/libc.so.6"; + libc = "${stdenv.cc.libc.out}/lib/libc.so.6"; }) # Apply https://github.com/JaviMerino/trash-cli/commit/4f45a37a3 diff --git a/pkgs/tools/misc/xdummy/default.nix b/pkgs/tools/misc/xdummy/default.nix index 30aba19930c7..1f4dbc863327 100644 --- a/pkgs/tools/misc/xdummy/default.nix +++ b/pkgs/tools/misc/xdummy/default.nix @@ -18,7 +18,7 @@ let EndSection Section "Files" - ModulePath "${xorg.xorgserver}/lib/xorg/modules" + ModulePath "${xorg.xorgserver.out}/lib/xorg/modules" ModulePath "${xorg.xf86videodummy}/lib/xorg/modules" XkbDir "${xkeyboard_config}/share/X11/xkb" FontPath "${xorg.fontadobe75dpi}/lib/X11/fonts/75dpi" @@ -75,7 +75,7 @@ let in writeScriptBin "xdummy" '' #!${stdenv.shell} export XKB_BINDIR="${xorg.xkbcomp}/bin" - exec ${xorg.xorgserver}/bin/Xorg \ + exec ${xorg.xorgserver.out}/bin/Xorg \ -noreset \ -logfile /dev/null \ "$@" \ diff --git a/pkgs/tools/misc/xvfb-run/default.nix b/pkgs/tools/misc/xvfb-run/default.nix index 162fb73b3f00..f1cf04424349 100644 --- a/pkgs/tools/misc/xvfb-run/default.nix +++ b/pkgs/tools/misc/xvfb-run/default.nix @@ -17,6 +17,6 @@ stdenv.mkDerivation { wrapProgram $out/bin/xvfb-run \ --set XKB_BINDIR "${xkbcomp}/bin" \ --set FONTCONFIG_FILE "${fontsConf}" \ - --prefix PATH : ${getopt}/bin:${xorgserver}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin + --prefix PATH : ${getopt}/bin:${xorgserver.out}/bin:${xauth}/bin:${which}/bin:${utillinux}/bin ''; } diff --git a/pkgs/tools/misc/youtube-dl/default.nix b/pkgs/tools/misc/youtube-dl/default.nix index a7bb5a3083d9..9c42a4cfe000 100644 --- a/pkgs/tools/misc/youtube-dl/default.nix +++ b/pkgs/tools/misc/youtube-dl/default.nix @@ -23,7 +23,7 @@ buildPythonApplication rec { # Ensure ffmpeg is available in $PATH for post-processing & transcoding support. postInstall = stdenv.lib.optionalString (ffmpeg != null) - ''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg}/bin"''; + ''wrapProgram $out/bin/youtube-dl --prefix PATH : "${ffmpeg.bin}/bin"''; # Requires network doCheck = false; diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix index 8cb6172d87b6..189be8be9e26 100644 --- a/pkgs/tools/networking/aria2/default.nix +++ b/pkgs/tools/networking/aria2/default.nix @@ -5,11 +5,11 @@ stdenv.mkDerivation rec { name = "aria2-${version}"; - version = "1.20.0"; + version = "1.21.0"; src = fetchurl { url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; - sha256 = "1l4gzz3yr0cl6a9xdy7843c5sb7afyq0i80wi2hasfpfdx5k95mz"; + sha256 = "1035rzx9y7qv4p7cv04f461343dxha7ikprch059x2fci8n5yp12"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/tools/networking/cjdns/default.nix b/pkgs/tools/networking/cjdns/default.nix index 906ca5f39dd3..32cf5750c6a4 100644 --- a/pkgs/tools/networking/cjdns/default.nix +++ b/pkgs/tools/networking/cjdns/default.nix @@ -1,28 +1,23 @@ -{ stdenv, fetchFromGitHub, nodejs, which, python27, utillinux }: +{ stdenv, fetchurl, nodejs, which, python27, utillinux }: -let - version = "16"; # see ${src}/util/version/Version.h - date = "20150509"; -in +let version = "17.3"; in stdenv.mkDerivation { - name = "cjdns-${version}-${date}"; + name = "cjdns-"+version; - src = fetchFromGitHub { - owner = "cjdelisle"; - repo = "cjdns"; - rev = "a05ade40dc31caebaf3aa770aac3ab2ecb02d867"; - sha256 = "07vwsw5d0sdxypl187cyzzdrv0chf4yyjxcymf847afkfr249n29"; + src = fetchurl { + url = "https://github.com/cjdelisle/cjdns/archive/cjdns-v${version}.tar.gz"; + sha256 = "00p62y7b89y3piirpj27crprji8nh0zv7zh4mcqhzh6r39jxz4ri"; }; buildInputs = [ which python27 nodejs ] ++ # for flock - stdenv.lib.optional stdenv.isLinux [ utillinux ]; + stdenv.lib.optional stdenv.isLinux utillinux; buildPhase = stdenv.lib.optionalString stdenv.isArm "Seccomp_NO=1 " + "bash do"; installPhase = '' - installBin cjdroute makekeys privatetopublic publictoip6 + install -Dt "$out/bin/" cjdroute makekeys privatetopublic publictoip6 sed -i 's,/usr/bin/env node,'$(type -P node), \ $(find contrib -name "*.js") sed -i 's,/usr/bin/env python,'$(type -P python), \ @@ -35,7 +30,7 @@ stdenv.mkDerivation { homepage = https://github.com/cjdelisle/cjdns; description = "Encrypted networking for regular people"; license = licenses.gpl3; - maintainers = with maintainers; [ viric ehmry ]; + maintainers = with maintainers; [ ehmry ]; platforms = platforms.unix; }; } diff --git a/pkgs/tools/networking/curl/default.nix b/pkgs/tools/networking/curl/default.nix index c59ea619942d..6008afa27872 100644 --- a/pkgs/tools/networking/curl/default.nix +++ b/pkgs/tools/networking/curl/default.nix @@ -25,6 +25,8 @@ stdenv.mkDerivation rec { sha256 = "13z9gba3q2ybp50z0gdkzhwcx9m0i7qkvm278yz4pql2jfml7inx"; }; + outputs = [ "dev" "out" "bin" "man" "docdev" ]; + nativeBuildInputs = [ pkgconfig perl ]; # Zlib and OpenSSL must be propagated because `libcurl.la' contains @@ -62,6 +64,11 @@ stdenv.mkDerivation rec { CXX = "g++"; CXXCPP = "g++ -E"; + postInstall = '' + moveToOutput bin/curl-config "$dev" + sed '/^dependency_libs/s|${libssh2.dev}|${libssh2.out}|' -i "$out"/lib/*.la + ''; + crossAttrs = { # We should refer to the cross built openssl # For the 'urandom', maybe it should be a cross-system option diff --git a/pkgs/tools/networking/easyrsa/default.nix b/pkgs/tools/networking/easyrsa/default.nix index 2b41f8ca1d3c..59d97a4a18b6 100644 --- a/pkgs/tools/networking/easyrsa/default.nix +++ b/pkgs/tools/networking/easyrsa/default.nix @@ -20,7 +20,7 @@ in stdenv.mkDerivation rec { install -D -m755 easyrsa3/easyrsa $out/bin/easyrsa substituteInPlace $out/bin/easyrsa \ --subst-var out \ - --subst-var-by openssl ${openssl}/bin/openssl + --subst-var-by openssl ${openssl.bin}/bin/openssl # Helper utility cat > $out/bin/easyrsa-init <> $@ + echo '#include "version.h"' >> $@ + echo 'const char *version_string = "@VERSION@";' >> $@ +- echo 'const char *compilation_string = "'$(COMPILE)'";' \ ++ echo 'const char *compilation_string = 0;' \ + | $(ESCAPEQUOTE) >> $@ +- echo 'const char *link_string = "'$(CCLD) $(AM_CFLAGS) $(CFLAGS) \ +- $(AM_LDFLAGS) $(LDFLAGS) $(LIBS) $(wget_LDADD)'";' \ ++ echo 'const char *link_string = 0;' \ + | $(ESCAPEQUOTE) >> $@ + + css.c: $(srcdir)/css.l diff --git a/pkgs/tools/networking/zerotierone/default.nix b/pkgs/tools/networking/zerotierone/default.nix index 9f5f777a239b..e05a65d6967e 100644 --- a/pkgs/tools/networking/zerotierone/default.nix +++ b/pkgs/tools/networking/zerotierone/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { buildInputs = [ openssl lzo zlib gcc iproute ]; installPhase = '' - installBin zerotier-one + install -Dt "$out/bin/" zerotier-one ln -s $out/bin/zerotier-one $out/bin/zerotier-idtool ln -s $out/bin/zerotier-one $out/bin/zerotier-cli ''; diff --git a/pkgs/tools/package-management/checkinstall/default.nix b/pkgs/tools/package-management/checkinstall/default.nix index dc3373c3b6fc..8ab9001573a2 100644 --- a/pkgs/tools/package-management/checkinstall/default.nix +++ b/pkgs/tools/package-management/checkinstall/default.nix @@ -51,7 +51,7 @@ stdenv.mkDerivation { substituteInPlace checkinstallrc-dist --replace /usr/local $out substituteInPlace installwatch/create-localdecls \ - --replace /usr/include/unistd.h ${stdenv.glibc}/include/unistd.h + --replace /usr/include/unistd.h ${stdenv.glibc.dev}/include/unistd.h ''; postInstall = diff --git a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix index e70659aff00f..aa109ab80fe3 100644 --- a/pkgs/tools/package-management/nix-prefetch-scripts/default.nix +++ b/pkgs/tools/package-management/nix-prefetch-scripts/default.nix @@ -36,8 +36,8 @@ in rec { nix-prefetch-cvs = mkPrefetchScript "cvs" ../../../build-support/fetchcvs/nix-prefetch-cvs [cvs]; nix-prefetch-git = mkPrefetchScript "git" ../../../build-support/fetchgit/nix-prefetch-git [git coreutils]; nix-prefetch-hg = mkPrefetchScript "hg" ../../../build-support/fetchhg/nix-prefetch-hg [mercurial]; - nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [subversion]; - nix-prefetch-zip = mkPrefetchScript "zip" ../../../build-support/fetchzip/nix-prefetch-zip [unzip curl]; + nix-prefetch-svn = mkPrefetchScript "svn" ../../../build-support/fetchsvn/nix-prefetch-svn [subversion.out]; + nix-prefetch-zip = mkPrefetchScript "zip" ../../../build-support/fetchzip/nix-prefetch-zip [unzip curl.bin]; nix-prefetch-scripts = buildEnv { name = "nix-prefetch-scripts"; diff --git a/pkgs/tools/package-management/nix/default.nix b/pkgs/tools/package-management/nix/default.nix index 608fb31df783..16078906bc2b 100644 --- a/pkgs/tools/package-management/nix/default.nix +++ b/pkgs/tools/package-management/nix/default.nix @@ -9,7 +9,7 @@ let common = { name, src }: stdenv.mkDerivation rec { inherit name src; - outputs = [ "out" "doc" ]; + outputs = [ "out" "man" "doc" ]; nativeBuildInputs = [ perl pkgconfig ]; @@ -22,8 +22,8 @@ let # would end up using the wrong bzip2 when cross-compiling. # XXX: The right thing would be to reinstate `--with-bzip2' in Nix. postUnpack = - '' export CPATH="${bzip2}/include" - export LIBRARY_PATH="${bzip2}/lib" + '' export CPATH="${bzip2.dev}/include" + export LIBRARY_PATH="${bzip2.out}/lib" export CXXFLAGS="-Wno-error=reserved-user-defined-literal" ''; diff --git a/pkgs/tools/package-management/nix/unstable.nix b/pkgs/tools/package-management/nix/unstable.nix new file mode 100644 index 000000000000..88bd8f460375 --- /dev/null +++ b/pkgs/tools/package-management/nix/unstable.nix @@ -0,0 +1,76 @@ +{ lib, stdenv, fetchurl, perl, curl, bzip2, sqlite, openssl ? null +, pkgconfig, boehmgc, perlPackages, libsodium +, storeDir ? "/nix/store" +, stateDir ? "/nix/var" +}: + +stdenv.mkDerivation rec { + name = "nix-1.9pre4100_4bbcfaf"; + + src = fetchurl { + url = "http://hydra.nixos.org/build/21565942/download/4/${name}.tar.xz"; + sha256 = "1jcy0n8mi17k5vk89vammfh74lvsgnm4gjsk23cq1shspjnbbgxs"; + }; + + nativeBuildInputs = [ perl pkgconfig ]; + + buildInputs = [ curl openssl sqlite ] ++ lib.optional stdenv.isLinux libsodium; + + propagatedBuildInputs = [ boehmgc ]; + + # Note: bzip2 is not passed as a build input, because the unpack phase + # would end up using the wrong bzip2 when cross-compiling. + # XXX: The right thing would be to reinstate `--with-bzip2' in Nix. + postUnpack = + '' export CPATH="${bzip2.dev}/include" + export LIBRARY_PATH="${bzip2.out}/lib" + export CXXFLAGS="-Wno-error=reserved-user-defined-literal" + ''; + + configureFlags = + '' + --with-store-dir=${storeDir} --localstatedir=${stateDir} --sysconfdir=/etc + --with-dbi=${perlPackages.DBI}/${perl.libPrefix} + --with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix} + --with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix} + --disable-init-state + --enable-gc + ''; + + makeFlags = "profiledir=$(out)/etc/profile.d"; + + installFlags = "sysconfdir=$(out)/etc"; + + doInstallCheck = true; + + crossAttrs = { + postUnpack = + '' export CPATH="${bzip2.crossDrv}/include" + export NIX_CROSS_LDFLAGS="-L${bzip2.crossDrv}/lib -rpath-link ${bzip2.crossDrv}/lib $NIX_CROSS_LDFLAGS" + ''; + + configureFlags = + '' + --with-store-dir=${storeDir} --localstatedir=${stateDir} + --with-dbi=${perlPackages.DBI}/${perl.libPrefix} + --with-dbd-sqlite=${perlPackages.DBDSQLite}/${perl.libPrefix} + --with-www-curl=${perlPackages.WWWCurl}/${perl.libPrefix} + --disable-init-state + --enable-gc + '' + stdenv.lib.optionalString ( + stdenv.cross ? nix && stdenv.cross.nix ? system + ) ''--with-system=${stdenv.cross.nix.system}''; + + doInstallCheck = false; + }; + + enableParallelBuilding = true; + + meta = { + description = "The Nix Deployment System"; + homepage = http://nixos.org/; + license = stdenv.lib.licenses.lgpl2Plus; + maintainers = [ stdenv.lib.maintainers.eelco ]; + platforms = stdenv.lib.platforms.all; + }; +} diff --git a/pkgs/tools/package-management/rpm/default.nix b/pkgs/tools/package-management/rpm/default.nix index 7b5281220fab..24346fb0eb70 100644 --- a/pkgs/tools/package-management/rpm/default.nix +++ b/pkgs/tools/package-management/rpm/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { # Note: we don't add elfutils to buildInputs, since it provides a # bad `ld' and other stuff. - NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${elfutils}/include"; + NIX_CFLAGS_COMPILE = "-I${nspr.dev}/include/nspr -I${nss.dev}/include/nss -I${elfutils}/include"; NIX_CFLAGS_LINK = "-L${elfutils}/lib"; diff --git a/pkgs/tools/security/chntpw/default.nix b/pkgs/tools/security/chntpw/default.nix index 814fb0ea0ecc..1f999e9d726d 100644 --- a/pkgs/tools/security/chntpw/default.nix +++ b/pkgs/tools/security/chntpw/default.nix @@ -10,7 +10,8 @@ stdenv.mkDerivation rec { sha256 = "1k1cxsj0221dpsqi5yibq2hr7n8xywnicl8yyaicn91y8h2hkqln"; }; - buildInputs = [ unzip ]; + buildInputs = [ unzip ] + ++ stdenv.lib.optionals stdenv.isLinux [ stdenv.glibc.out stdenv.glibc.static ]; patches = [ ./00-chntpw-build-arch-autodetect.patch diff --git a/pkgs/tools/security/gnupg/20.nix b/pkgs/tools/security/gnupg/20.nix index 117fc41c1abe..65d43ec9dbee 100644 --- a/pkgs/tools/security/gnupg/20.nix +++ b/pkgs/tools/security/gnupg/20.nix @@ -12,11 +12,11 @@ with stdenv.lib; assert x11Support -> pinentry != null; stdenv.mkDerivation rec { - name = "gnupg-2.0.29"; + name = "gnupg-2.0.30"; src = fetchurl { url = "mirror://gnupg/gnupg/${name}.tar.bz2"; - sha256 = "1jaakn0mi6pi2b3g3imxj3qzxw2zg0ifxs30baq2b157dcw6pvb8"; + sha256 = "0wax4cy14hh0h7kg9hj0hjn9424b71z8lrrc5kbsasrn9xd7hag3"; }; buildInputs diff --git a/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch index b536a4fe50e3..4bfdc13ef598 100644 --- a/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch +++ b/pkgs/tools/security/gnupg/gpgkey2ssh-20.patch @@ -2,7 +2,7 @@ diff --git a/tools/gpgkey2ssh.c b/tools/gpgkey2ssh.c index 903fb5b..d5611dc 100644 --- a/tools/gpgkey2ssh.c +++ b/tools/gpgkey2ssh.c -@@ -266,7 +266,7 @@ main (int argc, char **argv) +@@ -268,7 +268,7 @@ main (int argc, char **argv) keyid = argv[1]; ret = asprintf (&command, diff --git a/pkgs/tools/security/modsecurity/default.nix b/pkgs/tools/security/modsecurity/default.nix index 2f3101cffea8..09754f53a9ed 100644 --- a/pkgs/tools/security/modsecurity/default.nix +++ b/pkgs/tools/security/modsecurity/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl +{ stdenv, lib, fetchurl, pkgconfig , curl, apacheHttpd, pcre, apr, aprutil, libxml2 }: with lib; @@ -12,6 +12,7 @@ stdenv.mkDerivation rec { sha256 = "e2bbf789966c1f80094d88d9085a81bde082b2054f8e38e0db571ca49208f434"; }; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ curl apacheHttpd pcre apr aprutil libxml2 ]; configureFlags = [ "--enable-standalone-module" diff --git a/pkgs/tools/security/mpw/default.nix b/pkgs/tools/security/mpw/default.nix index 15937a6792e6..a565c3b96e14 100644 --- a/pkgs/tools/security/mpw/default.nix +++ b/pkgs/tools/security/mpw/default.nix @@ -27,7 +27,7 @@ in stdenv.mkDerivation { patchShebangs . ''; - NIX_CFLAGS_COMPILE = "-I${libxml2}/include/libxml2"; + NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2"; buildInputs = [ autoconf automake openssl libxml2 ]; diff --git a/pkgs/tools/security/pass/default.nix b/pkgs/tools/security/pass/default.nix index 56e20726793d..2f6769b929b8 100644 --- a/pkgs/tools/security/pass/default.nix +++ b/pkgs/tools/security/pass/default.nix @@ -44,7 +44,7 @@ stdenv.mkDerivation rec { preInstall = '' mkdir -p "$out/share/bash-completion/completions" mkdir -p "$out/share/zsh/site-functions" - mkdir -p "$out/share/fish/completions" + mkdir -p "$out/share/fish/vendor_completions.d" ''; installFlags = [ "PREFIX=$(out)" ]; diff --git a/pkgs/tools/security/prey/default.nix b/pkgs/tools/security/prey/default.nix index b36c11cf9345..f9bd6ea50e8d 100644 --- a/pkgs/tools/security/prey/default.nix +++ b/pkgs/tools/security/prey/default.nix @@ -34,7 +34,7 @@ in stdenv.mkDerivation rec { cp -R . $out cp -R ${modulesSrc}/* $out/modules/ wrapProgram "$out/prey.sh" \ - --prefix PATH ":" "${xawtv}/bin:${imagemagick}/bin:${curl}/bin:${scrot}/bin:${inetutils}/bin:${coreutils}/bin" \ + --prefix PATH ":" "${xawtv}/bin:${imagemagick}/bin:${curl.bin}/bin:${scrot}/bin:${inetutils}/bin:${coreutils}/bin" \ --set CURL_CA_BUNDLE "/etc/ssl/certs/ca-certificates.crt" ''; diff --git a/pkgs/tools/security/sshuttle/default.nix b/pkgs/tools/security/sshuttle/default.nix index 4a8d7518e9c2..411195747678 100644 --- a/pkgs/tools/security/sshuttle/default.nix +++ b/pkgs/tools/security/sshuttle/default.nix @@ -3,10 +3,10 @@ pythonPackages.buildPythonApplication rec { name = "sshuttle-${version}"; - version = "0.77.2"; + version = "0.78.0"; src = fetchurl { - sha256 = "1fwlhr5r9pl3pns65nn4mxf5ivypmd2a12gv3vpyznfy5f097k10"; + sha256 = "18hrwi2gyri1n2rq0nghvv7hfhbhh5h67am89524vc1yyx40vn3b"; url = "https://pypi.python.org/packages/source/s/sshuttle/${name}.tar.gz"; }; diff --git a/pkgs/tools/security/thc-hydra/default.nix b/pkgs/tools/security/thc-hydra/default.nix index c06636dc3677..a06754cb58d2 100644 --- a/pkgs/tools/security/thc-hydra/default.nix +++ b/pkgs/tools/security/thc-hydra/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, openssl, libidn, ncurses, pcre, libssh, postgresql92 }: +{ stdenv, fetchurl, pkgconfig, openssl, libidn, ncurses, pcre, libssh, postgresql92 }: with stdenv.lib; @@ -12,10 +12,11 @@ stdenv.mkDerivation rec { }; preConfigure = '' - substituteInPlace configure --replace "\$LIBDIRS" "${openssl}/lib ${pcre}/lib ${libssh}/lib ${postgresql92}/lib" - substituteInPlace configure --replace "\$INCDIRS" "${openssl}/include ${pcre}/include ${libssh}/include ${postgresql92}/include" + substituteInPlace configure --replace "\$LIBDIRS" "${openssl.out}/lib ${pcre.out}/lib ${libssh.out}/lib ${postgresql92.lib}/lib" + substituteInPlace configure --replace "\$INCDIRS" "${openssl.dev}/include ${pcre.dev}/include ${libssh.dev}/include ${postgresql92}/include" ''; + nativeBuildInputs = [ pkgconfig ]; buildInputs = [ openssl libidn ncurses pcre libssh ]; meta = { diff --git a/pkgs/tools/security/tor/tor-arm.nix b/pkgs/tools/security/tor/tor-arm.nix index 6c4d61d825f9..365379c8f6a8 100644 --- a/pkgs/tools/security/tor/tor-arm.nix +++ b/pkgs/tools/security/tor/tor-arm.nix @@ -37,7 +37,7 @@ stdenv.mkDerivation rec { for i in $(cd $out/bin && ls); do wrapProgram $out/bin/$i \ --prefix PYTHONPATH : "$(toPythonPath $out):$(toPythonPath ${pythonPackages.curses}):$out/libexec:$PYTHONPATH" \ - --set TERMINFO "${ncurses}/share/terminfo" \ + --set TERMINFO "${ncurses.out}/share/terminfo" \ --set TERM "xterm" done ''; diff --git a/pkgs/tools/security/trousers/default.nix b/pkgs/tools/security/trousers/default.nix index e910241113b9..d57aa8c63a92 100644 --- a/pkgs/tools/security/trousers/default.nix +++ b/pkgs/tools/security/trousers/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { # Fix broken libtool file preFixup = stdenv.lib.optionalString (!stdenv.isDarwin) '' - sed 's,-lcrypto,-L${openssl}/lib -lcrypto,' -i $out/lib/libtspi.la + sed 's,-lcrypto,-L${openssl.out}/lib -lcrypto,' -i $out/lib/libtspi.la ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/system/gptfdisk/default.nix b/pkgs/tools/system/gptfdisk/default.nix index 264dbf1eb279..0b034819651d 100644 --- a/pkgs/tools/system/gptfdisk/default.nix +++ b/pkgs/tools/system/gptfdisk/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { substituteInPlace Makefile.mac --replace \ " -I/opt/local/include -I /usr/local/include -I/opt/local/include" "" substituteInPlace Makefile.mac --replace \ - "/opt/local/lib/libncurses.a" "${ncurses}/lib/libncurses.dylib" + "/opt/local/lib/libncurses.a" "${ncurses.out}/lib/libncurses.dylib" ''; buildPhase = stdenv.lib.optionalString stdenv.isDarwin "make -f Makefile.mac"; diff --git a/pkgs/tools/system/monit/default.nix b/pkgs/tools/system/monit/default.nix index 1b15fbbb6281..0ee32a49c07b 100644 --- a/pkgs/tools/system/monit/default.nix +++ b/pkgs/tools/system/monit/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-ssl-incl-dir=${openssl}/include" - "--with-ssl-lib-dir=${openssl}/lib" + "--with-ssl-lib-dir=${openssl.out}/lib" ] ++ stdenv.lib.optionals (! usePAM) [ "--without-pam" ]; meta = { diff --git a/pkgs/tools/system/plan9port/builder.sh b/pkgs/tools/system/plan9port/builder.sh index 2434889581ed..15fcdcf6c9dd 100644 --- a/pkgs/tools/system/plan9port/builder.sh +++ b/pkgs/tools/system/plan9port/builder.sh @@ -5,8 +5,8 @@ export PLAN9_TARGET=$PLAN9 configurePhase() { - echo CFLAGS=\"-I${fontconfig}/include -I${libXt}/include\" > LOCAL.config - echo X11=\"${libXt}/include\" >> LOCAL.config + echo CFLAGS=\"-I${fontconfig_dev}/include -I${libXt_dev}/include\" > LOCAL.config + echo X11=\"${libXt_dev}/include\" >> LOCAL.config for f in `grep -l -r /usr/local/plan9`; do sed "s,/usr/local/plan9,${PLAN9},g" -i $f diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix index 3a78cb2baf63..70f792953b85 100644 --- a/pkgs/tools/system/plan9port/default.nix +++ b/pkgs/tools/system/plan9port/default.nix @@ -47,6 +47,6 @@ stdenv.mkDerivation rec { platforms = platforms.unix; }; - inherit libXt; - inherit fontconfig; + libXt_dev = libXt.dev; + fontconfig_dev = fontconfig.dev; } diff --git a/pkgs/tools/system/rsyslog/default.nix b/pkgs/tools/system/rsyslog/default.nix index 5d3dbd861aa1..2f38c9b374af 100644 --- a/pkgs/tools/system/rsyslog/default.nix +++ b/pkgs/tools/system/rsyslog/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, autoreconfHook, libestr, json_c, zlib, pythonPackages +{ stdenv, fetchurl, pkgconfig, autoreconfHook, libestr, json_c, zlib, pythonPackages, fastJson , libkrb5 ? null, systemd ? null, jemalloc ? null, libmysql ? null, postgresql ? null , libdbi ? null, net_snmp ? null, libuuid ? null, curl ? null, gnutls ? null , libgcrypt ? null, liblognorm ? null, openssl ? null, librelp ? null, libksi ? null @@ -11,18 +11,18 @@ let mkFlag = cond: name: if cond then "--enable-${name}" else "--disable-${name}"; in stdenv.mkDerivation rec { - name = "rsyslog-8.14.0"; + name = "rsyslog-8.17.0"; src = fetchurl { url = "http://www.rsyslog.com/files/download/rsyslog/${name}.tar.gz"; - sha256 = "1hp7ga543m6vhijcnjb4z8v26ddjgypk1lh6km1cvxc45cfmnfs4"; + sha256 = "1fazpbllr3wk8aw41zk7b6iirds4h8j3im080nf8my2cjssij7pc"; }; #patches = [ ./fix-gnutls-detection.patch ]; nativeBuildInputs = [ pkgconfig autoreconfHook ]; buildInputs = [ - libestr json_c zlib pythonPackages.docutils libkrb5 jemalloc libmysql + fastJson libestr json_c zlib pythonPackages.docutils libkrb5 jemalloc libmysql postgresql libdbi net_snmp libuuid curl gnutls libgcrypt liblognorm openssl librelp libgt libksi liblogging libnet hadoop rdkafka libmongo-client czmq rabbitmq-c hiredis diff --git a/pkgs/tools/system/s6-rc/default.nix b/pkgs/tools/system/s6-rc/default.nix index a3b244d875b6..35763e8212e3 100644 --- a/pkgs/tools/system/s6-rc/default.nix +++ b/pkgs/tools/system/s6-rc/default.nix @@ -2,7 +2,7 @@ let - version = "0.0.1.0"; + version = "0.0.2.1"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6-rc"; rev = "refs/tags/v${version}"; - sha256 = "02ppsda8pg7mph3r7lrh7dhi6ip99bgghsl3lf902cg9i4n50q6q"; + sha256 = "0x9ghi1f7zqphzlzyz67z7n7mnnyxf1hghi2wa2f8cdl70nfdi2f"; }; dontDisableStatic = true; @@ -29,7 +29,9 @@ in stdenv.mkDerivation rec { "--with-dynlib=${skalibs}/lib" "--with-dynlib=${execline}/lib" "--with-dynlib=${s6}/lib" - ] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ]; + ] + ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]) + ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}"); meta = { homepage = http://skarnet.org/software/s6-rc/; diff --git a/pkgs/tools/system/s6/default.nix b/pkgs/tools/system/s6/default.nix index 5e29c20339cf..e1e30de5799f 100644 --- a/pkgs/tools/system/s6/default.nix +++ b/pkgs/tools/system/s6/default.nix @@ -2,7 +2,7 @@ let - version = "2.2.1.0"; + version = "2.2.4.3"; in stdenv.mkDerivation rec { @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6"; rev = "refs/tags/v${version}"; - sha256 = "1g8gr3znxj8lyqpwrmgzh47yb64zldrvvvgpp1m4pb37k5k11bj9"; + sha256 = "0j981xslcsra8filaawgwq6daqvxxjs0014lqb7dy3qf7c5pc4l8"; }; dontDisableStatic = true; @@ -26,7 +26,9 @@ in stdenv.mkDerivation rec { "--with-lib=${execline}/lib" "--with-dynlib=${skalibs}/lib" "--with-dynlib=${execline}/lib" - ] ++ [ (if stdenv.isDarwin then "--disable-shared" else "--enable-shared") ]; + ] + ++ (if stdenv.isDarwin then [ "--disable-shared" ] else [ "--enable-shared" ]) + ++ (stdenv.lib.optional stdenv.isDarwin "--target=${stdenv.system}"); preBuild = '' substituteInPlace "src/daemontools-extras/s6-log.c" \ diff --git a/pkgs/tools/system/storebrowse/default.nix b/pkgs/tools/system/storebrowse/default.nix index 041dd96e1ca8..aa510a28c231 100644 --- a/pkgs/tools/system/storebrowse/default.nix +++ b/pkgs/tools/system/storebrowse/default.nix @@ -28,9 +28,9 @@ stdenv.mkDerivation rec { GOSQLITE=$GOPATH/src/code.google.com/p/gosqlite mkdir -p $GOSQLITE cp -R $srcGoSqlite/* $GOSQLITE/ - export CGO_CFLAGS=-I${sqlite}/include - export CGO_LDFLAGS=-L${sqlite}/lib - go build -ldflags "-r ${sqlite}/lib" -o storebrowse + export CGO_CFLAGS=-I${sqlite.dev}/include + export CGO_LDFLAGS=-L${sqlite.out}/lib + go build -ldflags "-r ${sqlite.out}/lib" -o storebrowse ''; installPhase = '' diff --git a/pkgs/tools/system/syslog-ng/default.nix b/pkgs/tools/system/syslog-ng/default.nix index 4fcc0680ada6..d98f05c6aabb 100644 --- a/pkgs/tools/system/syslog-ng/default.nix +++ b/pkgs/tools/system/syslog-ng/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, eventlog, pkgconfig, glib, python, systemd, perl -, riemann_c_client, protobufc, yacc }: +, riemann_c_client, protobufc, pcre, yacc }: stdenv.mkDerivation rec { name = "syslog-ng-${version}"; @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { sha256 = "0qc21mwajk6xrra3gqy2nvaza5gq62psamq4ayphj7lqabdglizg"; }; - buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc ]; + buildInputs = [ eventlog pkgconfig glib python systemd perl riemann_c_client protobufc yacc pcre ]; configureFlags = [ "--enable-dynamic-linking" diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix index 9fe9adaedadb..dd28d5b2b1da 100644 --- a/pkgs/tools/system/thermald/default.nix +++ b/pkgs/tools/system/thermald/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am''; preConfigure = '' - export PKG_CONFIG_PATH="${dbus_libs}/lib/pkgconfig:$PKG_CONFIG_PATH" + export PKG_CONFIG_PATH="${dbus_libs.dev}/lib/pkgconfig:$PKG_CONFIG_PATH" ./autogen.sh #--prefix="$out" ''; diff --git a/pkgs/tools/text/diffutils/default.nix b/pkgs/tools/text/diffutils/default.nix index f8413b9a0d0f..70a3bdeb7984 100644 --- a/pkgs/tools/text/diffutils/default.nix +++ b/pkgs/tools/text/diffutils/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, coreutils ? null }: +{ stdenv, fetchurl, xz, coreutils ? null }: stdenv.mkDerivation rec { name = "diffutils-3.3"; @@ -8,8 +8,10 @@ stdenv.mkDerivation rec { sha256 = "1761vymxbp4wb5rzjvabhdkskk95pghnn67464byvzb5mfl8jpm2"; }; + outputs = [ "out" "info" ]; + /* If no explicit coreutils is given, use the one from stdenv. */ - nativeBuildInputs = [ coreutils ]; + nativeBuildInputs = [ xz.bin coreutils ]; meta = { homepage = http://www.gnu.org/software/diffutils/diffutils.html; diff --git a/pkgs/tools/text/gawk/default.nix b/pkgs/tools/text/gawk/default.nix index e2856b7acaa4..8578960b9875 100644 --- a/pkgs/tools/text/gawk/default.nix +++ b/pkgs/tools/text/gawk/default.nix @@ -1,6 +1,9 @@ -{ stdenv, fetchurl, libsigsegv, readline, readlineSupport ? false +{ stdenv, fetchurl, xz, libsigsegv, readline, interactive ? false , locale ? null }: +let + inherit (stdenv.lib) optional; +in stdenv.mkDerivation rec { name = "gawk-4.1.3"; @@ -9,6 +12,9 @@ stdenv.mkDerivation rec { sha256 = "09d6pmx6h3i2glafm0jd1v1iyrs03vcyv2rkz12jisii3vlmbkz3"; }; + # When we do build separate interactive version, it makes sense to always include man. + outputs = [ "out" "info" ] ++ stdenv.lib.optional (!interactive) "man"; + doCheck = !( stdenv.isCygwin # XXX: `test-dup2' segfaults on Cygwin 6.1 || stdenv.isDarwin # XXX: `locale' segfaults @@ -16,18 +22,17 @@ stdenv.mkDerivation rec { || stdenv.isFreeBSD ); - buildInputs = stdenv.lib.optional (stdenv.system != "x86_64-cygwin") libsigsegv - ++ stdenv.lib.optional readlineSupport readline + buildInputs = [ xz.bin ] + ++ stdenv.lib.optional (stdenv.system != "x86_64-cygwin") libsigsegv + ++ stdenv.lib.optional interactive readline ++ stdenv.lib.optional stdenv.isDarwin locale; configureFlags = stdenv.lib.optional (stdenv.system != "x86_64-cygwin") "--with-libsigsegv-prefix=${libsigsegv}" - ++ stdenv.lib.optional readlineSupport "--with-readline=${readline}" - # only darwin where reported, seems OK on non-chrooted Fedora (don't rebuild stdenv) - ++ stdenv.lib.optional (!readlineSupport && stdenv.isDarwin) "--without-readline"; + ++ [(if interactive then "--with-readline=${readline}" else "--without-readline")]; postInstall = "rm $out/bin/gawk-*"; - meta = { + meta = with stdenv.lib; { homepage = http://www.gnu.org/software/gawk/; description = "GNU implementation of the Awk programming language"; @@ -45,8 +50,11 @@ stdenv.mkDerivation rec { lines of code. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; + + platforms = platforms.unix; maintainers = [ ]; }; } + diff --git a/pkgs/tools/text/gnugrep/default.nix b/pkgs/tools/text/gnugrep/default.nix index 8ef67674cd21..d618f842a4a5 100644 --- a/pkgs/tools/text/gnugrep/default.nix +++ b/pkgs/tools/text/gnugrep/default.nix @@ -12,6 +12,8 @@ stdenv.mkDerivation { # Perl is needed for testing nativeBuildInputs = [ perl ]; + outputs = [ "out" "info" ]; # the man pages are rather small + buildInputs = [ pcre libiconv ]; # cygwin: FAIL: multibyte-white-space @@ -38,7 +40,7 @@ stdenv.mkDerivation { chmod +x $out/bin/egrep $out/bin/fgrep ''; - meta = { + meta = with stdenv.lib; { homepage = http://www.gnu.org/software/grep/; description = "GNU implementation of the Unix grep command"; @@ -48,10 +50,10 @@ stdenv.mkDerivation { prints the matching lines. ''; - license = stdenv.lib.licenses.gpl3Plus; + license = licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.eelco ]; - platforms = stdenv.lib.platforms.all; + maintainers = [ maintainers.eelco ]; + platforms = platforms.all; }; passthru = {inherit pcre;}; diff --git a/pkgs/tools/text/gnused/default.nix b/pkgs/tools/text/gnused/default.nix index b1c5910029dd..037c2f17a63b 100644 --- a/pkgs/tools/text/gnused/default.nix +++ b/pkgs/tools/text/gnused/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl}: +{ stdenv, fetchurl }: stdenv.mkDerivation { name = "gnused-4.2.2"; @@ -8,6 +8,8 @@ stdenv.mkDerivation { sha256 = "f048d1838da284c8bc9753e4506b85a1e0cc1ea8999d36f6995bcb9460cddbd7"; }; + outputs = [ "out" "info" ]; + meta = { homepage = http://www.gnu.org/software/sed/; description = "GNU sed, a batch stream editor"; diff --git a/pkgs/tools/text/groff/default.nix b/pkgs/tools/text/groff/default.nix index 039bff8c655a..e08c10fd9ed2 100644 --- a/pkgs/tools/text/groff/default.nix +++ b/pkgs/tools/text/groff/default.nix @@ -35,9 +35,9 @@ stdenv.mkDerivation rec { postInstall = '' # Remove example output with (random?) colors to # avoid non-determinism in the output - rm $out/share/doc/${name}/examples/hdtbl/*color*ps + rm $doc/share/doc/examples/hdtbl/*color*ps # Remove creation date - find $out/share/doc/${name} -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//' + find $doc/share/doc/ -type f -print0 | xargs -0 sed -i -e 's/%%CreationDate: .*//' ''; meta = with stdenv.lib; { diff --git a/pkgs/tools/text/multitran/data/default.nix b/pkgs/tools/text/multitran/data/default.nix index d0e39add665a..57a375d2a17b 100644 --- a/pkgs/tools/text/multitran/data/default.nix +++ b/pkgs/tools/text/multitran/data/default.nix @@ -3,7 +3,7 @@ # This package requires a locale ru_RU.cp1251 locale entry. # Waiting for a better idea, I created it modifying a store file using: # localedef -f CP1251 -i ru_RU ru_RU.CP1251 -# The store file mentioned is in "${glibc}/lib/locale/locale-archive" +# The store file mentioned is in "${glibc.out}/lib/locale/locale-archive" stdenv.mkDerivation { name = "multitran-data-0.3"; diff --git a/pkgs/tools/text/xidel/default.nix b/pkgs/tools/text/xidel/default.nix index 89adcc75b195..000584a50e10 100644 --- a/pkgs/tools/text/xidel/default.nix +++ b/pkgs/tools/text/xidel/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p "$out/bin" cp -a usr/* "$out/" - interpreter="$(echo ${stdenv.glibc}/lib/ld-linux*)" + interpreter="$(echo ${stdenv.glibc.out}/lib/ld-linux*)" patchelf --set-interpreter "$interpreter" "$out/bin/xidel" patchelf --set-rpath "${stdenv.lib.makeLibraryPath [stdenv.glibc]}" "$out/bin/xidel" ''; diff --git a/pkgs/tools/typesetting/asciidoc/default.nix b/pkgs/tools/typesetting/asciidoc/default.nix index b26582a6cc71..7c393c524151 100644 --- a/pkgs/tools/typesetting/asciidoc/default.nix +++ b/pkgs/tools/typesetting/asciidoc/default.nix @@ -237,12 +237,12 @@ stdenv.mkDerivation rec { # We can remove PATH= when those impurities are fixed. sed -e "s|^ENV =.*|ENV = dict(XML_CATALOG_FILES='${docbook_xml_dtd_45}/xml/dtd/docbook/catalog.xml ${docbook5_xsl}/xml/xsl/docbook/catalog.xml ${docbook_xsl}/xml/xsl/docbook/catalog.xml', PATH='${tetex}/bin:${coreutils}/bin:${gnused}/bin')|" \ -e "s|^ASCIIDOC =.*|ASCIIDOC = '$out/bin/asciidoc'|" \ - -e "s|^XSLTPROC =.*|XSLTPROC = '${libxslt}/bin/xsltproc'|" \ + -e "s|^XSLTPROC =.*|XSLTPROC = '${libxslt.bin}/bin/xsltproc'|" \ -e "s|^DBLATEX =.*|DBLATEX = '${dblatexFull}/bin/dblatex'|" \ -e "s|^FOP =.*|FOP = '${fop}/bin/fop'|" \ -e "s|^W3M =.*|W3M = '${w3m}/bin/w3m'|" \ -e "s|^LYNX =.*|LYNX = '${lynx}/bin/lynx'|" \ - -e "s|^XMLLINT =.*|XMLLINT = '${libxml2}/bin/xmllint'|" \ + -e "s|^XMLLINT =.*|XMLLINT = '${libxml2.bin}/bin/xmllint'|" \ -e "s|^EPUBCHECK =.*|EPUBCHECK = 'nixpkgs_is_missing_epubcheck'|" \ -i a2x.py '' + '' diff --git a/pkgs/tools/typesetting/djvu2pdf/default.nix b/pkgs/tools/typesetting/djvu2pdf/default.nix index 512efe497fa0..a426356a09f5 100644 --- a/pkgs/tools/typesetting/djvu2pdf/default.nix +++ b/pkgs/tools/typesetting/djvu2pdf/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { installPhase = '' mkdir -p $out/bin cp -p djvu2pdf $out/bin - wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre}/bin:${which}/bin + wrapProgram $out/bin/djvu2pdf --prefix PATH : ${ghostscript}/bin:${djvulibre.bin}/bin:${which}/bin mkdir -p $out/man/man1 cp -p djvu2pdf.1.gz $out/man/man1 diff --git a/pkgs/tools/typesetting/tex/dblatex/default.nix b/pkgs/tools/typesetting/tex/dblatex/default.nix index 408ef8ae263c..18f9c99ee240 100644 --- a/pkgs/tools/typesetting/tex/dblatex/default.nix +++ b/pkgs/tools/typesetting/tex/dblatex/default.nix @@ -37,16 +37,16 @@ stdenv.mkDerivation rec { sed -i 's|self.install_layout == "deb"|False|' setup.py '' + stdenv.lib.optionalString enableAllFeatures '' for file in $(find -name "*.py"); do - sed -e 's|cmd = \["xsltproc|cmd = \["${libxslt}/bin/xsltproc|g' \ - -e 's|Popen(\["xsltproc|Popen(\["${libxslt}/bin/xsltproc|g' \ + sed -e 's|cmd = \["xsltproc|cmd = \["${libxslt.bin}/bin/xsltproc|g' \ + -e 's|Popen(\["xsltproc|Popen(\["${libxslt.bin}/bin/xsltproc|g' \ -e 's|cmd = \["texindy|cmd = ["nixpkgs_is_missing_texindy|g' \ -e 's|cmd = "epstopdf|cmd = "${tex}/bin/epstopdf|g' \ -e 's|cmd = \["makeindex|cmd = ["${tex}/bin/makeindex|g' \ -e 's|doc.program = "pdflatex"|doc.program = "${tex}/bin/pdflatex"|g' \ -e 's|self.program = "latex"|self.program = "${tex}/bin/latex"|g' \ -e 's|Popen("pdflatex|Popen("${tex}/bin/pdflatex|g' \ - -e 's|"fc-match"|"${fontconfig}/bin/fc-match"|g' \ - -e 's|"fc-list"|"${fontconfig}/bin/fc-list"|g' \ + -e 's|"fc-match"|"${fontconfig.bin}/bin/fc-match"|g' \ + -e 's|"fc-list"|"${fontconfig.bin}/bin/fc-list"|g' \ -e 's|cmd = "inkscape|cmd = "${inkscape}/bin/inkscape|g' \ -e 's|cmd = "fig2dev|cmd = "${transfig}/bin/fig2dev|g' \ -e 's|cmd = \["ps2pdf|cmd = ["${ghostscript}/bin/ps2pdf|g' \ diff --git a/pkgs/tools/typesetting/tex/texlive-new/bin.nix b/pkgs/tools/typesetting/tex/texlive-new/bin.nix index 431f3926a13e..f833cc2f82b1 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/bin.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/bin.nix @@ -99,7 +99,8 @@ core = stdenv.mkDerivation rec { cp ../texk/texlive/linked_scripts/scripts.lst "$out/share/texmf-dist/scripts/texlive/" '' + /* doc location identical with individual TeX pkgs */ '' mkdir -p "$doc/doc" - mv "$out"/share/{man,info} "$doc"/doc + mv "$doc"/share/{man,info} "$doc"/doc + rmdir "$doc"/share '' + cleanBrokenLinks; setupHook = ./setup-hook.sh; # TODO: maybe texmf-nix -> texmf (and all references) diff --git a/pkgs/tools/typesetting/tex/texlive-new/default.nix b/pkgs/tools/typesetting/tex/texlive-new/default.nix index fbf4adde2ae7..a2f0bf706c87 100644 --- a/pkgs/tools/typesetting/tex/texlive-new/default.nix +++ b/pkgs/tools/typesetting/tex/texlive-new/default.nix @@ -104,6 +104,7 @@ let mkUrlName = { pname, tlType, ... }: pname + lib.optionalString (tlType != "run") ".${tlType}"; + # command to unpack a single TL package unpackPkg = { # url ? null, urlPrefix ? null md5, pname, tlType, postUnpack ? "", stripPrefix ? 1, ... @@ -119,6 +120,7 @@ let -C "$out" --anchored --exclude=tlpkg --keep-old-files '' + postUnpack; + # create a derivation that contains unpacked upstream TL packages mkPkgs = { pname, tlType, version, pkgList }@args: /* TODOs: - "historic" isn't mirrored; posted a question at #287 diff --git a/pkgs/tools/typesetting/tex/texlive/aggregate.nix b/pkgs/tools/typesetting/tex/texlive/aggregate.nix index 56b093f921d1..550870b0a6a9 100644 --- a/pkgs/tools/typesetting/tex/texlive/aggregate.nix +++ b/pkgs/tools/typesetting/tex/texlive/aggregate.nix @@ -66,7 +66,7 @@ rec { # did the same thing in texLive, but couldn't get it to carry to the # binaries installed by texLiveFull for prog in $out/bin/*; do - wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${poppler}/lib" + wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${poppler.out}/lib" done '' ) [ "minInit" "defEnsureDir" "addInputs" ]; diff --git a/pkgs/tools/typesetting/tex/texlive/default.nix b/pkgs/tools/typesetting/tex/texlive/default.nix index 74b3829cf89f..48a5ae8d6499 100644 --- a/pkgs/tools/typesetting/tex/texlive/default.nix +++ b/pkgs/tools/typesetting/tex/texlive/default.nix @@ -30,7 +30,7 @@ rec { setupHook = ./setup-hook.sh; doMainBuild = fullDepEntry ( stdenv.lib.optionalString stdenv.isDarwin '' - export DYLD_LIBRARY_PATH="${poppler}/lib" + export DYLD_LIBRARY_PATH="${poppler.out}/lib" '' + '' mkdir -p $out mkdir -p $out/nix-support @@ -54,7 +54,7 @@ rec { # sed -e s@ncurses/curses.h@curses.h@g -i $(grep ncurses/curses.h -rl . ) sed -e '1i\#include \n\#include ' -i $( find libs/teckit -name '*.cpp' -o -name '*.c' ) - NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${icu}/include/layout"; + NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${icu.dev}/include/layout"; ./Build --prefix="$out" --datadir="$out/share" --mandir="$out/share/man" --infodir="$out/share/info" \ ${args.lib.concatStringsSep " " configureFlags} @@ -106,7 +106,7 @@ rec { PATH=$PATH:$out/bin mktexlsr $out/share/texmf* '' + stdenv.lib.optionalString stdenv.isDarwin '' for prog in $out/bin/*; do - wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${poppler}/lib" + wrapProgram "$prog" --prefix DYLD_LIBRARY_PATH : "${poppler.out}/lib" done '' ) [ "minInit" "defEnsureDir" "doUnpack" "doMakeInstall" "promoteLibexec" "patchShebangsInterim"]; @@ -119,7 +119,7 @@ rec { "patchShebangsInterimLibexec" "patchShebangsInterimTexmfDist" "patchShebangsInterimShareTexmfDist"]; - buildInputs = [ zlib bzip2 ncurses libpng flex bison libX11 libICE xproto + buildInputs = [ zlib bzip2 ncurses libpng flex bison libX11.out libICE xproto freetype t1lib gd libXaw icu ghostscript ed libXt libXpm libXmu libXext xextproto perl libSM ruby expat curl libjpeg python fontconfig xz pkgconfig poppler libpaper graphite2 lesstif zziplib harfbuzz texinfo potrace gmp mpfr diff --git a/pkgs/tools/typesetting/xmlto/default.nix b/pkgs/tools/typesetting/xmlto/default.nix index 49fe7dc681fe..f99c14720760 100644 --- a/pkgs/tools/typesetting/xmlto/default.nix +++ b/pkgs/tools/typesetting/xmlto/default.nix @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram "$out/bin/xmlto" \ - --prefix PATH : "${libxslt}/bin:${libxml2}/bin:${getopt}/bin" + --prefix PATH : "${libxslt.bin}/bin:${libxml2.bin}/bin:${getopt}/bin" # `w3m' is needed for HTML to text conversions. substituteInPlace "$out/share/xmlto/format/docbook/txt" \ diff --git a/pkgs/tools/virtualization/aws/default.nix b/pkgs/tools/virtualization/aws/default.nix index 123dbf647f0d..efce0c92b78f 100644 --- a/pkgs/tools/virtualization/aws/default.nix +++ b/pkgs/tools/virtualization/aws/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation { installPhase = '' mkdir -p $out/bin - sed 's|\[curl|[${curl}/bin/curl|g' $src > $out/bin/aws + sed 's|\[curl|[${curl.bin}/bin/curl|g' $src > $out/bin/aws chmod +x $out/bin/aws ''; diff --git a/pkgs/tools/virtualization/ec2-ami-tools/default.nix b/pkgs/tools/virtualization/ec2-ami-tools/default.nix index dee14db46bcf..6ccce4684ad5 100644 --- a/pkgs/tools/virtualization/ec2-ami-tools/default.nix +++ b/pkgs/tools/virtualization/ec2-ami-tools/default.nix @@ -29,7 +29,7 @@ stdenv.mkDerivation rec { for i in $out/bin/*; do wrapProgram $i \ --set EC2_HOME $out \ - --prefix PATH : ${ruby}/bin:${openssl}/bin + --prefix PATH : ${ruby}/bin:${openssl.bin}/bin done sed -i 's|/bin/bash|${stdenv.shell}|' $out/lib/ec2/platform/base/pipeline.rb diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 200084285fbb..c33401eed890 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -134,11 +134,12 @@ in }; buildFHSUserEnv = args: userFHSEnv { - env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" "extraInstallCommands" "meta" ]); + env = buildFHSEnv (removeAttrs args [ "runScript" "extraBindMounts" "extraInstallCommands" "meta" "passthru" ]); runScript = args.runScript or "bash"; extraBindMounts = args.extraBindMounts or []; extraInstallCommands = args.extraInstallCommands or ""; - importMeta = args.meta or {}; + meta = args.meta or {}; + passthru = args.passthru or {}; }; buildMaven = callPackage ../build-support/build-maven.nix {}; @@ -325,6 +326,8 @@ in separateDebugInfo = makeSetupHook { } ../build-support/setup-hooks/separate-debug-info.sh; + useOldCXXAbi = makeSetupHook { } ../build-support/setup-hooks/use-old-cxx-abi.sh; + ### TOOLS @@ -753,6 +756,8 @@ in fasd = callPackage ../tools/misc/fasd { }; + fastJson = callPackage ../development/libraries/fastjson { }; + fop = callPackage ../tools/typesetting/fop { }; fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; }; @@ -1065,6 +1070,7 @@ in mozc = callPackage ../tools/inputmethods/ibus-engines/ibus-mozc { inherit (pythonPackages) gyp; + protobuf = protobuf.override { stdenv = clangStdenv; }; }; table = callPackage ../tools/inputmethods/ibus-engines/ibus-table { @@ -1306,8 +1312,12 @@ in dub = callPackage ../development/tools/build-managers/dub { }; + duc = callPackage ../tools/misc/duc { }; + duff = callPackage ../tools/filesystems/duff { }; + dumptorrent = callPackage ../tools/misc/dumptorrent { }; + duo-unix = callPackage ../tools/security/duo-unix { }; duplicity = callPackage ../tools/backup/duplicity { @@ -1424,6 +1434,7 @@ in mozc = callPackage ../tools/inputmethods/fcitx-engines/fcitx-mozc { inherit (pythonPackages) gyp; + protobuf = protobuf.override { stdenv = clangStdenv; }; }; table-other = callPackage ../tools/inputmethods/fcitx-engines/fcitx-table-other { }; @@ -1570,7 +1581,7 @@ in }; gawkInteractive = appendToName "interactive" - (gawk.override { readlineSupport = true; }); + (gawk.override { interactive = true; }); gawp = goPackages.gawp.bin // { outputs = [ "bin" ]; }; @@ -1586,11 +1597,11 @@ in gazebo6-headless = callPackage ../applications/science/robotics/gazebo/6.nix { withHeadless = true; }; gazebo7 = callPackage ../applications/science/robotics/gazebo { }; - + gazebo7-headless = callPackage ../applications/science/robotics/gazebo { withHeadless = true; }; }; - + # at present, Gazebo 7.0.0 does not match Gazebo 6.5.1 for compatibility gazebo = gazeboSimulator.gazebo6; @@ -1648,7 +1659,9 @@ in gmvault = callPackage ../tools/networking/gmvault { }; - gnaural = callPackage ../applications/audio/gnaural { }; + gnaural = callPackage ../applications/audio/gnaural { + stdenv = overrideCC stdenv gcc49; + }; gnokii = callPackage ../tools/misc/gnokii { }; @@ -1746,6 +1759,8 @@ in json_c = json-c-0-11; # won't configure with 0.12; others are vulnerable }; + grive2 = callPackage ../tools/filesystems/grive2 { }; + groff = callPackage ../tools/text/groff { ghostscript = null; }; @@ -1930,12 +1945,12 @@ in ifuse = callPackage ../tools/filesystems/ifuse/default.nix { }; - ignition = recurseIntoAttrs { + ignition = recurseIntoAttrs { math = callPackage ../development/libraries/ignition-math { }; - + math2 = ignition.math; - + transport0 = callPackage ../development/libraries/ignition-transport/0.9.0.nix { }; transport1 = callPackage ../development/libraries/ignition-transport/1.0.1.nix { }; @@ -2000,7 +2015,7 @@ in ised = callPackage ../tools/misc/ised {}; - isl = isl_0_15; + isl = isl_0_14; isl_0_11 = callPackage ../development/libraries/isl/0.11.1.nix { }; isl_0_12 = callPackage ../development/libraries/isl/0.12.2.nix { }; isl_0_14 = callPackage ../development/libraries/isl/0.14.1.nix { }; @@ -2709,6 +2724,8 @@ in parted = callPackage ../tools/misc/parted { hurd = null; }; + pell = callPackage ../applications/misc/pell { }; + pitivi = callPackage ../applications/video/pitivi { gst = gst_all_1 // { gst-plugins-bad = gst_all_1.gst-plugins-bad.overrideDerivation @@ -2939,6 +2956,11 @@ in qt = qt4; }; + qgifer = callPackage ../applications/video/qgifer { + giflib = giflib_4_1; + qt = qt4; + }; + qhull = callPackage ../development/libraries/qhull { }; qjoypad = callPackage ../tools/misc/qjoypad { }; @@ -3184,7 +3206,7 @@ in smbnetfs = callPackage ../tools/filesystems/smbnetfs {}; - snabbswitch = callPackage ../tools/networking/snabbswitch { } ; + snabb = callPackage ../tools/networking/snabb { } ; sng = callPackage ../tools/graphics/sng { libpng = libpng12; @@ -3539,6 +3561,8 @@ in weather = callPackage ../applications/misc/weather { }; + wego = goPackages.wego.bin // { outputs = [ "bin" ]; }; + wal_e = callPackage ../tools/backup/wal-e { }; watchman = callPackage ../development/tools/watchman { }; @@ -3783,7 +3807,7 @@ in xflux = callPackage ../tools/misc/xflux { }; xfsprogs = callPackage ../tools/filesystems/xfsprogs { }; - libxfs = xfsprogs.lib; + libxfs = xfsprogs.dev; # outputs TODO xml2 = callPackage ../tools/text/xml/xml2 { }; @@ -3913,14 +3937,7 @@ in ### DEVELOPMENT / COMPILERS - abc = - abcPatchable []; - - abcPatchable = patches : - callPackage ../development/compilers/abc/default.nix { - inherit patches; - javaCup = callPackage ../development/libraries/java/cup { }; - }; + abc = callPackage ../development/compilers/abc/default.nix { }; aldor = callPackage ../development/compilers/aldor { }; @@ -4457,6 +4474,8 @@ in lessc = callPackage ../development/compilers/lessc { }; + liquibase = callPackage ../development/tools/database/liquibase { }; + llvm = llvmPackages.llvm; llvm_38 = llvmPackages_38.llvm; @@ -5222,10 +5241,21 @@ in erlangR16 = callPackage ../development/interpreters/erlang/R16.nix { }; erlangR16_odbc = callPackage ../development/interpreters/erlang/R16.nix { odbcSupport = true; }; - erlangR17 = callPackage ../development/interpreters/erlang/R17.nix { }; - erlangR17_odbc = callPackage ../development/interpreters/erlang/R17.nix { odbcSupport = true; }; - erlangR17_javac = callPackage ../development/interpreters/erlang/R17.nix { javacSupport = true; }; - erlangR17_odbc_javac = callPackage ../development/interpreters/erlang/R17.nix { javacSupport = true; odbcSupport = true; }; + erlangR17 = callPackage ../development/interpreters/erlang/R17.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + }; + erlangR17_odbc = callPackage ../development/interpreters/erlang/R17.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + odbcSupport = true; + }; + erlangR17_javac = callPackage ../development/interpreters/erlang/R17.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + javacSupport = true; + }; + erlangR17_odbc_javac = callPackage ../development/interpreters/erlang/R17.nix { + inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; + javacSupport = true; odbcSupport = true; + }; erlangR18 = callPackage ../development/interpreters/erlang/R18.nix { inherit (darwin.apple_sdk.frameworks) Carbon Cocoa; }; @@ -5282,6 +5312,8 @@ in lxappearance = callPackage ../applications/misc/lxappearance {}; + lxmenu-data = callPackage ../desktops/lxde/core/lxmenu-data.nix { }; + kona = callPackage ../development/interpreters/kona {}; lolcode = callPackage ../development/interpreters/lolcode { }; @@ -5735,16 +5767,22 @@ in # It can be used by setting in nixpkgs config like this, for example: # replaceStdenv = { pkgs }: pkgs.ccacheStdenv; # But if you build in chroot, you should have that path in chroot - # If instantiated directly, it will use the HOME/.ccache as cache directory. - # You can use an override in packageOverrides to set extraConfig: + # If instantiated directly, it will use $HOME/.ccache as the cache directory, + # i.e. /homeless-shelter/.ccache using the Nix daemon. + # You should specify a different directory using an override in + # packageOverrides to set extraConfig. + # + # Example using Nix daemon (i.e. multiuser Nix install or on NixOS): # packageOverrides = pkgs: { # ccacheWrapper = pkgs.ccacheWrapper.override { # extraConfig = '' - # CCACHE_COMPRESS=1 - # CCACHE_DIR=/bin/.ccache + # export CCACHE_COMPRESS=1 + # export CCACHE_DIR=/var/cache/ccache + # export CCACHE_UMASK=007 # ''; # }; - # + # You can use a different directory, but whichever directory you choose + # should be owned by user root, group nixbld with permissions 0770. ccacheWrapper = makeOverridable ({ extraConfig ? "" }: wrapCC (ccache.links extraConfig)) {}; ccacheStdenv = lowPrio (overrideCC stdenv ccacheWrapper); @@ -6233,6 +6271,8 @@ in texi2html = callPackage ../development/tools/misc/texi2html { }; + travis = callPackage ../development/tools/misc/travis { }; + tweak = callPackage ../applications/editors/tweak { }; uhd = callPackage ../development/tools/misc/uhd { }; @@ -6547,8 +6587,8 @@ in dbus-sharp-glib-2_0 = callPackage ../development/libraries/dbus-sharp-glib { }; # Should we deprecate these? Currently there are many references. - dbus_tools = pkgs.dbus.tools; - dbus_libs = pkgs.dbus.libs; + dbus_tools = pkgs.dbus.out; + dbus_libs = pkgs.dbus; dbus_daemon = pkgs.dbus.daemon; dee = callPackage ../development/libraries/dee { }; @@ -6834,7 +6874,7 @@ in gmp4 = callPackage ../development/libraries/gmp/4.3.2.nix { }; # required by older GHC versions gmp5 = callPackage ../development/libraries/gmp/5.1.x.nix { }; gmp6 = callPackage ../development/libraries/gmp/6.x.nix { }; - gmp = gmp5; + gmp = gmp6; gmpxx = appendToName "with-cxx" (gmp.override { cxx = true; }); #GMP ex-satellite, so better keep it near gmp @@ -6963,6 +7003,7 @@ in ace = callPackage ../development/libraries/ace { }; atk = callPackage ../development/libraries/atk { }; + atkmm = callPackage ../development/libraries/atkmm { }; pixman = callPackage ../development/libraries/pixman { }; @@ -6971,6 +7012,8 @@ in glSupport = config.cairo.gl or (stdenv.isLinux && !stdenv.isArm && !stdenv.isMips); }; + + cairomm = callPackage ../development/libraries/cairomm { }; pango = callPackage ../development/libraries/pango { }; @@ -7235,6 +7278,8 @@ in libass = callPackage ../development/libraries/libass { }; + libast = callPackage ../development/libraries/libast { }; + libassuan = callPackage ../development/libraries/libassuan { }; libasyncns = callPackage ../development/libraries/libasyncns { }; @@ -7955,6 +8000,7 @@ in }); libva = callPackage ../development/libraries/libva { }; + libva-full = libva.override { minimal = false; }; libvdpau = callPackage ../development/libraries/libvdpau { }; @@ -8007,14 +8053,18 @@ in libxmi = callPackage ../development/libraries/libxmi { }; - libxml2 = callPackage ../development/libraries/libxml2 { - pythonSupport = false; + libxml2 = callPackage ../development/libraries/libxml2 { }; + libxml2Python = pkgs.buildEnv { # slightly hacky + name = "libxml2+py-${pkgs.libxml2.version}"; + paths = with libxml2; [ dev bin py ]; + inherit (pkgs.libxml2) passthru; + # the hook to find catalogs is hidden by buildEnv + postBuild = '' + mkdir "$out/nix-support" + cp '${libxml2.dev}/nix-support/propagated-native-build-inputs' "$out/nix-support/" + ''; }; - libxml2Python = lowPrio (libxml2.override { - pythonSupport = true; - }); - libxmlxx = callPackage ../development/libraries/libxmlxx { }; libxmp = callPackage ../development/libraries/libxmp { }; @@ -8104,7 +8154,7 @@ in ); mesa = mesaDarwinOr (buildEnv { name = "mesa-${mesa_noglu.version}"; - paths = [ mesa_noglu mesa_glu ]; + paths = [ mesa_noglu.dev mesa_noglu.out mesa_glu ]; }); meterbridge = callPackage ../applications/audio/meterbridge { }; @@ -8217,13 +8267,10 @@ in nspr = callPackage ../development/libraries/nspr { }; nss = lowPrio (callPackage ../development/libraries/nss { }); + nssTools = nss.tools; nss_wrapper = callPackage ../development/libraries/nss_wrapper { }; - nssTools = callPackage ../development/libraries/nss { - includeTools = true; - }; - ntk = callPackage ../development/libraries/audio/ntk { }; ntrack = callPackage ../development/libraries/ntrack { }; @@ -8350,17 +8397,10 @@ in vtk = vtkWithQt4; }; - pcre = callPackage ../development/libraries/pcre { - unicodeSupport = config.pcre.unicode or true; - }; - pcre16 = pcre.override { - cplusplusSupport = false; - withCharSize = 16; - }; - pcre32 = pcre.override { - cplusplusSupport = false; - withCharSize = 32; - }; + pcre = callPackage ../development/libraries/pcre { }; + pcre16 = self.pcre.override { variant = "pcre16"; }; + # pcre32 seems unused + pcre-cpp = self.pcre.override { variant = "cpp"; }; pcre2 = callPackage ../development/libraries/pcre2 { }; @@ -8765,7 +8805,7 @@ in sqlite-amalgamation = callPackage ../development/libraries/sqlite-amalgamation { }; - sqlite-interactive = appendToName "interactive" (sqlite.override { interactive = true; }); + sqlite-interactive = appendToName "interactive" (sqlite.override { interactive = true; }).bin; sqlcipher = lowPrio (callPackage ../development/libraries/sqlcipher { readline = null; @@ -8900,6 +8940,10 @@ in gnutls = gnutls; }); + v8_3_14 = callPackage ../development/libraries/v8/3.14.nix { + inherit (pythonPackages) gyp; + }; + v8_3_16_14 = callPackage ../development/libraries/v8/3.16.14.nix { inherit (pythonPackages) gyp; # The build succeeds using gcc5 but it fails to build pkgs.consul-ui @@ -8918,9 +8962,13 @@ in inherit (pythonPackages) gyp; }; - vaapiIntel = callPackage ../development/libraries/vaapi-intel { }; + vaapiIntel = callPackage ../development/libraries/vaapi-intel { + libva = libva-full; # also wants libva-{x11,drm,wayland} + }; - vaapiVdpau = callPackage ../development/libraries/vaapi-vdpau { }; + vaapiVdpau = callPackage ../development/libraries/vaapi-vdpau { + libva = libva-full; # needs libva-{x11,glx} + }; vamp = callPackage ../development/libraries/audio/vamp { }; @@ -8960,6 +9008,8 @@ in graphviz = graphviz-nox; }; + wayland-protocols = callPackage ../development/libraries/wayland/protocols.nix { }; + webkit = webkitgtk; wcslib = callPackage ../development/libraries/wcslib { }; @@ -9022,11 +9072,7 @@ in xapian = callPackage ../development/libraries/xapian { }; xapianBindings = callPackage ../development/libraries/xapian/bindings { # TODO perl php Java, tcl, C#, python - }; - - xapian10 = callPackage ../development/libraries/xapian/1.0.x.nix { }; - - xapianBindings10 = callPackage ../development/libraries/xapian/bindings/1.0.x.nix { # TODO perl php Java, tcl, C#, python + php = php56; }; xapian-omega = callPackage ../tools/misc/xapian-omega {}; @@ -9188,6 +9234,8 @@ in jzmq = callPackage ../development/libraries/java/jzmq { }; + lombok = callPackage ../development/libraries/java/lombok { }; + lucene = callPackage ../development/libraries/java/lucene { }; lucenepp = callPackage ../development/libraries/lucene++ { @@ -9394,10 +9442,12 @@ in slowaes = pythonPackages.slowaes; + twisted = pythonPackages.twisted; + wxPython = pythonPackages.wxPython; wxPython28 = pythonPackages.wxPython28; - twisted = pythonPackages.twisted; + yolk = callPackage ../development/python-modules/yolk {}; ZopeInterface = pythonPackages.zope_interface; @@ -9617,9 +9667,10 @@ in meteor = callPackage ../servers/meteor/default.nix { }; + mfi = callPackage ../servers/mfi { }; + # Backwards compatibility. mod_dnssd = pkgs.apacheHttpdPackages.mod_dnssd; - mod_evasive = pkgs.apacheHttpdPackages.mod_evasive; mod_fastcgi = pkgs.apacheHttpdPackages.mod_fastcgi; mod_python = pkgs.apacheHttpdPackages.mod_python; mod_wsgi = pkgs.apacheHttpdPackages.mod_wsgi; @@ -9734,6 +9785,8 @@ in sasl = cyrus_sasl; }; + mongodb248 = callPackage ../servers/nosql/mongodb/2.4.8.nix { }; + riak = callPackage ../servers/nosql/riak/2.1.1.nix { }; influxdb = (callPackage ../servers/nosql/influxdb { }).bin // { outputs = [ "bin" ]; }; @@ -10346,7 +10399,7 @@ in }; linux_3_10 = callPackage ../os-specific/linux/kernel/linux-3.10.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper ] + kernelPatches = with kernelPatches; [ bridge_stp_helper link_lguest link_apm ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10355,7 +10408,7 @@ in }; linux_3_12 = callPackage ../os-specific/linux/kernel/linux-3.12.nix { - kernelPatches = [ kernelPatches.bridge_stp_helper kernelPatches.crc_regression ] + kernelPatches = with kernelPatches; [ bridge_stp_helper crc_regression link_lguest ] ++ lib.optionals ((platform.kernelArch or null) == "mips") [ kernelPatches.mips_fpureg_emu kernelPatches.mips_fpu_sigill @@ -10954,7 +11007,12 @@ in systemd = callPackage ../os-specific/linux/systemd { linuxHeaders = linuxHeaders_3_18; - }; + utillinux = utillinuxMinimal; # break the cyclic dependency + } + // { + udev.bin = systemd; # ${systemd.udev.bin}/bin/udevadm + udev.lib = libudev.out; # ${systemd.udev.lib}/lib/libudev.* + }; # In nixos, you can set systemd.package = pkgs.systemd_with_lvm2 to get # LVM2 working in systemd. @@ -11008,7 +11066,11 @@ in cross = assert crossSystem != null; crossSystem; }); - udev = pkgs.systemd; + # This hacky alias covers most use cases without mass-replace (build inputs) + # and causes an *evaluation* error if "${udev}" is attempted. + udev = [ libudev.dev libudev.out ]; + libudev = callPackage ../os-specific/linux/systemd/libudev.nix { }; + eudev = callPackage ../os-specific/linux/eudev {}; # libudev.so.0 @@ -11968,8 +12030,7 @@ in imagemagick = null; acl = null; gpm = null; - inherit (darwin.apple_sdk.frameworks) AppKit Foundation; - inherit (darwin) libobjc; + inherit (darwin.apple_sdk.frameworks) AppKit CoreWLAN GSS Kerberos ImageIO; }); emacsPackagesGen = emacs: self: let callPackage = newScope self; in rec { @@ -12179,6 +12240,8 @@ in esniper = callPackage ../applications/networking/esniper { }; + eterm = callPackage ../applications/misc/eterm { }; + etherape = callPackage ../applications/networking/sniffers/etherape { inherit (gnome) gnomedocutils libgnome libglade libgnomeui scrollkeeper; }; @@ -12341,7 +12404,7 @@ in flashplayer-standalone = pkgsi686Linux.flashplayer.sa; - flashplayer-standalone-debugger = pkgsi686Linux.flashplayer.saDbg; + flashplayer-standalone-debugger = (pkgsi686Linux.flashplayer.override { debug = true; }).sa; fluxbox = callPackage ../applications/window-managers/fluxbox { }; @@ -12421,9 +12484,7 @@ in inherit (gnome3) gitg; - giv = callPackage ../applications/graphics/giv { - pcre = pcre.override { unicodeSupport = true; }; - }; + giv = callPackage ../applications/graphics/giv { }; gmrun = callPackage ../applications/misc/gmrun {}; @@ -12750,6 +12811,8 @@ in jamin = callPackage ../applications/audio/jamin { }; + japa = callPackage ../applications/audio/japa { }; + jedit = callPackage ../applications/editors/jedit { }; jigdo = callPackage ../applications/misc/jigdo { }; @@ -13166,7 +13229,7 @@ in smtube = qt5.callPackage ../applications/video/smtube {}; sup = callPackage ../applications/networking/mailreaders/sup { - ruby = ruby_1_9.override { cursesSupport = true; }; + ruby = ruby_2_3.override { cursesSupport = true; }; }; synapse = callPackage ../applications/misc/synapse { @@ -13306,7 +13369,7 @@ in panotools = callPackage ../applications/graphics/panotools { }; paprefs = callPackage ../applications/audio/paprefs { - inherit (gnome) libglademm gconfmm; + inherit (gnome) libglademm gconfmm GConf; }; pavucontrol = callPackage ../applications/audio/pavucontrol { }; @@ -13907,6 +13970,8 @@ in timbreid = callPackage ../applications/audio/pd-plugins/timbreid { }; + timewarrior = callPackage ../applications/misc/timewarrior { }; + timidity = callPackage ../tools/misc/timidity { }; tint2 = callPackage ../applications/misc/tint2 { }; @@ -14080,6 +14145,7 @@ in }; primus = callPackage ../tools/X11/primus { + stdenv_i686 = pkgsi686Linux.stdenv; primusLib_i686 = if system == "x86_64-linux" then pkgsi686Linux.primusLib else null; @@ -14099,6 +14165,7 @@ in vlc = callPackage ../applications/video/vlc { ffmpeg = ffmpeg_2; + libva = libva-full; # also wants libva-x11 }; vlc_qt5 = qt5.vlc; @@ -14111,6 +14178,10 @@ in vorbis-tools = callPackage ../applications/audio/vorbis-tools { }; + vscode = callPackage ../applications/editors/vscode { + gconf = pkgs.gnome.GConf; + }; + vue = callPackage ../applications/misc/vue { }; vwm = callPackage ../applications/window-managers/vwm { }; @@ -14869,12 +14940,15 @@ in stockfish = callPackage ../games/stockfish { }; steamPackages = callPackage ../games/steam { }; + steam = steamPackages.steam-chrootenv.override { # DEPRECATED withJava = config.steam.java or false; withPrimus = config.steam.primus or false; }; + steam-run = steam.run; + stepmania = callPackage ../games/stepmania { }; stuntrally = callPackage ../games/stuntrally { }; @@ -15480,12 +15554,10 @@ in liblbfgs = callPackage ../development/libraries/science/math/liblbfgs { }; openblas = callPackage ../development/libraries/science/math/openblas { }; - openblas_2_14 = callPackage ../development/libraries/science/math/openblas/0.2.14.nix { }; # A version of OpenBLAS using 32-bit integers on all platforms for compatibility with # standard BLAS and LAPACK. openblasCompat = openblas.override { blas64 = false; }; - openblasCompat_2_14 = openblas_2_14.override { blas64 = false; }; openlibm = callPackage ../development/libraries/science/math/openlibm {}; @@ -15506,6 +15578,15 @@ in ### SCIENCE/MOLECULAR-DYNAMICS + lammps = callPackage ../applications/science/molecular-dynamics/lammps { + fftw = fftw; + }; + + lammps-mpi = appendToName "mpi" (lammps.override { + mpiSupport = true; + mpi = openmpi; + }); + gromacs = callPackage ../applications/science/molecular-dynamics/gromacs { singlePrec = true; mpiEnabled = false; @@ -15733,7 +15814,9 @@ in why3 = callPackage ../applications/science/logic/why3 {}; - yices = callPackage ../applications/science/logic/yices {}; + yices = callPackage ../applications/science/logic/yices { + gmp-static = gmp.override { withStatic = true; }; + }; z3 = callPackage ../applications/science/logic/z3 {}; z3_opt = callPackage ../applications/science/logic/z3_opt {}; @@ -15757,7 +15840,7 @@ in gtkwave = callPackage ../applications/science/electronics/gtkwave { }; kicad = callPackage ../applications/science/electronics/kicad { - wxGTK = wxGTK29; + wxGTK = wxGTK30; }; ngspice = callPackage ../applications/science/electronics/ngspice { }; @@ -16338,6 +16421,8 @@ in wmutils-core = callPackage ../tools/X11/wmutils-core { }; + wraith = callPackage ../applications/networking/irc/wraith { }; + wxmupen64plus = callPackage ../misc/emulators/wxmupen64plus { }; x2x = callPackage ../tools/X11/x2x { }; @@ -16433,4 +16518,5 @@ in togglesg-download = callPackage ../tools/misc/togglesg-download { }; + discord = callPackage ../applications/networking/instant-messengers/discord { }; } diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 49a4c6ffb1e0..3407a92e6a02 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -963,22 +963,6 @@ let }; }; - helm = melpaBuild rec { - pname = "helm"; - version = "20150105"; - src = fetchFromGitHub { - owner = "emacs-helm"; - repo = pname; - rev = "e5608ad86e7ca72446a4b1aa0faf604200ffe895"; - sha256 = "0n2kr6pyzcsi8pq6faxz2y8kicz1gmvj98fzzlq3a107dqqp25ay"; - }; - packageRequires = [ async ]; - meta = { - description = "An incremental completion and selection narrowing framework for Emacs"; - license = gpl3Plus; - }; - }; - helm-bibtex = melpaBuild rec { pname = "helm-bibtex"; version = "20151125"; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 5735aac8ad1a..1da324e5879e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3832,12 +3832,12 @@ let subPackages = [ "./" ]; }; - godep = buildFromGitHub { - rev = "5598a9815350896a2cdf9f4f1d0a3003ab9677fb"; - version = "2015-10-15"; + godep = buildFromGitHub rec { + version = "60"; + rev = "v${version}"; owner = "tools"; repo = "godep"; - sha256 = "0zc1ah5cvaqa3zw0ska89a40x445vwl1ixz8v42xi3zicx16ibwz"; + sha256 = "1v05185ikfcb3sz9ygcwm9x8la77i27ml1bg9fs6vvahjzyr0rif"; }; color = buildFromGitHub { @@ -3979,4 +3979,22 @@ let sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; propagatedBuildInputs = [ dbus ]; }; + + ingo = buildFromGitHub rec { + rev = "fab41e4e62cbef5d92998746ec25f7e195100f38"; + version = "2016-04-07"; + owner = "schachmat"; + repo = "ingo"; + sha256 = "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb"; + propagatedBuildInputs = [ ]; + }; + + wego = buildFromGitHub rec { + rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5"; + version = "2016-04-07"; + owner = "schachmat"; + repo = "wego"; + sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck"; + propagatedBuildInputs = [ go-colorable mattn.go-runewidth ingo ]; + }; }; in self diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 45b5fa314079..ce8e68b5b770 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -374,7 +374,13 @@ rec { lts-5_9 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.9.nix { }; }; - lts-5 = packages.lts-5_9; + lts-5_10 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.10.nix { }; + }; + lts-5_11 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-5.11.nix { }; + }; + lts-5 = packages.lts-5_11; lts = packages.lts-5; }; diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index e58df1f42c33..abd4a8123416 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -103,7 +103,7 @@ let makeFlagsArray=( LUA_LDIR="$out/share/lua/${lua.luaversion}" LUA_INC="-I${lua}/include" LUA_CDIR="$out/lib/lua/${lua.luaversion}" - EXPAT_INC="-I${expat}/include"); + EXPAT_INC="-I${expat.dev}/include"); ''; meta = { diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index 7cd7245edd8b..229461b82f7c 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -1,4 +1,4 @@ -{ self, fetchurl, fetchgit ? null, fetchFromGitHub, lib }: +{ self, fetchurl, fetchgit ? null, lib }: { by-spec."Base64"."~0.2.0" = @@ -8,7 +8,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/Base64/-/Base64-0.2.1.tgz"; + url = "https://registry.npmjs.org/Base64/-/Base64-0.2.1.tgz"; name = "Base64-0.2.1.tgz"; sha1 = "ba3a4230708e186705065e66babdd4c35cf60028"; }; @@ -27,7 +27,7 @@ version = "0.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz"; + url = "https://registry.npmjs.org/CSSselect/-/CSSselect-0.4.1.tgz"; name = "CSSselect-0.4.1.tgz"; sha1 = "f8ab7e1f8418ce63cda6eb7bd778a85d7ec492b2"; }; @@ -48,7 +48,7 @@ version = "0.4.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz"; + url = "https://registry.npmjs.org/CSSwhat/-/CSSwhat-0.4.7.tgz"; name = "CSSwhat-0.4.7.tgz"; sha1 = "867da0ff39f778613242c44cfea83f0aa4ebdf9b"; }; @@ -60,6 +60,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."JSON2"."^0.1.0" = + self.by-version."JSON2"."0.1.0"; + by-version."JSON2"."0.1.0" = self.buildNodePackage { + name = "JSON2-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/JSON2/-/JSON2-0.1.0.tgz"; + name = "JSON2-0.1.0.tgz"; + sha1 = "8d7493040a63d5835af75f47decb83ab6c8c0790"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."JSONPath"."^0.10.0" = self.by-version."JSONPath"."0.10.0"; by-version."JSONPath"."0.10.0" = self.buildNodePackage { @@ -67,7 +86,7 @@ version = "0.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/JSONPath/-/JSONPath-0.10.0.tgz"; + url = "https://registry.npmjs.org/JSONPath/-/JSONPath-0.10.0.tgz"; name = "JSONPath-0.10.0.tgz"; sha1 = "44959bdd94e3641858e7f2147d93c732f3505b1c"; }; @@ -80,6 +99,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."JSONStream"."1.x" = + self.by-version."JSONStream"."1.1.1"; + by-version."JSONStream"."1.1.1" = self.buildNodePackage { + name = "JSONStream-1.1.1"; + version = "1.1.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.1.1.tgz"; + name = "JSONStream-1.1.1.tgz"; + sha1 = "c98bfd88c8f1e1e8694e53c5baa6c8691553e59a"; + }; + deps = { + "jsonparse-1.2.0" = self.by-version."jsonparse"."1.2.0"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."JSONStream"."^0.8.4" = self.by-version."JSONStream"."0.8.4"; by-version."JSONStream"."0.8.4" = self.buildNodePackage { @@ -87,13 +127,13 @@ version = "0.8.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz"; + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-0.8.4.tgz"; name = "JSONStream-0.8.4.tgz"; sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd"; }; deps = { "jsonparse-0.0.5" = self.by-version."jsonparse"."0.0.5"; - "through-2.3.7" = self.by-version."through"."2.3.7"; + "through-2.3.8" = self.by-version."through"."2.3.8"; }; optionalDependencies = { }; @@ -101,83 +141,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."JSONStream"."~0.10.0" = - self.by-version."JSONStream"."0.10.0"; - by-version."JSONStream"."0.10.0" = self.buildNodePackage { - name = "JSONStream-0.10.0"; - version = "0.10.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/JSONStream/-/JSONStream-0.10.0.tgz"; - name = "JSONStream-0.10.0.tgz"; - sha1 = "74349d0d89522b71f30f0a03ff9bd20ca6f12ac0"; - }; - deps = { - "jsonparse-0.0.5" = self.by-version."jsonparse"."0.0.5"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."JSONStream"."~0.6.4" = - self.by-version."JSONStream"."0.6.4"; - by-version."JSONStream"."0.6.4" = self.buildNodePackage { - name = "JSONStream-0.6.4"; - version = "0.6.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/JSONStream/-/JSONStream-0.6.4.tgz"; - name = "JSONStream-0.6.4.tgz"; - sha1 = "4b2c8063f8f512787b2375f7ee9db69208fa2dcb"; - }; - deps = { - "jsonparse-0.0.5" = self.by-version."jsonparse"."0.0.5"; - "through-2.2.7" = self.by-version."through"."2.2.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."JSONStream"."~0.7.1" = - self.by-version."JSONStream"."0.7.4"; - by-version."JSONStream"."0.7.4" = self.buildNodePackage { - name = "JSONStream-0.7.4"; - version = "0.7.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/JSONStream/-/JSONStream-0.7.4.tgz"; - name = "JSONStream-0.7.4.tgz"; - sha1 = "734290e41511eea7c2cfe151fbf9a563a97b9786"; - }; - deps = { - "jsonparse-0.0.5" = self.by-version."jsonparse"."0.0.5"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."JSONStream"."~0.8.3" = - self.by-version."JSONStream"."0.8.4"; - by-spec."JSONStream"."~0.8.4" = - self.by-version."JSONStream"."0.8.4"; + by-spec."JSONStream"."^1.0.3" = + self.by-version."JSONStream"."1.1.1"; by-spec."abbrev"."1" = - self.by-version."abbrev"."1.0.5"; - by-version."abbrev"."1.0.5" = self.buildNodePackage { - name = "abbrev-1.0.5"; - version = "1.0.5"; + self.by-version."abbrev"."1.0.7"; + by-version."abbrev"."1.0.7" = self.buildNodePackage { + name = "abbrev-1.0.7"; + version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/abbrev/-/abbrev-1.0.5.tgz"; - name = "abbrev-1.0.5.tgz"; - sha1 = "5d8257bd9ebe435e698b2fa431afde4fe7b10b03"; + url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz"; + name = "abbrev-1.0.7.tgz"; + sha1 = "5b6035b2ee9d4fb5cf859f08a9be81b208491843"; }; deps = { }; @@ -188,13 +163,9 @@ cpu = [ ]; }; by-spec."abbrev"."1.0.x" = - self.by-version."abbrev"."1.0.5"; - by-spec."abbrev"."^1.0.5" = - self.by-version."abbrev"."1.0.5"; - by-spec."abbrev"."~1.0.4" = - self.by-version."abbrev"."1.0.5"; - by-spec."abbrev"."~1.0.5" = - self.by-version."abbrev"."1.0.5"; + self.by-version."abbrev"."1.0.7"; + by-spec."abbrev"."~1.0.7" = + self.by-version."abbrev"."1.0.7"; by-spec."abstract-leveldown"."~0.12.1" = self.by-version."abstract-leveldown"."0.12.4"; by-version."abstract-leveldown"."0.12.4" = self.buildNodePackage { @@ -202,7 +173,7 @@ version = "0.12.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz"; + url = "https://registry.npmjs.org/abstract-leveldown/-/abstract-leveldown-0.12.4.tgz"; name = "abstract-leveldown-0.12.4.tgz"; sha1 = "29e18e632e60e4e221d5810247852a63d7b2e410"; }; @@ -217,6 +188,27 @@ }; by-spec."abstract-leveldown"."~0.12.2" = self.by-version."abstract-leveldown"."0.12.4"; + by-spec."accepts"."1.1.4" = + self.by-version."accepts"."1.1.4"; + by-version."accepts"."1.1.4" = self.buildNodePackage { + name = "accepts-1.1.4"; + version = "1.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/accepts/-/accepts-1.1.4.tgz"; + name = "accepts-1.1.4.tgz"; + sha1 = "d71c96f7d41d0feda2c38cd14e8a27c04158df4a"; + }; + deps = { + "mime-types-2.0.14" = self.by-version."mime-types"."2.0.14"; + "negotiator-0.4.9" = self.by-version."negotiator"."0.4.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."accepts"."~1.0.4" = self.by-version."accepts"."1.0.7"; by-version."accepts"."1.0.7" = self.buildNodePackage { @@ -224,7 +216,7 @@ version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/accepts/-/accepts-1.0.7.tgz"; + url = "https://registry.npmjs.org/accepts/-/accepts-1.0.7.tgz"; name = "accepts-1.0.7.tgz"; sha1 = "5b501fb4f0704309964ccdb048172541208dab1a"; }; @@ -240,20 +232,20 @@ }; by-spec."accepts"."~1.0.7" = self.by-version."accepts"."1.0.7"; - by-spec."accepts"."~1.1.0" = - self.by-version."accepts"."1.1.4"; - by-version."accepts"."1.1.4" = self.buildNodePackage { - name = "accepts-1.1.4"; - version = "1.1.4"; + by-spec."accepts"."~1.2.10" = + self.by-version."accepts"."1.2.13"; + by-version."accepts"."1.2.13" = self.buildNodePackage { + name = "accepts-1.2.13"; + version = "1.2.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/accepts/-/accepts-1.1.4.tgz"; - name = "accepts-1.1.4.tgz"; - sha1 = "d71c96f7d41d0feda2c38cd14e8a27c04158df4a"; + url = "https://registry.npmjs.org/accepts/-/accepts-1.2.13.tgz"; + name = "accepts-1.2.13.tgz"; + sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea"; }; deps = { - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "negotiator-0.4.9" = self.by-version."negotiator"."0.4.9"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "negotiator-0.5.3" = self.by-version."negotiator"."0.5.3"; }; optionalDependencies = { }; @@ -261,24 +253,45 @@ os = [ ]; cpu = [ ]; }; - by-spec."accepts"."~1.1.2" = - self.by-version."accepts"."1.1.4"; - by-spec."accepts"."~1.1.3" = - self.by-version."accepts"."1.1.4"; - by-spec."accepts"."~1.2.5" = - self.by-version."accepts"."1.2.5"; - by-version."accepts"."1.2.5" = self.buildNodePackage { - name = "accepts-1.2.5"; - version = "1.2.5"; + by-spec."accepts"."~1.2.12" = + self.by-version."accepts"."1.2.13"; + by-spec."accepts"."~1.2.13" = + self.by-version."accepts"."1.2.13"; + by-spec."accepts"."~1.3.0" = + self.by-version."accepts"."1.3.2"; + by-version."accepts"."1.3.2" = self.buildNodePackage { + name = "accepts-1.3.2"; + version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/accepts/-/accepts-1.2.5.tgz"; - name = "accepts-1.2.5.tgz"; - sha1 = "bb07dc52c141ae562611a836ff433bcec8871ce9"; + url = "https://registry.npmjs.org/accepts/-/accepts-1.3.2.tgz"; + name = "accepts-1.3.2.tgz"; + sha1 = "9bfd7ddc497fdc1dad73a97b3f7cdc133929fac1"; + }; + deps = { + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "negotiator-0.6.0" = self.by-version."negotiator"."0.6.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."accepts"."~1.3.1" = + self.by-version."accepts"."1.3.2"; + by-spec."acorn"."0.11.0" = + self.by-version."acorn"."0.11.0"; + by-version."acorn"."0.11.0" = self.buildNodePackage { + name = "acorn-0.11.0"; + version = "0.11.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/acorn/-/acorn-0.11.0.tgz"; + name = "acorn-0.11.0.tgz"; + sha1 = "6e95f0253ad161ff0127db32983e5e2e5352d59a"; }; deps = { - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "negotiator-0.5.1" = self.by-version."negotiator"."0.5.1"; }; optionalDependencies = { }; @@ -287,15 +300,15 @@ cpu = [ ]; }; by-spec."acorn"."^1.0.1" = - self.by-version."acorn"."1.0.3"; - by-version."acorn"."1.0.3" = self.buildNodePackage { - name = "acorn-1.0.3"; - version = "1.0.3"; + self.by-version."acorn"."1.2.2"; + by-version."acorn"."1.2.2" = self.buildNodePackage { + name = "acorn-1.2.2"; + version = "1.2.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/acorn/-/acorn-1.0.3.tgz"; - name = "acorn-1.0.3.tgz"; - sha1 = "6f4cd7c4de8f43a92708ecd8180fe4aca36baff0"; + url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz"; + name = "acorn-1.2.2.tgz"; + sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014"; }; deps = { }; @@ -305,16 +318,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."acorn"."~0.9.0" = - self.by-version."acorn"."0.9.0"; - by-version."acorn"."0.9.0" = self.buildNodePackage { - name = "acorn-0.9.0"; - version = "0.9.0"; + by-spec."acorn"."^1.0.3" = + self.by-version."acorn"."1.2.2"; + by-spec."acorn"."^2.0.1" = + self.by-version."acorn"."2.7.0"; + by-version."acorn"."2.7.0" = self.buildNodePackage { + name = "acorn-2.7.0"; + version = "2.7.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/acorn/-/acorn-0.9.0.tgz"; - name = "acorn-0.9.0.tgz"; - sha1 = "67728e0acad6cc61dfb901c121837694db5b926b"; + url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz"; + name = "acorn-2.7.0.tgz"; + sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7"; }; deps = { }; @@ -324,19 +339,44 @@ os = [ ]; cpu = [ ]; }; - by-spec."acorn-globals"."^1.0.0" = - self.by-version."acorn-globals"."1.0.4"; - by-version."acorn-globals"."1.0.4" = self.buildNodePackage { - name = "acorn-globals-1.0.4"; - version = "1.0.4"; + by-spec."acorn"."^2.1.0" = + self.by-version."acorn"."2.7.0"; + by-spec."acorn"."^2.7.0" = + self.by-version."acorn"."2.7.0"; + by-spec."acorn"."^3.0.0" = + self.by-version."acorn"."3.0.4"; + by-version."acorn"."3.0.4" = self.buildNodePackage { + name = "acorn-3.0.4"; + version = "3.0.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/acorn/-/acorn-3.0.4.tgz"; + name = "acorn-3.0.4.tgz"; + sha1 = "04f244950fdb8faf85507ad481c2edee7aecdeec"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."acorn"."^3.0.4" = + self.by-version."acorn"."3.0.4"; + by-spec."acorn-globals"."^1.0.2" = + self.by-version."acorn-globals"."1.0.9"; + by-version."acorn-globals"."1.0.9" = self.buildNodePackage { + name = "acorn-globals-1.0.9"; + version = "1.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.4.tgz"; - name = "acorn-globals-1.0.4.tgz"; - sha1 = "4e8528e724b4fa24ba553ad479c4c78589afbfcf"; + url = "https://registry.npmjs.org/acorn-globals/-/acorn-globals-1.0.9.tgz"; + name = "acorn-globals-1.0.9.tgz"; + sha1 = "55bb5e98691507b74579d0513413217c380c54cf"; }; deps = { - "acorn-1.0.3" = self.by-version."acorn"."1.0.3"; + "acorn-2.7.0" = self.by-version."acorn"."2.7.0"; }; optionalDependencies = { }; @@ -345,7 +385,27 @@ cpu = [ ]; }; by-spec."acorn-globals"."^1.0.3" = - self.by-version."acorn-globals"."1.0.4"; + self.by-version."acorn-globals"."1.0.9"; + by-spec."acorn-jsx"."^2.0.1" = + self.by-version."acorn-jsx"."2.0.1"; + by-version."acorn-jsx"."2.0.1" = self.buildNodePackage { + name = "acorn-jsx-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-2.0.1.tgz"; + name = "acorn-jsx-2.0.1.tgz"; + sha1 = "0edf9878a5866bca625f52955a1ed9e7d8c5117e"; + }; + deps = { + "acorn-2.7.0" = self.by-version."acorn"."2.7.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."active-x-obfuscator"."0.0.1" = self.by-version."active-x-obfuscator"."0.0.1"; by-version."active-x-obfuscator"."0.0.1" = self.buildNodePackage { @@ -353,7 +413,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/active-x-obfuscator/-/active-x-obfuscator-0.0.1.tgz"; + url = "https://registry.npmjs.org/active-x-obfuscator/-/active-x-obfuscator-0.0.1.tgz"; name = "active-x-obfuscator-0.0.1.tgz"; sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a"; }; @@ -367,15 +427,15 @@ cpu = [ ]; }; by-spec."addr-to-ip-port"."^1.0.0" = - self.by-version."addr-to-ip-port"."1.4.1"; - by-version."addr-to-ip-port"."1.4.1" = self.buildNodePackage { - name = "addr-to-ip-port-1.4.1"; - version = "1.4.1"; + self.by-version."addr-to-ip-port"."1.4.2"; + by-version."addr-to-ip-port"."1.4.2" = self.buildNodePackage { + name = "addr-to-ip-port-1.4.2"; + version = "1.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.4.1.tgz"; - name = "addr-to-ip-port-1.4.1.tgz"; - sha1 = "19d0d3c813ac44c352b5df2f096c6d8f44117a86"; + url = "https://registry.npmjs.org/addr-to-ip-port/-/addr-to-ip-port-1.4.2.tgz"; + name = "addr-to-ip-port-1.4.2.tgz"; + sha1 = "7e46ff1f26b7a9f5e33fd839d57aef6303b4c692"; }; deps = { }; @@ -386,7 +446,26 @@ cpu = [ ]; }; by-spec."addr-to-ip-port"."^1.0.1" = - self.by-version."addr-to-ip-port"."1.4.1"; + self.by-version."addr-to-ip-port"."1.4.2"; + by-spec."addressparser"."1.0.1" = + self.by-version."addressparser"."1.0.1"; + by-version."addressparser"."1.0.1" = self.buildNodePackage { + name = "addressparser-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/addressparser/-/addressparser-1.0.1.tgz"; + name = "addressparser-1.0.1.tgz"; + sha1 = "47afbe1a2a9262191db6838e4fd1d39b40821746"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."addressparser"."^0.3.2" = self.by-version."addressparser"."0.3.2"; by-version."addressparser"."0.3.2" = self.buildNodePackage { @@ -394,7 +473,7 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz"; + url = "https://registry.npmjs.org/addressparser/-/addressparser-0.3.2.tgz"; name = "addressparser-0.3.2.tgz"; sha1 = "59873f35e8fcf6c7361c10239261d76e15348bb2"; }; @@ -413,7 +492,7 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/addressparser/-/addressparser-0.1.3.tgz"; + url = "https://registry.npmjs.org/addressparser/-/addressparser-0.1.3.tgz"; name = "addressparser-0.1.3.tgz"; sha1 = "9e9ab43d257e1ae784e1df5f580c9f5240f58874"; }; @@ -427,6 +506,25 @@ }; by-spec."addressparser"."~0.3.2" = self.by-version."addressparser"."0.3.2"; + by-spec."adm-zip"."0.2.1" = + self.by-version."adm-zip"."0.2.1"; + by-version."adm-zip"."0.2.1" = self.buildNodePackage { + name = "adm-zip-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.2.1.tgz"; + name = "adm-zip-0.2.1.tgz"; + sha1 = "e801cedeb5bd9a4e98d699c5c0f4239e2731dcbf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."adm-zip"."0.4.4" = self.by-version."adm-zip"."0.4.4"; by-version."adm-zip"."0.4.4" = self.buildNodePackage { @@ -434,7 +532,7 @@ version = "0.4.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/adm-zip/-/adm-zip-0.4.4.tgz"; + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.4.tgz"; name = "adm-zip-0.4.4.tgz"; sha1 = "a61ed5ae6905c3aea58b3a657d25033091052736"; }; @@ -446,14 +544,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."adm-zip"."~0.4.3" = + by-spec."adm-zip"."0.4.7" = self.by-version."adm-zip"."0.4.7"; by-version."adm-zip"."0.4.7" = self.buildNodePackage { name = "adm-zip-0.4.7"; version = "0.4.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz"; + url = "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz"; name = "adm-zip-0.4.7.tgz"; sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1"; }; @@ -465,7 +563,7 @@ os = [ ]; cpu = [ ]; }; - by-spec."adm-zip"."~0.4.4" = + by-spec."adm-zip"."~0.4.3" = self.by-version."adm-zip"."0.4.7"; by-spec."after"."0.8.1" = self.by-version."after"."0.8.1"; @@ -474,7 +572,7 @@ version = "0.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/after/-/after-0.8.1.tgz"; + url = "https://registry.npmjs.org/after/-/after-0.8.1.tgz"; name = "after-0.8.1.tgz"; sha1 = "ab5d4fb883f596816d3515f8f791c0af486dd627"; }; @@ -488,16 +586,37 @@ }; by-spec."after"."^0.8.1" = self.by-version."after"."0.8.1"; - by-spec."agent-base"."~1.0.1" = - self.by-version."agent-base"."1.0.1"; - by-version."agent-base"."1.0.1" = self.buildNodePackage { - name = "agent-base-1.0.1"; - version = "1.0.1"; + by-spec."agent-base"."2" = + self.by-version."agent-base"."2.0.1"; + by-version."agent-base"."2.0.1" = self.buildNodePackage { + name = "agent-base-2.0.1"; + version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/agent-base/-/agent-base-1.0.1.tgz"; - name = "agent-base-1.0.1.tgz"; - sha1 = "806dbee16f2f27506730e2eb78f537192706ccc3"; + url = "https://registry.npmjs.org/agent-base/-/agent-base-2.0.1.tgz"; + name = "agent-base-2.0.1.tgz"; + sha1 = "bd8f9e86a8eb221fffa07bd14befd55df142815e"; + }; + deps = { + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "semver-5.0.3" = self.by-version."semver"."5.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."agent-base"."~1.0.1" = + self.by-version."agent-base"."1.0.2"; + by-version."agent-base"."1.0.2" = self.buildNodePackage { + name = "agent-base-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/agent-base/-/agent-base-1.0.2.tgz"; + name = "agent-base-1.0.2.tgz"; + sha1 = "6890d3fb217004b62b70f8928e0fae5f8952a706"; }; deps = { }; @@ -508,19 +627,19 @@ cpu = [ ]; }; by-spec."airplay-js"."^0.2.5" = - self.by-version."airplay-js"."0.2.13"; - by-version."airplay-js"."0.2.13" = self.buildNodePackage { - name = "airplay-js-0.2.13"; - version = "0.2.13"; + self.by-version."airplay-js"."0.2.16"; + by-version."airplay-js"."0.2.16" = self.buildNodePackage { + name = "airplay-js-0.2.16"; + version = "0.2.16"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/airplay-js/-/airplay-js-0.2.13.tgz"; - name = "airplay-js-0.2.13.tgz"; - sha1 = "301837c6e1c40fe8f6657d3205da148a48261885"; + url = "https://registry.npmjs.org/airplay-js/-/airplay-js-0.2.16.tgz"; + name = "airplay-js-0.2.16.tgz"; + sha1 = "48566d5fa55a921d80187ad946f7e8f7555902a1"; }; deps = { - "mdns-js-0.3.1" = self.by-version."mdns-js"."0.3.1"; - "plist-with-patches-0.5.1" = self.by-version."plist-with-patches"."0.5.1"; + "mdns-js-0.5.0" = self.by-version."mdns-js"."0.5.0"; + "plist-1.2.0" = self.by-version."plist"."1.2.0"; }; optionalDependencies = { }; @@ -535,7 +654,7 @@ version = "0.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/alea/-/alea-0.0.9.tgz"; + url = "https://registry.npmjs.org/alea/-/alea-0.0.9.tgz"; name = "alea-0.0.9.tgz"; sha1 = "f738cb45f83430069f45cf69ccbf312dd57a9e1a"; }; @@ -547,16 +666,60 @@ os = [ ]; cpu = [ ]; }; - by-spec."almond"."*" = - self.by-version."almond"."0.3.1"; - by-version."almond"."0.3.1" = self.buildNodePackage { - name = "almond-0.3.1"; - version = "0.3.1"; + by-spec."aliasify"."^1.7.2" = + self.by-version."aliasify"."1.9.0"; + by-version."aliasify"."1.9.0" = self.buildNodePackage { + name = "aliasify-1.9.0"; + version = "1.9.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/almond/-/almond-0.3.1.tgz"; - name = "almond-0.3.1.tgz"; - sha1 = "ea2440ab1e2157f73e0e42a9a888ec8d148e7e15"; + url = "https://registry.npmjs.org/aliasify/-/aliasify-1.9.0.tgz"; + name = "aliasify-1.9.0.tgz"; + sha1 = "03aa1a5fe5b4cac604e3b967bc4c7ceacf957030"; + }; + deps = { + "browserify-transform-tools-1.5.3" = self.by-version."browserify-transform-tools"."1.5.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."align-text"."^0.1.1" = + self.by-version."align-text"."0.1.4"; + by-version."align-text"."0.1.4" = self.buildNodePackage { + name = "align-text-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz"; + name = "align-text-0.1.4.tgz"; + sha1 = "0cd90a561093f35d0a99256c22b7069433fad117"; + }; + deps = { + "kind-of-3.0.2" = self.by-version."kind-of"."3.0.2"; + "longest-1.0.1" = self.by-version."longest"."1.0.1"; + "repeat-string-1.5.4" = self.by-version."repeat-string"."1.5.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."align-text"."^0.1.3" = + self.by-version."align-text"."0.1.4"; + by-spec."almond"."*" = + self.by-version."almond"."0.3.2"; + by-version."almond"."0.3.2" = self.buildNodePackage { + name = "almond-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/almond/-/almond-0.3.2.tgz"; + name = "almond-0.3.2.tgz"; + sha1 = "e481c9f3446265e4056610dd6695fc26445f6be7"; }; deps = { }; @@ -566,7 +729,7 @@ os = [ ]; cpu = [ ]; }; - "almond" = self.by-version."almond"."0.3.1"; + "almond" = self.by-version."almond"."0.3.2"; by-spec."alter"."~0.2.0" = self.by-version."alter"."0.2.0"; by-version."alter"."0.2.0" = self.buildNodePackage { @@ -574,7 +737,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/alter/-/alter-0.2.0.tgz"; + url = "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz"; name = "alter-0.2.0.tgz"; sha1 = "c7588808617572034aae62480af26b1d4d1cb3cd"; }; @@ -588,15 +751,15 @@ cpu = [ ]; }; by-spec."amdefine"."*" = - self.by-version."amdefine"."0.1.0"; - by-version."amdefine"."0.1.0" = self.buildNodePackage { - name = "amdefine-0.1.0"; - version = "0.1.0"; + self.by-version."amdefine"."1.0.0"; + by-version."amdefine"."1.0.0" = self.buildNodePackage { + name = "amdefine-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/amdefine/-/amdefine-0.1.0.tgz"; - name = "amdefine-0.1.0.tgz"; - sha1 = "3ca9735cf1dde0edf7a4bf6641709c8024f9b227"; + url = "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz"; + name = "amdefine-1.0.0.tgz"; + sha1 = "fd17474700cb5cc9c2b709f0be9d23ce3c198c33"; }; deps = { }; @@ -606,9 +769,9 @@ os = [ ]; cpu = [ ]; }; - "amdefine" = self.by-version."amdefine"."0.1.0"; + "amdefine" = self.by-version."amdefine"."1.0.0"; by-spec."amdefine".">=0.0.4" = - self.by-version."amdefine"."0.1.0"; + self.by-version."amdefine"."1.0.0"; by-spec."amqp".">=0.1.3" = self.by-version."amqp"."0.2.4"; by-version."amqp"."0.2.4" = self.buildNodePackage { @@ -616,7 +779,7 @@ version = "0.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/amqp/-/amqp-0.2.4.tgz"; + url = "https://registry.npmjs.org/amqp/-/amqp-0.2.4.tgz"; name = "amqp-0.2.4.tgz"; sha1 = "b47e9f5b01f292ab18a8097ff0e72a54b4d03a89"; }; @@ -630,15 +793,15 @@ cpu = [ ]; }; by-spec."ansi"."^0.3.0" = - self.by-version."ansi"."0.3.0"; - by-version."ansi"."0.3.0" = self.buildNodePackage { - name = "ansi-0.3.0"; - version = "0.3.0"; + self.by-version."ansi"."0.3.1"; + by-version."ansi"."0.3.1" = self.buildNodePackage { + name = "ansi-0.3.1"; + version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi/-/ansi-0.3.0.tgz"; - name = "ansi-0.3.0.tgz"; - sha1 = "74b2f1f187c8553c7f95015bcb76009fb43d38e0"; + url = "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz"; + name = "ansi-0.3.1.tgz"; + sha1 = "0c42d4fb17160d5a9af1e484bace1c66922c1b21"; }; deps = { }; @@ -648,16 +811,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."ansi"."~0.1.2" = - self.by-version."ansi"."0.1.2"; - by-version."ansi"."0.1.2" = self.buildNodePackage { - name = "ansi-0.1.2"; - version = "0.1.2"; - bin = true; + by-spec."ansi"."^0.3.1" = + self.by-version."ansi"."0.3.1"; + by-spec."ansi"."~0.3.1" = + self.by-version."ansi"."0.3.1"; + by-spec."ansi-escapes"."^1.1.0" = + self.by-version."ansi-escapes"."1.3.0"; + by-version."ansi-escapes"."1.3.0" = self.buildNodePackage { + name = "ansi-escapes-1.3.0"; + version = "1.3.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi/-/ansi-0.1.2.tgz"; - name = "ansi-0.1.2.tgz"; - sha1 = "2627e29498f06e2a1c2ece9c21e28fd494430827"; + url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.3.0.tgz"; + name = "ansi-escapes-1.3.0.tgz"; + sha1 = "070883c337d5e4ce9e124fce2639267f2a14d554"; }; deps = { }; @@ -667,18 +834,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."ansi"."~0.3.0" = - self.by-version."ansi"."0.3.0"; - by-spec."ansi-color"."0.2.1" = - self.by-version."ansi-color"."0.2.1"; - by-version."ansi-color"."0.2.1" = self.buildNodePackage { - name = "ansi-color-0.2.1"; - version = "0.2.1"; + by-spec."ansi-regex"."*" = + self.by-version."ansi-regex"."2.0.0"; + by-version."ansi-regex"."2.0.0" = self.buildNodePackage { + name = "ansi-regex-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-color/-/ansi-color-0.2.1.tgz"; - name = "ansi-color-0.2.1.tgz"; - sha1 = "3e75c037475217544ed763a8db5709fa9ae5bf9a"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz"; + name = "ansi-regex-2.0.0.tgz"; + sha1 = "c5061b6e0ef8a81775e50f5d66151bf6bf371107"; }; deps = { }; @@ -695,7 +860,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-0.2.1.tgz"; name = "ansi-regex-0.2.1.tgz"; sha1 = "0d8e946967a3d8143f93e24e298525fc1b2235f9"; }; @@ -716,7 +881,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"; + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-1.1.1.tgz"; name = "ansi-regex-1.1.1.tgz"; sha1 = "41c847194646375e6a1a5d10c3ca054ef9fc980d"; }; @@ -732,8 +897,8 @@ self.by-version."ansi-regex"."1.1.1"; by-spec."ansi-regex"."^1.1.1" = self.by-version."ansi-regex"."1.1.1"; - by-spec."ansi-regex"."~1.1.1" = - self.by-version."ansi-regex"."1.1.1"; + by-spec."ansi-regex"."^2.0.0" = + self.by-version."ansi-regex"."2.0.0"; by-spec."ansi-remover"."*" = self.by-version."ansi-remover"."0.0.2"; by-version."ansi-remover"."0.0.2" = self.buildNodePackage { @@ -741,7 +906,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-remover/-/ansi-remover-0.0.2.tgz"; + url = "https://registry.npmjs.org/ansi-remover/-/ansi-remover-0.0.2.tgz"; name = "ansi-remover-0.0.2.tgz"; sha1 = "7020086289f10e195d85d828de065ccdd50e6e66"; }; @@ -761,7 +926,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-1.1.0.tgz"; name = "ansi-styles-1.1.0.tgz"; sha1 = "eaecbf66cd706882760b2f4691582b8f55d7a7de"; }; @@ -774,34 +939,15 @@ cpu = [ ]; }; by-spec."ansi-styles"."^2.0.1" = - self.by-version."ansi-styles"."2.0.1"; - by-version."ansi-styles"."2.0.1" = self.buildNodePackage { - name = "ansi-styles-2.0.1"; - version = "2.0.1"; + self.by-version."ansi-styles"."2.2.1"; + by-version."ansi-styles"."2.2.1" = self.buildNodePackage { + name = "ansi-styles-2.2.1"; + version = "2.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.0.1.tgz"; - name = "ansi-styles-2.0.1.tgz"; - sha1 = "b033f57f93e2d28adeb8bc11138fa13da0fd20a3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ansicolors"."~0.2.1" = - self.by-version."ansicolors"."0.2.1"; - by-version."ansicolors"."0.2.1" = self.buildNodePackage { - name = "ansicolors-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ansicolors/-/ansicolors-0.2.1.tgz"; - name = "ansicolors-0.2.1.tgz"; - sha1 = "be089599097b74a5c9c4a84a0cdbcdb62bd87aef"; + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; + name = "ansi-styles-2.2.1.tgz"; + sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; }; deps = { }; @@ -811,6 +957,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."ansi-styles"."^2.2.1" = + self.by-version."ansi-styles"."2.2.1"; by-spec."ansicolors"."~0.3.2" = self.by-version."ansicolors"."0.3.2"; by-version."ansicolors"."0.3.2" = self.buildNodePackage { @@ -818,7 +966,7 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; + url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; name = "ansicolors-0.3.2.tgz"; sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"; }; @@ -837,7 +985,7 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; + url = "https://registry.npmjs.org/ansistyles/-/ansistyles-0.1.3.tgz"; name = "ansistyles-0.1.3.tgz"; sha1 = "5de60415bda071bb37127854c864f41b23254539"; }; @@ -849,20 +997,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."anymatch"."^1.1.0" = - self.by-version."anymatch"."1.2.1"; - by-version."anymatch"."1.2.1" = self.buildNodePackage { - name = "anymatch-1.2.1"; - version = "1.2.1"; + by-spec."anymatch"."^1.3.0" = + self.by-version."anymatch"."1.3.0"; + by-version."anymatch"."1.3.0" = self.buildNodePackage { + name = "anymatch-1.3.0"; + version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/anymatch/-/anymatch-1.2.1.tgz"; - name = "anymatch-1.2.1.tgz"; - sha1 = "a7d77e8b62bc27cb5309d5ed905915b8da3f210f"; + url = "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz"; + name = "anymatch-1.3.0.tgz"; + sha1 = "a3e52fa39168c825ff57b0248126ce5a8ff95507"; }; deps = { - "arrify-1.0.0" = self.by-version."arrify"."1.0.0"; - "micromatch-2.1.6" = self.by-version."micromatch"."2.1.6"; + "arrify-1.0.1" = self.by-version."arrify"."1.0.1"; + "micromatch-2.3.7" = self.by-version."micromatch"."2.3.7"; }; optionalDependencies = { }; @@ -877,7 +1025,7 @@ version = "0.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/apparatus/-/apparatus-0.0.9.tgz"; + url = "https://registry.npmjs.org/apparatus/-/apparatus-0.0.9.tgz"; name = "apparatus-0.0.9.tgz"; sha1 = "37dcd25834ad0b651076596291db823eeb1908bd"; }; @@ -890,26 +1038,64 @@ os = [ ]; cpu = [ ]; }; - by-spec."archiver"."~0.12.0" = - self.by-version."archiver"."0.12.0"; - by-version."archiver"."0.12.0" = self.buildNodePackage { - name = "archiver-0.12.0"; - version = "0.12.0"; + by-spec."append-transform"."^0.3.0" = + self.by-version."append-transform"."0.3.0"; + by-version."append-transform"."0.3.0" = self.buildNodePackage { + name = "append-transform-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/archiver/-/archiver-0.12.0.tgz"; - name = "archiver-0.12.0.tgz"; - sha1 = "b8ccde2508cab9092bb7106630139c0f39a280cc"; + url = "https://registry.npmjs.org/append-transform/-/append-transform-0.3.0.tgz"; + name = "append-transform-0.3.0.tgz"; + sha1 = "d6933ce4a85f09445d9ccc4cc119051b7381a813"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."aproba"."~1.0.1" = + self.by-version."aproba"."1.0.1"; + by-version."aproba"."1.0.1" = self.buildNodePackage { + name = "aproba-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/aproba/-/aproba-1.0.1.tgz"; + name = "aproba-1.0.1.tgz"; + sha1 = "c4ac2cc5becfb8b099de7ef9f02790e7d32d99ef"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."archiver"."~0.14.0" = + self.by-version."archiver"."0.14.4"; + by-version."archiver"."0.14.4" = self.buildNodePackage { + name = "archiver-0.14.4"; + version = "0.14.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/archiver/-/archiver-0.14.4.tgz"; + name = "archiver-0.14.4.tgz"; + sha1 = "5b9ddb9f5ee1ceef21cb8f3b020e6240ecb4315c"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; "buffer-crc32-0.2.5" = self.by-version."buffer-crc32"."0.2.5"; - "glob-4.0.6" = self.by-version."glob"."4.0.6"; + "glob-4.3.5" = self.by-version."glob"."4.3.5"; "lazystream-0.1.0" = self.by-version."lazystream"."0.1.0"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "lodash-3.2.0" = self.by-version."lodash"."3.2.0"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "tar-stream-1.0.2" = self.by-version."tar-stream"."1.0.2"; - "zip-stream-0.4.1" = self.by-version."zip-stream"."0.4.1"; + "tar-stream-1.1.5" = self.by-version."tar-stream"."1.1.5"; + "zip-stream-0.5.2" = self.by-version."zip-stream"."0.5.2"; }; optionalDependencies = { }; @@ -917,33 +1103,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."archy"."0" = - self.by-version."archy"."0.0.2"; - by-version."archy"."0.0.2" = self.buildNodePackage { - name = "archy-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/archy/-/archy-0.0.2.tgz"; - name = "archy-0.0.2.tgz"; - sha1 = "910f43bf66141fc335564597abc189df44b3d35e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."archy"."1.0.0" = + by-spec."archy"."^1.0.0" = self.by-version."archy"."1.0.0"; by-version."archy"."1.0.0" = self.buildNodePackage { name = "archy-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; + url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; name = "archy-1.0.0.tgz"; sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; }; @@ -955,24 +1122,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."archy"."^1.0.0" = - self.by-version."archy"."1.0.0"; by-spec."archy"."~1.0.0" = self.by-version."archy"."1.0.0"; - by-spec."are-we-there-yet"."~1.0.0" = - self.by-version."are-we-there-yet"."1.0.4"; - by-version."are-we-there-yet"."1.0.4" = self.buildNodePackage { - name = "are-we-there-yet-1.0.4"; - version = "1.0.4"; + by-spec."are-we-there-yet"."~1.1.2" = + self.by-version."are-we-there-yet"."1.1.2"; + by-version."are-we-there-yet"."1.1.2" = self.buildNodePackage { + name = "are-we-there-yet-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.4.tgz"; - name = "are-we-there-yet-1.0.4.tgz"; - sha1 = "527fe389f7bcba90806106b99244eaa07e886f85"; + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.2.tgz"; + name = "are-we-there-yet-1.1.2.tgz"; + sha1 = "80e470e95a084794fe1899262c5667c6e88de1b3"; }; deps = { - "delegates-0.1.0" = self.by-version."delegates"."0.1.0"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "delegates-1.0.0" = self.by-version."delegates"."1.0.0"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -987,7 +1152,7 @@ version = "0.1.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz"; + url = "https://registry.npmjs.org/argparse/-/argparse-0.1.15.tgz"; name = "argparse-0.1.15.tgz"; sha1 = "28a1f72c43113e763220e5708414301c8840f0a1"; }; @@ -1001,6 +1166,47 @@ os = [ ]; cpu = [ ]; }; + by-spec."argparse"."1.0.4" = + self.by-version."argparse"."1.0.4"; + by-version."argparse"."1.0.4" = self.buildNodePackage { + name = "argparse-1.0.4"; + version = "1.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz"; + name = "argparse-1.0.4.tgz"; + sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; + }; + deps = { + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."argparse"."^1.0.2" = + self.by-version."argparse"."1.0.7"; + by-version."argparse"."1.0.7" = self.buildNodePackage { + name = "argparse-1.0.7"; + version = "1.0.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz"; + name = "argparse-1.0.7.tgz"; + sha1 = "c289506480557810f14a8bc62d7a06f63ed7f951"; + }; + deps = { + "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."argparse"."~ 0.1.11" = self.by-version."argparse"."0.1.16"; by-version."argparse"."0.1.16" = self.buildNodePackage { @@ -1008,7 +1214,7 @@ version = "0.1.16"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz"; + url = "https://registry.npmjs.org/argparse/-/argparse-0.1.16.tgz"; name = "argparse-0.1.16.tgz"; sha1 = "cfd01e0fbba3d6caed049fbd758d40f65196f57c"; }; @@ -1022,20 +1228,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."argparse"."~ 1.0.0" = - self.by-version."argparse"."1.0.2"; - by-version."argparse"."1.0.2" = self.buildNodePackage { - name = "argparse-1.0.2"; - version = "1.0.2"; + by-spec."argparse"."~1.0.2" = + self.by-version."argparse"."1.0.7"; + by-spec."arr-diff"."^2.0.0" = + self.by-version."arr-diff"."2.0.0"; + by-version."arr-diff"."2.0.0" = self.buildNodePackage { + name = "arr-diff-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/argparse/-/argparse-1.0.2.tgz"; - name = "argparse-1.0.2.tgz"; - sha1 = "bcfae39059656d1973d0b9e6a1a74154b5a9a136"; + url = "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz"; + name = "arr-diff-2.0.0.tgz"; + sha1 = "8f3b827f955a8bd669697e4a4256ac3ceae356cf"; }; deps = { - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; - "sprintf-js-1.0.2" = self.by-version."sprintf-js"."1.0.2"; + "arr-flatten-1.0.1" = self.by-version."arr-flatten"."1.0.1"; }; optionalDependencies = { }; @@ -1043,21 +1250,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."argparse"."~1.0.0" = - self.by-version."argparse"."1.0.2"; - by-spec."arr-diff"."^1.0.1" = - self.by-version."arr-diff"."1.0.1"; - by-version."arr-diff"."1.0.1" = self.buildNodePackage { - name = "arr-diff-1.0.1"; + by-spec."arr-flatten"."^1.0.1" = + self.by-version."arr-flatten"."1.0.1"; + by-version."arr-flatten"."1.0.1" = self.buildNodePackage { + name = "arr-flatten-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/arr-diff/-/arr-diff-1.0.1.tgz"; - name = "arr-diff-1.0.1.tgz"; - sha1 = "0b766ed5b26b242212febe9cbf2024a8d0349f6d"; + url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz"; + name = "arr-flatten-1.0.1.tgz"; + sha1 = "e5ffe54d45e19f32f216e91eb99c8ce892bb604b"; }; deps = { - "array-slice-0.2.3" = self.by-version."array-slice"."0.2.3"; }; optionalDependencies = { }; @@ -1072,7 +1276,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz"; + url = "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz"; name = "array-differ-1.0.0.tgz"; sha1 = "eff52e3758249d33be402b8bb8e564bb2b5d4031"; }; @@ -1091,7 +1295,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz"; + url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz"; name = "array-filter-0.0.1.tgz"; sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec"; }; @@ -1110,7 +1314,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz"; + url = "https://registry.npmjs.org/array-find/-/array-find-0.1.1.tgz"; name = "array-find-0.1.1.tgz"; sha1 = "dc813845ad5a9afc35cb92b786c878d81b5b82ce"; }; @@ -1122,6 +1326,103 @@ os = [ ]; cpu = [ ]; }; + by-spec."array-find-index"."^1.0.0" = + self.by-version."array-find-index"."1.0.1"; + by-version."array-find-index"."1.0.1" = self.buildNodePackage { + name = "array-find-index-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.1.tgz"; + name = "array-find-index-1.0.1.tgz"; + sha1 = "0bc25ddac941ec8a496ae258fd4ac188003ef3af"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."array-flatten"."1.1.0" = + self.by-version."array-flatten"."1.1.0"; + by-version."array-flatten"."1.1.0" = self.buildNodePackage { + name = "array-flatten-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.0.tgz"; + name = "array-flatten-1.1.0.tgz"; + sha1 = "ac3efac717b0e7bbdc778ce0bde7381ac6604393"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."array-flatten"."1.1.1" = + self.by-version."array-flatten"."1.1.1"; + by-version."array-flatten"."1.1.1" = self.buildNodePackage { + name = "array-flatten-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; + name = "array-flatten-1.1.1.tgz"; + sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."array-flatten"."2.0.0" = + self.by-version."array-flatten"."2.0.0"; + by-version."array-flatten"."2.0.0" = self.buildNodePackage { + name = "array-flatten-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-flatten/-/array-flatten-2.0.0.tgz"; + name = "array-flatten-2.0.0.tgz"; + sha1 = "24dd98b38b9194b59b2087ba40c21384d6b8a8dc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."array-index"."^1.0.0" = + self.by-version."array-index"."1.0.0"; + by-version."array-index"."1.0.0" = self.buildNodePackage { + name = "array-index-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-index/-/array-index-1.0.0.tgz"; + name = "array-index-1.0.0.tgz"; + sha1 = "ec56a749ee103e4e08c790b9c353df16055b97f9"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."array-indexofobject"."~0.0.1" = self.by-version."array-indexofobject"."0.0.1"; by-version."array-indexofobject"."0.0.1" = self.buildNodePackage { @@ -1129,7 +1430,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz"; + url = "https://registry.npmjs.org/array-indexofobject/-/array-indexofobject-0.0.1.tgz"; name = "array-indexofobject-0.0.1.tgz"; sha1 = "aaa128e62c9b3c358094568c219ff64fe489d42a"; }; @@ -1148,7 +1449,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz"; + url = "https://registry.npmjs.org/array-loop/-/array-loop-1.0.0.tgz"; name = "array-loop-1.0.0.tgz"; sha1 = "c033d086cf0d12af73aed5a99c0cedb37367b395"; }; @@ -1167,7 +1468,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz"; + url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz"; name = "array-map-0.0.0.tgz"; sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662"; }; @@ -1186,7 +1487,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz"; + url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz"; name = "array-reduce-0.0.0.tgz"; sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b"; }; @@ -1198,14 +1499,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."array-slice"."^0.2.2" = + by-spec."array-slice"."^0.2.3" = self.by-version."array-slice"."0.2.3"; by-version."array-slice"."0.2.3" = self.buildNodePackage { name = "array-slice-0.2.3"; version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz"; + url = "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz"; name = "array-slice-0.2.3.tgz"; sha1 = "dd3cfb80ed7973a75117cdac69b0b99ec86186f5"; }; @@ -1217,6 +1518,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."array-union"."^1.0.1" = + self.by-version."array-union"."1.0.1"; + by-version."array-union"."1.0.1" = self.buildNodePackage { + name = "array-union-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-union/-/array-union-1.0.1.tgz"; + name = "array-union-1.0.1.tgz"; + sha1 = "4d410fc8395cb247637124bade9e3f547d5d55f2"; + }; + deps = { + "array-uniq-1.0.2" = self.by-version."array-uniq"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."array-uniq"."^1.0.1" = self.by-version."array-uniq"."1.0.2"; by-version."array-uniq"."1.0.2" = self.buildNodePackage { @@ -1224,7 +1545,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz"; + url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz"; name = "array-uniq-1.0.2.tgz"; sha1 = "5fcc373920775723cfd64d65c64bef53bf9eba6d"; }; @@ -1238,6 +1559,25 @@ }; by-spec."array-uniq"."^1.0.2" = self.by-version."array-uniq"."1.0.2"; + by-spec."array-unique"."^0.2.1" = + self.by-version."array-unique"."0.2.1"; + by-version."array-unique"."0.2.1" = self.buildNodePackage { + name = "array-unique-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz"; + name = "array-unique-0.2.1.tgz"; + sha1 = "a1d97ccafcbc2625cc70fadceb36a50c58b01a53"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."arraybuffer.slice"."0.0.6" = self.by-version."arraybuffer.slice"."0.0.6"; by-version."arraybuffer.slice"."0.0.6" = self.buildNodePackage { @@ -1245,7 +1585,7 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz"; + url = "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz"; name = "arraybuffer.slice-0.0.6.tgz"; sha1 = "f33b2159f0532a3f3107a272c0ccfbd1ad2979ca"; }; @@ -1258,34 +1598,15 @@ cpu = [ ]; }; by-spec."arrify"."^1.0.0" = - self.by-version."arrify"."1.0.0"; - by-version."arrify"."1.0.0" = self.buildNodePackage { - name = "arrify-1.0.0"; - version = "1.0.0"; + self.by-version."arrify"."1.0.1"; + by-version."arrify"."1.0.1" = self.buildNodePackage { + name = "arrify-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/arrify/-/arrify-1.0.0.tgz"; - name = "arrify-1.0.0.tgz"; - sha1 = "d6c361518250802fa2147ea7fb67597128cb8c81"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."asap"."^1.0.0" = - self.by-version."asap"."1.0.0"; - by-version."asap"."1.0.0" = self.buildNodePackage { - name = "asap-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/asap/-/asap-1.0.0.tgz"; - name = "asap-1.0.0.tgz"; - sha1 = "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d"; + url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; + name = "arrify-1.0.1.tgz"; + sha1 = "898508da2226f380df904728456849c1501a4b0d"; }; deps = { }; @@ -1296,15 +1617,15 @@ cpu = [ ]; }; by-spec."asap"."^2.0.0" = - self.by-version."asap"."2.0.2"; - by-version."asap"."2.0.2" = self.buildNodePackage { - name = "asap-2.0.2"; - version = "2.0.2"; + self.by-version."asap"."2.0.3"; + by-version."asap"."2.0.3" = self.buildNodePackage { + name = "asap-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/asap/-/asap-2.0.2.tgz"; - name = "asap-2.0.2.tgz"; - sha1 = "4a028b746c1a0720151c2650c166c17ca032a2ef"; + url = "https://registry.npmjs.org/asap/-/asap-2.0.3.tgz"; + name = "asap-2.0.3.tgz"; + sha1 = "1fc1d1564ee11620dfca6d67029850913f9f4679"; }; deps = { }; @@ -1316,6 +1637,25 @@ }; by-spec."asap"."~1.0.0" = self.by-version."asap"."1.0.0"; + by-version."asap"."1.0.0" = self.buildNodePackage { + name = "asap-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/asap/-/asap-1.0.0.tgz"; + name = "asap-1.0.0.tgz"; + sha1 = "b2a45da5fdfa20b0496fc3768cc27c12fa916a7d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."asap"."~2.0.3" = + self.by-version."asap"."2.0.3"; by-spec."ascii-json"."~0.2" = self.by-version."ascii-json"."0.2.0"; by-version."ascii-json"."0.2.0" = self.buildNodePackage { @@ -1323,7 +1663,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ascii-json/-/ascii-json-0.2.0.tgz"; + url = "https://registry.npmjs.org/ascii-json/-/ascii-json-0.2.0.tgz"; name = "ascii-json-0.2.0.tgz"; sha1 = "10ddb361fd48f72595309fd10a6ea2e7bf2c9218"; }; @@ -1342,13 +1682,13 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz"; + url = "https://registry.npmjs.org/ascli/-/ascli-0.3.0.tgz"; name = "ascli-0.3.0.tgz"; sha1 = "5e66230e5219fe3e8952a4efb4f20fae596a813a"; }; deps = { "colour-0.7.1" = self.by-version."colour"."0.7.1"; - "optjs-3.2.1-boom" = self.by-version."optjs"."3.2.1-boom"; + "optjs-3.2.2" = self.by-version."optjs"."3.2.2"; }; optionalDependencies = { }; @@ -1363,7 +1703,7 @@ version = "0.1.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz"; + url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz"; name = "asn1-0.1.11.tgz"; sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; }; @@ -1382,7 +1722,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/asn1/-/asn1-0.2.1.tgz"; + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.1.tgz"; name = "asn1-0.2.1.tgz"; sha1 = "ecc73f75d31ea3c6ed9d47428db35fecc7b2c6dc"; }; @@ -1394,23 +1734,42 @@ os = [ ]; cpu = [ ]; }; - by-spec."asn1.js"."^1.0.0" = - self.by-version."asn1.js"."1.0.4"; - by-version."asn1.js"."1.0.4" = self.buildNodePackage { - name = "asn1.js-1.0.4"; - version = "1.0.4"; + by-spec."asn1".">=0.2.3 <0.3.0" = + self.by-version."asn1"."0.2.3"; + by-version."asn1"."0.2.3" = self.buildNodePackage { + name = "asn1-0.2.3"; + version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/asn1.js/-/asn1.js-1.0.4.tgz"; - name = "asn1.js-1.0.4.tgz"; - sha1 = "adc547dc24775be40db2ae921d6c990c387b32a8"; + url = "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; + name = "asn1-0.2.3.tgz"; + sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; }; deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."asn1.js"."^4.0.0" = + self.by-version."asn1.js"."4.5.2"; + by-version."asn1.js"."4.5.2" = self.buildNodePackage { + name = "asn1.js-4.5.2"; + version = "4.5.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/asn1.js/-/asn1.js-4.5.2.tgz"; + name = "asn1.js-4.5.2.tgz"; + sha1 = "17492bdfd4bb5f1d7e56ab6b085297fee9e640e9"; + }; + deps = { + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; "minimalistic-assert-1.0.0" = self.by-version."minimalistic-assert"."1.0.0"; }; optionalDependencies = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; }; peerDependencies = []; os = [ ]; @@ -1423,7 +1782,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/assert/-/assert-1.3.0.tgz"; + url = "https://registry.npmjs.org/assert/-/assert-1.3.0.tgz"; name = "assert-1.3.0.tgz"; sha1 = "03939a622582a812cc202320a0b9a56c9b815849"; }; @@ -1439,26 +1798,6 @@ "assert" = self.by-version."assert"."1.3.0"; by-spec."assert"."^1.1.1" = self.by-version."assert"."1.3.0"; - by-spec."assert"."~1.1.0" = - self.by-version."assert"."1.1.2"; - by-version."assert"."1.1.2" = self.buildNodePackage { - name = "assert-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/assert/-/assert-1.1.2.tgz"; - name = "assert-1.1.2.tgz"; - sha1 = "adaa04c46bb58c6dd1f294da3eb26e6228eb6e44"; - }; - deps = { - "util-0.10.3" = self.by-version."util"."0.10.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."assert"."~1.3.0" = self.by-version."assert"."1.3.0"; by-spec."assert-plus"."0.1.2" = @@ -1468,7 +1807,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/assert-plus/-/assert-plus-0.1.2.tgz"; + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.2.tgz"; name = "assert-plus-0.1.2.tgz"; sha1 = "d93ffdbb67ac5507779be316a7d65146417beef8"; }; @@ -1480,25 +1819,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."assert-plus"."0.1.3" = - self.by-version."assert-plus"."0.1.3"; - by-version."assert-plus"."0.1.3" = self.buildNodePackage { - name = "assert-plus-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/assert-plus/-/assert-plus-0.1.3.tgz"; - name = "assert-plus-0.1.3.tgz"; - sha1 = "32eba8ac83e50ae4f4b5babab1ae9aa0edec9fef"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."assert-plus"."0.1.5" = self.by-version."assert-plus"."0.1.5"; by-version."assert-plus"."0.1.5" = self.buildNodePackage { @@ -1506,7 +1826,7 @@ version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; name = "assert-plus-0.1.5.tgz"; sha1 = "ee74009413002d84cec7219c6ac811812e723160"; }; @@ -1518,18 +1838,62 @@ os = [ ]; cpu = [ ]; }; + by-spec."assert-plus"."0.1.x" = + self.by-version."assert-plus"."0.1.5"; + by-spec."assert-plus".">=0.1.5 <0.2.0" = + self.by-version."assert-plus"."0.1.5"; + by-spec."assert-plus".">=0.2.0 <0.3.0" = + self.by-version."assert-plus"."0.2.0"; + by-version."assert-plus"."0.2.0" = self.buildNodePackage { + name = "assert-plus-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; + name = "assert-plus-0.2.0.tgz"; + sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."assert-plus"."^0.1.5" = self.by-version."assert-plus"."0.1.5"; - by-spec."assertion-error"."1.0.0" = - self.by-version."assertion-error"."1.0.0"; - by-version."assertion-error"."1.0.0" = self.buildNodePackage { - name = "assertion-error-1.0.0"; + by-spec."assert-plus"."^0.2.0" = + self.by-version."assert-plus"."0.2.0"; + by-spec."assert-plus"."^1.0.0" = + self.by-version."assert-plus"."1.0.0"; + by-version."assert-plus"."1.0.0" = self.buildNodePackage { + name = "assert-plus-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/assertion-error/-/assertion-error-1.0.0.tgz"; - name = "assertion-error-1.0.0.tgz"; - sha1 = "c7f85438fdd466bc7ca16ab90c81513797a5d23b"; + url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; + name = "assert-plus-1.0.0.tgz"; + sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."assertion-error"."^1.0.1" = + self.by-version."assertion-error"."1.0.1"; + by-version."assertion-error"."1.0.1" = self.buildNodePackage { + name = "assertion-error-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz"; + name = "assertion-error-1.0.1.tgz"; + sha1 = "35aaeec33097f11f42399ecadf33faccd27f5c4c"; }; deps = { }; @@ -1546,7 +1910,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz"; + url = "https://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz"; name = "ast-traverse-0.1.1.tgz"; sha1 = "69cf2b8386f19dcda1bb1e05d68fe359d8897de6"; }; @@ -1558,6 +1922,44 @@ os = [ ]; cpu = [ ]; }; + by-spec."ast-types"."0.8.12" = + self.by-version."ast-types"."0.8.12"; + by-version."ast-types"."0.8.12" = self.buildNodePackage { + name = "ast-types-0.8.12"; + version = "0.8.12"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.8.12.tgz"; + name = "ast-types-0.8.12.tgz"; + sha1 = "a0d90e4351bb887716c83fd637ebf818af4adfcc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ast-types"."0.8.15" = + self.by-version."ast-types"."0.8.15"; + by-version."ast-types"."0.8.15" = self.buildNodePackage { + name = "ast-types-0.8.15"; + version = "0.8.15"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.8.15.tgz"; + name = "ast-types-0.8.15.tgz"; + sha1 = "8eef0827f04dff0ec8857ba925abe3fea6194e52"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."ast-types"."~0.3.22" = self.by-version."ast-types"."0.3.38"; by-version."ast-types"."0.3.38" = self.buildNodePackage { @@ -1565,7 +1967,7 @@ version = "0.3.38"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ast-types/-/ast-types-0.3.38.tgz"; + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.3.38.tgz"; name = "ast-types-0.3.38.tgz"; sha1 = "afe430e60b4db3ce2ed22ceea0f16f1c31763ef7"; }; @@ -1578,97 +1980,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."ast-types"."~0.6.1" = - self.by-version."ast-types"."0.6.16"; - by-version."ast-types"."0.6.16" = self.buildNodePackage { - name = "ast-types-0.6.16"; - version = "0.6.16"; + by-spec."astw"."^2.0.0" = + self.by-version."astw"."2.0.0"; + by-version."astw"."2.0.0" = self.buildNodePackage { + name = "astw-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ast-types/-/ast-types-0.6.16.tgz"; - name = "ast-types-0.6.16.tgz"; - sha1 = "04205b72eddd195a8feaa081f11d0294a24ded93"; + url = "https://registry.npmjs.org/astw/-/astw-2.0.0.tgz"; + name = "astw-2.0.0.tgz"; + sha1 = "08121ac8288d35611c0ceec663f6cd545604897d"; }; deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ast-types"."~0.7.0" = - self.by-version."ast-types"."0.7.6"; - by-version."ast-types"."0.7.6" = self.buildNodePackage { - name = "ast-types-0.7.6"; - version = "0.7.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ast-types/-/ast-types-0.7.6.tgz"; - name = "ast-types-0.7.6.tgz"; - sha1 = "e37945547f5d4ea954abf9400bc1b01ce79e47a5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."astw"."~0.0.0" = - self.by-version."astw"."0.0.0"; - by-version."astw"."0.0.0" = self.buildNodePackage { - name = "astw-0.0.0"; - version = "0.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/astw/-/astw-0.0.0.tgz"; - name = "astw-0.0.0.tgz"; - sha1 = "4490866a3ef116aaf91adba63ca7ddf70b6d59bd"; - }; - deps = { - "esprima-1.0.2" = self.by-version."esprima"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."astw"."~0.1.0" = - self.by-version."astw"."0.1.0"; - by-version."astw"."0.1.0" = self.buildNodePackage { - name = "astw-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/astw/-/astw-0.1.0.tgz"; - name = "astw-0.1.0.tgz"; - sha1 = "098be2758a6e9e9e15465d4fc4ba36265de11085"; - }; - deps = { - "esprima-six-0.0.3" = self.by-version."esprima-six"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."astw"."~1.1.0" = - self.by-version."astw"."1.1.0"; - by-version."astw"."1.1.0" = self.buildNodePackage { - name = "astw-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/astw/-/astw-1.1.0.tgz"; - name = "astw-1.1.0.tgz"; - sha1 = "f394778ab01c4ea467e64a614ed896ace0321a34"; - }; - deps = { - "esprima-fb-3001.1.0-dev-harmony-fb" = self.by-version."esprima-fb"."3001.1.0-dev-harmony-fb"; + "acorn-1.2.2" = self.by-version."acorn"."1.2.2"; }; optionalDependencies = { }; @@ -1677,17 +2001,18 @@ cpu = [ ]; }; by-spec."async"."*" = - self.by-version."async"."0.9.0"; - by-version."async"."0.9.0" = self.buildNodePackage { - name = "async-0.9.0"; - version = "0.9.0"; + self.by-version."async"."2.0.0-rc.3"; + by-version."async"."2.0.0-rc.3" = self.buildNodePackage { + name = "async-2.0.0-rc.3"; + version = "2.0.0-rc.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.9.0.tgz"; - name = "async-0.9.0.tgz"; - sha1 = "ac3613b1da9bed1b47510bb4651b8931e47146c7"; + url = "https://registry.npmjs.org/async/-/async-2.0.0-rc.3.tgz"; + name = "async-2.0.0-rc.3.tgz"; + sha1 = "1fae1160594dd47dbe5431d4726d66b10f374d89"; }; deps = { + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; }; optionalDependencies = { }; @@ -1695,7 +2020,7 @@ os = [ ]; cpu = [ ]; }; - "async" = self.by-version."async"."0.9.0"; + "async" = self.by-version."async"."2.0.0-rc.3"; by-spec."async"."0.1.18" = self.by-version."async"."0.1.18"; by-version."async"."0.1.18" = self.buildNodePackage { @@ -1703,7 +2028,7 @@ version = "0.1.18"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.1.18.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.1.18.tgz"; name = "async-0.1.18.tgz"; sha1 = "c59c923920b76d5bf23248c04433920c4d45086a"; }; @@ -1722,7 +2047,7 @@ version = "0.1.22"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.1.22.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.1.22.tgz"; name = "async-0.1.22.tgz"; sha1 = "0fc1aaa088a0e3ef0ebe2d8831bab0dcf8845061"; }; @@ -1743,7 +2068,7 @@ version = "0.2.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.2.9.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.2.9.tgz"; name = "async-0.2.9.tgz"; sha1 = "df63060fbf3d33286a76aaf6d55a2986d9ff8619"; }; @@ -1762,7 +2087,7 @@ version = "0.2.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-0.2.10.tgz"; + url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz"; name = "async-0.2.10.tgz"; sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1"; }; @@ -1776,42 +2101,14 @@ }; by-spec."async"."0.9.0" = self.by-version."async"."0.9.0"; - by-spec."async"."0.9.x" = - self.by-version."async"."0.9.0"; - by-spec."async".">=0.2.9" = - self.by-version."async"."0.9.0"; - by-spec."async".">=0.9.0 <1.0.0-0" = - self.by-version."async"."0.9.0"; - by-spec."async"."^0.9.0" = - self.by-version."async"."0.9.0"; - by-spec."async"."~0.1.22" = - self.by-version."async"."0.1.22"; - by-spec."async"."~0.2.0" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.2.10" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.2.6" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.2.7" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.2.8" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.2.9" = - self.by-version."async"."0.2.10"; - by-spec."async"."~0.9" = - self.by-version."async"."0.9.0"; - by-spec."async"."~0.9.0" = - self.by-version."async"."0.9.0"; - by-spec."async-each"."^0.1.5" = - self.by-version."async-each"."0.1.6"; - by-version."async-each"."0.1.6" = self.buildNodePackage { - name = "async-each-0.1.6"; - version = "0.1.6"; + by-version."async"."0.9.0" = self.buildNodePackage { + name = "async-0.9.0"; + version = "0.9.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz"; - name = "async-each-0.1.6.tgz"; - sha1 = "b67e99edcddf96541e44af56290cd7d5c6e70439"; + url = "https://registry.npmjs.org/async/-/async-0.9.0.tgz"; + name = "async-0.9.0.tgz"; + sha1 = "ac3613b1da9bed1b47510bb4651b8931e47146c7"; }; deps = { }; @@ -1821,19 +2118,188 @@ os = [ ]; cpu = [ ]; }; - by-spec."async-some"."~1.0.1" = - self.by-version."async-some"."1.0.1"; - by-version."async-some"."1.0.1" = self.buildNodePackage { - name = "async-some-1.0.1"; - version = "1.0.1"; + by-spec."async"."0.9.x" = + self.by-version."async"."0.9.2"; + by-version."async"."0.9.2" = self.buildNodePackage { + name = "async-0.9.2"; + version = "0.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/async-some/-/async-some-1.0.1.tgz"; - name = "async-some-1.0.1.tgz"; - sha1 = "8b54f08d46f0f9babc72ea9d646c245d23a4d9e5"; + url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; + name = "async-0.9.2.tgz"; + sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; }; deps = { - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."1.4.0" = + self.by-version."async"."1.4.0"; + by-version."async"."1.4.0" = self.buildNodePackage { + name = "async-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async/-/async-1.4.0.tgz"; + name = "async-1.4.0.tgz"; + sha1 = "35f86f83c59e0421d099cd9a91d8278fb578c00d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."1.4.2" = + self.by-version."async"."1.4.2"; + by-version."async"."1.4.2" = self.buildNodePackage { + name = "async-1.4.2"; + version = "1.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async/-/async-1.4.2.tgz"; + name = "async-1.4.2.tgz"; + sha1 = "6c9edcb11ced4f0dd2f2d40db0d49a109c088aab"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."1.5.2" = + self.by-version."async"."1.5.2"; + by-version."async"."1.5.2" = self.buildNodePackage { + name = "async-1.5.2"; + version = "1.5.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async/-/async-1.5.2.tgz"; + name = "async-1.5.2.tgz"; + sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."1.x" = + self.by-version."async"."1.5.2"; + by-spec."async".">=0.2.9" = + self.by-version."async"."1.5.2"; + by-spec."async".">=0.9.0 <1.0.0-0" = + self.by-version."async"."0.9.2"; + by-spec."async"."^0.9.0" = + self.by-version."async"."0.9.2"; + by-spec."async"."^1.3.0" = + self.by-version."async"."1.5.2"; + by-spec."async"."^1.4.0" = + self.by-version."async"."1.5.2"; + by-spec."async"."^1.4.2" = + self.by-version."async"."1.5.2"; + by-spec."async"."^1.5.0" = + self.by-version."async"."1.5.2"; + by-spec."async"."^1.5.2" = + self.by-version."async"."1.5.2"; + by-spec."async"."~0.1.22" = + self.by-version."async"."0.1.22"; + by-spec."async"."~0.2.10" = + self.by-version."async"."0.2.10"; + by-spec."async"."~0.2.6" = + self.by-version."async"."0.2.10"; + by-spec."async"."~0.2.7" = + self.by-version."async"."0.2.10"; + by-spec."async"."~0.2.9" = + self.by-version."async"."0.2.10"; + by-spec."async"."~0.9" = + self.by-version."async"."0.9.2"; + by-spec."async"."~0.9.0" = + self.by-version."async"."0.9.2"; + by-spec."async"."~1.0.0" = + self.by-version."async"."1.0.0"; + by-version."async"."1.0.0" = self.buildNodePackage { + name = "async-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; + name = "async-1.0.0.tgz"; + sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."~1.2.1" = + self.by-version."async"."1.2.1"; + by-version."async"."1.2.1" = self.buildNodePackage { + name = "async-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async/-/async-1.2.1.tgz"; + name = "async-1.2.1.tgz"; + sha1 = "a4816a17cd5ff516dfa2c7698a453369b9790de0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async"."~1.4.2" = + self.by-version."async"."1.4.2"; + by-spec."async"."~1.5.2" = + self.by-version."async"."1.5.2"; + by-spec."async-each"."^1.0.0" = + self.by-version."async-each"."1.0.0"; + by-version."async-each"."1.0.0" = self.buildNodePackage { + name = "async-each-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async-each/-/async-each-1.0.0.tgz"; + name = "async-each-1.0.0.tgz"; + sha1 = "b5319226c29d99277df63c8aee04093aa5f1d39f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."async-some"."~1.0.2" = + self.by-version."async-some"."1.0.2"; + by-version."async-some"."1.0.2" = self.buildNodePackage { + name = "async-some-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/async-some/-/async-some-1.0.2.tgz"; + name = "async-some-1.0.2.tgz"; + sha1 = "4d8a81620d5958791b5b98f802d3207776e95509"; + }; + deps = { + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; }; optionalDependencies = { }; @@ -1842,20 +2308,21 @@ cpu = [ ]; }; by-spec."aws-sdk"."*" = - self.by-version."aws-sdk"."2.1.24"; - by-version."aws-sdk"."2.1.24" = self.buildNodePackage { - name = "aws-sdk-2.1.24"; - version = "2.1.24"; + self.by-version."aws-sdk"."2.3.2"; + by-version."aws-sdk"."2.3.2" = self.buildNodePackage { + name = "aws-sdk-2.3.2"; + version = "2.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk/-/aws-sdk-2.1.24.tgz"; - name = "aws-sdk-2.1.24.tgz"; - sha1 = "06b7ae2fe05c7a862666af2fe86bb611d959770e"; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.3.2.tgz"; + name = "aws-sdk-2.3.2.tgz"; + sha1 = "2025fb6cfd40b077befb783b8de57d0c09a92575"; }; deps = { - "sax-0.5.3" = self.by-version."sax"."0.5.3"; - "xml2js-0.2.8" = self.by-version."xml2js"."0.2.8"; - "xmlbuilder-0.4.2" = self.by-version."xmlbuilder"."0.4.2"; + "sax-1.1.5" = self.by-version."sax"."1.1.5"; + "xml2js-0.4.15" = self.by-version."xml2js"."0.4.15"; + "xmlbuilder-2.6.2" = self.by-version."xmlbuilder"."2.6.2"; + "jmespath-0.15.0" = self.by-version."jmespath"."0.15.0"; }; optionalDependencies = { }; @@ -1863,7 +2330,7 @@ os = [ ]; cpu = [ ]; }; - "aws-sdk" = self.by-version."aws-sdk"."2.1.24"; + "aws-sdk" = self.by-version."aws-sdk"."2.3.2"; by-spec."aws-sdk"."2.0.5" = self.by-version."aws-sdk"."2.0.5"; by-version."aws-sdk"."2.0.5" = self.buildNodePackage { @@ -1871,7 +2338,7 @@ version = "2.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk/-/aws-sdk-2.0.5.tgz"; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.0.5.tgz"; name = "aws-sdk-2.0.5.tgz"; sha1 = "f3ebb1898d0632b7b6672e8d77728cbbb69f98c6"; }; @@ -1887,7 +2354,7 @@ cpu = [ ]; }; by-spec."aws-sdk"."2.x" = - self.by-version."aws-sdk"."2.1.24"; + self.by-version."aws-sdk"."2.3.2"; by-spec."aws-sdk".">=1.2.0 <2" = self.by-version."aws-sdk"."1.18.0"; by-version."aws-sdk"."1.18.0" = self.buildNodePackage { @@ -1895,7 +2362,7 @@ version = "1.18.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz"; + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-1.18.0.tgz"; name = "aws-sdk-1.18.0.tgz"; sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; }; @@ -1909,29 +2376,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."aws-sdk".">=2.0.0 >=2.0.17 <2.1.0" = - self.by-version."aws-sdk"."2.0.31"; - by-version."aws-sdk"."2.0.31" = self.buildNodePackage { - name = "aws-sdk-2.0.31"; - version = "2.0.31"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk/-/aws-sdk-2.0.31.tgz"; - name = "aws-sdk-2.0.31.tgz"; - sha1 = "e72cf1fdc69015bd9fd2bdf3d3b88c16507d268e"; - }; - deps = { - "xml2js-0.2.6" = self.by-version."xml2js"."0.2.6"; - "xmlbuilder-0.4.2" = self.by-version."xmlbuilder"."0.4.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."aws-sdk"."~2.0.17" = - self.by-version."aws-sdk"."2.0.31"; + by-spec."aws-sdk".">=2.0.0 >=2.2.43 <3.0.0" = + self.by-version."aws-sdk"."2.3.2"; + by-spec."aws-sdk"."^2.2.43" = + self.by-version."aws-sdk"."2.3.2"; by-spec."aws-sdk-apis"."3.x" = self.by-version."aws-sdk-apis"."3.1.10"; by-version."aws-sdk-apis"."3.1.10" = self.buildNodePackage { @@ -1939,7 +2387,7 @@ version = "3.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sdk-apis/-/aws-sdk-apis-3.1.10.tgz"; + url = "https://registry.npmjs.org/aws-sdk-apis/-/aws-sdk-apis-3.1.10.tgz"; name = "aws-sdk-apis-3.1.10.tgz"; sha1 = "4eed97f590a16cf080fd1b8d8cfdf2472de8ab0e"; }; @@ -1958,7 +2406,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz"; + url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz"; name = "aws-sign-0.2.0.tgz"; sha1 = "c55013856c8194ec854a0cbec90aab5a04ce3ac5"; }; @@ -1977,7 +2425,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sign/-/aws-sign-0.3.0.tgz"; + url = "https://registry.npmjs.org/aws-sign/-/aws-sign-0.3.0.tgz"; name = "aws-sign-0.3.0.tgz"; sha1 = "3d81ca69b474b1e16518728b51c24ff0bbedc6e9"; }; @@ -1996,7 +2444,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz"; + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz"; name = "aws-sign2-0.5.0.tgz"; sha1 = "c57103f7a17fc037f02d7c2e64b602ea223f7d63"; }; @@ -2008,16 +2456,95 @@ os = [ ]; cpu = [ ]; }; - by-spec."backbone"."*" = - self.by-version."backbone"."1.1.2"; - by-version."backbone"."1.1.2" = self.buildNodePackage { - name = "backbone-1.1.2"; - version = "1.1.2"; + by-spec."aws-sign2"."~0.6.0" = + self.by-version."aws-sign2"."0.6.0"; + by-version."aws-sign2"."0.6.0" = self.buildNodePackage { + name = "aws-sign2-0.6.0"; + version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/backbone/-/backbone-1.1.2.tgz"; - name = "backbone-1.1.2.tgz"; - sha1 = "c2c04c66bf87268fb82c177acebeff7d37ba6f2d"; + url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; + name = "aws-sign2-0.6.0.tgz"; + sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."aws4"."^1.2.1" = + self.by-version."aws4"."1.3.2"; + by-version."aws4"."1.3.2" = self.buildNodePackage { + name = "aws4-1.3.2"; + version = "1.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz"; + name = "aws4-1.3.2.tgz"; + sha1 = "d39e0bee412ced0e8ed94a23e314f313a95b9fd1"; + }; + deps = { + "lru-cache-4.0.1" = self.by-version."lru-cache"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."babel-plugin-syntax-flow"."^6.5.0" = + self.by-version."babel-plugin-syntax-flow"."6.5.0"; + by-version."babel-plugin-syntax-flow"."6.5.0" = self.buildNodePackage { + name = "babel-plugin-syntax-flow-6.5.0"; + version = "6.5.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/babel-plugin-syntax-flow/-/babel-plugin-syntax-flow-6.5.0.tgz"; + name = "babel-plugin-syntax-flow-6.5.0.tgz"; + sha1 = "07dfe735b45fce8905296296a40072afce82b215"; + }; + deps = { + "babel-runtime-5.8.38" = self.by-version."babel-runtime"."5.8.38"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."babel-runtime"."^5.0.0" = + self.by-version."babel-runtime"."5.8.38"; + by-version."babel-runtime"."5.8.38" = self.buildNodePackage { + name = "babel-runtime-5.8.38"; + version = "5.8.38"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-5.8.38.tgz"; + name = "babel-runtime-5.8.38.tgz"; + sha1 = "1c0b02eb63312f5f087ff20450827b425c9d4c19"; + }; + deps = { + "core-js-1.2.6" = self.by-version."core-js"."1.2.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."backbone"."*" = + self.by-version."backbone"."1.3.3"; + by-version."backbone"."1.3.3" = self.buildNodePackage { + name = "backbone-1.3.3"; + version = "1.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/backbone/-/backbone-1.3.3.tgz"; + name = "backbone-1.3.3.tgz"; + sha1 = "4cc80ea7cb1631ac474889ce40f2f8bc683b2999"; }; deps = { "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; @@ -2028,7 +2555,7 @@ os = [ ]; cpu = [ ]; }; - "backbone" = self.by-version."backbone"."1.1.2"; + "backbone" = self.by-version."backbone"."1.3.3"; by-spec."backo2"."1.0.2" = self.by-version."backo2"."1.0.2"; by-version."backo2"."1.0.2" = self.buildNodePackage { @@ -2036,7 +2563,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; + url = "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz"; name = "backo2-1.0.2.tgz"; sha1 = "31ab1ac8b129363463e35b3ebb69f4dfcfba7947"; }; @@ -2049,15 +2576,15 @@ cpu = [ ]; }; by-spec."backoff"."^2.4.0" = - self.by-version."backoff"."2.4.1"; - by-version."backoff"."2.4.1" = self.buildNodePackage { - name = "backoff-2.4.1"; - version = "2.4.1"; + self.by-version."backoff"."2.5.0"; + by-version."backoff"."2.5.0" = self.buildNodePackage { + name = "backoff-2.5.0"; + version = "2.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/backoff/-/backoff-2.4.1.tgz"; - name = "backoff-2.4.1.tgz"; - sha1 = "2f68c50e0dd789dbefe24200a62efb04d2456d68"; + url = "https://registry.npmjs.org/backoff/-/backoff-2.5.0.tgz"; + name = "backoff-2.5.0.tgz"; + sha1 = "f616eda9d3e4b66b8ca7fca79f695722c5f8e26f"; }; deps = { "precond-0.2.3" = self.by-version."precond"."0.2.3"; @@ -2075,7 +2602,7 @@ version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/backoff/-/backoff-2.3.0.tgz"; + url = "https://registry.npmjs.org/backoff/-/backoff-2.3.0.tgz"; name = "backoff-2.3.0.tgz"; sha1 = "ee7c7e38093f92e472859db635e7652454fc21ea"; }; @@ -2087,16 +2614,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."balanced-match"."^0.2.0" = - self.by-version."balanced-match"."0.2.0"; - by-version."balanced-match"."0.2.0" = self.buildNodePackage { - name = "balanced-match-0.2.0"; - version = "0.2.0"; + by-spec."balanced-match"."^0.3.0" = + self.by-version."balanced-match"."0.3.0"; + by-version."balanced-match"."0.3.0" = self.buildNodePackage { + name = "balanced-match-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz"; - name = "balanced-match-0.2.0.tgz"; - sha1 = "38f6730c03aab6d5edbb52bd934885e756d71674"; + url = "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz"; + name = "balanced-match-0.3.0.tgz"; + sha1 = "a91cdd1ebef1a86659e70ff4def01625fc2d6756"; }; deps = { }; @@ -2113,7 +2640,7 @@ version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base-converter/-/base-converter-1.1.2.tgz"; + url = "https://registry.npmjs.org/base-converter/-/base-converter-1.1.2.tgz"; name = "base-converter-1.1.2.tgz"; sha1 = "3abd417c6277c28bc3dedb6ac1af16d4b720615a"; }; @@ -2125,16 +2652,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."base62"."0.1.1" = - self.by-version."base62"."0.1.1"; - by-version."base62"."0.1.1" = self.buildNodePackage { - name = "base62-0.1.1"; - version = "0.1.1"; + by-spec."base62"."^1.1.0" = + self.by-version."base62"."1.1.0"; + by-version."base62"."1.1.0" = self.buildNodePackage { + name = "base62-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base62/-/base62-0.1.1.tgz"; - name = "base62-0.1.1.tgz"; - sha1 = "7b4174c2f94449753b11c2651c083da841a7b084"; + url = "https://registry.npmjs.org/base62/-/base62-1.1.0.tgz"; + name = "base62-1.1.0.tgz"; + sha1 = "4659de866558906d43fec61e07abd4397da74c19"; }; deps = { }; @@ -2151,7 +2678,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz"; + url = "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz"; name = "base64-arraybuffer-0.1.2.tgz"; sha1 = "474df4a9f2da24e05df3158c3b1db3c3cd46a154"; }; @@ -2163,44 +2690,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64-js"."0.0.2" = - self.by-version."base64-js"."0.0.2"; - by-version."base64-js"."0.0.2" = self.buildNodePackage { - name = "base64-js-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/base64-js/-/base64-js-0.0.2.tgz"; - name = "base64-js-0.0.2.tgz"; - sha1 = "024f0f72afa25b75f9c0ee73cd4f55ec1bed9784"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."base64-js"."0.0.6" = - self.by-version."base64-js"."0.0.6"; - by-version."base64-js"."0.0.6" = self.buildNodePackage { - name = "base64-js-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/base64-js/-/base64-js-0.0.6.tgz"; - name = "base64-js-0.0.6.tgz"; - sha1 = "7b859f79f0bbbd55867ba67a7fab397e24a20947"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."base64-js"."0.0.8" = self.by-version."base64-js"."0.0.8"; by-version."base64-js"."0.0.8" = self.buildNodePackage { @@ -2208,7 +2697,7 @@ version = "0.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"; + url = "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"; name = "base64-js-0.0.8.tgz"; sha1 = "1101e9544f4a76b1bc3b26d452ca96d7a35e7978"; }; @@ -2220,18 +2709,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64-js"."~0.0.4" = - self.by-version."base64-js"."0.0.8"; - by-spec."base64-url"."1" = - self.by-version."base64-url"."1.2.1"; - by-version."base64-url"."1.2.1" = self.buildNodePackage { - name = "base64-url-1.2.1"; - version = "1.2.1"; + by-spec."base64-js"."^1.0.2" = + self.by-version."base64-js"."1.1.2"; + by-version."base64-js"."1.1.2" = self.buildNodePackage { + name = "base64-js-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz"; - name = "base64-url-1.2.1.tgz"; - sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78"; + url = "https://registry.npmjs.org/base64-js/-/base64-js-1.1.2.tgz"; + name = "base64-js-1.1.2.tgz"; + sha1 = "d6400cac1c4c660976d90d07a04351d89395f5e8"; }; deps = { }; @@ -2243,6 +2730,42 @@ }; by-spec."base64-url"."1.2.1" = self.by-version."base64-url"."1.2.1"; + by-version."base64-url"."1.2.1" = self.buildNodePackage { + name = "base64-url-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/base64-url/-/base64-url-1.2.1.tgz"; + name = "base64-url-1.2.1.tgz"; + sha1 = "199fd661702a0e7b7dcae6e0698bb089c52f6d78"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."base64-url"."^1.2.1" = + self.by-version."base64-url"."1.2.2"; + by-version."base64-url"."1.2.2" = self.buildNodePackage { + name = "base64-url-1.2.2"; + version = "1.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/base64-url/-/base64-url-1.2.2.tgz"; + name = "base64-url-1.2.2.tgz"; + sha1 = "90af26ef8b0b67bc801b05eccf943345649008b3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."base64id"."0.1.0" = self.by-version."base64id"."0.1.0"; by-version."base64id"."0.1.0" = self.buildNodePackage { @@ -2250,7 +2773,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz"; + url = "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz"; name = "base64id-0.1.0.tgz"; sha1 = "02ce0fdeee0cef4f40080e1e73e834f0b1bfce3f"; }; @@ -2262,34 +2785,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64url"."0.0.3" = - self.by-version."base64url"."0.0.3"; - by-version."base64url"."0.0.3" = self.buildNodePackage { - name = "base64url-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-0.0.3.tgz"; - name = "base64url-0.0.3.tgz"; - sha1 = "50c20edac277dde1a0b15059954ced7a2d102d57"; - }; - deps = { - "tap-0.3.3" = self.by-version."tap"."0.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."base64url"."0.0.6" = + by-spec."base64url"."~0.0.4" = self.by-version."base64url"."0.0.6"; by-version."base64url"."0.0.6" = self.buildNodePackage { name = "base64url-0.0.6"; version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/base64url/-/base64url-0.0.6.tgz"; + url = "https://registry.npmjs.org/base64url/-/base64url-0.0.6.tgz"; name = "base64url-0.0.6.tgz"; sha1 = "9597b36b330db1c42477322ea87ea8027499b82b"; }; @@ -2301,8 +2804,27 @@ os = [ ]; cpu = [ ]; }; - by-spec."base64url"."~0.0.3" = - self.by-version."base64url"."0.0.6"; + by-spec."base64url"."~1.0.4" = + self.by-version."base64url"."1.0.6"; + by-version."base64url"."1.0.6" = self.buildNodePackage { + name = "base64url-1.0.6"; + version = "1.0.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/base64url/-/base64url-1.0.6.tgz"; + name = "base64url-1.0.6.tgz"; + sha1 = "d64d375d68a7c640d912e2358d170dca5bb54681"; + }; + deps = { + "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; + "meow-2.0.0" = self.by-version."meow"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."basic-auth"."1.0.0" = self.by-version."basic-auth"."1.0.0"; by-version."basic-auth"."1.0.0" = self.buildNodePackage { @@ -2310,7 +2832,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/basic-auth/-/basic-auth-1.0.0.tgz"; + url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.0.tgz"; name = "basic-auth-1.0.0.tgz"; sha1 = "111b2d9ff8e4e6d136b8c84ea5e096cb87351637"; }; @@ -2322,8 +2844,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."basic-auth"."1.0.3" = + self.by-version."basic-auth"."1.0.3"; + by-version."basic-auth"."1.0.3" = self.buildNodePackage { + name = "basic-auth-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/basic-auth/-/basic-auth-1.0.3.tgz"; + name = "basic-auth-1.0.3.tgz"; + sha1 = "41f55523e589405038ee3567958c62a5ed70551a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."basic-auth"."^1.0.0" = - self.by-version."basic-auth"."1.0.0"; + self.by-version."basic-auth"."1.0.3"; + by-spec."basic-auth"."~1.0.3" = + self.by-version."basic-auth"."1.0.3"; by-spec."basic-auth-connect"."1.0.0" = self.by-version."basic-auth-connect"."1.0.0"; by-version."basic-auth-connect"."1.0.0" = self.buildNodePackage { @@ -2331,7 +2874,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz"; + url = "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz"; name = "basic-auth-connect-1.0.0.tgz"; sha1 = "fdb0b43962ca7b40456a7c2bb48fe173da2d2122"; }; @@ -2350,7 +2893,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/batbelt/-/batbelt-0.0.2.tgz"; + url = "https://registry.npmjs.org/batbelt/-/batbelt-0.0.2.tgz"; name = "batbelt-0.0.2.tgz"; sha1 = "2285bf5438b03502e5c5a3cdaf3ad68bf0ad4a65"; }; @@ -2370,7 +2913,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/batch/-/batch-0.5.0.tgz"; + url = "https://registry.npmjs.org/batch/-/batch-0.5.0.tgz"; name = "batch-0.5.0.tgz"; sha1 = "fd2e05a7a5d696b4db9314013e285d8ff3557ec3"; }; @@ -2382,35 +2925,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."batch"."0.5.1" = - self.by-version."batch"."0.5.1"; - by-version."batch"."0.5.1" = self.buildNodePackage { - name = "batch-0.5.1"; - version = "0.5.1"; + by-spec."batch"."0.5.3" = + self.by-version."batch"."0.5.3"; + by-version."batch"."0.5.3" = self.buildNodePackage { + name = "batch-0.5.3"; + version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/batch/-/batch-0.5.1.tgz"; - name = "batch-0.5.1.tgz"; - sha1 = "36a4bab594c050fd7b507bca0db30c2d92af4ff2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."batch"."0.5.2" = - self.by-version."batch"."0.5.2"; - by-version."batch"."0.5.2" = self.buildNodePackage { - name = "batch-0.5.2"; - version = "0.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/batch/-/batch-0.5.2.tgz"; - name = "batch-0.5.2.tgz"; - sha1 = "546543dbe32118c83c7c7ca33a1f5c5d5ea963e9"; + url = "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz"; + name = "batch-0.5.3.tgz"; + sha1 = "3f3414f380321743bfc1042f9a83ff1d5824d464"; }; deps = { }; @@ -2420,42 +2944,22 @@ os = [ ]; cpu = [ ]; }; + by-spec."batch"."^0.5.3" = + self.by-version."batch"."0.5.3"; by-spec."bcrypt"."*" = - self.by-version."bcrypt"."0.8.2"; - by-version."bcrypt"."0.8.2" = self.buildNodePackage { - name = "bcrypt-0.8.2"; - version = "0.8.2"; + self.by-version."bcrypt"."0.8.5"; + by-version."bcrypt"."0.8.5" = self.buildNodePackage { + name = "bcrypt-0.8.5"; + version = "0.8.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bcrypt/-/bcrypt-0.8.2.tgz"; - name = "bcrypt-0.8.2.tgz"; - sha1 = "4732f0ddd1e0fb066dcd8ad9472d3d300fd96824"; + url = "https://registry.npmjs.org/bcrypt/-/bcrypt-0.8.5.tgz"; + name = "bcrypt-0.8.5.tgz"; + sha1 = "8e5b81b4db80e944f440005979ca8d58a961861d"; }; deps = { - "bindings-1.2.0" = self.by-version."bindings"."1.2.0"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bcrypt" = self.by-version."bcrypt"."0.8.2"; - by-spec."bcrypt"."0.8.1" = - self.by-version."bcrypt"."0.8.1"; - by-version."bcrypt"."0.8.1" = self.buildNodePackage { - name = "bcrypt-0.8.1"; - version = "0.8.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bcrypt/-/bcrypt-0.8.1.tgz"; - name = "bcrypt-0.8.1.tgz"; - sha1 = "384fa4fbc106ec87ccf8ee3d1e7e12d0ef8eeaaf"; - }; - deps = { - "bindings-1.0.0" = self.by-version."bindings"."1.0.0"; - "nan-1.5.0" = self.by-version."nan"."1.5.0"; + "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; + "nan-2.0.5" = self.by-version."nan"."2.0.5"; }; optionalDependencies = { }; @@ -2463,18 +2967,21 @@ os = [ ]; cpu = [ ]; }; + "bcrypt" = self.by-version."bcrypt"."0.8.5"; + by-spec."bcrypt"."0.8.5" = + self.by-version."bcrypt"."0.8.5"; by-spec."bcrypt".">=0.5.0" = - self.by-version."bcrypt"."0.8.2"; - by-spec."bcryptjs"."2.1.0" = - self.by-version."bcryptjs"."2.1.0"; - by-version."bcryptjs"."2.1.0" = self.buildNodePackage { - name = "bcryptjs-2.1.0"; - version = "2.1.0"; + self.by-version."bcrypt"."0.8.5"; + by-spec."bcryptjs"."2.3.0" = + self.by-version."bcryptjs"."2.3.0"; + by-version."bcryptjs"."2.3.0" = self.buildNodePackage { + name = "bcryptjs-2.3.0"; + version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bcryptjs/-/bcryptjs-2.1.0.tgz"; - name = "bcryptjs-2.1.0.tgz"; - sha1 = "5e6076196f6e3e957820aceb004410a7cf367042"; + url = "https://registry.npmjs.org/bcryptjs/-/bcryptjs-2.3.0.tgz"; + name = "bcryptjs-2.3.0.tgz"; + sha1 = "5826900cfef7abaf3425c72e4d464de509b8c2ec"; }; deps = { }; @@ -2485,15 +2992,15 @@ cpu = [ ]; }; by-spec."beeper"."^1.0.0" = - self.by-version."beeper"."1.0.0"; - by-version."beeper"."1.0.0" = self.buildNodePackage { - name = "beeper-1.0.0"; - version = "1.0.0"; + self.by-version."beeper"."1.1.0"; + by-version."beeper"."1.1.0" = self.buildNodePackage { + name = "beeper-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/beeper/-/beeper-1.0.0.tgz"; - name = "beeper-1.0.0.tgz"; - sha1 = "1ad2a27a9c7e545234119180afed61f80daaf02c"; + url = "https://registry.npmjs.org/beeper/-/beeper-1.1.0.tgz"; + name = "beeper-1.1.0.tgz"; + sha1 = "9ee6fc1ce7f54feaace7ce73588b056037866a2c"; }; deps = { }; @@ -2510,7 +3017,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz"; + url = "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz"; name = "benchmark-1.0.0.tgz"; sha1 = "2f1e2fa4c359f11122aa183082218e957e390c73"; }; @@ -2529,7 +3036,7 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bencode/-/bencode-0.6.0.tgz"; + url = "https://registry.npmjs.org/bencode/-/bencode-0.6.0.tgz"; name = "bencode-0.6.0.tgz"; sha1 = "04d6190e1d7467c56a969e1a94d1668076eac050"; }; @@ -2548,7 +3055,7 @@ version = "0.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bencode/-/bencode-0.7.0.tgz"; + url = "https://registry.npmjs.org/bencode/-/bencode-0.7.0.tgz"; name = "bencode-0.7.0.tgz"; sha1 = "811ed647c0118945e41bb4bbbdea9a2c78a17083"; }; @@ -2560,6 +3067,44 @@ os = [ ]; cpu = [ ]; }; + by-spec."bencode"."^0.8.0" = + self.by-version."bencode"."0.8.0"; + by-version."bencode"."0.8.0" = self.buildNodePackage { + name = "bencode-0.8.0"; + version = "0.8.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bencode/-/bencode-0.8.0.tgz"; + name = "bencode-0.8.0.tgz"; + sha1 = "3143448e82b0fadc745633ecc2a5f8fa87932f19"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bencode"."^0.9.0" = + self.by-version."bencode"."0.9.0"; + by-version."bencode"."0.9.0" = self.buildNodePackage { + name = "bencode-0.9.0"; + version = "0.9.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bencode/-/bencode-0.9.0.tgz"; + name = "bencode-0.9.0.tgz"; + sha1 = "6bd263e8e7b5362212e0541c2dbf75b330592bfe"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."better-assert"."~1.0.0" = self.by-version."better-assert"."1.0.2"; by-version."better-assert"."1.0.2" = self.buildNodePackage { @@ -2567,7 +3112,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; + url = "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz"; name = "better-assert-1.0.2.tgz"; sha1 = "40866b9e1b9e0b55b481894311e68faffaebc522"; }; @@ -2581,21 +3126,58 @@ cpu = [ ]; }; by-spec."biased-opener"."~0.2.2" = - self.by-version."biased-opener"."0.2.5"; - by-version."biased-opener"."0.2.5" = self.buildNodePackage { - name = "biased-opener-0.2.5"; - version = "0.2.5"; + self.by-version."biased-opener"."0.2.8"; + by-version."biased-opener"."0.2.8" = self.buildNodePackage { + name = "biased-opener-0.2.8"; + version = "0.2.8"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/biased-opener/-/biased-opener-0.2.5.tgz"; - name = "biased-opener-0.2.5.tgz"; - sha1 = "2a57fe55c6209ea5e178e13ba64bddac72c8f7c0"; + url = "https://registry.npmjs.org/biased-opener/-/biased-opener-0.2.8.tgz"; + name = "biased-opener-0.2.8.tgz"; + sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; + }; + deps = { + "browser-launcher2-0.4.6" = self.by-version."browser-launcher2"."0.4.6"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "x-default-browser-0.3.1" = self.by-version."x-default-browser"."0.3.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."big-integer"."^1.6.7" = + self.by-version."big-integer"."1.6.15"; + by-version."big-integer"."1.6.15" = self.buildNodePackage { + name = "big-integer-1.6.15"; + version = "1.6.15"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.15.tgz"; + name = "big-integer-1.6.15.tgz"; + sha1 = "33d27d3b7388dfcc4b86d3130c10740cec01fb9e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."big.js"."^3.0.2" = + self.by-version."big.js"."3.1.3"; + by-version."big.js"."3.1.3" = self.buildNodePackage { + name = "big.js-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/big.js/-/big.js-3.1.3.tgz"; + name = "big.js-3.1.3.tgz"; + sha1 = "4cada2193652eb3ca9ec8e55c9015669c9806978"; }; deps = { - "browser-launcher2-0.4.5" = self.by-version."browser-launcher2"."0.4.5"; - "minimist-1.1.0" = self.by-version."minimist"."1.1.0"; - "opener-1.4.1" = self.by-version."opener"."1.4.1"; - "x-default-browser-0.3.0" = self.by-version."x-default-browser"."0.3.0"; }; optionalDependencies = { }; @@ -2604,15 +3186,15 @@ cpu = [ ]; }; by-spec."bigi"."^1.1.0" = - self.by-version."bigi"."1.4.0"; - by-version."bigi"."1.4.0" = self.buildNodePackage { - name = "bigi-1.4.0"; - version = "1.4.0"; + self.by-version."bigi"."1.4.1"; + by-version."bigi"."1.4.1" = self.buildNodePackage { + name = "bigi-1.4.1"; + version = "1.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bigi/-/bigi-1.4.0.tgz"; - name = "bigi-1.4.0.tgz"; - sha1 = "90ac1aeac0a531216463bdb58f42c1e05c8407ac"; + url = "https://registry.npmjs.org/bigi/-/bigi-1.4.1.tgz"; + name = "bigi-1.4.1.tgz"; + sha1 = "726e8ab08d1fe1dfb8aa6bb6309bffecf93a21b7"; }; deps = { }; @@ -2629,7 +3211,7 @@ version = "1.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bignumber.js/-/bignumber.js-1.5.0.tgz"; + url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-1.5.0.tgz"; name = "bignumber.js-1.5.0.tgz"; sha1 = "ff41453ac7b19ee15cda7977e179ff1b0d11956d"; }; @@ -2641,37 +3223,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."binary"."^0.3.0" = - self.by-version."binary"."0.3.0"; - by-version."binary"."0.3.0" = self.buildNodePackage { - name = "binary-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/binary/-/binary-0.3.0.tgz"; - name = "binary-0.3.0.tgz"; - sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79"; - }; - deps = { - "chainsaw-0.1.0" = self.by-version."chainsaw"."0.1.0"; - "buffers-0.1.1" = self.by-version."buffers"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."binary-extensions"."^1.0.0" = - self.by-version."binary-extensions"."1.3.0"; - by-version."binary-extensions"."1.3.0" = self.buildNodePackage { - name = "binary-extensions-1.3.0"; - version = "1.3.0"; + self.by-version."binary-extensions"."1.4.0"; + by-version."binary-extensions"."1.4.0" = self.buildNodePackage { + name = "binary-extensions-1.4.0"; + version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/binary-extensions/-/binary-extensions-1.3.0.tgz"; - name = "binary-extensions-1.3.0.tgz"; - sha1 = "8c0fd7fa1bd27cfe1e6f2a1d38721647c80b2029"; + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.4.0.tgz"; + name = "binary-extensions-1.4.0.tgz"; + sha1 = "d733ccb628986d7b326d88656e0ddbd3aac351b7"; }; deps = { }; @@ -2688,7 +3249,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/binaryheap/-/binaryheap-0.0.3.tgz"; + url = "https://registry.npmjs.org/binaryheap/-/binaryheap-0.0.3.tgz"; name = "binaryheap-0.0.3.tgz"; sha1 = "0d6136c84e9f1a5a90c0b97178c3e00df59820d6"; }; @@ -2707,7 +3268,7 @@ version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; + url = "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz"; name = "bindings-1.2.1.tgz"; sha1 = "14ad6113812d2d37d72e67b4cacb4bb726505f11"; }; @@ -2719,98 +3280,39 @@ os = [ ]; cpu = [ ]; }; - by-spec."bindings"."1.0.0" = - self.by-version."bindings"."1.0.0"; - by-version."bindings"."1.0.0" = self.buildNodePackage { - name = "bindings-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bindings/-/bindings-1.0.0.tgz"; - name = "bindings-1.0.0.tgz"; - sha1 = "c3ccde60e9de6807c6f1aa4ef4843af29191c828"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bindings"."1.1.1" = - self.by-version."bindings"."1.1.1"; - by-version."bindings"."1.1.1" = self.buildNodePackage { - name = "bindings-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bindings/-/bindings-1.1.1.tgz"; - name = "bindings-1.1.1.tgz"; - sha1 = "951f7ae010302ffc50b265b124032017ed2bf6f3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bindings"."1.2.0" = - self.by-version."bindings"."1.2.0"; - by-version."bindings"."1.2.0" = self.buildNodePackage { - name = "bindings-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bindings/-/bindings-1.2.0.tgz"; - name = "bindings-1.2.0.tgz"; - sha1 = "c224fc5b349a84043779f97a6271d9d70da7636f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."bindings"."1.2.1" = self.by-version."bindings"."1.2.1"; by-spec."bindings"."1.2.x" = self.by-version."bindings"."1.2.1"; - by-spec."bindings".">=1.2.1" = - self.by-version."bindings"."1.2.1"; by-spec."bindings"."^1.2.1" = self.by-version."bindings"."1.2.1"; - by-spec."bindings"."~1.1.1" = - self.by-version."bindings"."1.1.1"; + by-spec."bindings"."~1.2.0" = + self.by-version."bindings"."1.2.1"; by-spec."bindings"."~1.2.1" = self.by-version."bindings"."1.2.1"; - by-spec."bip-pod".">=0.0.1" = - self.by-version."bip-pod"."0.3.16"; - by-version."bip-pod"."0.3.16" = self.buildNodePackage { - name = "bip-pod-0.3.16"; - version = "0.3.16"; + by-spec."bip-pod".">=0.4.14" = + self.by-version."bip-pod"."0.4.21"; + by-version."bip-pod"."0.4.21" = self.buildNodePackage { + name = "bip-pod-0.4.21"; + version = "0.4.21"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod/-/bip-pod-0.3.16.tgz"; - name = "bip-pod-0.3.16.tgz"; - sha1 = "eb7ba65721db3feeb57d9974960f55820cf5a6f7"; + url = "https://registry.npmjs.org/bip-pod/-/bip-pod-0.4.21.tgz"; + name = "bip-pod-0.4.21.tgz"; + sha1 = "a7ff8f243fea3d7265756b7ea99f795fe8eb364e"; }; deps = { "JSONPath-0.10.0" = self.by-version."JSONPath"."0.10.0"; - "cron-1.0.9" = self.by-version."cron"."1.0.9"; + "cron-1.1.0" = self.by-version."cron"."1.1.0"; "dns-0.2.2" = self.by-version."dns"."0.2.2"; - "extend-2.0.0" = self.by-version."extend"."2.0.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; "ipaddr.js-0.1.9" = self.by-version."ipaddr.js"."0.1.9"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "moment-2.10.2" = self.by-version."moment"."2.10.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "passport-0.3.2" = self.by-version."passport"."0.3.2"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; "tldtools-0.0.24" = self.by-version."tldtools"."0.0.24"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; "validator-1.5.1" = self.by-version."validator"."1.5.1"; @@ -2828,12 +3330,12 @@ version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-alchemy/-/bip-pod-alchemy-0.3.3.tgz"; + url = "https://registry.npmjs.org/bip-pod-alchemy/-/bip-pod-alchemy-0.3.3.tgz"; name = "bip-pod-alchemy-0.3.3.tgz"; sha1 = "408ab1d2e776790528e3d8de52ae0375610067aa"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -2842,29 +3344,6 @@ cpu = [ ]; }; "bip-pod-alchemy" = self.by-version."bip-pod-alchemy"."0.3.3"; - by-spec."bip-pod-bitly"."*" = - self.by-version."bip-pod-bitly"."0.3.4"; - by-version."bip-pod-bitly"."0.3.4" = self.buildNodePackage { - name = "bip-pod-bitly-0.3.4"; - version = "0.3.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-bitly/-/bip-pod-bitly-0.3.4.tgz"; - name = "bip-pod-bitly-0.3.4.tgz"; - sha1 = "15690871c9349e549d77656205bf7906ef6a5ec7"; - }; - deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-bitly-0.1.0" = self.by-version."passport-bitly"."0.1.0"; - "request-2.29.0" = self.by-version."request"."2.29.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bip-pod-bitly" = self.by-version."bip-pod-bitly"."0.3.4"; by-spec."bip-pod-chain"."*" = self.by-version."bip-pod-chain"."0.3.3"; by-version."bip-pod-chain"."0.3.3" = self.buildNodePackage { @@ -2872,12 +3351,12 @@ version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-chain/-/bip-pod-chain-0.3.3.tgz"; + url = "https://registry.npmjs.org/bip-pod-chain/-/bip-pod-chain-0.3.3.tgz"; name = "bip-pod-chain-0.3.3.tgz"; sha1 = "91c707e90af87bee3cbeed7376fc2aa5f13a6e92"; }; deps = { - "chain-node-3.1.0" = self.by-version."chain-node"."3.1.0"; + "chain-node-3.1.2" = self.by-version."chain-node"."3.1.2"; }; optionalDependencies = { }; @@ -2893,7 +3372,7 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-circonus/-/bip-pod-circonus-0.3.2.tgz"; + url = "https://registry.npmjs.org/bip-pod-circonus/-/bip-pod-circonus-0.3.2.tgz"; name = "bip-pod-circonus-0.3.2.tgz"; sha1 = "5c14d13f73a184323d7209558caba794e2e6ca46"; }; @@ -2907,15 +3386,15 @@ }; "bip-pod-circonus" = self.by-version."bip-pod-circonus"."0.3.2"; by-spec."bip-pod-coindesk"."*" = - self.by-version."bip-pod-coindesk"."0.3.2"; - by-version."bip-pod-coindesk"."0.3.2" = self.buildNodePackage { - name = "bip-pod-coindesk-0.3.2"; - version = "0.3.2"; + self.by-version."bip-pod-coindesk"."0.3.3"; + by-version."bip-pod-coindesk"."0.3.3" = self.buildNodePackage { + name = "bip-pod-coindesk-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-coindesk/-/bip-pod-coindesk-0.3.2.tgz"; - name = "bip-pod-coindesk-0.3.2.tgz"; - sha1 = "de1073a7521cd70f33648c3ed89f2e1f14226f89"; + url = "https://registry.npmjs.org/bip-pod-coindesk/-/bip-pod-coindesk-0.3.3.tgz"; + name = "bip-pod-coindesk-0.3.3.tgz"; + sha1 = "ec03674c79bbb84cbeec940af91aff28aa1505e2"; }; deps = { }; @@ -2925,7 +3404,7 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-coindesk" = self.by-version."bip-pod-coindesk"."0.3.2"; + "bip-pod-coindesk" = self.by-version."bip-pod-coindesk"."0.3.3"; by-spec."bip-pod-craigslist"."*" = self.by-version."bip-pod-craigslist"."0.3.3"; by-version."bip-pod-craigslist"."0.3.3" = self.buildNodePackage { @@ -2933,12 +3412,12 @@ version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-craigslist/-/bip-pod-craigslist-0.3.3.tgz"; + url = "https://registry.npmjs.org/bip-pod-craigslist/-/bip-pod-craigslist-0.3.3.tgz"; name = "bip-pod-craigslist-0.3.3.tgz"; sha1 = "e92becd2ad4ba05cd4895a2734ca270b7a850b4f"; }; deps = { - "node-craigslist-0.1.8" = self.by-version."node-craigslist"."0.1.8"; + "node-craigslist-0.1.9" = self.by-version."node-craigslist"."0.1.9"; }; optionalDependencies = { }; @@ -2954,7 +3433,7 @@ version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-crypto/-/bip-pod-crypto-0.3.3.tgz"; + url = "https://registry.npmjs.org/bip-pod-crypto/-/bip-pod-crypto-0.3.3.tgz"; name = "bip-pod-crypto-0.3.3.tgz"; sha1 = "b2e7e41af687ab4b4100c669039c816bc1ba887e"; }; @@ -2970,20 +3449,20 @@ by-spec."bip-pod-crypto".">=0.0.1" = self.by-version."bip-pod-crypto"."0.3.3"; by-spec."bip-pod-dropbox"."*" = - self.by-version."bip-pod-dropbox"."0.3.4"; - by-version."bip-pod-dropbox"."0.3.4" = self.buildNodePackage { - name = "bip-pod-dropbox-0.3.4"; - version = "0.3.4"; + self.by-version."bip-pod-dropbox"."0.3.10"; + by-version."bip-pod-dropbox"."0.3.10" = self.buildNodePackage { + name = "bip-pod-dropbox-0.3.10"; + version = "0.3.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-dropbox/-/bip-pod-dropbox-0.3.4.tgz"; - name = "bip-pod-dropbox-0.3.4.tgz"; - sha1 = "953528362ba46d42268fefc923c51624b78c0a0e"; + url = "https://registry.npmjs.org/bip-pod-dropbox/-/bip-pod-dropbox-0.3.10.tgz"; + name = "bip-pod-dropbox-0.3.10.tgz"; + sha1 = "d8b907772d28635b426958bc72d1e45d2d483760"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - "passport-dropbox-0.1.2" = self.by-version."passport-dropbox"."0.1.2"; + "passport-dropbox-2.0.0" = self.by-version."passport-dropbox"."2.0.0"; "dropbox-0.9.2" = self.by-version."dropbox"."0.9.2"; }; optionalDependencies = { @@ -2992,17 +3471,17 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-dropbox" = self.by-version."bip-pod-dropbox"."0.3.4"; + "bip-pod-dropbox" = self.by-version."bip-pod-dropbox"."0.3.10"; by-spec."bip-pod-email".">=0.0.1" = - self.by-version."bip-pod-email"."0.3.9"; - by-version."bip-pod-email"."0.3.9" = self.buildNodePackage { - name = "bip-pod-email-0.3.9"; - version = "0.3.9"; + self.by-version."bip-pod-email"."0.3.13"; + by-version."bip-pod-email"."0.3.13" = self.buildNodePackage { + name = "bip-pod-email-0.3.13"; + version = "0.3.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-email/-/bip-pod-email-0.3.9.tgz"; - name = "bip-pod-email-0.3.9.tgz"; - sha1 = "1d53e66b87873cedca5e0813de4ef5ce413df67e"; + url = "https://registry.npmjs.org/bip-pod-email/-/bip-pod-email-0.3.13.tgz"; + name = "bip-pod-email-0.3.13.tgz"; + sha1 = "aa7dde292d2d967ccfc41d337d18c6422adfbcf3"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; @@ -3023,7 +3502,7 @@ version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-embedly/-/bip-pod-embedly-0.3.3.tgz"; + url = "https://registry.npmjs.org/bip-pod-embedly/-/bip-pod-embedly-0.3.3.tgz"; name = "bip-pod-embedly-0.3.3.tgz"; sha1 = "b28dbec6f95a3ce868476f8ace7129b5675e84bb"; }; @@ -3045,14 +3524,14 @@ version = "0.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-evernote/-/bip-pod-evernote-0.3.5.tgz"; + url = "https://registry.npmjs.org/bip-pod-evernote/-/bip-pod-evernote-0.3.5.tgz"; name = "bip-pod-evernote-0.3.5.tgz"; sha1 = "81cc6d8d9c339410f97cb3eff8d82036b8f8d3ab"; }; deps = { - "evernote-1.25.4" = self.by-version."evernote"."1.25.4"; + "evernote-1.25.82" = self.by-version."evernote"."1.25.82"; "passport-evernote-0.1.1" = self.by-version."passport-evernote"."0.1.1"; - "q-1.2.0" = self.by-version."q"."1.2.0"; + "q-1.4.1" = self.by-version."q"."1.4.1"; "xml2json-0.5.1" = self.by-version."xml2json"."0.5.1"; }; optionalDependencies = { @@ -3063,22 +3542,22 @@ }; "bip-pod-evernote" = self.by-version."bip-pod-evernote"."0.3.5"; by-spec."bip-pod-facebook"."*" = - self.by-version."bip-pod-facebook"."0.3.6"; - by-version."bip-pod-facebook"."0.3.6" = self.buildNodePackage { - name = "bip-pod-facebook-0.3.6"; - version = "0.3.6"; + self.by-version."bip-pod-facebook"."0.3.10"; + by-version."bip-pod-facebook"."0.3.10" = self.buildNodePackage { + name = "bip-pod-facebook-0.3.10"; + version = "0.3.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-facebook/-/bip-pod-facebook-0.3.6.tgz"; - name = "bip-pod-facebook-0.3.6.tgz"; - sha1 = "3958520db3c94f4e5ac21c66f90c572b3354e125"; + url = "https://registry.npmjs.org/bip-pod-facebook/-/bip-pod-facebook-0.3.10.tgz"; + name = "bip-pod-facebook-0.3.10.tgz"; + sha1 = "688fa22e8a20c4d2a884f62d2f08a802a658c56c"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; "async-0.1.18" = self.by-version."async"."0.1.18"; - "fb-0.7.0" = self.by-version."fb"."0.7.0"; - "passport-facebook-2.0.0" = self.by-version."passport-facebook"."2.0.0"; + "fb-1.0.2" = self.by-version."fb"."1.0.2"; + "passport-facebook-2.1.0" = self.by-version."passport-facebook"."2.1.0"; "form-data-0.2.0" = self.by-version."form-data"."0.2.0"; }; optionalDependencies = { @@ -3087,21 +3566,22 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-facebook" = self.by-version."bip-pod-facebook"."0.3.6"; + "bip-pod-facebook" = self.by-version."bip-pod-facebook"."0.3.10"; by-spec."bip-pod-flickr"."*" = - self.by-version."bip-pod-flickr"."0.3.4"; - by-version."bip-pod-flickr"."0.3.4" = self.buildNodePackage { - name = "bip-pod-flickr-0.3.4"; - version = "0.3.4"; + self.by-version."bip-pod-flickr"."0.3.6"; + by-version."bip-pod-flickr"."0.3.6" = self.buildNodePackage { + name = "bip-pod-flickr-0.3.6"; + version = "0.3.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-flickr/-/bip-pod-flickr-0.3.4.tgz"; - name = "bip-pod-flickr-0.3.4.tgz"; - sha1 = "9e4aaa7ff3ef3a0d1cf78c1821342dd0d2168403"; + url = "https://registry.npmjs.org/bip-pod-flickr/-/bip-pod-flickr-0.3.6.tgz"; + name = "bip-pod-flickr-0.3.6.tgz"; + sha1 = "32978fb94d7bb06be3714cb682f4461631308243"; }; deps = { + "flickrapi-0.4.2" = self.by-version."flickrapi"."0.4.2"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; "passport-flickr-0.2.0" = self.by-version."passport-flickr"."0.2.0"; - "flickrapi-0.3.28" = self.by-version."flickrapi"."0.3.28"; }; optionalDependencies = { }; @@ -3109,24 +3589,25 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-flickr" = self.by-version."bip-pod-flickr"."0.3.4"; + "bip-pod-flickr" = self.by-version."bip-pod-flickr"."0.3.6"; by-spec."bip-pod-flow".">=0.0.1" = - self.by-version."bip-pod-flow"."0.3.8"; - by-version."bip-pod-flow"."0.3.8" = self.buildNodePackage { - name = "bip-pod-flow-0.3.8"; - version = "0.3.8"; + self.by-version."bip-pod-flow"."0.3.21"; + by-version."bip-pod-flow"."0.3.21" = self.buildNodePackage { + name = "bip-pod-flow-0.3.21"; + version = "0.3.21"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-flow/-/bip-pod-flow-0.3.8.tgz"; - name = "bip-pod-flow-0.3.8.tgz"; - sha1 = "cb935479cfcf2e8e3bd486258ee1499b04b32d41"; + url = "https://registry.npmjs.org/bip-pod-flow/-/bip-pod-flow-0.3.21.tgz"; + name = "bip-pod-flow-0.3.21.tgz"; + sha1 = "38a7a60dabd27b2b90dd177317a84329b9a7676f"; }; deps = { + "generate-schema-2.1.1" = self.by-version."generate-schema"."2.1.1"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "q-1.0.1" = self.by-version."q"."1.0.1"; "safe-regex-0.0.1" = self.by-version."safe-regex"."0.0.1"; - "xml2json-0.6.1" = self.by-version."xml2json"."0.6.1"; + "xml2json-0.9.0" = self.by-version."xml2json"."0.9.0"; }; optionalDependencies = { }; @@ -3135,18 +3616,18 @@ cpu = [ ]; }; by-spec."bip-pod-github"."*" = - self.by-version."bip-pod-github"."0.3.2"; - by-version."bip-pod-github"."0.3.2" = self.buildNodePackage { - name = "bip-pod-github-0.3.2"; - version = "0.3.2"; + self.by-version."bip-pod-github"."0.3.6"; + by-version."bip-pod-github"."0.3.6" = self.buildNodePackage { + name = "bip-pod-github-0.3.6"; + version = "0.3.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-github/-/bip-pod-github-0.3.2.tgz"; - name = "bip-pod-github-0.3.2.tgz"; - sha1 = "b949895d120bf57a6af77bb02a177eb94dc55a15"; + url = "https://registry.npmjs.org/bip-pod-github/-/bip-pod-github-0.3.6.tgz"; + name = "bip-pod-github-0.3.6.tgz"; + sha1 = "2b61c3adfd4fb98b11c22c4d1c9e562813725c2f"; }; deps = { - "passport-github-0.1.5" = self.by-version."passport-github"."0.1.5"; + "passport-github-1.1.0" = self.by-version."passport-github"."1.1.0"; }; optionalDependencies = { }; @@ -3154,22 +3635,23 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-github" = self.by-version."bip-pod-github"."0.3.2"; + "bip-pod-github" = self.by-version."bip-pod-github"."0.3.6"; by-spec."bip-pod-gmail"."*" = - self.by-version."bip-pod-gmail"."0.3.4"; - by-version."bip-pod-gmail"."0.3.4" = self.buildNodePackage { - name = "bip-pod-gmail-0.3.4"; - version = "0.3.4"; + self.by-version."bip-pod-gmail"."0.3.11"; + by-version."bip-pod-gmail"."0.3.11" = self.buildNodePackage { + name = "bip-pod-gmail-0.3.11"; + version = "0.3.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-gmail/-/bip-pod-gmail-0.3.4.tgz"; - name = "bip-pod-gmail-0.3.4.tgz"; - sha1 = "55aa29401865b048ed7864bff3e7cfdaabfd8e9e"; + url = "https://registry.npmjs.org/bip-pod-gmail/-/bip-pod-gmail-0.3.11.tgz"; + name = "bip-pod-gmail-0.3.11.tgz"; + sha1 = "8fe14274ce632805cb4dd2f5a10d5ef718a1e77c"; }; deps = { "googleapis-1.1.5" = self.by-version."googleapis"."1.1.5"; - "passport-google-oauth-0.2.0" = self.by-version."passport-google-oauth"."0.2.0"; + "passport-google-oauth-1.0.0" = self.by-version."passport-google-oauth"."1.0.0"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; + "q-1.4.1" = self.by-version."q"."1.4.1"; }; optionalDependencies = { }; @@ -3177,21 +3659,21 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-gmail" = self.by-version."bip-pod-gmail"."0.3.4"; + "bip-pod-gmail" = self.by-version."bip-pod-gmail"."0.3.11"; by-spec."bip-pod-google"."*" = - self.by-version."bip-pod-google"."0.3.1"; - by-version."bip-pod-google"."0.3.1" = self.buildNodePackage { - name = "bip-pod-google-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-google"."0.3.3"; + by-version."bip-pod-google"."0.3.3" = self.buildNodePackage { + name = "bip-pod-google-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-google/-/bip-pod-google-0.3.1.tgz"; - name = "bip-pod-google-0.3.1.tgz"; - sha1 = "f9b8b3265944614e6187aa66338930def55340c5"; + url = "https://registry.npmjs.org/bip-pod-google/-/bip-pod-google-0.3.3.tgz"; + name = "bip-pod-google-0.3.3.tgz"; + sha1 = "3551cf86b53101a05865f7b104f8b79bd18840a4"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-google-oauth-0.2.0" = self.by-version."passport-google-oauth"."0.2.0"; + "passport-google-oauth-1.0.0" = self.by-version."passport-google-oauth"."1.0.0"; "googleapis-0.8.0" = self.by-version."googleapis"."0.8.0"; }; optionalDependencies = { @@ -3200,22 +3682,23 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-google" = self.by-version."bip-pod-google"."0.3.1"; + "bip-pod-google" = self.by-version."bip-pod-google"."0.3.3"; by-spec."bip-pod-google-drive"."*" = - self.by-version."bip-pod-google-drive"."0.3.1"; - by-version."bip-pod-google-drive"."0.3.1" = self.buildNodePackage { - name = "bip-pod-google-drive-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-google-drive"."0.3.7"; + by-version."bip-pod-google-drive"."0.3.7" = self.buildNodePackage { + name = "bip-pod-google-drive-0.3.7"; + version = "0.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-google-drive/-/bip-pod-google-drive-0.3.1.tgz"; - name = "bip-pod-google-drive-0.3.1.tgz"; - sha1 = "337d723a780d76472d4e93e16a333a731611515b"; + url = "https://registry.npmjs.org/bip-pod-google-drive/-/bip-pod-google-drive-0.3.7.tgz"; + name = "bip-pod-google-drive-0.3.7.tgz"; + sha1 = "9d5ff3c5cd9d95995e5ce63e6a1519121c2085ce"; }; deps = { "googleapis-1.1.5" = self.by-version."googleapis"."1.1.5"; - "passport-google-oauth-0.2.0" = self.by-version."passport-google-oauth"."0.2.0"; + "passport-google-oauth-1.0.0" = self.by-version."passport-google-oauth"."1.0.0"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; + "edit-google-spreadsheet-0.2.21" = self.by-version."edit-google-spreadsheet"."0.2.21"; }; optionalDependencies = { }; @@ -3223,21 +3706,21 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-google-drive" = self.by-version."bip-pod-google-drive"."0.3.1"; + "bip-pod-google-drive" = self.by-version."bip-pod-google-drive"."0.3.7"; by-spec."bip-pod-html".">=0.0.1" = - self.by-version."bip-pod-html"."0.3.3"; - by-version."bip-pod-html"."0.3.3" = self.buildNodePackage { - name = "bip-pod-html-0.3.3"; - version = "0.3.3"; + self.by-version."bip-pod-html"."0.3.7"; + by-version."bip-pod-html"."0.3.7" = self.buildNodePackage { + name = "bip-pod-html-0.3.7"; + version = "0.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-html/-/bip-pod-html-0.3.3.tgz"; - name = "bip-pod-html-0.3.3.tgz"; - sha1 = "2f1c6c8ac4ab8fa954e8321948d22e5967cc78cd"; + url = "https://registry.npmjs.org/bip-pod-html/-/bip-pod-html-0.3.7.tgz"; + name = "bip-pod-html-0.3.7.tgz"; + sha1 = "3e22e5c87a85e3204f94f9d859bdecf5484e2716"; }; deps = { "favitest-1.0.7" = self.by-version."favitest"."1.0.7"; - "jsdom-0.10.6" = self.by-version."jsdom"."0.10.6"; + "jsdom-3.1.2" = self.by-version."jsdom"."3.1.2"; }; optionalDependencies = { }; @@ -3246,18 +3729,18 @@ cpu = [ ]; }; by-spec."bip-pod-http".">=0.0.1" = - self.by-version."bip-pod-http"."0.3.3"; - by-version."bip-pod-http"."0.3.3" = self.buildNodePackage { - name = "bip-pod-http-0.3.3"; - version = "0.3.3"; + self.by-version."bip-pod-http"."0.3.10"; + by-version."bip-pod-http"."0.3.10" = self.buildNodePackage { + name = "bip-pod-http-0.3.10"; + version = "0.3.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-http/-/bip-pod-http-0.3.3.tgz"; - name = "bip-pod-http-0.3.3.tgz"; - sha1 = "f1a6ada9c882407c7a370bf0ec5b6c5f2780fadb"; + url = "https://registry.npmjs.org/bip-pod-http/-/bip-pod-http-0.3.10.tgz"; + name = "bip-pod-http-0.3.10.tgz"; + sha1 = "c679c5192847db6cb6d93ed38b0800db819cc3be"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -3272,15 +3755,15 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-imgur/-/bip-pod-imgur-0.3.1.tgz"; + url = "https://registry.npmjs.org/bip-pod-imgur/-/bip-pod-imgur-0.3.1.tgz"; name = "bip-pod-imgur-0.3.1.tgz"; sha1 = "b5d297900e46eb331d7af1c5608b82db65be243d"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "passport-imgur-0.0.2" = self.by-version."passport-imgur"."0.0.2"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "passport-imgur-0.0.3" = self.by-version."passport-imgur"."0.0.3"; }; optionalDependencies = { }; @@ -3290,20 +3773,20 @@ }; "bip-pod-imgur" = self.by-version."bip-pod-imgur"."0.3.1"; by-spec."bip-pod-instagram"."*" = - self.by-version."bip-pod-instagram"."0.3.1"; - by-version."bip-pod-instagram"."0.3.1" = self.buildNodePackage { - name = "bip-pod-instagram-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-instagram"."0.3.4"; + by-version."bip-pod-instagram"."0.3.4" = self.buildNodePackage { + name = "bip-pod-instagram-0.3.4"; + version = "0.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-instagram/-/bip-pod-instagram-0.3.1.tgz"; - name = "bip-pod-instagram-0.3.1.tgz"; - sha1 = "558cc28fe3bc54d0e4f02746fe0b5c55f392576b"; + url = "https://registry.npmjs.org/bip-pod-instagram/-/bip-pod-instagram-0.3.4.tgz"; + name = "bip-pod-instagram-0.3.4.tgz"; + sha1 = "5211db13706f69d4bfafd1a8aa8aed16dacb4470"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-instagram-0.1.2" = self.by-version."passport-instagram"."0.1.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "passport-instagram-1.0.0" = self.by-version."passport-instagram"."1.0.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -3311,40 +3794,19 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-instagram" = self.by-version."bip-pod-instagram"."0.3.1"; + "bip-pod-instagram" = self.by-version."bip-pod-instagram"."0.3.4"; by-spec."bip-pod-kato"."*" = - self.by-version."bip-pod-kato"."0.3.1"; - by-version."bip-pod-kato"."0.3.1" = self.buildNodePackage { - name = "bip-pod-kato-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-kato/-/bip-pod-kato-0.3.1.tgz"; - name = "bip-pod-kato-0.3.1.tgz"; - sha1 = "e98c12e71ee00c8ff5dd6ed3919371474e67134a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bip-pod-kato" = self.by-version."bip-pod-kato"."0.3.1"; - by-spec."bip-pod-keenio"."*" = - self.by-version."bip-pod-keenio"."0.3.2"; - by-version."bip-pod-keenio"."0.3.2" = self.buildNodePackage { - name = "bip-pod-keenio-0.3.2"; + self.by-version."bip-pod-kato"."0.3.2"; + by-version."bip-pod-kato"."0.3.2" = self.buildNodePackage { + name = "bip-pod-kato-0.3.2"; version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-keenio/-/bip-pod-keenio-0.3.2.tgz"; - name = "bip-pod-keenio-0.3.2.tgz"; - sha1 = "61d54edd0e181c35d29285d6677feec60250d277"; + url = "https://registry.npmjs.org/bip-pod-kato/-/bip-pod-kato-0.3.2.tgz"; + name = "bip-pod-kato-0.3.2.tgz"; + sha1 = "1805eabaa437a2e99c5b6a5e224da89dc9c506e6"; }; deps = { - "keen.io-0.1.3" = self.by-version."keen.io"."0.1.3"; }; optionalDependencies = { }; @@ -3352,39 +3814,60 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-keenio" = self.by-version."bip-pod-keenio"."0.3.2"; + "bip-pod-kato" = self.by-version."bip-pod-kato"."0.3.2"; + by-spec."bip-pod-keenio"."*" = + self.by-version."bip-pod-keenio"."0.3.5"; + by-version."bip-pod-keenio"."0.3.5" = self.buildNodePackage { + name = "bip-pod-keenio-0.3.5"; + version = "0.3.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bip-pod-keenio/-/bip-pod-keenio-0.3.5.tgz"; + name = "bip-pod-keenio-0.3.5.tgz"; + sha1 = "762ea8d08d6d662af6e6978741dac4cfd762b24c"; + }; + deps = { + "keen-js-3.4.0" = self.by-version."keen-js"."3.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "bip-pod-keenio" = self.by-version."bip-pod-keenio"."0.3.5"; by-spec."bip-pod-mailchimp"."*" = - self.by-version."bip-pod-mailchimp"."0.3.3"; - by-version."bip-pod-mailchimp"."0.3.3" = self.buildNodePackage { - name = "bip-pod-mailchimp-0.3.3"; + self.by-version."bip-pod-mailchimp"."0.3.7"; + by-version."bip-pod-mailchimp"."0.3.7" = self.buildNodePackage { + name = "bip-pod-mailchimp-0.3.7"; + version = "0.3.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bip-pod-mailchimp/-/bip-pod-mailchimp-0.3.7.tgz"; + name = "bip-pod-mailchimp-0.3.7.tgz"; + sha1 = "5d477e491c289301f198138e444859259a953194"; + }; + deps = { + "passport-mailchimp-1.0.0" = self.by-version."passport-mailchimp"."1.0.0"; + "mailchimp-1.1.6" = self.by-version."mailchimp"."1.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "bip-pod-mailchimp" = self.by-version."bip-pod-mailchimp"."0.3.7"; + by-spec."bip-pod-mailgun"."*" = + self.by-version."bip-pod-mailgun"."0.3.3"; + by-version."bip-pod-mailgun"."0.3.3" = self.buildNodePackage { + name = "bip-pod-mailgun-0.3.3"; version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-mailchimp/-/bip-pod-mailchimp-0.3.3.tgz"; - name = "bip-pod-mailchimp-0.3.3.tgz"; - sha1 = "a6f74c075983882bec25d8a72a85193bbaaf5001"; - }; - deps = { - "passport-mailchimp-0.0.1" = self.by-version."passport-mailchimp"."0.0.1"; - "mailchimp-1.1.0" = self.by-version."mailchimp"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bip-pod-mailchimp" = self.by-version."bip-pod-mailchimp"."0.3.3"; - by-spec."bip-pod-mailgun"."*" = - self.by-version."bip-pod-mailgun"."0.3.1"; - by-version."bip-pod-mailgun"."0.3.1" = self.buildNodePackage { - name = "bip-pod-mailgun-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-mailgun/-/bip-pod-mailgun-0.3.1.tgz"; - name = "bip-pod-mailgun-0.3.1.tgz"; - sha1 = "5621de6a5f6824e00f9c7d7c2052bdfb3065afcb"; + url = "https://registry.npmjs.org/bip-pod-mailgun/-/bip-pod-mailgun-0.3.3.tgz"; + name = "bip-pod-mailgun-0.3.3.tgz"; + sha1 = "0ceac6a71c2b805771338e505451b526951f39a9"; }; deps = { "mailgun-js-0.6.9" = self.by-version."mailgun-js"."0.6.9"; @@ -3395,17 +3878,17 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-mailgun" = self.by-version."bip-pod-mailgun"."0.3.1"; + "bip-pod-mailgun" = self.by-version."bip-pod-mailgun"."0.3.3"; by-spec."bip-pod-math".">=0.0.1" = - self.by-version."bip-pod-math"."0.3.6"; - by-version."bip-pod-math"."0.3.6" = self.buildNodePackage { - name = "bip-pod-math-0.3.6"; - version = "0.3.6"; + self.by-version."bip-pod-math"."0.3.9"; + by-version."bip-pod-math"."0.3.9" = self.buildNodePackage { + name = "bip-pod-math-0.3.9"; + version = "0.3.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-math/-/bip-pod-math-0.3.6.tgz"; - name = "bip-pod-math-0.3.6.tgz"; - sha1 = "542fe249c8be8c22de09109a2a1f11484e5710e0"; + url = "https://registry.npmjs.org/bip-pod-math/-/bip-pod-math-0.3.9.tgz"; + name = "bip-pod-math-0.3.9.tgz"; + sha1 = "d8be80cf29e6c134786b114ba403ca89c1f22f5c"; }; deps = { "mathjs-0.19.0" = self.by-version."mathjs"."0.19.0"; @@ -3423,14 +3906,14 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-mixcloud/-/bip-pod-mixcloud-0.3.1.tgz"; + url = "https://registry.npmjs.org/bip-pod-mixcloud/-/bip-pod-mixcloud-0.3.1.tgz"; name = "bip-pod-mixcloud-0.3.1.tgz"; sha1 = "becc444edef870491704a6865ff26b8f476bfcfe"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "passport-mixcloud-0.0.2" = self.by-version."passport-mixcloud"."0.0.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -3446,12 +3929,12 @@ version = "0.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-mongodb/-/bip-pod-mongodb-0.3.4.tgz"; + url = "https://registry.npmjs.org/bip-pod-mongodb/-/bip-pod-mongodb-0.3.4.tgz"; name = "bip-pod-mongodb-0.3.4.tgz"; sha1 = "4df550d5d461b77796f17f0c5feadb6eb3c46e66"; }; deps = { - "mongodb-2.0.27" = self.by-version."mongodb"."2.0.27"; + "mongodb-2.0.55" = self.by-version."mongodb"."2.0.55"; "assert-1.3.0" = self.by-version."assert"."1.3.0"; }; optionalDependencies = { @@ -3468,7 +3951,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-numerous/-/bip-pod-numerous-0.3.1.tgz"; + url = "https://registry.npmjs.org/bip-pod-numerous/-/bip-pod-numerous-0.3.1.tgz"; name = "bip-pod-numerous-0.3.1.tgz"; sha1 = "c4ab3790cc1ec424bd16dd0826c3239be34b049c"; }; @@ -3483,15 +3966,15 @@ }; "bip-pod-numerous" = self.by-version."bip-pod-numerous"."0.3.1"; by-spec."bip-pod-pushbullet"."*" = - self.by-version."bip-pod-pushbullet"."0.3.1"; - by-version."bip-pod-pushbullet"."0.3.1" = self.buildNodePackage { - name = "bip-pod-pushbullet-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-pushbullet"."0.3.4"; + by-version."bip-pod-pushbullet"."0.3.4" = self.buildNodePackage { + name = "bip-pod-pushbullet-0.3.4"; + version = "0.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-pushbullet/-/bip-pod-pushbullet-0.3.1.tgz"; - name = "bip-pod-pushbullet-0.3.1.tgz"; - sha1 = "fb5770dc678c4d5e9d04079f7b589ab258472223"; + url = "https://registry.npmjs.org/bip-pod-pushbullet/-/bip-pod-pushbullet-0.3.4.tgz"; + name = "bip-pod-pushbullet-0.3.4.tgz"; + sha1 = "e0cd03c6029b346768987c769a28a86f23a9379f"; }; deps = { }; @@ -3501,7 +3984,7 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-pushbullet" = self.by-version."bip-pod-pushbullet"."0.3.1"; + "bip-pod-pushbullet" = self.by-version."bip-pod-pushbullet"."0.3.4"; by-spec."bip-pod-pusher"."*" = self.by-version."bip-pod-pusher"."0.3.2"; by-version."bip-pod-pusher"."0.3.2" = self.buildNodePackage { @@ -3509,12 +3992,12 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-pusher/-/bip-pod-pusher-0.3.2.tgz"; + url = "https://registry.npmjs.org/bip-pod-pusher/-/bip-pod-pusher-0.3.2.tgz"; name = "bip-pod-pusher-0.3.2.tgz"; sha1 = "8cc71c54d9b0f9bd0c39069f8007020be1fdf26f"; }; deps = { - "pusher-1.0.4" = self.by-version."pusher"."1.0.4"; + "pusher-1.2.1" = self.by-version."pusher"."1.2.1"; }; optionalDependencies = { }; @@ -3524,20 +4007,20 @@ }; "bip-pod-pusher" = self.by-version."bip-pod-pusher"."0.3.2"; by-spec."bip-pod-soundcloud"."*" = - self.by-version."bip-pod-soundcloud"."0.3.1"; - by-version."bip-pod-soundcloud"."0.3.1" = self.buildNodePackage { - name = "bip-pod-soundcloud-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-soundcloud"."0.3.3"; + by-version."bip-pod-soundcloud"."0.3.3" = self.buildNodePackage { + name = "bip-pod-soundcloud-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-soundcloud/-/bip-pod-soundcloud-0.3.1.tgz"; - name = "bip-pod-soundcloud-0.3.1.tgz"; - sha1 = "71c28498ea2872dd8b8d2dabd8ee2e741cb0001e"; + url = "https://registry.npmjs.org/bip-pod-soundcloud/-/bip-pod-soundcloud-0.3.3.tgz"; + name = "bip-pod-soundcloud-0.3.3.tgz"; + sha1 = "ab75df5bac1588d185957075422bfae24d9a4a13"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "passport-soundcloud-0.1.2" = self.by-version."passport-soundcloud"."0.1.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -3545,17 +4028,17 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-soundcloud" = self.by-version."bip-pod-soundcloud"."0.3.1"; + "bip-pod-soundcloud" = self.by-version."bip-pod-soundcloud"."0.3.3"; by-spec."bip-pod-statuscake"."*" = - self.by-version."bip-pod-statuscake"."0.3.1"; - by-version."bip-pod-statuscake"."0.3.1" = self.buildNodePackage { - name = "bip-pod-statuscake-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-statuscake"."0.3.2"; + by-version."bip-pod-statuscake"."0.3.2" = self.buildNodePackage { + name = "bip-pod-statuscake-0.3.2"; + version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-statuscake/-/bip-pod-statuscake-0.3.1.tgz"; - name = "bip-pod-statuscake-0.3.1.tgz"; - sha1 = "1cd5df2002c80f19acc54f473fd92dfe53b31e66"; + url = "https://registry.npmjs.org/bip-pod-statuscake/-/bip-pod-statuscake-0.3.2.tgz"; + name = "bip-pod-statuscake-0.3.2.tgz"; + sha1 = "728b05d5ea6d4a16d60cfba0caae6a6b5b2b5851"; }; deps = { }; @@ -3565,29 +4048,29 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-statuscake" = self.by-version."bip-pod-statuscake"."0.3.1"; - by-spec."bip-pod-syndication".">=0.0.1" = - self.by-version."bip-pod-syndication"."0.3.11"; - by-version."bip-pod-syndication"."0.3.11" = self.buildNodePackage { - name = "bip-pod-syndication-0.3.11"; - version = "0.3.11"; + "bip-pod-statuscake" = self.by-version."bip-pod-statuscake"."0.3.2"; + by-spec."bip-pod-syndication".">=0.4.5" = + self.by-version."bip-pod-syndication"."0.4.7"; + by-version."bip-pod-syndication"."0.4.7" = self.buildNodePackage { + name = "bip-pod-syndication-0.4.7"; + version = "0.4.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-syndication/-/bip-pod-syndication-0.3.11.tgz"; - name = "bip-pod-syndication-0.3.11.tgz"; - sha1 = "bc0491a5791bb9bdf8a88f3694c904128c7482ec"; + url = "https://registry.npmjs.org/bip-pod-syndication/-/bip-pod-syndication-0.4.7.tgz"; + name = "bip-pod-syndication-0.4.7.tgz"; + sha1 = "4c2ff80f808b74df8453c1213cbe8132d99f98e2"; }; deps = { - "ejs-2.3.1" = self.by-version."ejs"."2.3.1"; + "ejs-2.4.1" = self.by-version."ejs"."2.4.1"; "favitest-1.0.7" = self.by-version."favitest"."1.0.7"; - "feedparser-1.0.1" = self.by-version."feedparser"."1.0.1"; - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; + "feedparser-1.1.4" = self.by-version."feedparser"."1.1.4"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; "imagemagick-0.1.3" = self.by-version."imagemagick"."0.1.3"; - "moment-2.10.2" = self.by-version."moment"."2.10.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "rss-1.1.1" = self.by-version."rss"."1.1.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "rss-1.2.1" = self.by-version."rss"."1.2.1"; "send-0.9.3" = self.by-version."send"."0.9.3"; }; optionalDependencies = { @@ -3597,19 +4080,19 @@ cpu = [ ]; }; by-spec."bip-pod-templater".">=0.0.1" = - self.by-version."bip-pod-templater"."0.3.2"; - by-version."bip-pod-templater"."0.3.2" = self.buildNodePackage { - name = "bip-pod-templater-0.3.2"; - version = "0.3.2"; + self.by-version."bip-pod-templater"."0.3.3"; + by-version."bip-pod-templater"."0.3.3" = self.buildNodePackage { + name = "bip-pod-templater-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-templater/-/bip-pod-templater-0.3.2.tgz"; - name = "bip-pod-templater-0.3.2.tgz"; - sha1 = "8ccd67dc61b6a42edf1285a3f0417a6b08f6528a"; + url = "https://registry.npmjs.org/bip-pod-templater/-/bip-pod-templater-0.3.3.tgz"; + name = "bip-pod-templater-0.3.3.tgz"; + sha1 = "7a3f033867568c1513beaa4d525ebe1a29cbb479"; }; deps = { "html-md-3.0.2" = self.by-version."html-md"."3.0.2"; - "marked-0.3.3" = self.by-version."marked"."0.3.3"; + "marked-0.3.5" = self.by-version."marked"."0.3.5"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; }; @@ -3620,20 +4103,19 @@ cpu = [ ]; }; by-spec."bip-pod-time".">=0.0.1" = - self.by-version."bip-pod-time"."0.3.3"; - by-version."bip-pod-time"."0.3.3" = self.buildNodePackage { - name = "bip-pod-time-0.3.3"; - version = "0.3.3"; + self.by-version."bip-pod-time"."0.3.6"; + by-version."bip-pod-time"."0.3.6" = self.buildNodePackage { + name = "bip-pod-time-0.3.6"; + version = "0.3.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-time/-/bip-pod-time-0.3.3.tgz"; - name = "bip-pod-time-0.3.3.tgz"; - sha1 = "bfb67d85c65e3c4bad66e98050ecbda99d3971ab"; + url = "https://registry.npmjs.org/bip-pod-time/-/bip-pod-time-0.3.6.tgz"; + name = "bip-pod-time-0.3.6.tgz"; + sha1 = "3e5f0c8dc35fa60eec75d39e06e962aa1b2859bf"; }; deps = { "moment-2.5.1" = self.by-version."moment"."2.5.1"; - "moment-timezone-0.0.3" = self.by-version."moment-timezone"."0.0.3"; - "sugar-1.4.1" = self.by-version."sugar"."1.4.1"; + "moment-timezone-0.5.3" = self.by-version."moment-timezone"."0.5.3"; }; optionalDependencies = { }; @@ -3642,15 +4124,15 @@ cpu = [ ]; }; by-spec."bip-pod-todoist"."*" = - self.by-version."bip-pod-todoist"."0.3.2"; - by-version."bip-pod-todoist"."0.3.2" = self.buildNodePackage { - name = "bip-pod-todoist-0.3.2"; - version = "0.3.2"; + self.by-version."bip-pod-todoist"."0.3.3"; + by-version."bip-pod-todoist"."0.3.3" = self.buildNodePackage { + name = "bip-pod-todoist-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-todoist/-/bip-pod-todoist-0.3.2.tgz"; - name = "bip-pod-todoist-0.3.2.tgz"; - sha1 = "93878ef2a4360fa219dbab1367efe63caded66ce"; + url = "https://registry.npmjs.org/bip-pod-todoist/-/bip-pod-todoist-0.3.3.tgz"; + name = "bip-pod-todoist-0.3.3.tgz"; + sha1 = "0ed1585f576dcaf302bbad22eb8ba6cb01db1631"; }; deps = { }; @@ -3660,21 +4142,21 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-todoist" = self.by-version."bip-pod-todoist"."0.3.2"; + "bip-pod-todoist" = self.by-version."bip-pod-todoist"."0.3.3"; by-spec."bip-pod-trello"."*" = - self.by-version."bip-pod-trello"."0.3.1"; - by-version."bip-pod-trello"."0.3.1" = self.buildNodePackage { - name = "bip-pod-trello-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-trello"."0.3.5"; + by-version."bip-pod-trello"."0.3.5" = self.buildNodePackage { + name = "bip-pod-trello-0.3.5"; + version = "0.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-trello/-/bip-pod-trello-0.3.1.tgz"; - name = "bip-pod-trello-0.3.1.tgz"; - sha1 = "8e6f74c3c06cf1caeae94322a5a6033431f71b49"; + url = "https://registry.npmjs.org/bip-pod-trello/-/bip-pod-trello-0.3.5.tgz"; + name = "bip-pod-trello-0.3.5.tgz"; + sha1 = "fa64d3454c7bcb840b8c10e97d5770eb8781fa51"; }; deps = { - "passport-trello-0.1.4" = self.by-version."passport-trello"."0.1.4"; - "q-1.2.0" = self.by-version."q"."1.2.0"; + "passport-trello-0.1.5" = self.by-version."passport-trello"."0.1.5"; + "q-1.4.1" = self.by-version."q"."1.4.1"; }; optionalDependencies = { }; @@ -3682,22 +4164,22 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-trello" = self.by-version."bip-pod-trello"."0.3.1"; + "bip-pod-trello" = self.by-version."bip-pod-trello"."0.3.5"; by-spec."bip-pod-twilio"."*" = - self.by-version."bip-pod-twilio"."0.3.4"; - by-version."bip-pod-twilio"."0.3.4" = self.buildNodePackage { - name = "bip-pod-twilio-0.3.4"; - version = "0.3.4"; + self.by-version."bip-pod-twilio"."0.3.6"; + by-version."bip-pod-twilio"."0.3.6" = self.buildNodePackage { + name = "bip-pod-twilio-0.3.6"; + version = "0.3.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-twilio/-/bip-pod-twilio-0.3.4.tgz"; - name = "bip-pod-twilio-0.3.4.tgz"; - sha1 = "25e272d6808df5d4ed4461a8a1c70cf563df92e3"; + url = "https://registry.npmjs.org/bip-pod-twilio/-/bip-pod-twilio-0.3.6.tgz"; + name = "bip-pod-twilio-0.3.6.tgz"; + sha1 = "e1afd32ec11784157f33a1f45005ae152e07072c"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - "twilio-2.0.0" = self.by-version."twilio"."2.0.0"; + "twilio-2.9.1" = self.by-version."twilio"."2.9.1"; }; optionalDependencies = { }; @@ -3705,23 +4187,23 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-twilio" = self.by-version."bip-pod-twilio"."0.3.4"; + "bip-pod-twilio" = self.by-version."bip-pod-twilio"."0.3.6"; by-spec."bip-pod-twitter"."*" = - self.by-version."bip-pod-twitter"."0.3.7"; - by-version."bip-pod-twitter"."0.3.7" = self.buildNodePackage { - name = "bip-pod-twitter-0.3.7"; - version = "0.3.7"; + self.by-version."bip-pod-twitter"."0.3.13"; + by-version."bip-pod-twitter"."0.3.13" = self.buildNodePackage { + name = "bip-pod-twitter-0.3.13"; + version = "0.3.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-twitter/-/bip-pod-twitter-0.3.7.tgz"; - name = "bip-pod-twitter-0.3.7.tgz"; - sha1 = "4573eb279cd371ecd34d98bfe79eba36523a224c"; + url = "https://registry.npmjs.org/bip-pod-twitter/-/bip-pod-twitter-0.3.13.tgz"; + name = "bip-pod-twitter-0.3.13.tgz"; + sha1 = "5365851183d7353172d0ebf8dfb46c6d868fb003"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; "ntwitter-0.5.0" = self.by-version."ntwitter"."0.5.0"; - "passport-twitter-1.0.3" = self.by-version."passport-twitter"."1.0.3"; + "passport-twitter-1.0.4" = self.by-version."passport-twitter"."1.0.4"; }; optionalDependencies = { }; @@ -3729,7 +4211,7 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-twitter" = self.by-version."bip-pod-twitter"."0.3.7"; + "bip-pod-twitter" = self.by-version."bip-pod-twitter"."0.3.13"; by-spec."bip-pod-witai"."*" = self.by-version."bip-pod-witai"."0.3.1"; by-version."bip-pod-witai"."0.3.1" = self.buildNodePackage { @@ -3737,7 +4219,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-witai/-/bip-pod-witai-0.3.1.tgz"; + url = "https://registry.npmjs.org/bip-pod-witai/-/bip-pod-witai-0.3.1.tgz"; name = "bip-pod-witai-0.3.1.tgz"; sha1 = "e98cce9202b765c252424fac0c25982e0d57eb27"; }; @@ -3757,7 +4239,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-wordpress/-/bip-pod-wordpress-0.3.1.tgz"; + url = "https://registry.npmjs.org/bip-pod-wordpress/-/bip-pod-wordpress-0.3.1.tgz"; name = "bip-pod-wordpress-0.3.1.tgz"; sha1 = "e5b2335a4459892d7aae4363456a946ca398bf4e"; }; @@ -3774,20 +4256,20 @@ }; "bip-pod-wordpress" = self.by-version."bip-pod-wordpress"."0.3.1"; by-spec."bip-pod-zoho"."*" = - self.by-version."bip-pod-zoho"."0.3.1"; - by-version."bip-pod-zoho"."0.3.1" = self.buildNodePackage { - name = "bip-pod-zoho-0.3.1"; - version = "0.3.1"; + self.by-version."bip-pod-zoho"."0.3.2"; + by-version."bip-pod-zoho"."0.3.2" = self.buildNodePackage { + name = "bip-pod-zoho-0.3.2"; + version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bip-pod-zoho/-/bip-pod-zoho-0.3.1.tgz"; - name = "bip-pod-zoho-0.3.1.tgz"; - sha1 = "a7c4edd30388ef66798fb871bb67f793ea18a774"; + url = "https://registry.npmjs.org/bip-pod-zoho/-/bip-pod-zoho-0.3.2.tgz"; + name = "bip-pod-zoho-0.3.2.tgz"; + sha1 = "1ddb2aebaec1d65674fce7263f3a2e2390de5cea"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - "xml2json-0.6.1" = self.by-version."xml2json"."0.6.1"; + "xml2json-0.9.0" = self.by-version."xml2json"."0.9.0"; }; optionalDependencies = { }; @@ -3795,89 +4277,87 @@ os = [ ]; cpu = [ ]; }; - "bip-pod-zoho" = self.by-version."bip-pod-zoho"."0.3.1"; + "bip-pod-zoho" = self.by-version."bip-pod-zoho"."0.3.2"; by-spec."bipio"."*" = - self.by-version."bipio"."0.3.41"; - by-version."bipio"."0.3.41" = self.buildNodePackage { - name = "bipio-0.3.41"; - version = "0.3.41"; + self.by-version."bipio"."0.4.64"; + by-version."bipio"."0.4.64" = self.buildNodePackage { + name = "bipio-0.4.64"; + version = "0.4.64"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bipio/-/bipio-0.3.41.tgz"; - name = "bipio-0.3.41.tgz"; - sha1 = "8f2a1497f7ce8ce3d6b8bafa8bb6e2d2de27b5b3"; + url = "https://registry.npmjs.org/bipio/-/bipio-0.4.64.tgz"; + name = "bipio-0.4.64.tgz"; + sha1 = "e9aac42865e1cb37c9fda18c059cab4961e9bf18"; }; deps = { "JSONPath-0.10.0" = self.by-version."JSONPath"."0.10.0"; "amqp-0.2.4" = self.by-version."amqp"."0.2.4"; "async-0.1.18" = self.by-version."async"."0.1.18"; "base-converter-1.1.2" = self.by-version."base-converter"."1.1.2"; - "bcrypt-0.8.2" = self.by-version."bcrypt"."0.8.2"; - "bip-pod-0.3.16" = self.by-version."bip-pod"."0.3.16"; + "bcrypt-0.8.5" = self.by-version."bcrypt"."0.8.5"; + "bip-pod-0.4.21" = self.by-version."bip-pod"."0.4.21"; "bip-pod-crypto-0.3.3" = self.by-version."bip-pod-crypto"."0.3.3"; - "bip-pod-email-0.3.9" = self.by-version."bip-pod-email"."0.3.9"; - "bip-pod-flow-0.3.8" = self.by-version."bip-pod-flow"."0.3.8"; - "bip-pod-html-0.3.3" = self.by-version."bip-pod-html"."0.3.3"; - "bip-pod-http-0.3.3" = self.by-version."bip-pod-http"."0.3.3"; - "bip-pod-math-0.3.6" = self.by-version."bip-pod-math"."0.3.6"; - "bip-pod-syndication-0.3.11" = self.by-version."bip-pod-syndication"."0.3.11"; - "bip-pod-templater-0.3.2" = self.by-version."bip-pod-templater"."0.3.2"; - "bip-pod-time-0.3.3" = self.by-version."bip-pod-time"."0.3.3"; - "body-parser-1.12.3" = self.by-version."body-parser"."1.12.3"; + "bip-pod-email-0.3.13" = self.by-version."bip-pod-email"."0.3.13"; + "bip-pod-flow-0.3.21" = self.by-version."bip-pod-flow"."0.3.21"; + "bip-pod-html-0.3.7" = self.by-version."bip-pod-html"."0.3.7"; + "bip-pod-http-0.3.10" = self.by-version."bip-pod-http"."0.3.10"; + "bip-pod-math-0.3.9" = self.by-version."bip-pod-math"."0.3.9"; + "bip-pod-syndication-0.4.7" = self.by-version."bip-pod-syndication"."0.4.7"; + "bip-pod-templater-0.3.3" = self.by-version."bip-pod-templater"."0.3.3"; + "bip-pod-time-0.3.6" = self.by-version."bip-pod-time"."0.3.6"; + "body-parser-1.13.3" = self.by-version."body-parser"."1.13.3"; "clone-1.0.2" = self.by-version."clone"."1.0.2"; - "commander-2.8.0" = self.by-version."commander"."2.8.0"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; "config-0.4.36" = self.by-version."config"."0.4.36"; - "connect-2.29.1" = self.by-version."connect"."2.29.1"; - "connect-mongo-0.8.0" = self.by-version."connect-mongo"."0.8.0"; - "cookie-parser-1.3.4" = self.by-version."cookie-parser"."1.3.4"; - "cron-1.0.9" = self.by-version."cron"."1.0.9"; + "connect-2.30.2" = self.by-version."connect"."2.30.2"; + "connect-mongo-0.8.2" = self.by-version."connect-mongo"."0.8.2"; + "cookie-parser-1.4.1" = self.by-version."cookie-parser"."1.4.1"; + "cron-1.1.0" = self.by-version."cron"."1.1.0"; "dateformat-1.0.7-1.2.3" = self.by-version."dateformat"."1.0.7-1.2.3"; "datejs-0.0.2" = self.by-version."datejs"."0.0.2"; - "errorhandler-1.3.5" = self.by-version."errorhandler"."1.3.5"; - "execSync-1.0.2" = self.by-version."execSync"."1.0.2"; - "express-4.12.3" = self.by-version."express"."4.12.3"; - "express-session-1.11.1" = self.by-version."express-session"."1.11.1"; - "extend-2.0.0" = self.by-version."extend"."2.0.0"; + "errorhandler-1.4.3" = self.by-version."errorhandler"."1.4.3"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "express-session-1.13.0" = self.by-version."express-session"."1.13.0"; + "extend-2.0.1" = self.by-version."extend"."2.0.1"; "favitest-1.0.7" = self.by-version."favitest"."1.0.7"; - "heapdump-0.2.10" = self.by-version."heapdump"."0.2.10"; "html-md-3.0.2" = self.by-version."html-md"."3.0.2"; - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; + "htmlencode-0.0.4" = self.by-version."htmlencode"."0.0.4"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; "imagemagick-0.1.3" = self.by-version."imagemagick"."0.1.3"; - "inquirer-0.8.2" = self.by-version."inquirer"."0.8.2"; - "ipaddr.js-1.0.1" = self.by-version."ipaddr.js"."1.0.1"; + "inquirer-0.12.0" = self.by-version."inquirer"."0.12.0"; + "ipaddr.js-1.1.0" = self.by-version."ipaddr.js"."1.1.0"; "json-middleware-1.0.2" = self.by-version."json-middleware"."1.0.2"; - "jsonwebtoken-1.3.0" = self.by-version."jsonwebtoken"."1.3.0"; + "jsonwebtoken-5.7.0" = self.by-version."jsonwebtoken"."5.7.0"; "ldapjs-0.7.1" = self.by-version."ldapjs"."0.7.1"; - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; - "marked-0.3.3" = self.by-version."marked"."0.3.3"; - "memwatch-0.2.2" = self.by-version."memwatch"."0.2.2"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "marked-0.3.5" = self.by-version."marked"."0.3.5"; "method-override-1.0.2" = self.by-version."method-override"."1.0.2"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "moment-2.10.2" = self.by-version."moment"."2.10.2"; - "moment-timezone-0.3.1" = self.by-version."moment-timezone"."0.3.1"; - "mongoose-3.9.7" = self.by-version."mongoose"."3.9.7"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + "moment-timezone-0.5.3" = self.by-version."moment-timezone"."0.5.3"; + "mongoose-4.2.3" = self.by-version."mongoose"."4.2.3"; "multer-0.1.8" = self.by-version."multer"."0.1.8"; "node-fs-0.1.7" = self.by-version."node-fs"."0.1.7"; "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; - "pkgcloud-1.1.0" = self.by-version."pkgcloud"."1.1.0"; + "passport-0.3.2" = self.by-version."passport"."0.3.2"; + "pkgcloud-1.3.0" = self.by-version."pkgcloud"."1.3.0"; "posix-getopt-1.1.0" = self.by-version."posix-getopt"."1.1.0"; - "q-1.2.0" = self.by-version."q"."1.2.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; "rrecur-2.0.0" = self.by-version."rrecur"."2.0.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "sleep-1.2.0" = self.by-version."sleep"."1.2.0"; + "sleep-3.0.1" = self.by-version."sleep"."3.0.1"; "sprintf-0.1.5" = self.by-version."sprintf"."0.1.5"; "ssl-root-cas-1.1.10" = self.by-version."ssl-root-cas"."1.1.10"; "sugar-1.4.1" = self.by-version."sugar"."1.4.1"; - "temp-0.8.1" = self.by-version."temp"."0.8.1"; - "time-0.11.2" = self.by-version."time"."0.11.2"; + "sync-exec-0.6.2" = self.by-version."sync-exec"."0.6.2"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "time-0.11.4" = self.by-version."time"."0.11.4"; "tldtools-0.0.24" = self.by-version."tldtools"."0.0.24"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; "validator-1.5.1" = self.by-version."validator"."1.5.1"; - "webkit-devtools-agent-0.2.5" = self.by-version."webkit-devtools-agent"."0.2.5"; - "winston-0.5.1" = self.by-version."winston"."0.5.1"; + "winston-1.0.0" = self.by-version."winston"."1.0.0"; }; optionalDependencies = { }; @@ -3885,7 +4365,7 @@ os = [ ]; cpu = [ ]; }; - "bipio" = self.by-version."bipio"."0.3.41"; + "bipio" = self.by-version."bipio"."0.4.64"; by-spec."bitcoinjs-lib"."1.2.0" = self.by-version."bitcoinjs-lib"."1.2.0"; by-version."bitcoinjs-lib"."1.2.0" = self.buildNodePackage { @@ -3893,14 +4373,14 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-1.2.0.tgz"; + url = "https://registry.npmjs.org/bitcoinjs-lib/-/bitcoinjs-lib-1.2.0.tgz"; name = "bitcoinjs-lib-1.2.0.tgz"; sha1 = "731ce2f24b6065f8d9af18757516eed882ad1619"; }; deps = { - "bigi-1.4.0" = self.by-version."bigi"."1.4.0"; + "bigi-1.4.1" = self.by-version."bigi"."1.4.1"; "bs58check-1.0.3" = self.by-version."bs58check"."1.0.3"; - "crypto-browserify-3.9.14" = self.by-version."crypto-browserify"."3.9.14"; + "crypto-browserify-3.11.0" = self.by-version."crypto-browserify"."3.11.0"; "ecurve-1.0.0" = self.by-version."ecurve"."1.0.0"; }; optionalDependencies = { @@ -3916,7 +4396,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bitfield/-/bitfield-0.1.0.tgz"; + url = "https://registry.npmjs.org/bitfield/-/bitfield-0.1.0.tgz"; name = "bitfield-0.1.0.tgz"; sha1 = "b05d8b5f0d09f2df35a9db3b3a62d3808c46c457"; }; @@ -3928,81 +4408,32 @@ os = [ ]; cpu = [ ]; }; - by-spec."bits"."~0.1.1" = - self.by-version."bits"."0.1.1"; - by-version."bits"."0.1.1" = self.buildNodePackage { - name = "bits-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bits/-/bits-0.1.1.tgz"; - name = "bits-0.1.1.tgz"; - sha1 = "7082eb8b7bdf12e47b0a8cf8f7ad3af4e7053a96"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bittorrent-dht"."^1.0.0" = - self.by-version."bittorrent-dht"."1.5.0"; - by-version."bittorrent-dht"."1.5.0" = self.buildNodePackage { - name = "bittorrent-dht-1.5.0"; - version = "1.5.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-1.5.0.tgz"; - name = "bittorrent-dht-1.5.0.tgz"; - sha1 = "b14b34eace8f44e795a8bad69a44b08ca485c355"; - }; - deps = { - "bencode-0.6.0" = self.by-version."bencode"."0.6.0"; - "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; - "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; - "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "k-bucket-0.4.2" = self.by-version."k-bucket"."0.4.2"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "portfinder-0.2.1" = self.by-version."portfinder"."0.2.1"; - "run-parallel-1.1.0" = self.by-version."run-parallel"."1.1.0"; - "string2compact-1.2.1" = self.by-version."string2compact"."1.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."bittorrent-dht"."^3.0.0" = - self.by-version."bittorrent-dht"."3.0.8"; - by-version."bittorrent-dht"."3.0.8" = self.buildNodePackage { - name = "bittorrent-dht-3.0.8"; - version = "3.0.8"; + self.by-version."bittorrent-dht"."3.2.6"; + by-version."bittorrent-dht"."3.2.6" = self.buildNodePackage { + name = "bittorrent-dht-3.2.6"; + version = "3.2.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-3.0.8.tgz"; - name = "bittorrent-dht-3.0.8.tgz"; - sha1 = "73cb8cbf7b6a9be53fba0cf0dc689f8edf6c28dd"; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-3.2.6.tgz"; + name = "bittorrent-dht-3.2.6.tgz"; + sha1 = "8d6f64f002525951536ca403ddd040c03009b7d5"; }; deps = { - "addr-to-ip-port-1.4.1" = self.by-version."addr-to-ip-port"."1.4.1"; + "addr-to-ip-port-1.4.2" = self.by-version."addr-to-ip-port"."1.4.2"; "bencode-0.7.0" = self.by-version."bencode"."0.7.0"; "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "hat-0.0.3" = self.by-version."hat"."0.0.3"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; "is-ip-1.0.0" = self.by-version."is-ip"."1.0.0"; - "k-bucket-0.4.2" = self.by-version."k-bucket"."0.4.2"; - "network-address-1.0.0" = self.by-version."network-address"."1.0.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "run-parallel-1.1.0" = self.by-version."run-parallel"."1.1.0"; - "simple-get-1.3.3" = self.by-version."simple-get"."1.3.3"; - "string2compact-1.2.1" = self.by-version."string2compact"."1.2.1"; + "k-bucket-0.5.0" = self.by-version."k-bucket"."0.5.0"; + "network-address-1.1.0" = self.by-version."network-address"."1.1.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "run-parallel-1.1.6" = self.by-version."run-parallel"."1.1.6"; + "simple-get-1.4.3" = self.by-version."simple-get"."1.4.3"; + "string2compact-1.2.2" = self.by-version."string2compact"."1.2.2"; "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; }; optionalDependencies = { @@ -4011,32 +4442,25 @@ os = [ ]; cpu = [ ]; }; - by-spec."bittorrent-tracker"."^2.0.0" = - self.by-version."bittorrent-tracker"."2.12.1"; - by-version."bittorrent-tracker"."2.12.1" = self.buildNodePackage { - name = "bittorrent-tracker-2.12.1"; - version = "2.12.1"; + by-spec."bittorrent-dht"."^6.0.0" = + self.by-version."bittorrent-dht"."6.4.2"; + by-version."bittorrent-dht"."6.4.2" = self.buildNodePackage { + name = "bittorrent-dht-6.4.2"; + version = "6.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-2.12.1.tgz"; - name = "bittorrent-tracker-2.12.1.tgz"; - sha1 = "562f0e43c6340d003b08c5dad3d4bff0eb3fd64d"; + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-6.4.2.tgz"; + name = "bittorrent-dht-6.4.2.tgz"; + sha1 = "8b40f8cee6bea87f2b34fd2ae0bd367a8b1247a6"; }; deps = { - "bencode-0.6.0" = self.by-version."bencode"."0.6.0"; - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; - "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "extend.js-0.0.2" = self.by-version."extend.js"."0.0.2"; - "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "bencode-0.7.0" = self.by-version."bencode"."0.7.0"; + "buffer-equals-1.0.3" = self.by-version."buffer-equals"."1.0.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "ip-0.3.2" = self.by-version."ip"."0.3.2"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "portfinder-0.3.0" = self.by-version."portfinder"."0.3.0"; - "run-series-1.1.0" = self.by-version."run-series"."1.1.0"; - "simple-get-1.3.3" = self.by-version."simple-get"."1.3.3"; - "string2compact-1.2.1" = self.by-version."string2compact"."1.2.1"; + "k-bucket-0.6.0" = self.by-version."k-bucket"."0.6.0"; + "k-rpc-3.6.1" = self.by-version."k-rpc"."3.6.1"; + "lru-2.0.1" = self.by-version."lru"."2.0.1"; }; optionalDependencies = { }; @@ -4046,16 +4470,85 @@ }; by-spec."bittorrent-tracker"."^2.6.0" = self.by-version."bittorrent-tracker"."2.12.1"; - by-spec."bl"."^0.9.0" = - self.by-version."bl"."0.9.4"; - by-version."bl"."0.9.4" = self.buildNodePackage { - name = "bl-0.9.4"; - version = "0.9.4"; + by-version."bittorrent-tracker"."2.12.1" = self.buildNodePackage { + name = "bittorrent-tracker-2.12.1"; + version = "2.12.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-0.9.4.tgz"; - name = "bl-0.9.4.tgz"; - sha1 = "4702ddf72fbe0ecd82787c00c113aea1935ad0e7"; + url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-2.12.1.tgz"; + name = "bittorrent-tracker-2.12.1.tgz"; + sha1 = "562f0e43c6340d003b08c5dad3d4bff0eb3fd64d"; + }; + deps = { + "bencode-0.6.0" = self.by-version."bencode"."0.6.0"; + "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; + "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; + "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "extend.js-0.0.2" = self.by-version."extend.js"."0.0.2"; + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "ip-0.3.3" = self.by-version."ip"."0.3.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "portfinder-0.3.0" = self.by-version."portfinder"."0.3.0"; + "run-series-1.1.4" = self.by-version."run-series"."1.1.4"; + "simple-get-1.4.3" = self.by-version."simple-get"."1.4.3"; + "string2compact-1.2.2" = self.by-version."string2compact"."1.2.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bittorrent-tracker"."^7.0.0" = + self.by-version."bittorrent-tracker"."7.7.0"; + by-version."bittorrent-tracker"."7.7.0" = self.buildNodePackage { + name = "bittorrent-tracker-7.7.0"; + version = "7.7.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/bittorrent-tracker/-/bittorrent-tracker-7.7.0.tgz"; + name = "bittorrent-tracker-7.7.0.tgz"; + sha1 = "ffd2eabc141d36ed5c1817df7e992f91fd7fc65c"; + }; + deps = { + "bencode-0.8.0" = self.by-version."bencode"."0.8.0"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "ip-1.1.2" = self.by-version."ip"."1.1.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "random-iterate-1.0.1" = self.by-version."random-iterate"."1.0.1"; + "run-parallel-1.1.6" = self.by-version."run-parallel"."1.1.6"; + "run-series-1.1.4" = self.by-version."run-series"."1.1.4"; + "simple-get-2.0.0" = self.by-version."simple-get"."2.0.0"; + "simple-peer-6.0.3" = self.by-version."simple-peer"."6.0.3"; + "simple-websocket-4.0.3" = self.by-version."simple-websocket"."4.0.3"; + "string2compact-1.2.2" = self.by-version."string2compact"."1.2.2"; + "uniq-1.0.1" = self.by-version."uniq"."1.0.1"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bl"."^0.9.0" = + self.by-version."bl"."0.9.5"; + by-version."bl"."0.9.5" = self.buildNodePackage { + name = "bl-0.9.5"; + version = "0.9.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz"; + name = "bl-0.9.5.tgz"; + sha1 = "c06b797af085ea00bc527afc8efcf11de2232054"; }; deps = { "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; @@ -4066,6 +4559,28 @@ os = [ ]; cpu = [ ]; }; + by-spec."bl"."^0.9.1" = + self.by-version."bl"."0.9.5"; + by-spec."bl"."^1.0.0" = + self.by-version."bl"."1.1.2"; + by-version."bl"."1.1.2" = self.buildNodePackage { + name = "bl-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bl/-/bl-1.1.2.tgz"; + name = "bl-1.1.2.tgz"; + sha1 = "fdca871a99713aa00d19e3bbba41c44787a65398"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."bl"."~0.8.1" = self.by-version."bl"."0.8.2"; by-version."bl"."0.8.2" = self.buildNodePackage { @@ -4073,7 +4588,7 @@ version = "0.8.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-0.8.2.tgz"; + url = "https://registry.npmjs.org/bl/-/bl-0.8.2.tgz"; name = "bl-0.8.2.tgz"; sha1 = "c9b6bca08d1bc2ea00fc8afb4f1a5fd1e1c66e4e"; }; @@ -4087,7 +4602,29 @@ cpu = [ ]; }; by-spec."bl"."~0.9.0" = - self.by-version."bl"."0.9.4"; + self.by-version."bl"."0.9.5"; + by-spec."bl"."~1.0.0" = + self.by-version."bl"."1.0.3"; + by-version."bl"."1.0.3" = self.buildNodePackage { + name = "bl-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; + name = "bl-1.0.3.tgz"; + sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bl"."~1.1.2" = + self.by-version."bl"."1.1.2"; by-spec."blob"."0.0.2" = self.by-version."blob"."0.0.2"; by-version."blob"."0.0.2" = self.buildNodePackage { @@ -4095,7 +4632,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/blob/-/blob-0.0.2.tgz"; + url = "https://registry.npmjs.org/blob/-/blob-0.0.2.tgz"; name = "blob-0.0.2.tgz"; sha1 = "b89562bd6994af95ba1e812155536333aa23cf24"; }; @@ -4107,16 +4644,54 @@ os = [ ]; cpu = [ ]; }; - by-spec."block-stream"."*" = - self.by-version."block-stream"."0.0.7"; - by-version."block-stream"."0.0.7" = self.buildNodePackage { - name = "block-stream-0.0.7"; - version = "0.0.7"; + by-spec."blob"."0.0.4" = + self.by-version."blob"."0.0.4"; + by-version."blob"."0.0.4" = self.buildNodePackage { + name = "blob-0.0.4"; + version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/block-stream/-/block-stream-0.0.7.tgz"; - name = "block-stream-0.0.7.tgz"; - sha1 = "9088ab5ae1e861f4d81b176b4a8046080703deed"; + url = "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz"; + name = "blob-0.0.4.tgz"; + sha1 = "bcf13052ca54463f30f9fc7e95b9a47630a94921"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."blob-to-buffer"."^1.2.6" = + self.by-version."blob-to-buffer"."1.2.6"; + by-version."blob-to-buffer"."1.2.6" = self.buildNodePackage { + name = "blob-to-buffer-1.2.6"; + version = "1.2.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/blob-to-buffer/-/blob-to-buffer-1.2.6.tgz"; + name = "blob-to-buffer-1.2.6.tgz"; + sha1 = "089ac264c686b73ead6c539a484a8003bfbb2033"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."block-stream"."*" = + self.by-version."block-stream"."0.0.8"; + by-version."block-stream"."0.0.8" = self.buildNodePackage { + name = "block-stream-0.0.8"; + version = "0.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/block-stream/-/block-stream-0.0.8.tgz"; + name = "block-stream-0.0.8.tgz"; + sha1 = "0688f46da2bbf9cff0c4f68225a0cb95cbe8a46b"; }; deps = { "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -4127,18 +4702,56 @@ os = [ ]; cpu = [ ]; }; - by-spec."block-stream"."0.0.7" = - self.by-version."block-stream"."0.0.7"; - by-spec."bluebird"."2.3.2" = - self.by-version."bluebird"."2.3.2"; - by-version."bluebird"."2.3.2" = self.buildNodePackage { - name = "bluebird-2.3.2"; - version = "2.3.2"; + by-spec."block-stream"."0.0.8" = + self.by-version."block-stream"."0.0.8"; + by-spec."bluebird"."2.10.2" = + self.by-version."bluebird"."2.10.2"; + by-version."bluebird"."2.10.2" = self.buildNodePackage { + name = "bluebird-2.10.2"; + version = "2.10.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-2.3.2.tgz"; - name = "bluebird-2.3.2.tgz"; - sha1 = "7475ac7ca0c1674077ac3dd4092ddb80233cf26b"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz"; + name = "bluebird-2.10.2.tgz"; + sha1 = "024a5517295308857f14f91f1106fc3b555f446b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bluebird"."2.9.26" = + self.by-version."bluebird"."2.9.26"; + by-version."bluebird"."2.9.26" = self.buildNodePackage { + name = "bluebird-2.9.26"; + version = "2.9.26"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bluebird/-/bluebird-2.9.26.tgz"; + name = "bluebird-2.9.26.tgz"; + sha1 = "362772ea4d09f556a4b9f3b64c2fd136e87e3a55"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bluebird".">= 2.0" = + self.by-version."bluebird"."3.3.4"; + by-version."bluebird"."3.3.4" = self.buildNodePackage { + name = "bluebird-3.3.4"; + version = "3.3.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bluebird/-/bluebird-3.3.4.tgz"; + name = "bluebird-3.3.4.tgz"; + sha1 = "f780fe43e1a7a6510f67abd7d0d79533a40ddde6"; }; deps = { }; @@ -4149,15 +4762,25 @@ cpu = [ ]; }; by-spec."bluebird".">= 2.3.2 < 3" = - self.by-version."bluebird"."2.9.24"; - by-version."bluebird"."2.9.24" = self.buildNodePackage { - name = "bluebird-2.9.24"; - version = "2.9.24"; + self.by-version."bluebird"."2.10.2"; + by-spec."bluebird"."^2.9.27" = + self.by-version."bluebird"."2.10.2"; + by-spec."bluebird"."^2.9.30" = + self.by-version."bluebird"."2.10.2"; + by-spec."bluebird"."^3.0.5" = + self.by-version."bluebird"."3.3.4"; + by-spec."bluebird"."^3.1.1" = + self.by-version."bluebird"."3.3.4"; + by-spec."bluebird"."~3.2.2" = + self.by-version."bluebird"."3.2.2"; + by-version."bluebird"."3.2.2" = self.buildNodePackage { + name = "bluebird-3.2.2"; + version = "3.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-2.9.24.tgz"; - name = "bluebird-2.9.24.tgz"; - sha1 = "14a2e75f0548323dc35aa440d92007ca154e967c"; + url = "https://registry.npmjs.org/bluebird/-/bluebird-3.2.2.tgz"; + name = "bluebird-3.2.2.tgz"; + sha1 = "164347d3fcab21eca9db849b4b856bec96041051"; }; deps = { }; @@ -4167,18 +4790,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."bluebird"."^2.9.21" = - self.by-version."bluebird"."2.9.24"; - by-spec."blueimp-md5"."~1.1.0" = - self.by-version."blueimp-md5"."1.1.0"; - by-version."blueimp-md5"."1.1.0" = self.buildNodePackage { - name = "blueimp-md5-1.1.0"; - version = "1.1.0"; + by-spec."blueimp-md5"."~2.1.0" = + self.by-version."blueimp-md5"."2.1.0"; + by-version."blueimp-md5"."2.1.0" = self.buildNodePackage { + name = "blueimp-md5-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/blueimp-md5/-/blueimp-md5-1.1.0.tgz"; - name = "blueimp-md5-1.1.0.tgz"; - sha1 = "041ed794862f3c5f2847282a7481329f1d2352cd"; + url = "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.1.0.tgz"; + name = "blueimp-md5-2.1.0.tgz"; + sha1 = "88f76137be7f374cfc83b0db60891f57a5bb91d0"; }; deps = { }; @@ -4195,7 +4816,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bn.js/-/bn.js-1.3.0.tgz"; + url = "https://registry.npmjs.org/bn.js/-/bn.js-1.3.0.tgz"; name = "bn.js-1.3.0.tgz"; sha1 = "0db4cbf96f8f23b742f5bcb9d1aa7a9994a05e83"; }; @@ -4207,6 +4828,31 @@ os = [ ]; cpu = [ ]; }; + by-spec."bn.js"."^4.0.0" = + self.by-version."bn.js"."4.11.1"; + by-version."bn.js"."4.11.1" = self.buildNodePackage { + name = "bn.js-4.11.1"; + version = "4.11.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bn.js/-/bn.js-4.11.1.tgz"; + name = "bn.js-4.11.1.tgz"; + sha1 = "ff1c52c52fd371e9d91419439bac5cfba2b41798"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bn.js"."^4.1.0" = + self.by-version."bn.js"."4.11.1"; + by-spec."bn.js"."^4.1.1" = + self.by-version."bn.js"."4.11.1"; + by-spec."bn.js"."^4.4.0" = + self.by-version."bn.js"."4.11.1"; by-spec."bncode"."^0.2.3" = self.by-version."bncode"."0.2.3"; by-version."bncode"."0.2.3" = self.buildNodePackage { @@ -4214,7 +4860,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bncode/-/bncode-0.2.3.tgz"; + url = "https://registry.npmjs.org/bncode/-/bncode-0.2.3.tgz"; name = "bncode-0.2.3.tgz"; sha1 = "37f851dc8e47188a83fbc0f6fa4775cacc9a3296"; }; @@ -4233,7 +4879,7 @@ version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bncode/-/bncode-0.5.3.tgz"; + url = "https://registry.npmjs.org/bncode/-/bncode-0.5.3.tgz"; name = "bncode-0.5.3.tgz"; sha1 = "e16661697452d436bf9886238cc791b08d66a61a"; }; @@ -4245,6 +4891,35 @@ os = [ ]; cpu = [ ]; }; + by-spec."body-parser"."1.15.0" = + self.by-version."body-parser"."1.15.0"; + by-version."body-parser"."1.15.0" = self.buildNodePackage { + name = "body-parser-1.15.0"; + version = "1.15.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.15.0.tgz"; + name = "body-parser-1.15.0.tgz"; + sha1 = "8168abaeaf9e77e300f7b3aef4df4b46e9b21b35"; + }; + deps = { + "bytes-2.2.0" = self.by-version."bytes"."2.2.0"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "http-errors-1.4.0" = self.by-version."http-errors"."1.4.0"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "qs-6.1.0" = self.by-version."qs"."6.1.0"; + "raw-body-2.1.6" = self.by-version."raw-body"."2.1.6"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."body-parser"."1.5.0" = self.by-version."body-parser"."1.5.0"; by-version."body-parser"."1.5.0" = self.buildNodePackage { @@ -4252,7 +4927,7 @@ version = "1.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/body-parser/-/body-parser-1.5.0.tgz"; + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.5.0.tgz"; name = "body-parser-1.5.0.tgz"; sha1 = "c6fce2483c9eeb49ab349ff25a92d336d91055b9"; }; @@ -4272,59 +4947,83 @@ cpu = [ ]; }; by-spec."body-parser".">=1.9.2 <2.0.0-0" = - self.by-version."body-parser"."1.12.3"; - by-version."body-parser"."1.12.3" = self.buildNodePackage { - name = "body-parser-1.12.3"; - version = "1.12.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/body-parser/-/body-parser-1.12.3.tgz"; - name = "body-parser-1.12.3.tgz"; - sha1 = "5f40bf17e7823be6895d4d35582752e36cf97f71"; - }; - deps = { - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "iconv-lite-0.4.8" = self.by-version."iconv-lite"."0.4.8"; - "on-finished-2.2.0" = self.by-version."on-finished"."2.2.0"; - "qs-2.4.1" = self.by-version."qs"."2.4.1"; - "raw-body-1.3.4" = self.by-version."raw-body"."1.3.4"; - "type-is-1.6.1" = self.by-version."type-is"."1.6.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."body-parser"."^1.0.2" = - self.by-version."body-parser"."1.12.3"; + self.by-version."body-parser"."1.15.0"; by-spec."body-parser"."^1.12.2" = - self.by-version."body-parser"."1.12.3"; - by-spec."body-parser"."~1.12.2" = - self.by-version."body-parser"."1.12.3"; - by-spec."body-parser"."~1.8.2" = - self.by-version."body-parser"."1.8.4"; - by-version."body-parser"."1.8.4" = self.buildNodePackage { - name = "body-parser-1.8.4"; - version = "1.8.4"; + self.by-version."body-parser"."1.15.0"; + by-spec."body-parser"."^1.12.4" = + self.by-version."body-parser"."1.15.0"; + by-spec."body-parser"."~1.13.2" = + self.by-version."body-parser"."1.13.3"; + by-version."body-parser"."1.13.3" = self.buildNodePackage { + name = "body-parser-1.13.3"; + version = "1.13.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/body-parser/-/body-parser-1.8.4.tgz"; - name = "body-parser-1.8.4.tgz"; - sha1 = "d497e04bc13b3f9a8bd8c70bb0cdc16f2e028898"; + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.13.3.tgz"; + name = "body-parser-1.13.3.tgz"; + sha1 = "c08cf330c3358e151016a05746f13f029c97fa97"; + }; + deps = { + "bytes-2.1.0" = self.by-version."bytes"."2.1.0"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.0.1" = self.by-version."depd"."1.0.1"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "iconv-lite-0.4.11" = self.by-version."iconv-lite"."0.4.11"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "raw-body-2.1.6" = self.by-version."raw-body"."2.1.6"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."body-parser"."~1.13.3" = + self.by-version."body-parser"."1.13.3"; + by-spec."body-parser"."~1.14.2" = + self.by-version."body-parser"."1.14.2"; + by-version."body-parser"."1.14.2" = self.buildNodePackage { + name = "body-parser-1.14.2"; + version = "1.14.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz"; + name = "body-parser-1.14.2.tgz"; + sha1 = "1015cb1fe2c443858259581db53332f8d0cf50f9"; + }; + deps = { + "bytes-2.2.0" = self.by-version."bytes"."2.2.0"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "qs-5.2.0" = self.by-version."qs"."5.2.0"; + "raw-body-2.1.6" = self.by-version."raw-body"."2.1.6"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."boolbase"."~1.0.0" = + self.by-version."boolbase"."1.0.0"; + by-version."boolbase"."1.0.0" = self.buildNodePackage { + name = "boolbase-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; + name = "boolbase-1.0.0.tgz"; + sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; }; deps = { - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "iconv-lite-0.4.4" = self.by-version."iconv-lite"."0.4.4"; - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "on-finished-2.1.0" = self.by-version."on-finished"."2.1.0"; - "qs-2.2.4" = self.by-version."qs"."2.2.4"; - "raw-body-1.3.0" = self.by-version."raw-body"."1.3.0"; - "type-is-1.5.7" = self.by-version."type-is"."1.5.7"; }; optionalDependencies = { }; @@ -4332,8 +5031,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."body-parser"."~1.8.4" = - self.by-version."body-parser"."1.8.4"; by-spec."boom"."0.3.x" = self.by-version."boom"."0.3.8"; by-version."boom"."0.3.8" = self.buildNodePackage { @@ -4341,7 +5038,7 @@ version = "0.3.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/boom/-/boom-0.3.8.tgz"; + url = "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz"; name = "boom-0.3.8.tgz"; sha1 = "c8cdb041435912741628c044ecc732d1d17c09ea"; }; @@ -4361,7 +5058,7 @@ version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/boom/-/boom-0.4.2.tgz"; + url = "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz"; name = "boom-0.4.2.tgz"; sha1 = "7a636e9ded4efcefb19cef4947a3c67dfaee911b"; }; @@ -4375,39 +5072,18 @@ cpu = [ ]; }; by-spec."boom"."2.x.x" = - self.by-version."boom"."2.7.1"; - by-version."boom"."2.7.1" = self.buildNodePackage { - name = "boom-2.7.1"; - version = "2.7.1"; + self.by-version."boom"."2.10.1"; + by-version."boom"."2.10.1" = self.buildNodePackage { + name = "boom-2.10.1"; + version = "2.10.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/boom/-/boom-2.7.1.tgz"; - name = "boom-2.7.1.tgz"; - sha1 = "fb165c348d337977c61d4363c21e9e1abf526705"; + url = "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; + name = "boom-2.10.1.tgz"; + sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; }; deps = { - "hoek-2.12.0" = self.by-version."hoek"."2.12.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bops"."~0.1.0" = - self.by-version."bops"."0.1.1"; - by-version."bops"."0.1.1" = self.buildNodePackage { - name = "bops-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bops/-/bops-0.1.1.tgz"; - name = "bops-0.1.1.tgz"; - sha1 = "062e02a8daa801fa10f2e5dbe6740cff801fe17e"; - }; - deps = { - "base64-js-0.0.2" = self.by-version."base64-js"."0.0.2"; - "to-utf8-0.0.1" = self.by-version."to-utf8"."0.0.1"; + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; }; optionalDependencies = { }; @@ -4416,75 +5092,15 @@ cpu = [ ]; }; by-spec."bower"."*" = - self.by-version."bower"."1.4.1"; - by-version."bower"."1.4.1" = self.buildNodePackage { - name = "bower-1.4.1"; - version = "1.4.1"; + self.by-version."bower"."1.7.9"; + by-version."bower"."1.7.9" = self.buildNodePackage { + name = "bower-1.7.9"; + version = "1.7.9"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bower/-/bower-1.4.1.tgz"; - name = "bower-1.4.1.tgz"; - sha1 = "a18be39d030792754f30f1c5b32d37b0156ba8dd"; - }; - deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; - "archy-1.0.0" = self.by-version."archy"."1.0.0"; - "bower-config-0.6.1" = self.by-version."bower-config"."0.6.1"; - "bower-endpoint-parser-0.2.2" = self.by-version."bower-endpoint-parser"."0.2.2"; - "bower-json-0.4.0" = self.by-version."bower-json"."0.4.0"; - "bower-logger-0.2.2" = self.by-version."bower-logger"."0.2.2"; - "bower-registry-client-0.3.0" = self.by-version."bower-registry-client"."0.3.0"; - "cardinal-0.4.4" = self.by-version."cardinal"."0.4.4"; - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "chmodr-0.1.0" = self.by-version."chmodr"."0.1.0"; - "configstore-0.3.2" = self.by-version."configstore"."0.3.2"; - "decompress-zip-0.1.0" = self.by-version."decompress-zip"."0.1.0"; - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; - "fstream-ignore-1.0.2" = self.by-version."fstream-ignore"."1.0.2"; - "github-0.2.4" = self.by-version."github"."0.2.4"; - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "handlebars-2.0.0" = self.by-version."handlebars"."2.0.0"; - "inquirer-0.8.0" = self.by-version."inquirer"."0.8.0"; - "insight-0.5.3" = self.by-version."insight"."0.5.3"; - "is-root-1.0.0" = self.by-version."is-root"."1.0.0"; - "junk-1.0.1" = self.by-version."junk"."1.0.1"; - "lockfile-1.0.0" = self.by-version."lockfile"."1.0.0"; - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "mout-0.11.0" = self.by-version."mout"."0.11.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "opn-1.0.1" = self.by-version."opn"."1.0.1"; - "p-throttler-0.1.1" = self.by-version."p-throttler"."0.1.1"; - "promptly-0.2.0" = self.by-version."promptly"."0.2.0"; - "q-1.2.0" = self.by-version."q"."1.2.0"; - "request-2.53.0" = self.by-version."request"."2.53.0"; - "request-progress-0.3.1" = self.by-version."request-progress"."0.3.1"; - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - "shell-quote-1.4.3" = self.by-version."shell-quote"."1.4.3"; - "stringify-object-1.0.1" = self.by-version."stringify-object"."1.0.1"; - "tar-fs-1.5.0" = self.by-version."tar-fs"."1.5.0"; - "tmp-0.0.24" = self.by-version."tmp"."0.0.24"; - "update-notifier-0.3.2" = self.by-version."update-notifier"."0.3.2"; - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."bower"."1.7.7" = self.buildNodePackage { - name = "bower-1.7.7"; - version = "1.7.7"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/bower/-/bower-1.7.7.tgz"; - name = "bower-1.7.7.tgz"; - sha1 = "2fd7ff3ebdcba5a8ffcd84c397c8fdfe9f825f92"; + url = "https://registry.npmjs.org/bower/-/bower-1.7.9.tgz"; + name = "bower-1.7.9.tgz"; + sha1 = "b7296c2393e0d75edaa6ca39648132dd255812b0"; }; deps = { }; @@ -4494,34 +5110,9 @@ os = [ ]; cpu = [ ]; }; - "bower" = self.by-version."bower"."1.7.7"; + "bower" = self.by-version."bower"."1.7.9"; by-spec."bower".">=1.2.8 <2" = - self.by-version."bower"."1.4.1"; - by-spec."bower-config"."^0.6.1" = - self.by-version."bower-config"."0.6.1"; - by-version."bower-config"."0.6.1" = self.buildNodePackage { - name = "bower-config-0.6.1"; - version = "0.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bower-config/-/bower-config-0.6.1.tgz"; - name = "bower-config-0.6.1.tgz"; - sha1 = "7093155688bef44079bf4cb32d189312c87ded60"; - }; - deps = { - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "mout-0.9.1" = self.by-version."mout"."0.9.1"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bower-config"."~0.6.1" = - self.by-version."bower-config"."0.6.1"; + self.by-version."bower"."1.7.9"; by-spec."bower-endpoint-parser"."0.2.1" = self.by-version."bower-endpoint-parser"."0.2.1"; by-version."bower-endpoint-parser"."0.2.1" = self.buildNodePackage { @@ -4529,7 +5120,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.1.tgz"; + url = "https://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.1.tgz"; name = "bower-endpoint-parser-0.2.1.tgz"; sha1 = "8c4010a2900cdab07ea5d38f0bd03e9bbccef90f"; }; @@ -4541,18 +5132,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."bower-endpoint-parser"."^0.2.2" = - self.by-version."bower-endpoint-parser"."0.2.2"; - by-version."bower-endpoint-parser"."0.2.2" = self.buildNodePackage { - name = "bower-endpoint-parser-0.2.2"; - version = "0.2.2"; + by-spec."bower-json"."0.6.0" = + self.by-version."bower-json"."0.6.0"; + by-version."bower-json"."0.6.0" = self.buildNodePackage { + name = "bower-json-0.6.0"; + version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bower-endpoint-parser/-/bower-endpoint-parser-0.2.2.tgz"; - name = "bower-endpoint-parser-0.2.2.tgz"; - sha1 = "00b565adbfab6f2d35addde977e97962acbcb3f6"; + url = "https://registry.npmjs.org/bower-json/-/bower-json-0.6.0.tgz"; + name = "bower-json-0.6.0.tgz"; + sha1 = "326579b23c33e4ea828e4763c55cd81fd7650329"; }; deps = { + "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; + "ext-name-3.0.0" = self.by-version."ext-name"."3.0.0"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; + "intersect-1.0.1" = self.by-version."intersect"."1.0.1"; }; optionalDependencies = { }; @@ -4560,30 +5155,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."bower-json"."0.4.0" = - self.by-version."bower-json"."0.4.0"; - by-version."bower-json"."0.4.0" = self.buildNodePackage { - name = "bower-json-0.4.0"; - version = "0.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bower-json/-/bower-json-0.4.0.tgz"; - name = "bower-json-0.4.0.tgz"; - sha1 = "a99c3ccf416ef0590ed0ded252c760f1c6d93766"; - }; - deps = { - "deep-extend-0.2.11" = self.by-version."deep-extend"."0.2.11"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "intersect-0.0.3" = self.by-version."intersect"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bower-json"."^0.4.0" = - self.by-version."bower-json"."0.4.0"; by-spec."bower-logger"."0.2.1" = self.by-version."bower-logger"."0.2.1"; by-version."bower-logger"."0.2.1" = self.buildNodePackage { @@ -4591,7 +5162,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bower-logger/-/bower-logger-0.2.1.tgz"; + url = "https://registry.npmjs.org/bower-logger/-/bower-logger-0.2.1.tgz"; name = "bower-logger-0.2.1.tgz"; sha1 = "0c1817c48063a88d96cc3d516c55e57fff5d9ecb"; }; @@ -4603,65 +5174,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."bower-logger"."^0.2.2" = - self.by-version."bower-logger"."0.2.2"; - by-version."bower-logger"."0.2.2" = self.buildNodePackage { - name = "bower-logger-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bower-logger/-/bower-logger-0.2.2.tgz"; - name = "bower-logger-0.2.2.tgz"; - sha1 = "39be07e979b2fc8e03a94634205ed9422373d381"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bower-registry-client"."^0.3.0" = - self.by-version."bower-registry-client"."0.3.0"; - by-version."bower-registry-client"."0.3.0" = self.buildNodePackage { - name = "bower-registry-client-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bower-registry-client/-/bower-registry-client-0.3.0.tgz"; - name = "bower-registry-client-0.3.0.tgz"; - sha1 = "f5adcfdeda771a84be088ef1310d9756e58ebe74"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "bower-config-0.6.1" = self.by-version."bower-config"."0.6.1"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "lru-cache-2.3.1" = self.by-version."lru-cache"."2.3.1"; - "request-2.51.0" = self.by-version."request"."2.51.0"; - "request-replay-0.2.0" = self.by-version."request-replay"."0.2.0"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."bower2nix"."*" = self.by-version."bower2nix"."3.0.1"; by-version."bower2nix"."3.0.1" = self.buildNodePackage { name = "bower2nix-3.0.1"; version = "3.0.1"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bower2nix/-/bower2nix-3.0.1.tgz"; + url = "https://registry.npmjs.org/bower2nix/-/bower2nix-3.0.1.tgz"; name = "bower2nix-3.0.1.tgz"; - sha256 = "0jfrz2mvnx3fp2p76dcnw18c1vajladbqcrzapf93jh8h6715msi"; + sha1 = "06a52c033a66a890fb0c7c45a43074f3bc2e4a44"; }; deps = { "argparse-1.0.4" = self.by-version."argparse"."1.0.4"; - "bower-1.7.7" = self.by-version."bower"."1.7.7"; + "bower-1.7.9" = self.by-version."bower"."1.7.9"; "bower-endpoint-parser-0.2.1" = self.by-version."bower-endpoint-parser"."0.2.1"; "bower-json-0.6.0" = self.by-version."bower-json"."0.6.0"; "bower-logger-0.2.1" = self.by-version."bower-logger"."0.2.1"; @@ -4672,20 +5198,26 @@ "temp-0.8.3" = self.by-version."temp"."0.8.3"; "glob-6.0.4" = self.by-version."glob"."6.0.4"; }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; }; "bower2nix" = self.by-version."bower2nix"."3.0.1"; - by-spec."bplist-parser"."0.0.6" = - self.by-version."bplist-parser"."0.0.6"; - by-version."bplist-parser"."0.0.6" = self.buildNodePackage { - name = "bplist-parser-0.0.6"; - version = "0.0.6"; + by-spec."bplist-parser"."^0.1.0" = + self.by-version."bplist-parser"."0.1.1"; + by-version."bplist-parser"."0.1.1" = self.buildNodePackage { + name = "bplist-parser-0.1.1"; + version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bplist-parser/-/bplist-parser-0.0.6.tgz"; - name = "bplist-parser-0.0.6.tgz"; - sha1 = "38da3471817df9d44ab3892e27707bbbd75a11b9"; + url = "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.1.1.tgz"; + name = "bplist-parser-0.1.1.tgz"; + sha1 = "d60d5dcc20cba6dc7e1f299b35d3e1f95dafbae6"; }; deps = { + "big-integer-1.6.15" = self.by-version."big-integer"."1.6.15"; }; optionalDependencies = { }; @@ -4694,18 +5226,18 @@ cpu = [ ]; }; by-spec."brace-expansion"."^1.0.0" = - self.by-version."brace-expansion"."1.1.0"; - by-version."brace-expansion"."1.1.0" = self.buildNodePackage { - name = "brace-expansion-1.1.0"; - version = "1.1.0"; + self.by-version."brace-expansion"."1.1.3"; + by-version."brace-expansion"."1.1.3" = self.buildNodePackage { + name = "brace-expansion-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.0.tgz"; - name = "brace-expansion-1.1.0.tgz"; - sha1 = "c9b7d03c03f37bc704be100e522b40db8f6cfcd9"; + url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz"; + name = "brace-expansion-1.1.3.tgz"; + sha1 = "46bff50115d47fc9ab89854abb87d98078a10991"; }; deps = { - "balanced-match-0.2.0" = self.by-version."balanced-match"."0.2.0"; + "balanced-match-0.3.0" = self.by-version."balanced-match"."0.3.0"; "concat-map-0.0.1" = self.by-version."concat-map"."0.0.1"; }; optionalDependencies = { @@ -4721,7 +5253,7 @@ version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/braces/-/braces-0.1.5.tgz"; + url = "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz"; name = "braces-0.1.5.tgz"; sha1 = "c085711085291d8b75fdd74eab0f8597280711e6"; }; @@ -4734,21 +5266,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."braces"."^1.8.0" = - self.by-version."braces"."1.8.0"; - by-version."braces"."1.8.0" = self.buildNodePackage { - name = "braces-1.8.0"; - version = "1.8.0"; + by-spec."braces"."^1.8.2" = + self.by-version."braces"."1.8.3"; + by-version."braces"."1.8.3" = self.buildNodePackage { + name = "braces-1.8.3"; + version = "1.8.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/braces/-/braces-1.8.0.tgz"; - name = "braces-1.8.0.tgz"; - sha1 = "3a4a005aae0391817c17b074dca8f08e6fc9e4c4"; + url = "https://registry.npmjs.org/braces/-/braces-1.8.3.tgz"; + name = "braces-1.8.3.tgz"; + sha1 = "35d4e7dda632b33e215d38a8a9cf4329c9c75d2c"; }; deps = { "expand-range-1.8.1" = self.by-version."expand-range"."1.8.1"; "preserve-0.2.0" = self.by-version."preserve"."0.2.0"; - "repeat-element-1.1.0" = self.by-version."repeat-element"."1.1.0"; + "repeat-element-1.1.2" = self.by-version."repeat-element"."1.1.2"; }; optionalDependencies = { }; @@ -4763,7 +5295,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz"; + url = "https://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz"; name = "breakable-1.0.0.tgz"; sha1 = "784a797915a38ead27bad456b5572cb4bbaa78c1"; }; @@ -4775,21 +5307,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."brfs"."0.0.8" = - self.by-version."brfs"."0.0.8"; - by-version."brfs"."0.0.8" = self.buildNodePackage { - name = "brfs-0.0.8"; - version = "0.0.8"; - bin = true; + by-spec."broadway"."0.2.x" = + self.by-version."broadway"."0.2.10"; + by-version."broadway"."0.2.10" = self.buildNodePackage { + name = "broadway-0.2.10"; + version = "0.2.10"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/brfs/-/brfs-0.0.8.tgz"; - name = "brfs-0.0.8.tgz"; - sha1 = "e4377a177638a4b0520901bb134491dd7e38a386"; + url = "https://registry.npmjs.org/broadway/-/broadway-0.2.10.tgz"; + name = "broadway-0.2.10.tgz"; + sha1 = "0f58532be140426e9000e49a93e242a0d1263238"; }; deps = { - "through-2.2.7" = self.by-version."through"."2.2.7"; - "falafel-0.1.6" = self.by-version."falafel"."0.1.6"; - "escodegen-0.0.17" = self.by-version."escodegen"."0.0.17"; + "cliff-0.1.8" = self.by-version."cliff"."0.1.8"; + "eventemitter2-0.4.14" = self.by-version."eventemitter2"."0.4.14"; + "nconf-0.6.9" = self.by-version."nconf"."0.6.9"; + "winston-0.7.2" = self.by-version."winston"."0.7.2"; + "utile-0.2.1" = self.by-version."utile"."0.2.1"; }; optionalDependencies = { }; @@ -4804,7 +5338,7 @@ version = "0.3.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz"; + url = "https://registry.npmjs.org/broadway/-/broadway-0.3.6.tgz"; name = "broadway-0.3.6.tgz"; sha1 = "7dbef068b954b7907925fd544963b578a902ba7a"; }; @@ -4830,7 +5364,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/brorand/-/brorand-1.0.5.tgz"; + url = "https://registry.npmjs.org/brorand/-/brorand-1.0.5.tgz"; name = "brorand-1.0.5.tgz"; sha1 = "07b54ca30286abd1718a0e2a830803efdc9bfa04"; }; @@ -4842,24 +5376,24 @@ os = [ ]; cpu = [ ]; }; - by-spec."browser-launcher2"."0.4.5" = - self.by-version."browser-launcher2"."0.4.5"; - by-version."browser-launcher2"."0.4.5" = self.buildNodePackage { - name = "browser-launcher2-0.4.5"; - version = "0.4.5"; + by-spec."browser-launcher2"."~0.4.6" = + self.by-version."browser-launcher2"."0.4.6"; + by-version."browser-launcher2"."0.4.6" = self.buildNodePackage { + name = "browser-launcher2-0.4.6"; + version = "0.4.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.5.tgz"; - name = "browser-launcher2-0.4.5.tgz"; - sha1 = "9b05fd5ead86a8931d20d5517e253d420882975a"; + url = "https://registry.npmjs.org/browser-launcher2/-/browser-launcher2-0.4.6.tgz"; + name = "browser-launcher2-0.4.6.tgz"; + sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074"; }; deps = { "headless-0.1.7" = self.by-version."headless"."0.1.7"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "plist-1.1.0" = self.by-version."plist"."1.1.0"; - "win-detect-browsers-1.0.1" = self.by-version."win-detect-browsers"."1.0.1"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; + "plist-1.2.0" = self.by-version."plist"."1.2.0"; + "win-detect-browsers-1.0.2" = self.by-version."win-detect-browsers"."1.0.2"; "uid-0.0.2" = self.by-version."uid"."0.0.2"; "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; }; @@ -4869,24 +5403,24 @@ os = [ ]; cpu = [ ]; }; - by-spec."browser-pack"."^3.2.0" = - self.by-version."browser-pack"."3.2.0"; - by-version."browser-pack"."3.2.0" = self.buildNodePackage { - name = "browser-pack-3.2.0"; - version = "3.2.0"; + by-spec."browser-pack"."^4.0.3" = + self.by-version."browser-pack"."4.0.4"; + by-version."browser-pack"."4.0.4" = self.buildNodePackage { + name = "browser-pack-4.0.4"; + version = "4.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/browser-pack/-/browser-pack-3.2.0.tgz"; - name = "browser-pack-3.2.0.tgz"; - sha1 = "faa1cbc41487b1acc4747e373e1148adffd0e2d9"; + url = "https://registry.npmjs.org/browser-pack/-/browser-pack-4.0.4.tgz"; + name = "browser-pack-4.0.4.tgz"; + sha1 = "8dae95a20ca43b3fea201faa6cfaa84ff4a0d484"; }; deps = { - "JSONStream-0.8.4" = self.by-version."JSONStream"."0.8.4"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; "combine-source-map-0.3.0" = self.by-version."combine-source-map"."0.3.0"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; + "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; "through2-0.5.1" = self.by-version."through2"."0.5.1"; - "umd-2.1.0" = self.by-version."umd"."2.1.0"; + "umd-3.0.1" = self.by-version."umd"."3.0.1"; }; optionalDependencies = { }; @@ -4894,24 +5428,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."browser-pack"."^4.0.0" = - self.by-version."browser-pack"."4.0.1"; - by-version."browser-pack"."4.0.1" = self.buildNodePackage { - name = "browser-pack-4.0.1"; - version = "4.0.1"; + by-spec."browser-pack"."^6.0.1" = + self.by-version."browser-pack"."6.0.1"; + by-version."browser-pack"."6.0.1" = self.buildNodePackage { + name = "browser-pack-6.0.1"; + version = "6.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/browser-pack/-/browser-pack-4.0.1.tgz"; - name = "browser-pack-4.0.1.tgz"; - sha1 = "7f4ab2b3a11c36a9274141fb7912122fc974e5f6"; + url = "https://registry.npmjs.org/browser-pack/-/browser-pack-6.0.1.tgz"; + name = "browser-pack-6.0.1.tgz"; + sha1 = "779887c792eaa1f64a46a22c8f1051cdcd96755f"; }; deps = { - "JSONStream-0.8.4" = self.by-version."JSONStream"."0.8.4"; - "combine-source-map-0.3.0" = self.by-version."combine-source-map"."0.3.0"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "through2-0.5.1" = self.by-version."through2"."0.5.1"; - "umd-3.0.0" = self.by-version."umd"."3.0.0"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "combine-source-map-0.7.1" = self.by-version."combine-source-map"."0.7.1"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "umd-3.0.1" = self.by-version."umd"."3.0.1"; }; optionalDependencies = { }; @@ -4919,36 +5452,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."browser-pack"."~2.0.0" = - self.by-version."browser-pack"."2.0.1"; - by-version."browser-pack"."2.0.1" = self.buildNodePackage { - name = "browser-pack-2.0.1"; - version = "2.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/browser-pack/-/browser-pack-2.0.1.tgz"; - name = "browser-pack-2.0.1.tgz"; - sha1 = "5d1c527f56c582677411c4db2a128648ff6bf150"; - }; - deps = { - "JSONStream-0.6.4" = self.by-version."JSONStream"."0.6.4"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "combine-source-map-0.3.0" = self.by-version."combine-source-map"."0.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."browser-request".">= 0.2.0" = + by-spec."browser-request".">= 0.3.1 < 0.4.0" = self.by-version."browser-request"."0.3.3"; by-version."browser-request"."0.3.3" = self.buildNodePackage { name = "browser-request-0.3.3"; version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz"; + url = "https://registry.npmjs.org/browser-request/-/browser-request-0.3.3.tgz"; name = "browser-request-0.3.3.tgz"; sha1 = "9ece5b5aca89a29932242e18bf933def9876cc17"; }; @@ -4960,21 +5471,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."browser-request"."~0.3.1" = + by-spec."browser-request"."^0.3.3" = self.by-version."browser-request"."0.3.3"; - by-spec."browser-resolve"."^1.3.0" = - self.by-version."browser-resolve"."1.8.2"; - by-version."browser-resolve"."1.8.2" = self.buildNodePackage { - name = "browser-resolve-1.8.2"; - version = "1.8.2"; + by-spec."browser-resolve"."^1.11.0" = + self.by-version."browser-resolve"."1.11.1"; + by-version."browser-resolve"."1.11.1" = self.buildNodePackage { + name = "browser-resolve-1.11.1"; + version = "1.11.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browser-resolve/-/browser-resolve-1.8.2.tgz"; - name = "browser-resolve-1.8.2.tgz"; - sha1 = "a00b06c871bee21b50d450ff94c2a423bc787729"; + url = "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.1.tgz"; + name = "browser-resolve-1.11.1.tgz"; + sha1 = "73c3c2a1d3a68a6e17d88f0cadb13ea24632d496"; }; deps = { - "resolve-1.1.6" = self.by-version."resolve"."1.1.6"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; }; optionalDependencies = { }; @@ -4983,31 +5494,9 @@ cpu = [ ]; }; by-spec."browser-resolve"."^1.7.0" = - self.by-version."browser-resolve"."1.8.2"; + self.by-version."browser-resolve"."1.11.1"; by-spec."browser-resolve"."^1.7.1" = - self.by-version."browser-resolve"."1.8.2"; - by-spec."browser-resolve"."~1.2.1" = - self.by-version."browser-resolve"."1.2.4"; - by-version."browser-resolve"."1.2.4" = self.buildNodePackage { - name = "browser-resolve-1.2.4"; - version = "1.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/browser-resolve/-/browser-resolve-1.2.4.tgz"; - name = "browser-resolve-1.2.4.tgz"; - sha1 = "59ae7820a82955ecd32f5fb7c468ac21c4723806"; - }; - deps = { - "resolve-0.6.3" = self.by-version."resolve"."0.6.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."browser-resolve"."~1.2.2" = - self.by-version."browser-resolve"."1.2.4"; + self.by-version."browser-resolve"."1.11.1"; by-spec."browserchannel"."*" = self.by-version."browserchannel"."2.0.0"; by-version."browserchannel"."2.0.0" = self.buildNodePackage { @@ -5015,14 +5504,14 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browserchannel/-/browserchannel-2.0.0.tgz"; + url = "https://registry.npmjs.org/browserchannel/-/browserchannel-2.0.0.tgz"; name = "browserchannel-2.0.0.tgz"; sha1 = "0f211b3cad9995e8729b2bacd46b53c027c0ea63"; }; deps = { "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "connect-2.29.1" = self.by-version."connect"."2.29.1"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "connect-2.30.2" = self.by-version."connect"."2.30.2"; + "request-2.70.0" = self.by-version."request"."2.70.0"; "ascii-json-0.2.0" = self.by-version."ascii-json"."0.2.0"; }; optionalDependencies = { @@ -5033,67 +5522,64 @@ }; "browserchannel" = self.by-version."browserchannel"."2.0.0"; by-spec."browserify"."*" = - self.by-version."browserify"."9.0.8"; - by-version."browserify"."9.0.8" = self.buildNodePackage { - name = "browserify-9.0.8"; - version = "9.0.8"; + self.by-version."browserify"."13.0.0"; + by-version."browserify"."13.0.0" = self.buildNodePackage { + name = "browserify-13.0.0"; + version = "13.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/browserify/-/browserify-9.0.8.tgz"; - name = "browserify-9.0.8.tgz"; - sha1 = "91859e9f60384459ead554df89cff03c734f159b"; + url = "https://registry.npmjs.org/browserify/-/browserify-13.0.0.tgz"; + name = "browserify-13.0.0.tgz"; + sha1 = "8f223bb24ff4ee4335e6bea9671de294e43ba6a3"; }; deps = { - "JSONStream-0.10.0" = self.by-version."JSONStream"."0.10.0"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; "assert-1.3.0" = self.by-version."assert"."1.3.0"; - "browser-pack-4.0.1" = self.by-version."browser-pack"."4.0.1"; - "browser-resolve-1.8.2" = self.by-version."browser-resolve"."1.8.2"; + "browser-pack-6.0.1" = self.by-version."browser-pack"."6.0.1"; + "browser-resolve-1.11.1" = self.by-version."browser-resolve"."1.11.1"; "browserify-zlib-0.1.4" = self.by-version."browserify-zlib"."0.1.4"; - "buffer-3.1.2" = self.by-version."buffer"."3.1.2"; - "builtins-0.0.7" = self.by-version."builtins"."0.0.7"; - "commondir-0.0.1" = self.by-version."commondir"."0.0.1"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; + "buffer-4.5.1" = self.by-version."buffer"."4.5.1"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; "console-browserify-1.1.0" = self.by-version."console-browserify"."1.1.0"; - "constants-browserify-0.0.1" = self.by-version."constants-browserify"."0.0.1"; - "crypto-browserify-3.9.14" = self.by-version."crypto-browserify"."3.9.14"; - "deep-equal-1.0.0" = self.by-version."deep-equal"."1.0.0"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "deps-sort-1.3.5" = self.by-version."deps-sort"."1.3.5"; - "domain-browser-1.1.4" = self.by-version."domain-browser"."1.1.4"; - "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; - "events-1.0.2" = self.by-version."events"."1.0.2"; - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "has-1.0.0" = self.by-version."has"."1.0.0"; - "http-browserify-1.7.0" = self.by-version."http-browserify"."1.7.0"; - "https-browserify-0.0.0" = self.by-version."https-browserify"."0.0.0"; + "constants-browserify-1.0.0" = self.by-version."constants-browserify"."1.0.0"; + "crypto-browserify-3.11.0" = self.by-version."crypto-browserify"."3.11.0"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; + "deps-sort-2.0.0" = self.by-version."deps-sort"."2.0.0"; + "domain-browser-1.1.7" = self.by-version."domain-browser"."1.1.7"; + "duplexer2-0.1.4" = self.by-version."duplexer2"."0.1.4"; + "events-1.1.0" = self.by-version."events"."1.1.0"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "has-1.0.1" = self.by-version."has"."1.0.1"; + "htmlescape-1.1.1" = self.by-version."htmlescape"."1.1.1"; + "stream-http-2.2.1" = self.by-version."stream-http"."2.2.1"; + "https-browserify-0.0.1" = self.by-version."https-browserify"."0.0.1"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "insert-module-globals-6.2.1" = self.by-version."insert-module-globals"."6.2.1"; + "insert-module-globals-7.0.1" = self.by-version."insert-module-globals"."7.0.1"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "labeled-stream-splicer-1.0.2" = self.by-version."labeled-stream-splicer"."1.0.2"; - "module-deps-3.7.6" = self.by-version."module-deps"."3.7.6"; + "labeled-stream-splicer-2.0.0" = self.by-version."labeled-stream-splicer"."2.0.0"; + "module-deps-4.0.5" = self.by-version."module-deps"."4.0.5"; "os-browserify-0.1.2" = self.by-version."os-browserify"."0.1.2"; "parents-1.0.1" = self.by-version."parents"."1.0.1"; "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; - "process-0.10.1" = self.by-version."process"."0.10.1"; - "punycode-1.2.4" = self.by-version."punycode"."1.2.4"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "punycode-1.4.1" = self.by-version."punycode"."1.4.1"; "querystring-es3-0.2.1" = self.by-version."querystring-es3"."0.2.1"; - "read-only-stream-1.1.1" = self.by-version."read-only-stream"."1.1.1"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "resolve-1.1.6" = self.by-version."resolve"."1.1.6"; - "shallow-copy-0.0.1" = self.by-version."shallow-copy"."0.0.1"; - "shasum-1.0.1" = self.by-version."shasum"."1.0.1"; - "shell-quote-0.0.1" = self.by-version."shell-quote"."0.0.1"; - "stream-browserify-1.0.0" = self.by-version."stream-browserify"."1.0.0"; + "read-only-stream-2.0.0" = self.by-version."read-only-stream"."2.0.0"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; + "shasum-1.0.2" = self.by-version."shasum"."1.0.2"; + "shell-quote-1.5.0" = self.by-version."shell-quote"."1.5.0"; + "stream-browserify-2.0.1" = self.by-version."stream-browserify"."2.0.1"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; - "syntax-error-1.1.2" = self.by-version."syntax-error"."1.1.2"; - "through2-1.1.1" = self.by-version."through2"."1.1.1"; - "timers-browserify-1.4.0" = self.by-version."timers-browserify"."1.4.0"; + "syntax-error-1.1.6" = self.by-version."syntax-error"."1.1.6"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "timers-browserify-1.4.2" = self.by-version."timers-browserify"."1.4.2"; "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; - "url-0.10.3" = self.by-version."url"."0.10.3"; + "url-0.11.0" = self.by-version."url"."0.11.0"; "util-0.10.3" = self.by-version."util"."0.10.3"; "vm-browserify-0.0.4" = self.by-version."vm-browserify"."0.0.4"; - "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -5101,187 +5587,70 @@ os = [ ]; cpu = [ ]; }; - "browserify" = self.by-version."browserify"."9.0.8"; - by-spec."browserify"."7.1.0" = - self.by-version."browserify"."7.1.0"; - by-version."browserify"."7.1.0" = self.buildNodePackage { - name = "browserify-7.1.0"; - version = "7.1.0"; + "browserify" = self.by-version."browserify"."13.0.0"; + by-spec."browserify"."10.1.3" = + self.by-version."browserify"."10.1.3"; + by-version."browserify"."10.1.3" = self.buildNodePackage { + name = "browserify-10.1.3"; + version = "10.1.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/browserify/-/browserify-7.1.0.tgz"; - name = "browserify-7.1.0.tgz"; - sha1 = "1660775c93c3efeaeb42f3c6638a6c4c2b414f14"; + url = "https://registry.npmjs.org/browserify/-/browserify-10.1.3.tgz"; + name = "browserify-10.1.3.tgz"; + sha1 = "6605dcffbb918c6a69d9c60201d2397ef7ce20ff"; }; deps = { - "JSONStream-0.8.4" = self.by-version."JSONStream"."0.8.4"; - "assert-1.1.2" = self.by-version."assert"."1.1.2"; - "browser-pack-3.2.0" = self.by-version."browser-pack"."3.2.0"; - "browser-resolve-1.8.2" = self.by-version."browser-resolve"."1.8.2"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "assert-1.3.0" = self.by-version."assert"."1.3.0"; + "browser-pack-4.0.4" = self.by-version."browser-pack"."4.0.4"; + "browser-resolve-1.11.1" = self.by-version."browser-resolve"."1.11.1"; "browserify-zlib-0.1.4" = self.by-version."browserify-zlib"."0.1.4"; - "buffer-3.1.2" = self.by-version."buffer"."3.1.2"; + "buffer-3.6.0" = self.by-version."buffer"."3.6.0"; "builtins-0.0.7" = self.by-version."builtins"."0.0.7"; "commondir-0.0.1" = self.by-version."commondir"."0.0.1"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; + "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; "console-browserify-1.1.0" = self.by-version."console-browserify"."1.1.0"; "constants-browserify-0.0.1" = self.by-version."constants-browserify"."0.0.1"; - "crypto-browserify-3.9.14" = self.by-version."crypto-browserify"."3.9.14"; - "deep-equal-0.2.2" = self.by-version."deep-equal"."0.2.2"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "deps-sort-1.3.5" = self.by-version."deps-sort"."1.3.5"; - "domain-browser-1.1.4" = self.by-version."domain-browser"."1.1.4"; + "crypto-browserify-3.11.0" = self.by-version."crypto-browserify"."3.11.0"; + "deep-equal-1.0.1" = self.by-version."deep-equal"."1.0.1"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; + "deps-sort-1.3.9" = self.by-version."deps-sort"."1.3.9"; + "domain-browser-1.1.7" = self.by-version."domain-browser"."1.1.7"; "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; "events-1.0.2" = self.by-version."events"."1.0.2"; "glob-4.5.3" = self.by-version."glob"."4.5.3"; + "has-1.0.1" = self.by-version."has"."1.0.1"; + "htmlescape-1.1.1" = self.by-version."htmlescape"."1.1.1"; "http-browserify-1.7.0" = self.by-version."http-browserify"."1.7.0"; - "https-browserify-0.0.0" = self.by-version."https-browserify"."0.0.0"; + "https-browserify-0.0.1" = self.by-version."https-browserify"."0.0.1"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "insert-module-globals-6.2.1" = self.by-version."insert-module-globals"."6.2.1"; + "insert-module-globals-6.6.3" = self.by-version."insert-module-globals"."6.6.3"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; "labeled-stream-splicer-1.0.2" = self.by-version."labeled-stream-splicer"."1.0.2"; - "module-deps-3.7.6" = self.by-version."module-deps"."3.7.6"; + "module-deps-3.9.1" = self.by-version."module-deps"."3.9.1"; "os-browserify-0.1.2" = self.by-version."os-browserify"."0.1.2"; - "parents-0.0.3" = self.by-version."parents"."0.0.3"; + "parents-1.0.1" = self.by-version."parents"."1.0.1"; "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; - "process-0.8.0" = self.by-version."process"."0.8.0"; - "punycode-1.2.4" = self.by-version."punycode"."1.2.4"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "punycode-1.4.1" = self.by-version."punycode"."1.4.1"; "querystring-es3-0.2.1" = self.by-version."querystring-es3"."0.2.1"; + "read-only-stream-1.1.1" = self.by-version."read-only-stream"."1.1.1"; "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "resolve-0.7.4" = self.by-version."resolve"."0.7.4"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; "shallow-copy-0.0.1" = self.by-version."shallow-copy"."0.0.1"; - "shasum-1.0.1" = self.by-version."shasum"."1.0.1"; + "shasum-1.0.2" = self.by-version."shasum"."1.0.2"; "shell-quote-0.0.1" = self.by-version."shell-quote"."0.0.1"; "stream-browserify-1.0.0" = self.by-version."stream-browserify"."1.0.0"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; - "syntax-error-1.1.2" = self.by-version."syntax-error"."1.1.2"; + "syntax-error-1.1.6" = self.by-version."syntax-error"."1.1.6"; "through2-1.1.1" = self.by-version."through2"."1.1.1"; - "timers-browserify-1.4.0" = self.by-version."timers-browserify"."1.4.0"; + "timers-browserify-1.4.2" = self.by-version."timers-browserify"."1.4.2"; "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; - "umd-2.1.0" = self.by-version."umd"."2.1.0"; "url-0.10.3" = self.by-version."url"."0.10.3"; "util-0.10.3" = self.by-version."util"."0.10.3"; "vm-browserify-0.0.4" = self.by-version."vm-browserify"."0.0.4"; - "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."browserify"."~3.19.1" = - self.by-version."browserify"."3.19.1"; - by-version."browserify"."3.19.1" = self.buildNodePackage { - name = "browserify-3.19.1"; - version = "3.19.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/browserify/-/browserify-3.19.1.tgz"; - name = "browserify-3.19.1.tgz"; - sha1 = "e4e994f7c8313432df46b1a2b029d8bab13a456b"; - }; - deps = { - "module-deps-1.2.2" = self.by-version."module-deps"."1.2.2"; - "browser-pack-2.0.1" = self.by-version."browser-pack"."2.0.1"; - "deps-sort-0.1.2" = self.by-version."deps-sort"."0.1.2"; - "shell-quote-0.0.1" = self.by-version."shell-quote"."0.0.1"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "stream-combiner-0.0.4" = self.by-version."stream-combiner"."0.0.4"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "insert-module-globals-2.3.4" = self.by-version."insert-module-globals"."2.3.4"; - "syntax-error-0.0.1" = self.by-version."syntax-error"."0.0.1"; - "browser-resolve-1.2.4" = self.by-version."browser-resolve"."1.2.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "umd-2.0.0" = self.by-version."umd"."2.0.0"; - "parents-0.0.3" = self.by-version."parents"."0.0.3"; - "deep-equal-0.1.2" = self.by-version."deep-equal"."0.1.2"; - "constants-browserify-0.0.1" = self.by-version."constants-browserify"."0.0.1"; - "os-browserify-0.1.2" = self.by-version."os-browserify"."0.1.2"; - "console-browserify-1.0.3" = self.by-version."console-browserify"."1.0.3"; - "vm-browserify-0.0.4" = self.by-version."vm-browserify"."0.0.4"; - "zlib-browserify-0.0.3" = self.by-version."zlib-browserify"."0.0.3"; - "assert-1.1.2" = self.by-version."assert"."1.1.2"; - "http-browserify-1.1.0" = self.by-version."http-browserify"."1.1.0"; - "crypto-browserify-1.0.9" = self.by-version."crypto-browserify"."1.0.9"; - "util-0.10.3" = self.by-version."util"."0.10.3"; - "events-1.0.2" = self.by-version."events"."1.0.2"; - "native-buffer-browserify-2.0.17" = self.by-version."native-buffer-browserify"."2.0.17"; - "url-0.7.9" = self.by-version."url"."0.7.9"; - "https-browserify-0.0.0" = self.by-version."https-browserify"."0.0.0"; - "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; - "querystring-0.2.0" = self.by-version."querystring"."0.2.0"; - "stream-browserify-0.1.3" = self.by-version."stream-browserify"."0.1.3"; - "string_decoder-0.0.1" = self.by-version."string_decoder"."0.0.1"; - "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; - "timers-browserify-1.0.3" = self.by-version."timers-browserify"."1.0.3"; - "punycode-1.2.4" = self.by-version."punycode"."1.2.4"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "domain-browser-1.1.4" = self.by-version."domain-browser"."1.1.4"; - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."browserify"."~3.24.1" = - self.by-version."browserify"."3.24.13"; - by-version."browserify"."3.24.13" = self.buildNodePackage { - name = "browserify-3.24.13"; - version = "3.24.13"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/browserify/-/browserify-3.24.13.tgz"; - name = "browserify-3.24.13.tgz"; - sha1 = "d82012886791c4b1edd36612ad508a614e9ad86e"; - }; - deps = { - "module-deps-1.4.2" = self.by-version."module-deps"."1.4.2"; - "browser-pack-2.0.1" = self.by-version."browser-pack"."2.0.1"; - "deps-sort-0.1.2" = self.by-version."deps-sort"."0.1.2"; - "shell-quote-0.0.1" = self.by-version."shell-quote"."0.0.1"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "stream-combiner-0.0.4" = self.by-version."stream-combiner"."0.0.4"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "insert-module-globals-3.1.3" = self.by-version."insert-module-globals"."3.1.3"; - "syntax-error-0.1.0" = self.by-version."syntax-error"."0.1.0"; - "browser-resolve-1.2.4" = self.by-version."browser-resolve"."1.2.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "umd-2.0.0" = self.by-version."umd"."2.0.0"; - "parents-0.0.3" = self.by-version."parents"."0.0.3"; - "deep-equal-0.1.2" = self.by-version."deep-equal"."0.1.2"; - "constants-browserify-0.0.1" = self.by-version."constants-browserify"."0.0.1"; - "os-browserify-0.1.2" = self.by-version."os-browserify"."0.1.2"; - "console-browserify-1.0.3" = self.by-version."console-browserify"."1.0.3"; - "vm-browserify-0.0.4" = self.by-version."vm-browserify"."0.0.4"; - "zlib-browserify-0.0.3" = self.by-version."zlib-browserify"."0.0.3"; - "assert-1.1.2" = self.by-version."assert"."1.1.2"; - "http-browserify-1.1.0" = self.by-version."http-browserify"."1.1.0"; - "crypto-browserify-1.0.9" = self.by-version."crypto-browserify"."1.0.9"; - "util-0.10.3" = self.by-version."util"."0.10.3"; - "events-1.0.2" = self.by-version."events"."1.0.2"; - "native-buffer-browserify-2.0.17" = self.by-version."native-buffer-browserify"."2.0.17"; - "url-0.7.9" = self.by-version."url"."0.7.9"; - "https-browserify-0.0.0" = self.by-version."https-browserify"."0.0.0"; - "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; - "querystring-0.2.0" = self.by-version."querystring"."0.2.0"; - "stream-browserify-0.1.3" = self.by-version."stream-browserify"."0.1.3"; - "string_decoder-0.0.1" = self.by-version."string_decoder"."0.0.1"; - "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; - "timers-browserify-1.0.3" = self.by-version."timers-browserify"."1.0.3"; - "punycode-1.2.4" = self.by-version."punycode"."1.2.4"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "domain-browser-1.1.4" = self.by-version."domain-browser"."1.1.4"; - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "derequire-0.6.1" = self.by-version."derequire"."0.6.1"; - "commondir-0.0.1" = self.by-version."commondir"."0.0.1"; - "shallow-copy-0.0.1" = self.by-version."shallow-copy"."0.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -5290,18 +5659,67 @@ cpu = [ ]; }; by-spec."browserify-aes"."^1.0.0" = - self.by-version."browserify-aes"."1.0.0"; - by-version."browserify-aes"."1.0.0" = self.buildNodePackage { - name = "browserify-aes-1.0.0"; + self.by-version."browserify-aes"."1.0.6"; + by-version."browserify-aes"."1.0.6" = self.buildNodePackage { + name = "browserify-aes-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.6.tgz"; + name = "browserify-aes-1.0.6.tgz"; + sha1 = "5e7725dbdef1fd5930d4ebab48567ce451c48a0a"; + }; + deps = { + "buffer-xor-1.0.3" = self.by-version."buffer-xor"."1.0.3"; + "cipher-base-1.0.2" = self.by-version."cipher-base"."1.0.2"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; + "evp_bytestokey-1.0.0" = self.by-version."evp_bytestokey"."1.0.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."browserify-aes"."^1.0.4" = + self.by-version."browserify-aes"."1.0.6"; + by-spec."browserify-cipher"."^1.0.0" = + self.by-version."browserify-cipher"."1.0.0"; + by-version."browserify-cipher"."1.0.0" = self.buildNodePackage { + name = "browserify-cipher-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.0.0.tgz"; - name = "browserify-aes-1.0.0.tgz"; - sha1 = "582efc30561166f89855fcdc945b686919848b62"; + url = "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.0.tgz"; + name = "browserify-cipher-1.0.0.tgz"; + sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a"; }; deps = { - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; + "browserify-aes-1.0.6" = self.by-version."browserify-aes"."1.0.6"; + "browserify-des-1.0.0" = self.by-version."browserify-des"."1.0.0"; + "evp_bytestokey-1.0.0" = self.by-version."evp_bytestokey"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."browserify-des"."^1.0.0" = + self.by-version."browserify-des"."1.0.0"; + by-version."browserify-des"."1.0.0" = self.buildNodePackage { + name = "browserify-des-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.0.tgz"; + name = "browserify-des-1.0.0.tgz"; + sha1 = "daa277717470922ed2fe18594118a175439721dd"; + }; + deps = { + "cipher-base-1.0.2" = self.by-version."cipher-base"."1.0.2"; + "des.js-1.0.0" = self.by-version."des.js"."1.0.0"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { @@ -5310,20 +5728,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."browserify-rsa"."^2.0.0" = - self.by-version."browserify-rsa"."2.0.0"; - by-version."browserify-rsa"."2.0.0" = self.buildNodePackage { - name = "browserify-rsa-2.0.0"; - version = "2.0.0"; + by-spec."browserify-rsa"."^4.0.0" = + self.by-version."browserify-rsa"."4.0.1"; + by-version."browserify-rsa"."4.0.1" = self.buildNodePackage { + name = "browserify-rsa-4.0.1"; + version = "4.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-2.0.0.tgz"; - name = "browserify-rsa-2.0.0.tgz"; - sha1 = "b3e4f6d03a07db4408bfd9dbc0fef323bfe1bdcb"; + url = "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz"; + name = "browserify-rsa-4.0.1.tgz"; + sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "randombytes-2.0.1" = self.by-version."randombytes"."2.0.1"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "randombytes-2.0.3" = self.by-version."randombytes"."2.0.3"; }; optionalDependencies = { }; @@ -5331,25 +5749,67 @@ os = [ ]; cpu = [ ]; }; - by-spec."browserify-sign"."^3.0.1" = - self.by-version."browserify-sign"."3.0.1"; - by-version."browserify-sign"."3.0.1" = self.buildNodePackage { - name = "browserify-sign-3.0.1"; - version = "3.0.1"; + by-spec."browserify-sign"."^4.0.0" = + self.by-version."browserify-sign"."4.0.0"; + by-version."browserify-sign"."4.0.0" = self.buildNodePackage { + name = "browserify-sign-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browserify-sign/-/browserify-sign-3.0.1.tgz"; - name = "browserify-sign-3.0.1.tgz"; - sha1 = "e1bdf7ca50d575d22e57705c60b3033846dc96bf"; + url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.0.tgz"; + name = "browserify-sign-4.0.0.tgz"; + sha1 = "10773910c3c206d5420a46aad8694f820b85968f"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "browserify-rsa-2.0.0" = self.by-version."browserify-rsa"."2.0.0"; - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; - "create-hmac-1.1.3" = self.by-version."create-hmac"."1.1.3"; - "elliptic-1.0.1" = self.by-version."elliptic"."1.0.1"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "browserify-rsa-4.0.1" = self.by-version."browserify-rsa"."4.0.1"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; + "create-hmac-1.1.4" = self.by-version."create-hmac"."1.1.4"; + "elliptic-6.2.3" = self.by-version."elliptic"."6.2.3"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "parse-asn1-3.0.0" = self.by-version."parse-asn1"."3.0.0"; + "parse-asn1-5.0.0" = self.by-version."parse-asn1"."5.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."browserify-transform-tools"."~1.5.1" = + self.by-version."browserify-transform-tools"."1.5.3"; + by-version."browserify-transform-tools"."1.5.3" = self.buildNodePackage { + name = "browserify-transform-tools-1.5.3"; + version = "1.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/browserify-transform-tools/-/browserify-transform-tools-1.5.3.tgz"; + name = "browserify-transform-tools-1.5.3.tgz"; + sha1 = "509c9c652fb6b07bf0d21efceebb1d826f80754b"; + }; + deps = { + "falafel-1.2.0" = self.by-version."falafel"."1.2.0"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."browserify-versionify"."1.0.3" = + self.by-version."browserify-versionify"."1.0.3"; + by-version."browserify-versionify"."1.0.3" = self.buildNodePackage { + name = "browserify-versionify-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/browserify-versionify/-/browserify-versionify-1.0.3.tgz"; + name = "browserify-versionify-1.0.3.tgz"; + sha1 = "927eaaf85f16fe8d8d59eb1c6da76b488c01406c"; + }; + deps = { + "find-root-0.1.2" = self.by-version."find-root"."0.1.2"; + "through2-0.6.3" = self.by-version."through2"."0.6.3"; }; optionalDependencies = { }; @@ -5364,12 +5824,12 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz"; + url = "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz"; name = "browserify-zlib-0.1.4.tgz"; sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d"; }; deps = { - "pako-0.2.6" = self.by-version."pako"."0.2.6"; + "pako-0.2.8" = self.by-version."pako"."0.2.8"; }; optionalDependencies = { }; @@ -5388,7 +5848,7 @@ version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bs58/-/bs58-2.0.1.tgz"; + url = "https://registry.npmjs.org/bs58/-/bs58-2.0.1.tgz"; name = "bs58-2.0.1.tgz"; sha1 = "55908d58f1982aba2008fa1bed8f91998a29bf8d"; }; @@ -5407,7 +5867,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bs58check/-/bs58check-1.0.3.tgz"; + url = "https://registry.npmjs.org/bs58check/-/bs58check-1.0.3.tgz"; name = "bs58check-1.0.3.tgz"; sha1 = "3e4dc6dde96e60b9db321ea7372fd4fd0523559e"; }; @@ -5427,7 +5887,7 @@ version = "0.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bson/-/bson-0.1.8.tgz"; + url = "https://registry.npmjs.org/bson/-/bson-0.1.8.tgz"; name = "bson-0.1.8.tgz"; sha1 = "cf34fdcff081a189b589b4b3e5e9309cd6506c81"; }; @@ -5446,7 +5906,7 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bson/-/bson-0.2.2.tgz"; + url = "https://registry.npmjs.org/bson/-/bson-0.2.2.tgz"; name = "bson-0.2.2.tgz"; sha1 = "3dbf984acb9d33a6878b46e6fb7afbd611856a60"; }; @@ -5458,60 +5918,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."bson"."~0.2" = - self.by-version."bson"."0.2.21"; - by-version."bson"."0.2.21" = self.buildNodePackage { - name = "bson-0.2.21"; - version = "0.2.21"; + by-spec."bson"."~0.4.18" = + self.by-version."bson"."0.4.23"; + by-version."bson"."0.4.23" = self.buildNodePackage { + name = "bson-0.4.23"; + version = "0.4.23"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bson/-/bson-0.2.21.tgz"; - name = "bson-0.2.21.tgz"; - sha1 = "3755a5de71ac43f0e9a85f699c84d1ab73b0fcb3"; + url = "https://registry.npmjs.org/bson/-/bson-0.4.23.tgz"; + name = "bson-0.4.23.tgz"; + sha1 = "e65a2e3c7507ffade4109bc7575a76e50f8da915"; }; deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bson"."~0.3" = - self.by-version."bson"."0.3.1"; - by-version."bson"."0.3.1" = self.buildNodePackage { - name = "bson-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bson/-/bson-0.3.1.tgz"; - name = "bson-0.3.1.tgz"; - sha1 = "08882fb3a29ee41738a2bcbff8af7081ad9f35bb"; - }; - deps = { - }; - optionalDependencies = { - "bson-ext-0.1.1" = self.by-version."bson-ext"."0.1.1"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bson-ext"."~0.1" = - self.by-version."bson-ext"."0.1.1"; - by-version."bson-ext"."0.1.1" = self.buildNodePackage { - name = "bson-ext-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bson-ext/-/bson-ext-0.1.1.tgz"; - name = "bson-ext-0.1.1.tgz"; - sha1 = "b0406d05097e50d6e0df77bd6127cfee8f7f4e0a"; - }; - deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - "node-pre-gyp-0.6.4" = self.by-version."node-pre-gyp"."0.6.4"; }; optionalDependencies = { }; @@ -5519,21 +5937,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."bson"."~0.4.19" = + self.by-version."bson"."0.4.23"; + by-spec."bson"."~0.4.20" = + self.by-version."bson"."0.4.23"; + by-spec."bson"."~0.4.21" = + self.by-version."bson"."0.4.23"; by-spec."buffer"."^3.0.0" = - self.by-version."buffer"."3.1.2"; - by-version."buffer"."3.1.2" = self.buildNodePackage { - name = "buffer-3.1.2"; - version = "3.1.2"; + self.by-version."buffer"."3.6.0"; + by-version."buffer"."3.6.0" = self.buildNodePackage { + name = "buffer-3.6.0"; + version = "3.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer/-/buffer-3.1.2.tgz"; - name = "buffer-3.1.2.tgz"; - sha1 = "1c679611b961edf16b9c4daf44fb66beb9daa9f0"; + url = "https://registry.npmjs.org/buffer/-/buffer-3.6.0.tgz"; + name = "buffer-3.6.0.tgz"; + sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb"; }; deps = { "base64-js-0.0.8" = self.by-version."base64-js"."0.0.8"; - "ieee754-1.1.4" = self.by-version."ieee754"."1.1.4"; - "is-array-1.0.1" = self.by-version."is-array"."1.0.1"; + "ieee754-1.1.6" = self.by-version."ieee754"."1.1.6"; + "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; }; optionalDependencies = { }; @@ -5542,7 +5966,31 @@ cpu = [ ]; }; by-spec."buffer"."^3.0.3" = - self.by-version."buffer"."3.1.2"; + self.by-version."buffer"."3.6.0"; + by-spec."buffer"."^4.1.0" = + self.by-version."buffer"."4.5.1"; + by-version."buffer"."4.5.1" = self.buildNodePackage { + name = "buffer-4.5.1"; + version = "4.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/buffer/-/buffer-4.5.1.tgz"; + name = "buffer-4.5.1.tgz"; + sha1 = "237b5bdef693c4c332385c1ded4ef4646e232d73"; + }; + deps = { + "base64-js-1.1.2" = self.by-version."base64-js"."1.1.2"; + "ieee754-1.1.6" = self.by-version."ieee754"."1.1.6"; + "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."buffer"."^4.3.0" = + self.by-version."buffer"."4.5.1"; by-spec."buffer-crc32"."0.1.1" = self.by-version."buffer-crc32"."0.1.1"; by-version."buffer-crc32"."0.1.1" = self.buildNodePackage { @@ -5550,7 +5998,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz"; + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.1.1.tgz"; name = "buffer-crc32-0.1.1.tgz"; sha1 = "7e110dc9953908ab7c32acdc70c9f945b1cbc526"; }; @@ -5569,7 +6017,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz"; + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.1.tgz"; name = "buffer-crc32-0.2.1.tgz"; sha1 = "be3e5382fc02b6d6324956ac1af98aa98b08534c"; }; @@ -5588,7 +6036,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.3.tgz"; + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.3.tgz"; name = "buffer-crc32-0.2.3.tgz"; sha1 = "bb54519e95d107cbd2400e76d0cab1467336d921"; }; @@ -5607,7 +6055,7 @@ version = "0.2.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.5.tgz"; + url = "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.5.tgz"; name = "buffer-crc32-0.2.5.tgz"; sha1 = "db003ac2671e62ebd6ece78ea2c2e1b405736e91"; }; @@ -5626,7 +6074,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz"; + url = "https://registry.npmjs.org/buffer-equal/-/buffer-equal-0.0.1.tgz"; name = "buffer-equal-0.0.1.tgz"; sha1 = "91bc74b11ea405bc916bc6aa908faafa5b4aac4b"; }; @@ -5638,23 +6086,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."buffer-equal"."^0.0.1" = - self.by-version."buffer-equal"."0.0.1"; - by-spec."buffer-equal"."~0.0.0" = - self.by-version."buffer-equal"."0.0.1"; - by-spec."buffercursor".">= 0.0.12" = - self.by-version."buffercursor"."0.0.12"; - by-version."buffercursor"."0.0.12" = self.buildNodePackage { - name = "buffercursor-0.0.12"; - version = "0.0.12"; + by-spec."buffer-equal-constant-time"."^1.0.1" = + self.by-version."buffer-equal-constant-time"."1.0.1"; + by-version."buffer-equal-constant-time"."1.0.1" = self.buildNodePackage { + name = "buffer-equal-constant-time-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffercursor/-/buffercursor-0.0.12.tgz"; - name = "buffercursor-0.0.12.tgz"; - sha1 = "78a9a7f4343ae7d820a8999acc80de591e25a779"; + url = "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"; + name = "buffer-equal-constant-time-1.0.1.tgz"; + sha1 = "f8e71132f7ffe6e01a5c9697a4c6f3e48d5cc819"; }; deps = { - "verror-1.6.0" = self.by-version."verror"."1.6.0"; }; optionalDependencies = { }; @@ -5662,16 +6105,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."buffers"."~0.1.1" = - self.by-version."buffers"."0.1.1"; - by-version."buffers"."0.1.1" = self.buildNodePackage { - name = "buffers-0.1.1"; - version = "0.1.1"; + by-spec."buffer-equals"."^1.0.3" = + self.by-version."buffer-equals"."1.0.3"; + by-version."buffer-equals"."1.0.3" = self.buildNodePackage { + name = "buffer-equals-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz"; - name = "buffers-0.1.1.tgz"; - sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"; + url = "https://registry.npmjs.org/buffer-equals/-/buffer-equals-1.0.3.tgz"; + name = "buffer-equals-1.0.3.tgz"; + sha1 = "9e9b8c160a5ceaf68f12ee5a8d2f4ba91c5453e0"; }; deps = { }; @@ -5681,16 +6124,55 @@ os = [ ]; cpu = [ ]; }; + by-spec."buffer-xor"."^1.0.2" = + self.by-version."buffer-xor"."1.0.3"; + by-version."buffer-xor"."1.0.3" = self.buildNodePackage { + name = "buffer-xor-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"; + name = "buffer-xor-1.0.3.tgz"; + sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."buffercursor".">= 0.0.12" = + self.by-version."buffercursor"."0.0.12"; + by-version."buffercursor"."0.0.12" = self.buildNodePackage { + name = "buffercursor-0.0.12"; + version = "0.0.12"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/buffercursor/-/buffercursor-0.0.12.tgz"; + name = "buffercursor-0.0.12.tgz"; + sha1 = "78a9a7f4343ae7d820a8999acc80de591e25a779"; + }; + deps = { + "verror-1.6.1" = self.by-version."verror"."1.6.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."buffertools"."*" = - self.by-version."buffertools"."2.1.2"; - by-version."buffertools"."2.1.2" = self.buildNodePackage { - name = "buffertools-2.1.2"; - version = "2.1.2"; + self.by-version."buffertools"."2.1.3"; + by-version."buffertools"."2.1.3" = self.buildNodePackage { + name = "buffertools-2.1.3"; + version = "2.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buffertools/-/buffertools-2.1.2.tgz"; - name = "buffertools-2.1.2.tgz"; - sha1 = "d667afc1ef8b9932e90a25f2e3a66a929d42daab"; + url = "https://registry.npmjs.org/buffertools/-/buffertools-2.1.3.tgz"; + name = "buffertools-2.1.3.tgz"; + sha1 = "34d3bf0565ed79e29877c2a6217ccfce9a3b3423"; }; deps = { }; @@ -5700,21 +6182,21 @@ os = [ ]; cpu = [ ]; }; - "buffertools" = self.by-version."buffertools"."2.1.2"; - by-spec."bufferutil"."1.0.x" = - self.by-version."bufferutil"."1.0.1"; - by-version."bufferutil"."1.0.1" = self.buildNodePackage { - name = "bufferutil-1.0.1"; - version = "1.0.1"; + "buffertools" = self.by-version."buffertools"."2.1.3"; + by-spec."bufferutil"."1.2.x" = + self.by-version."bufferutil"."1.2.1"; + by-version."bufferutil"."1.2.1" = self.buildNodePackage { + name = "bufferutil-1.2.1"; + version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bufferutil/-/bufferutil-1.0.1.tgz"; - name = "bufferutil-1.0.1.tgz"; - sha1 = "0c53a9ffe8d616c4e2df27d00b808f7a25501e3b"; + url = "https://registry.npmjs.org/bufferutil/-/bufferutil-1.2.1.tgz"; + name = "bufferutil-1.2.1.tgz"; + sha1 = "37be5d36e1e06492221e68d474b1ac58e510cbd7"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.6.2" = self.by-version."nan"."1.6.2"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -5729,7 +6211,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz"; + url = "https://registry.npmjs.org/bufferview/-/bufferview-1.0.1.tgz"; name = "bufferview-1.0.1.tgz"; sha1 = "7afd74a45f937fa422a1d338c08bbfdc76cd725d"; }; @@ -5741,23 +6223,86 @@ os = [ ]; cpu = [ ]; }; - by-spec."buildmail"."^1.2.0" = - self.by-version."buildmail"."1.2.4"; - by-version."buildmail"."1.2.4" = self.buildNodePackage { - name = "buildmail-1.2.4"; - version = "1.2.4"; + by-spec."buildmail"."3.6.0" = + self.by-version."buildmail"."3.6.0"; + by-version."buildmail"."3.6.0" = self.buildNodePackage { + name = "buildmail-3.6.0"; + version = "3.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/buildmail/-/buildmail-1.2.4.tgz"; - name = "buildmail-1.2.4.tgz"; - sha1 = "b59ce7e5e2a5b4d79e397740f8aa66307b758b91"; + url = "https://registry.npmjs.org/buildmail/-/buildmail-3.6.0.tgz"; + name = "buildmail-3.6.0.tgz"; + sha1 = "460088de78b4ad6b5475cdc88370212b77081617"; + }; + deps = { + "addressparser-1.0.1" = self.by-version."addressparser"."1.0.1"; + "libbase64-0.1.0" = self.by-version."libbase64"."0.1.0"; + "libmime-2.0.3" = self.by-version."libmime"."2.0.3"; + "libqp-1.1.0" = self.by-version."libqp"."1.1.0"; + "nodemailer-fetch-1.3.0" = self.by-version."nodemailer-fetch"."1.3.0"; + "nodemailer-shared-1.0.4" = self.by-version."nodemailer-shared"."1.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."buildmail"."^1.2.4" = + self.by-version."buildmail"."1.3.0"; + by-version."buildmail"."1.3.0" = self.buildNodePackage { + name = "buildmail-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/buildmail/-/buildmail-1.3.0.tgz"; + name = "buildmail-1.3.0.tgz"; + sha1 = "f5e4b75026147d5ebe1a24dc61312a3cff4df725"; }; deps = { "addressparser-0.3.2" = self.by-version."addressparser"."0.3.2"; - "hyperquest-1.2.0" = self.by-version."hyperquest"."1.2.0"; + "hyperquest-1.3.0" = self.by-version."hyperquest"."1.3.0"; "libbase64-0.1.0" = self.by-version."libbase64"."0.1.0"; - "libmime-1.0.0" = self.by-version."libmime"."1.0.0"; - "libqp-1.0.0" = self.by-version."libqp"."1.0.0"; + "libmime-1.2.0" = self.by-version."libmime"."1.2.0"; + "libqp-1.1.0" = self.by-version."libqp"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."builtin-modules"."^1.0.0" = + self.by-version."builtin-modules"."1.1.1"; + by-version."builtin-modules"."1.1.1" = self.buildNodePackage { + name = "builtin-modules-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; + name = "builtin-modules-1.1.1.tgz"; + sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."builtin-status-codes"."^2.0.0" = + self.by-version."builtin-status-codes"."2.0.0"; + by-version."builtin-status-codes"."2.0.0" = self.buildNodePackage { + name = "builtin-status-codes-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-2.0.0.tgz"; + name = "builtin-status-codes-2.0.0.tgz"; + sha1 = "6f22003baacf003ccd287afe6872151fddc58579"; + }; + deps = { }; optionalDependencies = { }; @@ -5772,7 +6317,7 @@ version = "0.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/builtins/-/builtins-0.0.7.tgz"; + url = "https://registry.npmjs.org/builtins/-/builtins-0.0.7.tgz"; name = "builtins-0.0.7.tgz"; sha1 = "355219cd6cf18dbe7c01cc7fd2dce765cfdc549a"; }; @@ -5786,26 +6331,6 @@ }; by-spec."builtins"."~0.0.3" = self.by-version."builtins"."0.0.7"; - by-spec."bunker"."0.1.X" = - self.by-version."bunker"."0.1.2"; - by-version."bunker"."0.1.2" = self.buildNodePackage { - name = "bunker-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bunker/-/bunker-0.1.2.tgz"; - name = "bunker-0.1.2.tgz"; - sha1 = "c88992464a8e2a6ede86930375f92b58077ef97c"; - }; - deps = { - "burrito-0.2.12" = self.by-version."burrito"."0.2.12"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."bunyan"."0.22.1" = self.by-version."bunyan"."0.22.1"; by-version."bunyan"."0.22.1" = self.buildNodePackage { @@ -5813,7 +6338,7 @@ version = "0.22.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bunyan/-/bunyan-0.22.1.tgz"; + url = "https://registry.npmjs.org/bunyan/-/bunyan-0.22.1.tgz"; name = "bunyan-0.22.1.tgz"; sha1 = "020c383bed625af5c6c8834dd8c4aca0dd0f765c"; }; @@ -5827,22 +6352,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."bunyan"."1.3.4" = - self.by-version."bunyan"."1.3.4"; - by-version."bunyan"."1.3.4" = self.buildNodePackage { - name = "bunyan-1.3.4"; - version = "1.3.4"; + by-spec."bunyan"."1.5.1" = + self.by-version."bunyan"."1.5.1"; + by-version."bunyan"."1.5.1" = self.buildNodePackage { + name = "bunyan-1.5.1"; + version = "1.5.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bunyan/-/bunyan-1.3.4.tgz"; - name = "bunyan-1.3.4.tgz"; - sha1 = "0ef916d497912896ca4080e0f8764bd408735c8c"; + url = "https://registry.npmjs.org/bunyan/-/bunyan-1.5.1.tgz"; + name = "bunyan-1.5.1.tgz"; + sha1 = "5f6e7d44c43b952f56b0f41309e3ab12391b4e2d"; }; deps = { }; optionalDependencies = { - "dtrace-provider-0.4.0" = self.by-version."dtrace-provider"."0.4.0"; - "mv-2.0.3" = self.by-version."mv"."2.0.3"; + "dtrace-provider-0.6.0" = self.by-version."dtrace-provider"."0.6.0"; + "mv-2.1.1" = self.by-version."mv"."2.1.1"; "safe-json-stringify-1.0.3" = self.by-version."safe-json-stringify"."1.0.3"; }; peerDependencies = []; @@ -5850,29 +6375,30 @@ cpu = [ ]; }; by-spec."bunyan".">=0.22.1 <2.0.0-0" = - self.by-version."bunyan"."1.3.5"; - by-version."bunyan"."1.3.5" = self.buildNodePackage { - name = "bunyan-1.3.5"; - version = "1.3.5"; + self.by-version."bunyan"."1.8.0"; + by-version."bunyan"."1.8.0" = self.buildNodePackage { + name = "bunyan-1.8.0"; + version = "1.8.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bunyan/-/bunyan-1.3.5.tgz"; - name = "bunyan-1.3.5.tgz"; - sha1 = "49803cee624667132484b535e1831e7a777791b0"; + url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.0.tgz"; + name = "bunyan-1.8.0.tgz"; + sha1 = "8a4d4cc1dbb144f5298eb86c10431a934f8df053"; }; deps = { }; optionalDependencies = { - "dtrace-provider-0.4.0" = self.by-version."dtrace-provider"."0.4.0"; - "mv-2.0.3" = self.by-version."mv"."2.0.3"; + "dtrace-provider-0.6.0" = self.by-version."dtrace-provider"."0.6.0"; + "mv-2.1.1" = self.by-version."mv"."2.1.1"; "safe-json-stringify-1.0.3" = self.by-version."safe-json-stringify"."1.0.3"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."bunyan"."^1.2.3" = - self.by-version."bunyan"."1.3.5"; + by-spec."bunyan"."^1.4.0" = + self.by-version."bunyan"."1.8.0"; by-spec."bunyan"."~1.0.0" = self.by-version."bunyan"."1.0.1"; by-version."bunyan"."1.0.1" = self.buildNodePackage { @@ -5880,53 +6406,32 @@ version = "1.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/bunyan/-/bunyan-1.0.1.tgz"; + url = "https://registry.npmjs.org/bunyan/-/bunyan-1.0.1.tgz"; name = "bunyan-1.0.1.tgz"; sha1 = "9916a8c1832020c2d095656d923da5963db05466"; }; deps = { }; optionalDependencies = { - "mv-2.0.3" = self.by-version."mv"."2.0.3"; + "mv-2.1.1" = self.by-version."mv"."2.1.1"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."burrito".">=0.2.5 <0.3" = - self.by-version."burrito"."0.2.12"; - by-version."burrito"."0.2.12" = self.buildNodePackage { - name = "burrito-0.2.12"; - version = "0.2.12"; + by-spec."busboy"."*" = + self.by-version."busboy"."0.2.13"; + by-version."busboy"."0.2.13" = self.buildNodePackage { + name = "busboy-0.2.13"; + version = "0.2.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/burrito/-/burrito-0.2.12.tgz"; - name = "burrito-0.2.12.tgz"; - sha1 = "d0d6e6ac81d5e99789c6fa4accb0b0031ea54f6b"; + url = "https://registry.npmjs.org/busboy/-/busboy-0.2.13.tgz"; + name = "busboy-0.2.13.tgz"; + sha1 = "90fc4f6a3967d815616fc976bfa8e56aed0c58b6"; }; deps = { - "traverse-0.5.2" = self.by-version."traverse"."0.5.2"; - "uglify-js-1.1.1" = self.by-version."uglify-js"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."busboy"."~0.2.9" = - self.by-version."busboy"."0.2.9"; - by-version."busboy"."0.2.9" = self.buildNodePackage { - name = "busboy-0.2.9"; - version = "0.2.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/busboy/-/busboy-0.2.9.tgz"; - name = "busboy-0.2.9.tgz"; - sha1 = "a0a181e78b19dee76974560f55843b09eaea7376"; - }; - deps = { - "dicer-0.2.3" = self.by-version."dicer"."0.2.3"; + "dicer-0.2.5" = self.by-version."dicer"."0.2.5"; "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; }; optionalDependencies = { @@ -5935,19 +6440,21 @@ os = [ ]; cpu = [ ]; }; + by-spec."busboy"."~0.2.9" = + self.by-version."busboy"."0.2.13"; by-spec."bytebuffer"."~3 >=3.5" = - self.by-version."bytebuffer"."3.5.4"; - by-version."bytebuffer"."3.5.4" = self.buildNodePackage { - name = "bytebuffer-3.5.4"; - version = "3.5.4"; + self.by-version."bytebuffer"."3.5.5"; + by-version."bytebuffer"."3.5.5" = self.buildNodePackage { + name = "bytebuffer-3.5.5"; + version = "3.5.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.4.tgz"; - name = "bytebuffer-3.5.4.tgz"; - sha1 = "436e2733174f96aaa978b0926749e83fa162e786"; + url = "https://registry.npmjs.org/bytebuffer/-/bytebuffer-3.5.5.tgz"; + name = "bytebuffer-3.5.5.tgz"; + sha1 = "7a6faf1a13514b083f1fcf9541c4c9bfbe7e7fd3"; }; deps = { - "long-2.2.3" = self.by-version."long"."2.2.3"; + "long-2.4.0" = self.by-version."long"."2.4.0"; "bufferview-1.0.1" = self.by-version."bufferview"."1.0.1"; }; optionalDependencies = { @@ -5963,7 +6470,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz"; + url = "https://registry.npmjs.org/bytes/-/bytes-0.1.0.tgz"; name = "bytes-0.1.0.tgz"; sha1 = "c574812228126d6369d1576925a8579db3f8e5a2"; }; @@ -5982,7 +6489,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytes/-/bytes-0.2.0.tgz"; + url = "https://registry.npmjs.org/bytes/-/bytes-0.2.0.tgz"; name = "bytes-0.2.0.tgz"; sha1 = "aad33ec14e3dc2ca74e8e7d451f9ba053ad4f7a0"; }; @@ -6001,7 +6508,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz"; + url = "https://registry.npmjs.org/bytes/-/bytes-0.2.1.tgz"; name = "bytes-0.2.1.tgz"; sha1 = "555b08abcb063f8975905302523e4cd4ffdfdf31"; }; @@ -6020,7 +6527,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytes/-/bytes-0.3.0.tgz"; + url = "https://registry.npmjs.org/bytes/-/bytes-0.3.0.tgz"; name = "bytes-0.3.0.tgz"; sha1 = "78e2e0e28c7f9c7b988ea8aee0db4d5fa9941935"; }; @@ -6039,7 +6546,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz"; + url = "https://registry.npmjs.org/bytes/-/bytes-1.0.0.tgz"; name = "bytes-1.0.0.tgz"; sha1 = "3569ede8ba34315fab99c3e92cb04c7220de1fa8"; }; @@ -6053,23 +6560,141 @@ }; by-spec."bytes"."1.0.0" = self.by-version."bytes"."1.0.0"; + by-spec."bytes"."2.1.0" = + self.by-version."bytes"."2.1.0"; + by-version."bytes"."2.1.0" = self.buildNodePackage { + name = "bytes-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bytes/-/bytes-2.1.0.tgz"; + name = "bytes-2.1.0.tgz"; + sha1 = "ac93c410e2ffc9cc7cf4b464b38289067f5e47b4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bytes"."2.2.0" = + self.by-version."bytes"."2.2.0"; + by-version."bytes"."2.2.0" = self.buildNodePackage { + name = "bytes-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz"; + name = "bytes-2.2.0.tgz"; + sha1 = "fd35464a403f6f9117c2de3609ecff9cae000588"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bytes"."2.3.0" = + self.by-version."bytes"."2.3.0"; + by-version."bytes"."2.3.0" = self.buildNodePackage { + name = "bytes-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bytes/-/bytes-2.3.0.tgz"; + name = "bytes-2.3.0.tgz"; + sha1 = "d5b680a165b6201739acb611542aabc2d8ceb070"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."bytes"."~0.2.0" = self.by-version."bytes"."0.2.1"; by-spec."bytes"."~0.3.0" = self.by-version."bytes"."0.3.0"; - by-spec."bytewise"."~0.7.1" = - self.by-version."bytewise"."0.7.1"; - by-version."bytewise"."0.7.1" = self.buildNodePackage { - name = "bytewise-0.7.1"; - version = "0.7.1"; + by-spec."bytewise"."~1.1.0" = + self.by-version."bytewise"."1.1.0"; + by-version."bytewise"."1.1.0" = self.buildNodePackage { + name = "bytewise-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/bytewise/-/bytewise-0.7.1.tgz"; - name = "bytewise-0.7.1.tgz"; - sha1 = "43a479d763c85256d5467c8fe05a734f4f2eac2e"; + url = "https://registry.npmjs.org/bytewise/-/bytewise-1.1.0.tgz"; + name = "bytewise-1.1.0.tgz"; + sha1 = "1d13cbff717ae7158094aa881b35d081b387253e"; }; deps = { - "bops-0.1.1" = self.by-version."bops"."0.1.1"; + "bytewise-core-1.2.3" = self.by-version."bytewise-core"."1.2.3"; + "typewise-1.0.3" = self.by-version."typewise"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."bytewise-core"."^1.2.2" = + self.by-version."bytewise-core"."1.2.3"; + by-version."bytewise-core"."1.2.3" = self.buildNodePackage { + name = "bytewise-core-1.2.3"; + version = "1.2.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/bytewise-core/-/bytewise-core-1.2.3.tgz"; + name = "bytewise-core-1.2.3.tgz"; + sha1 = "3fb410c7e91558eb1ab22a82834577aa6bd61d42"; + }; + deps = { + "typewise-core-1.2.0" = self.by-version."typewise-core"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."caller"."~0.0.1" = + self.by-version."caller"."0.0.1"; + by-version."caller"."0.0.1" = self.buildNodePackage { + name = "caller-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/caller/-/caller-0.0.1.tgz"; + name = "caller-0.0.1.tgz"; + sha1 = "f37a1d6ea10e829d94721ae29a90bb4fb52ab767"; + }; + deps = { + "tape-2.3.3" = self.by-version."tape"."2.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."caller-path"."^0.1.0" = + self.by-version."caller-path"."0.1.0"; + by-version."caller-path"."0.1.0" = self.buildNodePackage { + name = "caller-path-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz"; + name = "caller-path-0.1.0.tgz"; + sha1 = "94085ef63581ecd3daa92444a8fe94e82577751f"; + }; + deps = { + "callsites-0.2.0" = self.by-version."callsites"."0.2.0"; }; optionalDependencies = { }; @@ -6084,7 +6709,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; + url = "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz"; name = "callsite-1.0.0.tgz"; sha1 = "280398e5d664bd74038b6f0905153e6e8af1bc20"; }; @@ -6096,18 +6721,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."callsite"."~1.0.0" = - self.by-version."callsite"."1.0.0"; - by-spec."camelcase"."^1.0.1" = - self.by-version."camelcase"."1.0.2"; - by-version."camelcase"."1.0.2" = self.buildNodePackage { - name = "camelcase-1.0.2"; - version = "1.0.2"; + by-spec."callsites"."^0.2.0" = + self.by-version."callsites"."0.2.0"; + by-version."callsites"."0.2.0" = self.buildNodePackage { + name = "callsites-0.2.0"; + version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/camelcase/-/camelcase-1.0.2.tgz"; - name = "camelcase-1.0.2.tgz"; - sha1 = "7912eac1d496836782c976c2d73e874dc54f2eaf"; + url = "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz"; + name = "callsites-0.2.0.tgz"; + sha1 = "afab96262910a7f33c19a5775825c69f34e350ca"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."camelcase"."^1.0.1" = + self.by-version."camelcase"."1.2.1"; + by-version."camelcase"."1.2.1" = self.buildNodePackage { + name = "camelcase-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz"; + name = "camelcase-1.2.1.tgz"; + sha1 = "9bb5304d2e0b56698b2c758b08a3eaa9daa58a39"; }; deps = { }; @@ -6118,21 +6760,21 @@ cpu = [ ]; }; by-spec."camelcase"."^1.0.2" = - self.by-version."camelcase"."1.0.2"; - by-spec."camelcase-keys"."^1.0.0" = - self.by-version."camelcase-keys"."1.0.0"; - by-version."camelcase-keys"."1.0.0" = self.buildNodePackage { - name = "camelcase-keys-1.0.0"; - version = "1.0.0"; + self.by-version."camelcase"."1.2.1"; + by-spec."camelcase"."^1.2.1" = + self.by-version."camelcase"."1.2.1"; + by-spec."camelcase"."^2.0.0" = + self.by-version."camelcase"."2.1.1"; + by-version."camelcase"."2.1.1" = self.buildNodePackage { + name = "camelcase-2.1.1"; + version = "2.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz"; - name = "camelcase-keys-1.0.0.tgz"; - sha1 = "bd1a11bf9b31a1ce493493a930de1a0baf4ad7ec"; + url = "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"; + name = "camelcase-2.1.1.tgz"; + sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; }; deps = { - "camelcase-1.0.2" = self.by-version."camelcase"."1.0.2"; - "map-obj-1.0.0" = self.by-version."map-obj"."1.0.0"; }; optionalDependencies = { }; @@ -6140,20 +6782,62 @@ os = [ ]; cpu = [ ]; }; - by-spec."cardinal"."0.4.4" = - self.by-version."cardinal"."0.4.4"; - by-version."cardinal"."0.4.4" = self.buildNodePackage { - name = "cardinal-0.4.4"; - version = "0.4.4"; - bin = true; + by-spec."camelcase"."^2.0.1" = + self.by-version."camelcase"."2.1.1"; + by-spec."camelcase-keys"."^1.0.0" = + self.by-version."camelcase-keys"."1.0.0"; + by-version."camelcase-keys"."1.0.0" = self.buildNodePackage { + name = "camelcase-keys-1.0.0"; + version = "1.0.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cardinal/-/cardinal-0.4.4.tgz"; - name = "cardinal-0.4.4.tgz"; - sha1 = "ca5bb68a5b511b90fe93b9acea49bdee5c32bfe2"; + url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz"; + name = "camelcase-keys-1.0.0.tgz"; + sha1 = "bd1a11bf9b31a1ce493493a930de1a0baf4ad7ec"; + }; + deps = { + "camelcase-1.2.1" = self.by-version."camelcase"."1.2.1"; + "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."camelcase-keys"."^2.0.0" = + self.by-version."camelcase-keys"."2.1.0"; + by-version."camelcase-keys"."2.1.0" = self.buildNodePackage { + name = "camelcase-keys-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; + name = "camelcase-keys-2.1.0.tgz"; + sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; + }; + deps = { + "camelcase-2.1.1" = self.by-version."camelcase"."2.1.1"; + "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."caseless"."~0.11.0" = + self.by-version."caseless"."0.11.0"; + by-version."caseless"."0.11.0" = self.buildNodePackage { + name = "caseless-0.11.0"; + version = "0.11.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; + name = "caseless-0.11.0.tgz"; + sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; }; deps = { - "redeyed-0.4.4" = self.by-version."redeyed"."0.4.4"; - "ansicolors-0.2.1" = self.by-version."ansicolors"."0.2.1"; }; optionalDependencies = { }; @@ -6168,7 +6852,7 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/caseless/-/caseless-0.6.0.tgz"; + url = "https://registry.npmjs.org/caseless/-/caseless-0.6.0.tgz"; name = "caseless-0.6.0.tgz"; sha1 = "8167c1ab8397fb5bb95f96d28e5a81c50f247ac4"; }; @@ -6180,25 +6864,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."caseless"."~0.7.0" = - self.by-version."caseless"."0.7.0"; - by-version."caseless"."0.7.0" = self.buildNodePackage { - name = "caseless-0.7.0"; - version = "0.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/caseless/-/caseless-0.7.0.tgz"; - name = "caseless-0.7.0.tgz"; - sha1 = "cbd705ae6229158bb0bc971bf7d7a04bdbd51ff8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."caseless"."~0.8.0" = self.by-version."caseless"."0.8.0"; by-version."caseless"."0.8.0" = self.buildNodePackage { @@ -6206,7 +6871,7 @@ version = "0.8.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/caseless/-/caseless-0.8.0.tgz"; + url = "https://registry.npmjs.org/caseless/-/caseless-0.8.0.tgz"; name = "caseless-0.8.0.tgz"; sha1 = "5bca2881d41437f54b2407ebe34888c7b9ad4f7d"; }; @@ -6225,7 +6890,7 @@ version = "0.9.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/caseless/-/caseless-0.9.0.tgz"; + url = "https://registry.npmjs.org/caseless/-/caseless-0.9.0.tgz"; name = "caseless-0.9.0.tgz"; sha1 = "b7b65ce6bf1413886539cfd533f0b30effa9cf88"; }; @@ -6238,40 +6903,40 @@ cpu = [ ]; }; by-spec."castnow"."*" = - self.by-version."castnow"."0.4.13"; - by-version."castnow"."0.4.13" = self.buildNodePackage { - name = "castnow-0.4.13"; - version = "0.4.13"; + self.by-version."castnow"."0.4.15"; + by-version."castnow"."0.4.15" = self.buildNodePackage { + name = "castnow-0.4.15"; + version = "0.4.15"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/castnow/-/castnow-0.4.13.tgz"; - name = "castnow-0.4.13.tgz"; - sha1 = "8bb190fb7bffbfc9918b2d226c78905994200e4b"; + url = "https://registry.npmjs.org/castnow/-/castnow-0.4.15.tgz"; + name = "castnow-0.4.15.tgz"; + sha1 = "bd4867334e7cb0df5f53b851021b3da8772fca68"; }; deps = { "array-loop-1.0.0" = self.by-version."array-loop"."1.0.0"; - "castv2-client-0.0.8" = self.by-version."castv2-client"."0.0.8"; + "castv2-client-1.1.1" = self.by-version."castv2-client"."1.1.1"; "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "chromecast-player-0.2.2" = self.by-version."chromecast-player"."0.2.2"; + "chromecast-player-0.2.3" = self.by-version."chromecast-player"."0.2.3"; "debounced-seeker-1.0.0" = self.by-version."debounced-seeker"."1.0.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "fs-extended-0.2.0" = self.by-version."fs-extended"."0.2.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "fs-extended-0.2.1" = self.by-version."fs-extended"."0.2.1"; "get-youtube-id-0.1.3" = self.by-version."get-youtube-id"."0.1.3"; "got-1.2.2" = self.by-version."got"."1.2.2"; - "internal-ip-1.0.0" = self.by-version."internal-ip"."1.0.0"; + "internal-ip-1.2.0" = self.by-version."internal-ip"."1.2.0"; "keypress-0.2.1" = self.by-version."keypress"."0.2.1"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; "peerflix-0.29.2" = self.by-version."peerflix"."0.29.2"; "playerui-1.2.0" = self.by-version."playerui"."1.2.0"; - "query-string-1.0.0" = self.by-version."query-string"."1.0.0"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; + "query-string-1.0.1" = self.by-version."query-string"."1.0.1"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; "read-torrent-1.3.0" = self.by-version."read-torrent"."1.3.0"; "router-0.6.2" = self.by-version."router"."0.6.2"; - "srt2vtt-1.2.0" = self.by-version."srt2vtt"."1.2.0"; + "srt2vtt-1.3.1" = self.by-version."srt2vtt"."1.3.1"; "stream-transcoder-0.0.5" = self.by-version."stream-transcoder"."0.0.5"; - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -6279,20 +6944,20 @@ os = [ ]; cpu = [ ]; }; - "castnow" = self.by-version."castnow"."0.4.13"; + "castnow" = self.by-version."castnow"."0.4.15"; by-spec."castv2"."~0.1.4" = - self.by-version."castv2"."0.1.4"; - by-version."castv2"."0.1.4" = self.buildNodePackage { - name = "castv2-0.1.4"; - version = "0.1.4"; + self.by-version."castv2"."0.1.6"; + by-version."castv2"."0.1.6" = self.buildNodePackage { + name = "castv2-0.1.6"; + version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/castv2/-/castv2-0.1.4.tgz"; - name = "castv2-0.1.4.tgz"; - sha1 = "f67a8bc4883dc0e1ba0e66ae937c3c9f9914974b"; + url = "https://registry.npmjs.org/castv2/-/castv2-0.1.6.tgz"; + name = "castv2-0.1.6.tgz"; + sha1 = "4465c75684dbac6ad21c93761aa86557da9e0015"; }; deps = { - "debug-0.8.1" = self.by-version."debug"."0.8.1"; + "debug-1.0.4" = self.by-version."debug"."1.0.4"; "protobufjs-3.8.2" = self.by-version."protobufjs"."3.8.2"; }; optionalDependencies = { @@ -6301,20 +6966,41 @@ os = [ ]; cpu = [ ]; }; - by-spec."castv2-client"."0.0.8" = - self.by-version."castv2-client"."0.0.8"; - by-version."castv2-client"."0.0.8" = self.buildNodePackage { - name = "castv2-client-0.0.8"; - version = "0.0.8"; + by-spec."castv2-client"."^1.1.0" = + self.by-version."castv2-client"."1.1.1"; + by-version."castv2-client"."1.1.1" = self.buildNodePackage { + name = "castv2-client-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/castv2-client/-/castv2-client-0.0.8.tgz"; - name = "castv2-client-0.0.8.tgz"; - sha1 = "a47adf5cc10575e2a71f3b05eb2b72c8d26bbbdc"; + url = "https://registry.npmjs.org/castv2-client/-/castv2-client-1.1.1.tgz"; + name = "castv2-client-1.1.1.tgz"; + sha1 = "3014b89b830b424f72c17708beb2a1c4e7b1fc88"; }; deps = { "debug-1.0.4" = self.by-version."debug"."1.0.4"; - "castv2-0.1.4" = self.by-version."castv2"."0.1.4"; + "castv2-0.1.6" = self.by-version."castv2"."0.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."center-align"."^0.1.1" = + self.by-version."center-align"."0.1.3"; + by-version."center-align"."0.1.3" = self.buildNodePackage { + name = "center-align-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz"; + name = "center-align-0.1.3.tgz"; + sha1 = "aa0d32629b6ee972200411cbd4461c907bc2b7ad"; + }; + deps = { + "align-text-0.1.4" = self.by-version."align-text"."0.1.4"; + "lazy-cache-1.0.3" = self.by-version."lazy-cache"."1.0.3"; }; optionalDependencies = { }; @@ -6323,19 +7009,20 @@ cpu = [ ]; }; by-spec."chai"."*" = - self.by-version."chai"."2.2.0"; - by-version."chai"."2.2.0" = self.buildNodePackage { - name = "chai-2.2.0"; - version = "2.2.0"; + self.by-version."chai"."3.5.0"; + by-version."chai"."3.5.0" = self.buildNodePackage { + name = "chai-3.5.0"; + version = "3.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chai/-/chai-2.2.0.tgz"; - name = "chai-2.2.0.tgz"; - sha1 = "d21135623bd393ad4702d94536eca482ad78d01d"; + url = "https://registry.npmjs.org/chai/-/chai-3.5.0.tgz"; + name = "chai-3.5.0.tgz"; + sha1 = "4d02637b067fe958bdbfdd3a40ec56fef7373247"; }; deps = { - "assertion-error-1.0.0" = self.by-version."assertion-error"."1.0.0"; + "assertion-error-1.0.1" = self.by-version."assertion-error"."1.0.1"; "deep-eql-0.1.3" = self.by-version."deep-eql"."0.1.3"; + "type-detect-1.0.0" = self.by-version."type-detect"."1.0.0"; }; optionalDependencies = { }; @@ -6343,42 +7030,22 @@ os = [ ]; cpu = [ ]; }; - "chai" = self.by-version."chai"."2.2.0"; + "chai" = self.by-version."chai"."3.5.0"; by-spec."chain-node".">=0.0.17" = - self.by-version."chain-node"."3.1.0"; - by-version."chain-node"."3.1.0" = self.buildNodePackage { - name = "chain-node-3.1.0"; - version = "3.1.0"; + self.by-version."chain-node"."3.1.2"; + by-version."chain-node"."3.1.2" = self.buildNodePackage { + name = "chain-node-3.1.2"; + version = "3.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chain-node/-/chain-node-3.1.0.tgz"; - name = "chain-node-3.1.0.tgz"; - sha1 = "13eca851bbf3ed20877ce15b725ebb7a5c60e54b"; + url = "https://registry.npmjs.org/chain-node/-/chain-node-3.1.2.tgz"; + name = "chain-node-3.1.2.tgz"; + sha1 = "75cb8d02e06732027eed3bebe145d92c93a6fc9b"; }; deps = { "request-2.36.0" = self.by-version."request"."2.36.0"; "bitcoinjs-lib-1.2.0" = self.by-version."bitcoinjs-lib"."1.2.0"; - "bigi-1.4.0" = self.by-version."bigi"."1.4.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."chainsaw"."~0.1.0" = - self.by-version."chainsaw"."0.1.0"; - by-version."chainsaw"."0.1.0" = self.buildNodePackage { - name = "chainsaw-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz"; - name = "chainsaw-0.1.0.tgz"; - sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98"; - }; - deps = { - "traverse-0.3.9" = self.by-version."traverse"."0.3.9"; + "bigi-1.4.1" = self.by-version."bigi"."1.4.1"; }; optionalDependencies = { }; @@ -6393,13 +7060,13 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-1.0.0.tgz"; name = "chalk-1.0.0.tgz"; sha1 = "b3cf4ed0ff5397c99c75b8f679db2f52831f96dc"; }; deps = { - "ansi-styles-2.0.1" = self.by-version."ansi-styles"."2.0.1"; - "escape-string-regexp-1.0.3" = self.by-version."escape-string-regexp"."1.0.3"; + "ansi-styles-2.2.1" = self.by-version."ansi-styles"."2.2.1"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; "has-ansi-1.0.3" = self.by-version."has-ansi"."1.0.3"; "strip-ansi-2.0.1" = self.by-version."strip-ansi"."2.0.1"; "supports-color-1.3.1" = self.by-version."supports-color"."1.3.1"; @@ -6410,20 +7077,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."chalk"."^0.5.0" = + by-spec."chalk"."^0.5.1" = self.by-version."chalk"."0.5.1"; by-version."chalk"."0.5.1" = self.buildNodePackage { name = "chalk-0.5.1"; version = "0.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; + url = "https://registry.npmjs.org/chalk/-/chalk-0.5.1.tgz"; name = "chalk-0.5.1.tgz"; sha1 = "663b3a648b68b55d04690d49167aa837858f2174"; }; deps = { "ansi-styles-1.1.0" = self.by-version."ansi-styles"."1.1.0"; - "escape-string-regexp-1.0.3" = self.by-version."escape-string-regexp"."1.0.3"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; "has-ansi-0.1.0" = self.by-version."has-ansi"."0.1.0"; "strip-ansi-0.3.0" = self.by-version."strip-ansi"."0.3.0"; "supports-color-0.2.0" = self.by-version."supports-color"."0.2.0"; @@ -6434,22 +7101,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."chalk"."^0.5.1" = - self.by-version."chalk"."0.5.1"; by-spec."chalk"."^1.0.0" = - self.by-version."chalk"."1.0.0"; - by-spec."char-spinner"."~1.0.1" = - self.by-version."char-spinner"."1.0.1"; - by-version."char-spinner"."1.0.1" = self.buildNodePackage { - name = "char-spinner-1.0.1"; - version = "1.0.1"; + self.by-version."chalk"."1.1.3"; + by-version."chalk"."1.1.3" = self.buildNodePackage { + name = "chalk-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/char-spinner/-/char-spinner-1.0.1.tgz"; - name = "char-spinner-1.0.1.tgz"; - sha1 = "e6ea67bd247e107112983b7ab0479ed362800081"; + url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; + name = "chalk-1.1.3.tgz"; + sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; }; deps = { + "ansi-styles-2.2.1" = self.by-version."ansi-styles"."2.2.1"; + "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; + "has-ansi-2.0.0" = self.by-version."has-ansi"."2.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "supports-color-2.0.0" = self.by-version."supports-color"."2.0.0"; }; optionalDependencies = { }; @@ -6457,16 +7125,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."character-parser"."1.2.0" = - self.by-version."character-parser"."1.2.0"; - by-version."character-parser"."1.2.0" = self.buildNodePackage { - name = "character-parser-1.2.0"; - version = "1.2.0"; + by-spec."chalk"."^1.1.1" = + self.by-version."chalk"."1.1.3"; + by-spec."chalk"."^1.1.3" = + self.by-version."chalk"."1.1.3"; + by-spec."chalk"."~1.1.1" = + self.by-version."chalk"."1.1.3"; + by-spec."char-spinner"."~1.0.1" = + self.by-version."char-spinner"."1.0.1"; + by-version."char-spinner"."1.0.1" = self.buildNodePackage { + name = "char-spinner-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/character-parser/-/character-parser-1.2.0.tgz"; - name = "character-parser-1.2.0.tgz"; - sha1 = "94134d6e5d870a39be359f7d22460935184ddef6"; + url = "https://registry.npmjs.org/char-spinner/-/char-spinner-1.0.1.tgz"; + name = "char-spinner-1.0.1.tgz"; + sha1 = "e6ea67bd247e107112983b7ab0479ed362800081"; }; deps = { }; @@ -6483,7 +7157,7 @@ version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz"; + url = "https://registry.npmjs.org/character-parser/-/character-parser-1.2.1.tgz"; name = "character-parser-1.2.1.tgz"; sha1 = "c0dde4ab182713b919b970959a123ecc1a30fcd6"; }; @@ -6495,42 +7169,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."charm"."0.1.x" = - self.by-version."charm"."0.1.2"; - by-version."charm"."0.1.2" = self.buildNodePackage { - name = "charm-0.1.2"; - version = "0.1.2"; + by-spec."cheerio"."0.19.0" = + self.by-version."cheerio"."0.19.0"; + by-version."cheerio"."0.19.0" = self.buildNodePackage { + name = "cheerio-0.19.0"; + version = "0.19.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/charm/-/charm-0.1.2.tgz"; - name = "charm-0.1.2.tgz"; - sha1 = "06c21eed1a1b06aeb67553cdc53e23274bac2296"; + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.19.0.tgz"; + name = "cheerio-0.19.0.tgz"; + sha1 = "772e7015f2ee29965096d71ea4175b75ab354925"; }; deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."cheerio"."0.18.0" = - self.by-version."cheerio"."0.18.0"; - by-version."cheerio"."0.18.0" = self.buildNodePackage { - name = "cheerio-0.18.0"; - version = "0.18.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cheerio/-/cheerio-0.18.0.tgz"; - name = "cheerio-0.18.0.tgz"; - sha1 = "4e1c06377e725b740e996e0dfec353863de677fa"; - }; - deps = { - "CSSselect-0.4.1" = self.by-version."CSSselect"."0.4.1"; + "css-select-1.0.0" = self.by-version."css-select"."1.0.0"; "entities-1.1.1" = self.by-version."entities"."1.1.1"; - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "dom-serializer-0.0.1" = self.by-version."dom-serializer"."0.0.1"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "htmlparser2-3.8.3" = self.by-version."htmlparser2"."3.8.3"; + "dom-serializer-0.1.0" = self.by-version."dom-serializer"."0.1.0"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; }; optionalDependencies = { }; @@ -6545,7 +7200,7 @@ version = "0.17.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz"; + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz"; name = "cheerio-0.17.0.tgz"; sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea"; }; @@ -6554,7 +7209,7 @@ "entities-1.1.1" = self.by-version."entities"."1.1.1"; "htmlparser2-3.7.3" = self.by-version."htmlparser2"."3.7.3"; "dom-serializer-0.0.1" = self.by-version."dom-serializer"."0.0.1"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; }; optionalDependencies = { }; @@ -6562,16 +7217,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."child-process-close"."~0.1.1" = - self.by-version."child-process-close"."0.1.1"; - by-version."child-process-close"."0.1.1" = self.buildNodePackage { - name = "child-process-close-0.1.1"; - version = "0.1.1"; + by-spec."chmodr"."~1.0.2" = + self.by-version."chmodr"."1.0.2"; + by-version."chmodr"."1.0.2" = self.buildNodePackage { + name = "chmodr-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/child-process-close/-/child-process-close-0.1.1.tgz"; - name = "child-process-close-0.1.1.tgz"; - sha1 = "c153ede7a5eb65ac69e78a38973b1a286377f75f"; + url = "https://registry.npmjs.org/chmodr/-/chmodr-1.0.2.tgz"; + name = "chmodr-1.0.2.tgz"; + sha1 = "04662b932d0f02ec66deaa2b0ea42811968e3eb9"; }; deps = { }; @@ -6581,66 +7236,50 @@ os = [ ]; cpu = [ ]; }; - by-spec."chmodr"."0.1.0" = - self.by-version."chmodr"."0.1.0"; - by-version."chmodr"."0.1.0" = self.buildNodePackage { - name = "chmodr-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/chmodr/-/chmodr-0.1.0.tgz"; - name = "chmodr-0.1.0.tgz"; - sha1 = "e09215a1d51542db2a2576969765bcf6125583eb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."chmodr"."~0.1.0" = - self.by-version."chmodr"."0.1.0"; - by-spec."chokidar".">=0.8.2" = - self.by-version."chokidar"."1.0.1"; - by-version."chokidar"."1.0.1" = self.buildNodePackage { - name = "chokidar-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/chokidar/-/chokidar-1.0.1.tgz"; - name = "chokidar-1.0.1.tgz"; - sha1 = "b19e476a071ac0c7a01279cdc936e0d31c6ee06a"; - }; - deps = { - "anymatch-1.2.1" = self.by-version."anymatch"."1.2.1"; - "arrify-1.0.0" = self.by-version."arrify"."1.0.0"; - "async-each-0.1.6" = self.by-version."async-each"."0.1.6"; - "glob-parent-1.2.0" = self.by-version."glob-parent"."1.2.0"; - "is-binary-path-1.0.0" = self.by-version."is-binary-path"."1.0.0"; - "is-glob-1.1.3" = self.by-version."is-glob"."1.1.3"; - "readdirp-1.3.0" = self.by-version."readdirp"."1.3.0"; - }; - optionalDependencies = { - "fsevents-0.3.5" = self.by-version."fsevents"."0.3.5"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."chokidar"."^1.0.0" = - self.by-version."chokidar"."1.0.1"; - by-spec."chownr"."0" = - self.by-version."chownr"."0.0.1"; - by-version."chownr"."0.0.1" = self.buildNodePackage { - name = "chownr-0.0.1"; - version = "0.0.1"; + self.by-version."chokidar"."1.4.3"; + by-version."chokidar"."1.4.3" = self.buildNodePackage { + name = "chokidar-1.4.3"; + version = "1.4.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chownr/-/chownr-0.0.1.tgz"; - name = "chownr-0.0.1.tgz"; - sha1 = "51d18189d9092d5f8afd623f3288bfd1c6bf1a62"; + url = "https://registry.npmjs.org/chokidar/-/chokidar-1.4.3.tgz"; + name = "chokidar-1.4.3.tgz"; + sha1 = "5fe733a4d9acaea51b26454b7e59559163d0dbb2"; + }; + deps = { + "anymatch-1.3.0" = self.by-version."anymatch"."1.3.0"; + "async-each-1.0.0" = self.by-version."async-each"."1.0.0"; + "glob-parent-2.0.0" = self.by-version."glob-parent"."2.0.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "is-binary-path-1.0.1" = self.by-version."is-binary-path"."1.0.1"; + "is-glob-2.0.1" = self.by-version."is-glob"."2.0.1"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "readdirp-2.0.0" = self.by-version."readdirp"."2.0.0"; + }; + optionalDependencies = { + "fsevents-1.0.11" = self.by-version."fsevents"."1.0.11"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."chokidar"."^1.0.1" = + self.by-version."chokidar"."1.4.3"; + by-spec."chokidar"."^1.2.0" = + self.by-version."chokidar"."1.4.3"; + by-spec."chokidar"."^1.4.1" = + self.by-version."chokidar"."1.4.3"; + by-spec."chownr"."0" = + self.by-version."chownr"."0.0.2"; + by-version."chownr"."0.0.2" = self.buildNodePackage { + name = "chownr-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/chownr/-/chownr-0.0.2.tgz"; + name = "chownr-0.0.2.tgz"; + sha1 = "2f9aebf746f90808ce00607b72ba73b41604c485"; }; deps = { }; @@ -6650,26 +7289,47 @@ os = [ ]; cpu = [ ]; }; - by-spec."chromecast-player"."^0.2.2" = - self.by-version."chromecast-player"."0.2.2"; - by-version."chromecast-player"."0.2.2" = self.buildNodePackage { - name = "chromecast-player-0.2.2"; - version = "0.2.2"; + by-spec."chownr"."^1.0.1" = + self.by-version."chownr"."1.0.1"; + by-version."chownr"."1.0.1" = self.buildNodePackage { + name = "chownr-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.2.tgz"; - name = "chromecast-player-0.2.2.tgz"; - sha1 = "a228080e1a49c2881ae5d4ab2f9a0cd2de0ab443"; + url = "https://registry.npmjs.org/chownr/-/chownr-1.0.1.tgz"; + name = "chownr-1.0.1.tgz"; + sha1 = "e2a75042a9551908bebd25b8523d5f9769d79181"; }; deps = { - "castv2-client-0.0.8" = self.by-version."castv2-client"."0.0.8"; - "chromecast-scanner-0.4.3" = self.by-version."chromecast-scanner"."0.4.3"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."chownr"."~1.0.1" = + self.by-version."chownr"."1.0.1"; + by-spec."chromecast-player"."^0.2.3" = + self.by-version."chromecast-player"."0.2.3"; + by-version."chromecast-player"."0.2.3" = self.buildNodePackage { + name = "chromecast-player-0.2.3"; + version = "0.2.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/chromecast-player/-/chromecast-player-0.2.3.tgz"; + name = "chromecast-player-0.2.3.tgz"; + sha1 = "fe9ce69911c88096d681e4242c1902ad30787216"; + }; + deps = { + "castv2-client-1.1.1" = self.by-version."castv2-client"."1.1.1"; + "chromecast-scanner-0.5.0" = self.by-version."chromecast-scanner"."0.5.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "mutate.js-0.2.0" = self.by-version."mutate.js"."0.2.0"; "promiscuous-0.6.0" = self.by-version."promiscuous"."0.6.0"; "time-line-1.0.1" = self.by-version."time-line"."1.0.1"; - "ware-1.2.0" = self.by-version."ware"."1.2.0"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "ware-1.3.0" = self.by-version."ware"."1.3.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -6677,21 +7337,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."chromecast-scanner"."^0.4.1" = - self.by-version."chromecast-scanner"."0.4.3"; - by-version."chromecast-scanner"."0.4.3" = self.buildNodePackage { - name = "chromecast-scanner-0.4.3"; - version = "0.4.3"; + by-spec."chromecast-scanner"."^0.5.0" = + self.by-version."chromecast-scanner"."0.5.0"; + by-version."chromecast-scanner"."0.5.0" = self.buildNodePackage { + name = "chromecast-scanner-0.5.0"; + version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.4.3.tgz"; - name = "chromecast-scanner-0.4.3.tgz"; - sha1 = "4b3392195acdc3e82ed6e8f2285cf36e94e62cdb"; + url = "https://registry.npmjs.org/chromecast-scanner/-/chromecast-scanner-0.5.0.tgz"; + name = "chromecast-scanner-0.5.0.tgz"; + sha1 = "01296a3e5d130cce34974eb509cbbc7d6f78dd3d"; }; deps = { "array-find-0.1.1" = self.by-version."array-find"."0.1.1"; - "multicast-dns-2.1.0" = self.by-version."multicast-dns"."2.1.0"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "multicast-dns-4.0.1" = self.by-version."multicast-dns"."4.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -6706,7 +7366,7 @@ version = "8.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cint/-/cint-8.2.1.tgz"; + url = "https://registry.npmjs.org/cint/-/cint-8.2.1.tgz"; name = "cint-8.2.1.tgz"; sha1 = "70386b1b48e2773d0d63166a55aff94ef4456a12"; }; @@ -6718,20 +7378,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."clean-css"."^3.0.1" = - self.by-version."clean-css"."3.2.1"; - by-version."clean-css"."3.2.1" = self.buildNodePackage { - name = "clean-css-3.2.1"; - version = "3.2.1"; - bin = true; + by-spec."cipher-base"."^1.0.0" = + self.by-version."cipher-base"."1.0.2"; + by-version."cipher-base"."1.0.2" = self.buildNodePackage { + name = "cipher-base-1.0.2"; + version = "1.0.2"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clean-css/-/clean-css-3.2.1.tgz"; - name = "clean-css-3.2.1.tgz"; - sha1 = "748303351495726144d45c4e1ea4677087b65be2"; + url = "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.2.tgz"; + name = "cipher-base-1.0.2.tgz"; + sha1 = "54ac1d1ebdf6a1bcd3559e6f369d72697f2cab8f"; }; deps = { - "commander-2.8.0" = self.by-version."commander"."2.8.0"; - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { }; @@ -6739,6 +7398,31 @@ os = [ ]; cpu = [ ]; }; + by-spec."cipher-base"."^1.0.1" = + self.by-version."cipher-base"."1.0.2"; + by-spec."clean-css"."^3.1.9" = + self.by-version."clean-css"."3.4.11"; + by-version."clean-css"."3.4.11" = self.buildNodePackage { + name = "clean-css-3.4.11"; + version = "3.4.11"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/clean-css/-/clean-css-3.4.11.tgz"; + name = "clean-css-3.4.11.tgz"; + sha1 = "171a76f8fca5d74877d7d80b511ce3e73c86333d"; + }; + deps = { + "commander-2.8.1" = self.by-version."commander"."2.8.1"; + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."clean-css"."~3.4.2" = + self.by-version."clean-css"."3.4.11"; by-spec."cli"."0.6.x" = self.by-version."cli"."0.6.6"; by-version."cli"."0.6.6" = self.buildNodePackage { @@ -6746,7 +7430,7 @@ version = "0.6.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cli/-/cli-0.6.6.tgz"; + url = "https://registry.npmjs.org/cli/-/cli-0.6.6.tgz"; name = "cli-0.6.6.tgz"; sha1 = "02ad44a380abf27adac5e6f0cdd7b043d74c53e3"; }; @@ -6760,22 +7444,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."cli-color"."~0.3.2" = - self.by-version."cli-color"."0.3.3"; - by-version."cli-color"."0.3.3" = self.buildNodePackage { - name = "cli-color-0.3.3"; - version = "0.3.3"; + by-spec."cli-cursor"."^1.0.1" = + self.by-version."cli-cursor"."1.0.2"; + by-version."cli-cursor"."1.0.2" = self.buildNodePackage { + name = "cli-cursor-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cli-color/-/cli-color-0.3.3.tgz"; - name = "cli-color-0.3.3.tgz"; - sha1 = "12d5bdd158ff8a0b0db401198913c03df069f6f5"; + url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz"; + name = "cli-cursor-1.0.2.tgz"; + sha1 = "64da3f7d56a54412e59794bd62dc35295e8f2987"; }; deps = { - "d-0.1.1" = self.by-version."d"."0.1.1"; - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - "memoizee-0.3.8" = self.by-version."memoizee"."0.3.8"; - "timers-ext-0.1.0" = self.by-version."timers-ext"."0.1.0"; + "restore-cursor-1.0.1" = self.by-version."restore-cursor"."1.0.1"; }; optionalDependencies = { }; @@ -6790,7 +7471,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz"; + url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz"; name = "cli-table-0.3.1.tgz"; sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23"; }; @@ -6804,15 +7485,15 @@ cpu = [ ]; }; by-spec."cli-width"."^1.0.1" = - self.by-version."cli-width"."1.0.1"; - by-version."cli-width"."1.0.1" = self.buildNodePackage { - name = "cli-width-1.0.1"; - version = "1.0.1"; + self.by-version."cli-width"."1.1.1"; + by-version."cli-width"."1.1.1" = self.buildNodePackage { + name = "cli-width-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cli-width/-/cli-width-1.0.1.tgz"; - name = "cli-width-1.0.1.tgz"; - sha1 = "14d4f6870234d91e97f7dd81e76be8271410a1ef"; + url = "https://registry.npmjs.org/cli-width/-/cli-width-1.1.1.tgz"; + name = "cli-width-1.1.1.tgz"; + sha1 = "a4d293ef67ebb7b88d4a4d42c0ccf00c4d1e366d"; }; deps = { }; @@ -6822,6 +7503,47 @@ os = [ ]; cpu = [ ]; }; + by-spec."cli-width"."^2.0.0" = + self.by-version."cli-width"."2.1.0"; + by-version."cli-width"."2.1.0" = self.buildNodePackage { + name = "cli-width-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cli-width/-/cli-width-2.1.0.tgz"; + name = "cli-width-2.1.0.tgz"; + sha1 = "b234ca209b29ef66fc518d9b98d5847b00edf00a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."cliff"."0.1.8" = + self.by-version."cliff"."0.1.8"; + by-version."cliff"."0.1.8" = self.buildNodePackage { + name = "cliff-0.1.8"; + version = "0.1.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cliff/-/cliff-0.1.8.tgz"; + name = "cliff-0.1.8.tgz"; + sha1 = "43ca8ad9fe3943489693ab62dce0cae22509d272"; + }; + deps = { + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "winston-0.6.2" = self.by-version."winston"."0.6.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."cliff"."0.1.9" = self.by-version."cliff"."0.1.9"; by-version."cliff"."0.1.9" = self.buildNodePackage { @@ -6829,7 +7551,7 @@ version = "0.1.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz"; + url = "https://registry.npmjs.org/cliff/-/cliff-0.1.9.tgz"; name = "cliff-0.1.9.tgz"; sha1 = "a211e09c6a3de3ba1af27d049d301250d18812bc"; }; @@ -6851,7 +7573,7 @@ version = "0.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz"; + url = "https://registry.npmjs.org/cliff/-/cliff-0.1.10.tgz"; name = "cliff-0.1.10.tgz"; sha1 = "53be33ea9f59bec85609ee300ac4207603e52013"; }; @@ -6866,18 +7588,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."clivas"."^0.1.4" = - self.by-version."clivas"."0.1.4"; - by-version."clivas"."0.1.4" = self.buildNodePackage { - name = "clivas-0.1.4"; - version = "0.1.4"; + by-spec."cliui"."^2.1.0" = + self.by-version."cliui"."2.1.0"; + by-version."cliui"."2.1.0" = self.buildNodePackage { + name = "cliui-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz"; - name = "clivas-0.1.4.tgz"; - sha1 = "e1c1e481d1273d57f1752132b0e4410a0d88235a"; + url = "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz"; + name = "cliui-2.1.0.tgz"; + sha1 = "4b475760ff80264c762c3a1719032e91c7fea0d1"; }; deps = { + "center-align-0.1.3" = self.by-version."center-align"."0.1.3"; + "right-align-0.1.3" = self.by-version."right-align"."0.1.3"; + "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; }; optionalDependencies = { }; @@ -6885,16 +7610,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."clone"."0.1.11" = - self.by-version."clone"."0.1.11"; - by-version."clone"."0.1.11" = self.buildNodePackage { - name = "clone-0.1.11"; - version = "0.1.11"; + by-spec."cliui"."^3.0.3" = + self.by-version."cliui"."3.1.2"; + by-version."cliui"."3.1.2" = self.buildNodePackage { + name = "cliui-3.1.2"; + version = "3.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-0.1.11.tgz"; - name = "clone-0.1.11.tgz"; - sha1 = "408b7d1773eb0dfbf2ddb156c1c47170c17e3a96"; + url = "https://registry.npmjs.org/cliui/-/cliui-3.1.2.tgz"; + name = "cliui-3.1.2.tgz"; + sha1 = "5ebdc752ce6740ca0df470a3b215e82a5da0277c"; + }; + deps = { + "string-width-1.0.1" = self.by-version."string-width"."1.0.1"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "wrap-ansi-2.0.0" = self.by-version."wrap-ansi"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."clivas"."^0.1.4" = + self.by-version."clivas"."0.1.4"; + by-version."clivas"."0.1.4" = self.buildNodePackage { + name = "clivas-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/clivas/-/clivas-0.1.4.tgz"; + name = "clivas-0.1.4.tgz"; + sha1 = "e1c1e481d1273d57f1752132b0e4410a0d88235a"; }; deps = { }; @@ -6911,7 +7658,7 @@ version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-0.1.5.tgz"; + url = "https://registry.npmjs.org/clone/-/clone-0.1.5.tgz"; name = "clone-0.1.5.tgz"; sha1 = "46f29143d0766d663dbd7f80b7520a15783d2042"; }; @@ -6930,7 +7677,7 @@ version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-0.1.6.tgz"; + url = "https://registry.npmjs.org/clone/-/clone-0.1.6.tgz"; name = "clone-0.1.6.tgz"; sha1 = "4af2296d4a23a64168c2f5fb0a2aa65e80517000"; }; @@ -6942,33 +7689,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."clone"."0.2.0" = - self.by-version."clone"."0.2.0"; - by-version."clone"."0.2.0" = self.buildNodePackage { - name = "clone-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-0.2.0.tgz"; - name = "clone-0.2.0.tgz"; - sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."clone".">=0.1.0" = + by-spec."clone"."1.0.2" = self.by-version."clone"."1.0.2"; by-version."clone"."1.0.2" = self.buildNodePackage { name = "clone-1.0.2"; version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-1.0.2.tgz"; + url = "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz"; name = "clone-1.0.2.tgz"; sha1 = "260b7a99ebb1edfe247538175f783243cb19d149"; }; @@ -6980,18 +7708,18 @@ os = [ ]; cpu = [ ]; }; + by-spec."clone".">=0.1.0" = + self.by-version."clone"."1.0.2"; by-spec."clone"."^0.2.0" = self.by-version."clone"."0.2.0"; - by-spec."clone"."~0.1.15" = - self.by-version."clone"."0.1.19"; - by-version."clone"."0.1.19" = self.buildNodePackage { - name = "clone-0.1.19"; - version = "0.1.19"; + by-version."clone"."0.2.0" = self.buildNodePackage { + name = "clone-0.2.0"; + version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone/-/clone-0.1.19.tgz"; - name = "clone-0.1.19.tgz"; - sha1 = "613fb68639b26a494ac53253e15b1a6bd88ada85"; + url = "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz"; + name = "clone-0.2.0.tgz"; + sha1 = "c6126a90ad4f72dbf5acdb243cc37724fe93fc1f"; }; deps = { }; @@ -7001,10 +7729,12 @@ os = [ ]; cpu = [ ]; }; - by-spec."clone"."~0.1.5" = - self.by-version."clone"."0.1.19"; - by-spec."clone"."~0.2.0" = - self.by-version."clone"."0.2.0"; + by-spec."clone"."^1.0.0" = + self.by-version."clone"."1.0.2"; + by-spec."clone"."^1.0.2" = + self.by-version."clone"."1.0.2"; + by-spec."clone"."~1.0.2" = + self.by-version."clone"."1.0.2"; by-spec."clone-stats"."^0.0.1" = self.by-version."clone-stats"."0.0.1"; by-version."clone-stats"."0.0.1" = self.buildNodePackage { @@ -7012,7 +7742,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; + url = "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz"; name = "clone-stats-0.0.1.tgz"; sha1 = "b88f94a82cf38b8791d58046ea4029ad88ca99d1"; }; @@ -7024,18 +7754,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."closest-package"."^1.0.0" = - self.by-version."closest-package"."1.0.0"; - by-version."closest-package"."1.0.0" = self.buildNodePackage { - name = "closest-package-1.0.0"; - version = "1.0.0"; + by-spec."cmd-shim"."~2.0.2" = + self.by-version."cmd-shim"."2.0.2"; + by-version."cmd-shim"."2.0.2" = self.buildNodePackage { + name = "cmd-shim-2.0.2"; + version = "2.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/closest-package/-/closest-package-1.0.0.tgz"; - name = "closest-package-1.0.0.tgz"; - sha1 = "ef7a73ad90baae43a89db53777b20fcc0350d4cf"; + url = "https://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.2.tgz"; + name = "cmd-shim-2.0.2.tgz"; + sha1 = "6fcbda99483a8fd15d7d30a196ca69d688a2efdb"; }; deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; }; optionalDependencies = { }; @@ -7043,64 +7775,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."cmd-shim"."~1.1.0" = - self.by-version."cmd-shim"."1.1.2"; - by-version."cmd-shim"."1.1.2" = self.buildNodePackage { - name = "cmd-shim-1.1.2"; - version = "1.1.2"; + by-spec."cmdln"."3.2.1" = + self.by-version."cmdln"."3.2.1"; + by-version."cmdln"."3.2.1" = self.buildNodePackage { + name = "cmdln-3.2.1"; + version = "3.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cmd-shim/-/cmd-shim-1.1.2.tgz"; - name = "cmd-shim-1.1.2.tgz"; - sha1 = "e4f9198802e361e8eb43b591959ef4dc6cdb6754"; + url = "https://registry.npmjs.org/cmdln/-/cmdln-3.2.1.tgz"; + name = "cmdln-3.2.1.tgz"; + sha1 = "8d21967625b25ee35fca8e8453ccf10fccd04e45"; }; deps = { - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - }; - optionalDependencies = { - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."cmd-shim"."~2.0.1" = - self.by-version."cmd-shim"."2.0.1"; - by-version."cmd-shim"."2.0.1" = self.buildNodePackage { - name = "cmd-shim-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cmd-shim/-/cmd-shim-2.0.1.tgz"; - name = "cmd-shim-2.0.1.tgz"; - sha1 = "4512a373d2391679aec51ad1d4733559e9b85d4a"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."cmdln"."1.3.2" = - self.by-version."cmdln"."1.3.2"; - by-version."cmdln"."1.3.2" = self.buildNodePackage { - name = "cmdln-1.3.2"; - version = "1.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cmdln/-/cmdln-1.3.2.tgz"; - name = "cmdln-1.3.2.tgz"; - sha1 = "46a7b362166875cdafe7bc3fe6c73e4644dc6884"; - }; - deps = { - "assert-plus-0.1.3" = self.by-version."assert-plus"."0.1.3"; - "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; - "verror-1.3.6" = self.by-version."verror"."1.3.6"; - "dashdash-1.3.2" = self.by-version."dashdash"."1.3.2"; + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; + "extsprintf-1.3.0" = self.by-version."extsprintf"."1.3.0"; + "verror-1.6.1" = self.by-version."verror"."1.6.1"; + "dashdash-1.13.0" = self.by-version."dashdash"."1.13.0"; }; optionalDependencies = { }; @@ -7115,7 +7805,7 @@ version = "3.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/co/-/co-3.1.0.tgz"; + url = "https://registry.npmjs.org/co/-/co-3.1.0.tgz"; name = "co-3.1.0.tgz"; sha1 = "4ea54ea5a08938153185e15210c68d9092bc1b78"; }; @@ -7134,7 +7824,7 @@ version = "3.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/co/-/co-3.0.6.tgz"; + url = "https://registry.npmjs.org/co/-/co-3.0.6.tgz"; name = "co-3.0.6.tgz"; sha1 = "1445f226c5eb956138e68c9ac30167ea7d2e6bda"; }; @@ -7146,21 +7836,42 @@ os = [ ]; cpu = [ ]; }; - by-spec."codepage"."~1.3.4" = - self.by-version."codepage"."1.3.8"; - by-version."codepage"."1.3.8" = self.buildNodePackage { - name = "codepage-1.3.8"; - version = "1.3.8"; + by-spec."code-point-at"."^1.0.0" = + self.by-version."code-point-at"."1.0.0"; + by-version."code-point-at"."1.0.0" = self.buildNodePackage { + name = "code-point-at-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz"; + name = "code-point-at-1.0.0.tgz"; + sha1 = "f69b192d3f7d91e382e4b71bddb77878619ab0c6"; + }; + deps = { + "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."codepage"."~1.4.0" = + self.by-version."codepage"."1.4.0"; + by-version."codepage"."1.4.0" = self.buildNodePackage { + name = "codepage-1.4.0"; + version = "1.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/codepage/-/codepage-1.3.8.tgz"; - name = "codepage-1.3.8.tgz"; - sha1 = "4f2e5d7c0975de28f88498058dcb5afcab6a5f71"; + url = "https://registry.npmjs.org/codepage/-/codepage-1.4.0.tgz"; + name = "codepage-1.4.0.tgz"; + sha1 = "ffd5b603ae6a8ebb63559d5fb89a57d12b943837"; }; deps = { "voc-0.5.0" = self.by-version."voc"."0.5.0"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "commander-2.8.0" = self.by-version."commander"."2.8.0"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "exit-on-epipe-0.0.1" = self.by-version."exit-on-epipe"."0.0.1"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; }; optionalDependencies = { }; @@ -7169,15 +7880,15 @@ cpu = [ ]; }; by-spec."coffee-script"."*" = - self.by-version."coffee-script"."1.9.2"; - by-version."coffee-script"."1.9.2" = self.buildNodePackage { - name = "coffee-script-1.9.2"; - version = "1.9.2"; + self.by-version."coffee-script"."1.10.0"; + by-version."coffee-script"."1.10.0" = self.buildNodePackage { + name = "coffee-script-1.10.0"; + version = "1.10.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.9.2.tgz"; - name = "coffee-script-1.9.2.tgz"; - sha1 = "2da4b663c61c6d1d851788aa31f941fc7b63edf3"; + url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.10.0.tgz"; + name = "coffee-script-1.10.0.tgz"; + sha1 = "12938bcf9be1948fa006f92e0c4c9e81705108c0"; }; deps = { }; @@ -7187,7 +7898,7 @@ os = [ ]; cpu = [ ]; }; - "coffee-script" = self.by-version."coffee-script"."1.9.2"; + "coffee-script" = self.by-version."coffee-script"."1.10.0"; by-spec."coffee-script"."1.6.3" = self.by-version."coffee-script"."1.6.3"; by-version."coffee-script"."1.6.3" = self.buildNodePackage { @@ -7195,7 +7906,7 @@ version = "1.6.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz"; + url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.6.3.tgz"; name = "coffee-script-1.6.3.tgz"; sha1 = "6355d32cf1b04cdff6b484e5e711782b2f0c39be"; }; @@ -7208,13 +7919,15 @@ cpu = [ ]; }; by-spec."coffee-script".">= 0.0.1" = - self.by-version."coffee-script"."1.9.2"; + self.by-version."coffee-script"."1.10.0"; by-spec."coffee-script".">=1.2.0" = - self.by-version."coffee-script"."1.9.2"; + self.by-version."coffee-script"."1.10.0"; by-spec."coffee-script".">=1.6.2 <2.0.0" = - self.by-version."coffee-script"."1.9.2"; + self.by-version."coffee-script"."1.10.0"; by-spec."coffee-script"."^1.9.2" = - self.by-version."coffee-script"."1.9.2"; + self.by-version."coffee-script"."1.10.0"; + by-spec."coffee-script"."~1.10.0" = + self.by-version."coffee-script"."1.10.0"; by-spec."coffee-script"."~1.3.3" = self.by-version."coffee-script"."1.3.3"; by-version."coffee-script"."1.3.3" = self.buildNodePackage { @@ -7222,7 +7935,7 @@ version = "1.3.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz"; + url = "https://registry.npmjs.org/coffee-script/-/coffee-script-1.3.3.tgz"; name = "coffee-script-1.3.3.tgz"; sha1 = "150d6b4cb522894369efed6a2101c20bc7f4a4f4"; }; @@ -7234,19 +7947,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."color"."~0.8.0" = - self.by-version."color"."0.8.0"; - by-version."color"."0.8.0" = self.buildNodePackage { - name = "color-0.8.0"; - version = "0.8.0"; + by-spec."color"."~0.11.1" = + self.by-version."color"."0.11.1"; + by-version."color"."0.11.1" = self.buildNodePackage { + name = "color-0.11.1"; + version = "0.11.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/color/-/color-0.8.0.tgz"; - name = "color-0.8.0.tgz"; - sha1 = "890c07c3fd4e649537638911cf691e5458b6fca5"; + url = "https://registry.npmjs.org/color/-/color-0.11.1.tgz"; + name = "color-0.11.1.tgz"; + sha1 = "19e357ce1872e191e8a91702b4ee1b0ed844187a"; }; deps = { - "color-convert-0.5.2" = self.by-version."color-convert"."0.5.2"; + "color-convert-0.5.3" = self.by-version."color-convert"."0.5.3"; "color-string-0.3.0" = self.by-version."color-string"."0.3.0"; }; optionalDependencies = { @@ -7255,16 +7968,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."color-convert"."^0.5.0" = - self.by-version."color-convert"."0.5.2"; - by-version."color-convert"."0.5.2" = self.buildNodePackage { - name = "color-convert-0.5.2"; - version = "0.5.2"; + by-spec."color-convert"."^0.5.3" = + self.by-version."color-convert"."0.5.3"; + by-version."color-convert"."0.5.3" = self.buildNodePackage { + name = "color-convert-0.5.3"; + version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/color-convert/-/color-convert-0.5.2.tgz"; - name = "color-convert-0.5.2.tgz"; - sha1 = "febd9efc33674df3374ff8eeaec3bc56c79a9b35"; + url = "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz"; + name = "color-convert-0.5.3.tgz"; + sha1 = "bdb6c69ce660fadffe0b0007cc447e1b9f7282bd"; }; deps = { }; @@ -7275,15 +7988,15 @@ cpu = [ ]; }; by-spec."color-name"."^1.0.0" = - self.by-version."color-name"."1.0.0"; - by-version."color-name"."1.0.0" = self.buildNodePackage { - name = "color-name-1.0.0"; - version = "1.0.0"; + self.by-version."color-name"."1.1.1"; + by-version."color-name"."1.1.1" = self.buildNodePackage { + name = "color-name-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/color-name/-/color-name-1.0.0.tgz"; - name = "color-name-1.0.0.tgz"; - sha1 = "ce3579a4ef43b672bee4f37e8876332b5a36e6b5"; + url = "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz"; + name = "color-name-1.1.1.tgz"; + sha1 = "4b1415304cf50028ea81643643bd82ea05803689"; }; deps = { }; @@ -7300,12 +8013,12 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; + url = "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz"; name = "color-string-0.3.0.tgz"; sha1 = "27d46fb67025c5c2fa25993bfbf579e47841b991"; }; deps = { - "color-name-1.0.0" = self.by-version."color-name"."1.0.0"; + "color-name-1.1.1" = self.by-version."color-name"."1.1.1"; }; optionalDependencies = { }; @@ -7320,7 +8033,7 @@ version = "0.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-0.5.1.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz"; name = "colors-0.5.1.tgz"; sha1 = "7d0023eaeb154e8ee9fce75dcb923d0ed1667774"; }; @@ -7339,7 +8052,7 @@ version = "0.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; name = "colors-0.6.2.tgz"; sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc"; }; @@ -7360,7 +8073,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; + url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; name = "colors-1.0.3.tgz"; sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; }; @@ -7374,10 +8087,37 @@ }; by-spec."colors"."1.0.x" = self.by-version."colors"."1.0.3"; + by-spec."colors"."1.1.2" = + self.by-version."colors"."1.1.2"; + by-version."colors"."1.1.2" = self.buildNodePackage { + name = "colors-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; + name = "colors-1.1.2.tgz"; + sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."colors"."^1.0.3" = + self.by-version."colors"."1.1.2"; + by-spec."colors"."^1.1.0" = + self.by-version."colors"."1.1.2"; + by-spec."colors"."^1.1.2" = + self.by-version."colors"."1.1.2"; by-spec."colors"."~0.6.2" = self.by-version."colors"."0.6.2"; by-spec."colors"."~1.0.3" = self.by-version."colors"."1.0.3"; + by-spec."colors"."~1.1.2" = + self.by-version."colors"."1.1.2"; by-spec."colour"."*" = self.by-version."colour"."0.7.1"; by-version."colour"."0.7.1" = self.buildNodePackage { @@ -7385,7 +8125,7 @@ version = "0.7.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/colour/-/colour-0.7.1.tgz"; + url = "https://registry.npmjs.org/colour/-/colour-0.7.1.tgz"; name = "colour-0.7.1.tgz"; sha1 = "9cb169917ec5d12c0736d3e8685746df1cadf778"; }; @@ -7397,19 +8137,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."columnify"."~1.5.1" = - self.by-version."columnify"."1.5.1"; - by-version."columnify"."1.5.1" = self.buildNodePackage { - name = "columnify-1.5.1"; - version = "1.5.1"; + by-spec."columnify"."~1.5.4" = + self.by-version."columnify"."1.5.4"; + by-version."columnify"."1.5.4" = self.buildNodePackage { + name = "columnify-1.5.4"; + version = "1.5.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/columnify/-/columnify-1.5.1.tgz"; - name = "columnify-1.5.1.tgz"; - sha1 = "15fdda803a3875f87f9d302b3bc828932d664003"; + url = "https://registry.npmjs.org/columnify/-/columnify-1.5.4.tgz"; + name = "columnify-1.5.4.tgz"; + sha1 = "4737ddf1c7b69a8a7c340570782e947eec8e78bb"; }; deps = { - "strip-ansi-2.0.1" = self.by-version."strip-ansi"."2.0.1"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; "wcwidth-1.0.0" = self.by-version."wcwidth"."1.0.0"; }; optionalDependencies = { @@ -7425,7 +8165,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/combine-source-map/-/combine-source-map-0.3.0.tgz"; + url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.3.0.tgz"; name = "combine-source-map-0.3.0.tgz"; sha1 = "d9e74f593d9cd43807312cb5d846d451efaa9eb7"; }; @@ -7440,6 +8180,72 @@ os = [ ]; cpu = [ ]; }; + by-spec."combine-source-map"."~0.6.1" = + self.by-version."combine-source-map"."0.6.1"; + by-version."combine-source-map"."0.6.1" = self.buildNodePackage { + name = "combine-source-map-0.6.1"; + version = "0.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.6.1.tgz"; + name = "combine-source-map-0.6.1.tgz"; + sha1 = "9b4a09c316033d768e0f11e029fa2730e079ad96"; + }; + deps = { + "convert-source-map-1.1.3" = self.by-version."convert-source-map"."1.1.3"; + "inline-source-map-0.5.0" = self.by-version."inline-source-map"."0.5.0"; + "lodash.memoize-3.0.4" = self.by-version."lodash.memoize"."3.0.4"; + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."combine-source-map"."~0.7.1" = + self.by-version."combine-source-map"."0.7.1"; + by-version."combine-source-map"."0.7.1" = self.buildNodePackage { + name = "combine-source-map-0.7.1"; + version = "0.7.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/combine-source-map/-/combine-source-map-0.7.1.tgz"; + name = "combine-source-map-0.7.1.tgz"; + sha1 = "1720771dee7f3221ce3c62a104ee9a963f12009e"; + }; + deps = { + "convert-source-map-1.1.3" = self.by-version."convert-source-map"."1.1.3"; + "inline-source-map-0.6.1" = self.by-version."inline-source-map"."0.6.1"; + "lodash.memoize-3.0.4" = self.by-version."lodash.memoize"."3.0.4"; + "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."combined-stream"."^1.0.5" = + self.by-version."combined-stream"."1.0.5"; + by-version."combined-stream"."1.0.5" = self.buildNodePackage { + name = "combined-stream-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"; + name = "combined-stream-1.0.5.tgz"; + sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009"; + }; + deps = { + "delayed-stream-1.0.0" = self.by-version."delayed-stream"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."combined-stream"."~0.0.4" = self.by-version."combined-stream"."0.0.7"; by-version."combined-stream"."0.0.7" = self.buildNodePackage { @@ -7447,7 +8253,7 @@ version = "0.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; + url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; name = "combined-stream-0.0.7.tgz"; sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f"; }; @@ -7462,16 +8268,20 @@ }; by-spec."combined-stream"."~0.0.5" = self.by-version."combined-stream"."0.0.7"; + by-spec."combined-stream"."~1.0.1" = + self.by-version."combined-stream"."1.0.5"; + by-spec."combined-stream"."~1.0.5" = + self.by-version."combined-stream"."1.0.5"; by-spec."commander"."*" = - self.by-version."commander"."2.8.0"; - by-version."commander"."2.8.0" = self.buildNodePackage { - name = "commander-2.8.0"; - version = "2.8.0"; + self.by-version."commander"."2.9.0"; + by-version."commander"."2.9.0" = self.buildNodePackage { + name = "commander-2.9.0"; + version = "2.9.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.8.0.tgz"; - name = "commander-2.8.0.tgz"; - sha1 = "117c42659a72338e3364877df20852344095dc11"; + url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; + name = "commander-2.9.0.tgz"; + sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; }; deps = { "graceful-readlink-1.0.1" = self.by-version."graceful-readlink"."1.0.1"; @@ -7489,7 +8299,7 @@ version = "0.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; name = "commander-0.6.1.tgz"; sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; }; @@ -7501,26 +8311,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."commander"."1.3.1" = - self.by-version."commander"."1.3.1"; - by-version."commander"."1.3.1" = self.buildNodePackage { - name = "commander-1.3.1"; - version = "1.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-1.3.1.tgz"; - name = "commander-1.3.1.tgz"; - sha1 = "02443e02db96f4b32b674225451abb6e9510000e"; - }; - deps = { - "keypress-0.1.0" = self.by-version."keypress"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."commander"."1.3.2" = self.by-version."commander"."1.3.2"; by-version."commander"."1.3.2" = self.buildNodePackage { @@ -7528,7 +8318,7 @@ version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-1.3.2.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-1.3.2.tgz"; name = "commander-1.3.2.tgz"; sha1 = "8a8f30ec670a6fdd64af52f1914b907d79ead5b5"; }; @@ -7548,7 +8338,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.0.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.0.0.tgz"; name = "commander-2.0.0.tgz"; sha1 = "d1b86f901f8b64bd941bdeadaf924530393be928"; }; @@ -7560,25 +8350,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."commander"."2.1.0" = - self.by-version."commander"."2.1.0"; - by-version."commander"."2.1.0" = self.buildNodePackage { - name = "commander-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.1.0.tgz"; - name = "commander-2.1.0.tgz"; - sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."commander"."2.3.0" = self.by-version."commander"."2.3.0"; by-version."commander"."2.3.0" = self.buildNodePackage { @@ -7586,7 +8357,7 @@ version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz"; name = "commander-2.3.0.tgz"; sha1 = "fd430e889832ec353b9acd1de217c11cb3eef873"; }; @@ -7605,7 +8376,7 @@ version = "2.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.6.0.tgz"; + url = "https://registry.npmjs.org/commander/-/commander-2.6.0.tgz"; name = "commander-2.6.0.tgz"; sha1 = "9df7e52fb2a0cb0fb89058ee80c3104225f37e1d"; }; @@ -7617,16 +8388,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."commander"."2.7.1" = - self.by-version."commander"."2.7.1"; - by-version."commander"."2.7.1" = self.buildNodePackage { - name = "commander-2.7.1"; - version = "2.7.1"; + by-spec."commander"."2.8.x" = + self.by-version."commander"."2.8.1"; + by-version."commander"."2.8.1" = self.buildNodePackage { + name = "commander-2.8.1"; + version = "2.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.7.1.tgz"; - name = "commander-2.7.1.tgz"; - sha1 = "5d419a2bbed2c32ee3e4dca9bb45ab83ecc3065a"; + url = "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz"; + name = "commander-2.8.1.tgz"; + sha1 = "06be367febfda0c330aa1e2a072d3dc9762425d4"; }; deps = { "graceful-readlink-1.0.1" = self.by-version."graceful-readlink"."1.0.1"; @@ -7637,34 +8408,30 @@ os = [ ]; cpu = [ ]; }; - by-spec."commander"."2.8.x" = - self.by-version."commander"."2.8.0"; - by-spec."commander"."2.x" = - self.by-version."commander"."2.8.0"; by-spec."commander".">=2.0.0" = - self.by-version."commander"."2.8.0"; + self.by-version."commander"."2.9.0"; by-spec."commander".">=2.3.0 <3.0.0-0" = - self.by-version."commander"."2.8.0"; - by-spec."commander"."^2.6.0" = - self.by-version."commander"."2.8.0"; - by-spec."commander"."^2.7.1" = - self.by-version."commander"."2.8.0"; + self.by-version."commander"."2.9.0"; + by-spec."commander"."^2.5.0" = + self.by-version."commander"."2.9.0"; + by-spec."commander"."^2.8.1" = + self.by-version."commander"."2.9.0"; + by-spec."commander"."^2.9.0" = + self.by-version."commander"."2.9.0"; by-spec."commander"."~0.6.1" = self.by-version."commander"."0.6.1"; by-spec."commander"."~2.0.0" = self.by-version."commander"."2.0.0"; by-spec."commander"."~2.1.0" = self.by-version."commander"."2.1.0"; - by-spec."commander"."~2.5.0" = - self.by-version."commander"."2.5.1"; - by-version."commander"."2.5.1" = self.buildNodePackage { - name = "commander-2.5.1"; - version = "2.5.1"; + by-version."commander"."2.1.0" = self.buildNodePackage { + name = "commander-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.5.1.tgz"; - name = "commander-2.5.1.tgz"; - sha1 = "23c61f6e47be143cc02e7ad4bb1c47f5cd5a2883"; + url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz"; + name = "commander-2.1.0.tgz"; + sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781"; }; deps = { }; @@ -7676,6 +8443,29 @@ }; by-spec."commander"."~2.6.0" = self.by-version."commander"."2.6.0"; + by-spec."commander"."~2.9.0" = + self.by-version."commander"."2.9.0"; + by-spec."commist"."^1.0.0" = + self.by-version."commist"."1.0.0"; + by-version."commist"."1.0.0" = self.buildNodePackage { + name = "commist-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/commist/-/commist-1.0.0.tgz"; + name = "commist-1.0.0.tgz"; + sha1 = "c0c352501cf6f52e9124e3ef89c9806e2022ebef"; + }; + deps = { + "leven-1.0.2" = self.by-version."leven"."1.0.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."commondir"."0.0.1" = self.by-version."commondir"."0.0.1"; by-version."commondir"."0.0.1" = self.buildNodePackage { @@ -7683,7 +8473,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/commondir/-/commondir-0.0.1.tgz"; + url = "https://registry.npmjs.org/commondir/-/commondir-0.0.1.tgz"; name = "commondir-0.0.1.tgz"; sha1 = "89f00fdcd51b519c578733fec563e6a6da7f5be2"; }; @@ -7695,46 +8485,27 @@ os = [ ]; cpu = [ ]; }; - by-spec."commondir"."~0.0.1" = - self.by-version."commondir"."0.0.2"; - by-version."commondir"."0.0.2" = self.buildNodePackage { - name = "commondir-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/commondir/-/commondir-0.0.2.tgz"; - name = "commondir-0.0.2.tgz"; - sha1 = "c49c8880c6fe96844bb3525dd2e7314050c389ee"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."commoner"."^0.10.0" = - self.by-version."commoner"."0.10.1"; - by-version."commoner"."0.10.1" = self.buildNodePackage { - name = "commoner-0.10.1"; - version = "0.10.1"; + self.by-version."commoner"."0.10.4"; + by-version."commoner"."0.10.4" = self.buildNodePackage { + name = "commoner-0.10.4"; + version = "0.10.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/commoner/-/commoner-0.10.1.tgz"; - name = "commoner-0.10.1.tgz"; - sha1 = "53ab254aeb93ec0b19e9a1ca14e1d0e5fe998588"; + url = "https://registry.npmjs.org/commoner/-/commoner-0.10.4.tgz"; + name = "commoner-0.10.4.tgz"; + sha1 = "98f3333dd3ad399596bb2d384a783bb7213d68f8"; }; deps = { - "q-1.1.2" = self.by-version."q"."1.1.2"; - "recast-0.9.18" = self.by-version."recast"."0.9.18"; - "commander-2.5.1" = self.by-version."commander"."2.5.1"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "glob-4.2.2" = self.by-version."glob"."4.2.2"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "detective-4.3.1" = self.by-version."detective"."4.3.1"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; "private-0.1.6" = self.by-version."private"."0.1.6"; - "install-0.1.8" = self.by-version."install"."0.1.8"; - "iconv-lite-0.4.8" = self.by-version."iconv-lite"."0.4.8"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "recast-0.10.43" = self.by-version."recast"."0.10.43"; }; optionalDependencies = { }; @@ -7742,8 +8513,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."commoner"."~0.10.0" = - self.by-version."commoner"."0.10.1"; + by-spec."commoner"."^0.10.1" = + self.by-version."commoner"."0.10.4"; + by-spec."commoner"."~0.10.3" = + self.by-version."commoner"."0.10.4"; by-spec."compact2string"."^1.2.0" = self.by-version."compact2string"."1.4.0"; by-version."compact2string"."1.4.0" = self.buildNodePackage { @@ -7751,12 +8524,12 @@ version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compact2string/-/compact2string-1.4.0.tgz"; + url = "https://registry.npmjs.org/compact2string/-/compact2string-1.4.0.tgz"; name = "compact2string-1.4.0.tgz"; sha1 = "a99cd96ea000525684b269683ae2222d6eea7b49"; }; deps = { - "ipaddr.js-1.0.1" = self.by-version."ipaddr.js"."1.0.1"; + "ipaddr.js-1.1.0" = self.by-version."ipaddr.js"."1.1.0"; }; optionalDependencies = { }; @@ -7771,7 +8544,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; + url = "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz"; name = "component-bind-1.0.0.tgz"; sha1 = "00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"; }; @@ -7790,7 +8563,7 @@ version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz"; + url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz"; name = "component-emitter-1.1.2.tgz"; sha1 = "296594f2753daa63996d2af08d15a95116c9aec3"; }; @@ -7802,6 +8575,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."component-emitter"."1.2.0" = + self.by-version."component-emitter"."1.2.0"; + by-version."component-emitter"."1.2.0" = self.buildNodePackage { + name = "component-emitter-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.0.tgz"; + name = "component-emitter-1.2.0.tgz"; + sha1 = "ccd113a86388d06482d03de3fc7df98526ba8efe"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."component-emitter"."^1.1.3" = + self.by-version."component-emitter"."1.2.0"; by-spec."component-inherit"."0.0.3" = self.by-version."component-inherit"."0.0.3"; by-version."component-inherit"."0.0.3" = self.buildNodePackage { @@ -7809,7 +8603,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; + url = "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz"; name = "component-inherit-0.0.3.tgz"; sha1 = "645fc4adf58b72b649d5cae65135619db26ff143"; }; @@ -7821,20 +8615,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."compress-commons"."~0.1.0" = - self.by-version."compress-commons"."0.1.6"; - by-version."compress-commons"."0.1.6" = self.buildNodePackage { - name = "compress-commons-0.1.6"; - version = "0.1.6"; + by-spec."compress-commons"."~0.2.0" = + self.by-version."compress-commons"."0.2.9"; + by-version."compress-commons"."0.2.9" = self.buildNodePackage { + name = "compress-commons-0.2.9"; + version = "0.2.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compress-commons/-/compress-commons-0.1.6.tgz"; - name = "compress-commons-0.1.6.tgz"; - sha1 = "0c740870fde58cba516f0ac0c822e33a0b85dfa3"; + url = "https://registry.npmjs.org/compress-commons/-/compress-commons-0.2.9.tgz"; + name = "compress-commons-0.2.9.tgz"; + sha1 = "422d927430c01abd06cd455b6dfc04cb4cf8003c"; }; deps = { "buffer-crc32-0.2.5" = self.by-version."buffer-crc32"."0.2.5"; - "crc32-stream-0.3.3" = self.by-version."crc32-stream"."0.3.3"; + "crc32-stream-0.3.4" = self.by-version."crc32-stream"."0.3.4"; + "node-int64-0.3.3" = self.by-version."node-int64"."0.3.3"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; }; optionalDependencies = { @@ -7850,7 +8645,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compressible/-/compressible-1.0.0.tgz"; + url = "https://registry.npmjs.org/compressible/-/compressible-1.0.0.tgz"; name = "compressible-1.0.0.tgz"; sha1 = "f83e49c1cb61421753545125a8011d68b492427d"; }; @@ -7862,19 +8657,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."compressible"."~2.0.1" = - self.by-version."compressible"."2.0.2"; - by-version."compressible"."2.0.2" = self.buildNodePackage { - name = "compressible-2.0.2"; - version = "2.0.2"; + by-spec."compressible"."~2.0.5" = + self.by-version."compressible"."2.0.7"; + by-version."compressible"."2.0.7" = self.buildNodePackage { + name = "compressible-2.0.7"; + version = "2.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compressible/-/compressible-2.0.2.tgz"; - name = "compressible-2.0.2.tgz"; - sha1 = "d0474a6ba6590a43d39c2ce9a6cfbb6479be76a5"; + url = "https://registry.npmjs.org/compressible/-/compressible-2.0.7.tgz"; + name = "compressible-2.0.7.tgz"; + sha1 = "2058c52722fd3f1538a4f22ab14d0635904d19ae"; }; deps = { - "mime-db-1.9.1" = self.by-version."mime-db"."1.9.1"; + "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; }; optionalDependencies = { }; @@ -7882,8 +8677,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."compressible"."~2.0.2" = - self.by-version."compressible"."2.0.2"; + by-spec."compressible"."~2.0.7" = + self.by-version."compressible"."2.0.7"; by-spec."compression"."1.0.0" = self.by-version."compression"."1.0.0"; by-version."compression"."1.0.0" = self.buildNodePackage { @@ -7891,7 +8686,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compression/-/compression-1.0.0.tgz"; + url = "https://registry.npmjs.org/compression/-/compression-1.0.0.tgz"; name = "compression-1.0.0.tgz"; sha1 = "8aeb85d48db5145d38bc8b181b6352d8eab26020"; }; @@ -7907,23 +8702,23 @@ cpu = [ ]; }; by-spec."compression".">=1.2.0 <2.0.0-0" = - self.by-version."compression"."1.4.3"; - by-version."compression"."1.4.3" = self.buildNodePackage { - name = "compression-1.4.3"; - version = "1.4.3"; + self.by-version."compression"."1.6.1"; + by-version."compression"."1.6.1" = self.buildNodePackage { + name = "compression-1.6.1"; + version = "1.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compression/-/compression-1.4.3.tgz"; - name = "compression-1.4.3.tgz"; - sha1 = "7161bc0441df629273e5c31dd631b8e41e886b4d"; + url = "https://registry.npmjs.org/compression/-/compression-1.6.1.tgz"; + name = "compression-1.6.1.tgz"; + sha1 = "1bf4f96fd72019a3fd11513b4fc4dcd3bd16db55"; }; deps = { - "accepts-1.2.5" = self.by-version."accepts"."1.2.5"; - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "compressible-2.0.2" = self.by-version."compressible"."2.0.2"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; + "accepts-1.3.2" = self.by-version."accepts"."1.3.2"; + "bytes-2.2.0" = self.by-version."bytes"."2.2.0"; + "compressible-2.0.7" = self.by-version."compressible"."2.0.7"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "vary-1.1.0" = self.by-version."vary"."1.1.0"; }; optionalDependencies = { }; @@ -7931,24 +8726,28 @@ os = [ ]; cpu = [ ]; }; - by-spec."compression"."~1.1.0" = - self.by-version."compression"."1.1.2"; - by-version."compression"."1.1.2" = self.buildNodePackage { - name = "compression-1.1.2"; - version = "1.1.2"; + by-spec."compression"."^1.5.0" = + self.by-version."compression"."1.6.1"; + by-spec."compression"."^1.6.0" = + self.by-version."compression"."1.6.1"; + by-spec."compression"."~1.5.2" = + self.by-version."compression"."1.5.2"; + by-version."compression"."1.5.2" = self.buildNodePackage { + name = "compression-1.5.2"; + version = "1.5.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/compression/-/compression-1.1.2.tgz"; - name = "compression-1.1.2.tgz"; - sha1 = "f93fb7fcdb3573ec4c7d5398984caae230e2a8d7"; + url = "https://registry.npmjs.org/compression/-/compression-1.5.2.tgz"; + name = "compression-1.5.2.tgz"; + sha1 = "b03b8d86e6f8ad29683cba8df91ddc6ffc77b395"; }; deps = { - "accepts-1.1.4" = self.by-version."accepts"."1.1.4"; - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "compressible-2.0.2" = self.by-version."compressible"."2.0.2"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; + "accepts-1.2.13" = self.by-version."accepts"."1.2.13"; + "bytes-2.1.0" = self.by-version."bytes"."2.1.0"; + "compressible-2.0.7" = self.by-version."compressible"."2.0.7"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "vary-1.0.1" = self.by-version."vary"."1.0.1"; }; optionalDependencies = { }; @@ -7956,10 +8755,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."compression"."~1.1.2" = - self.by-version."compression"."1.1.2"; - by-spec."compression"."~1.4.3" = - self.by-version."compression"."1.4.3"; by-spec."concat-map"."0.0.1" = self.by-version."concat-map"."0.0.1"; by-version."concat-map"."0.0.1" = self.buildNodePackage { @@ -7967,7 +8762,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; + url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; name = "concat-map-0.0.1.tgz"; sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; }; @@ -7980,15 +8775,65 @@ cpu = [ ]; }; by-spec."concat-stream"."*" = - self.by-version."concat-stream"."1.4.8"; - by-version."concat-stream"."1.4.8" = self.buildNodePackage { - name = "concat-stream-1.4.8"; - version = "1.4.8"; + self.by-version."concat-stream"."1.5.1"; + by-version."concat-stream"."1.5.1" = self.buildNodePackage { + name = "concat-stream-1.5.1"; + version = "1.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/concat-stream/-/concat-stream-1.4.8.tgz"; - name = "concat-stream-1.4.8.tgz"; - sha1 = "e8325bb89e55000e52b626d97466fde1a28cfe5d"; + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.1.tgz"; + name = "concat-stream-1.5.1.tgz"; + sha1 = "f3b80acf9e1f48e3875c0688b41b6c31602eea1c"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "typedarray-0.0.6" = self.by-version."typedarray"."0.0.6"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."concat-stream"."1.5.0" = + self.by-version."concat-stream"."1.5.0"; + by-version."concat-stream"."1.5.0" = self.buildNodePackage { + name = "concat-stream-1.5.0"; + version = "1.5.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.0.tgz"; + name = "concat-stream-1.5.0.tgz"; + sha1 = "53f7d43c51c5e43f81c8fdd03321c631be68d611"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "typedarray-0.0.6" = self.by-version."typedarray"."0.0.6"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."concat-stream"."^1.4.1" = + self.by-version."concat-stream"."1.5.1"; + by-spec."concat-stream"."^1.4.6" = + self.by-version."concat-stream"."1.5.1"; + by-spec."concat-stream"."^1.4.7" = + self.by-version."concat-stream"."1.5.1"; + by-spec."concat-stream"."~1.4.1" = + self.by-version."concat-stream"."1.4.10"; + by-version."concat-stream"."1.4.10" = self.buildNodePackage { + name = "concat-stream-1.4.10"; + version = "1.4.10"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.4.10.tgz"; + name = "concat-stream-1.4.10.tgz"; + sha1 = "acc3bbf5602cb8cc980c6ac840fa7d8603e3ef36"; }; deps = { "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -8001,14 +8846,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."concat-stream"."^1.4.1" = - self.by-version."concat-stream"."1.4.8"; - by-spec."concat-stream"."^1.4.6" = - self.by-version."concat-stream"."1.4.8"; - by-spec."concat-stream"."~1.4.1" = - self.by-version."concat-stream"."1.4.8"; by-spec."concat-stream"."~1.4.5" = - self.by-version."concat-stream"."1.4.8"; + self.by-version."concat-stream"."1.4.10"; + by-spec."concat-stream"."~1.4.7" = + self.by-version."concat-stream"."1.4.10"; + by-spec."concat-stream"."~1.5.0" = + self.by-version."concat-stream"."1.5.1"; + by-spec."concat-stream"."~1.5.1" = + self.by-version."concat-stream"."1.5.1"; by-spec."config"."0.4.15" = self.by-version."config"."0.4.15"; by-version."config"."0.4.15" = self.buildNodePackage { @@ -8016,13 +8861,13 @@ version = "0.4.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/config/-/config-0.4.15.tgz"; + url = "https://registry.npmjs.org/config/-/config-0.4.15.tgz"; name = "config-0.4.15.tgz"; sha1 = "d43ddf58b8df5637fdd1314fc816ccae7bfbcd18"; }; deps = { "js-yaml-0.3.7" = self.by-version."js-yaml"."0.3.7"; - "coffee-script-1.9.2" = self.by-version."coffee-script"."1.9.2"; + "coffee-script-1.10.0" = self.by-version."coffee-script"."1.10.0"; "vows-0.8.1" = self.by-version."vows"."0.8.1"; }; optionalDependencies = { @@ -8038,7 +8883,7 @@ version = "0.4.36"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/config/-/config-0.4.36.tgz"; + url = "https://registry.npmjs.org/config/-/config-0.4.36.tgz"; name = "config-0.4.36.tgz"; sha1 = "02af1237f519c00f1e3aac22f9a034148fc3e786"; }; @@ -8051,19 +8896,19 @@ cpu = [ ]; }; by-spec."config-chain"."~1.1.1" = - self.by-version."config-chain"."1.1.8"; - by-version."config-chain"."1.1.8" = self.buildNodePackage { - name = "config-chain-1.1.8"; - version = "1.1.8"; + self.by-version."config-chain"."1.1.10"; + by-version."config-chain"."1.1.10" = self.buildNodePackage { + name = "config-chain-1.1.10"; + version = "1.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/config-chain/-/config-chain-1.1.8.tgz"; - name = "config-chain-1.1.8.tgz"; - sha1 = "0943d0b7227213a20d4eaff4434f4a1c0a052cad"; + url = "https://registry.npmjs.org/config-chain/-/config-chain-1.1.10.tgz"; + name = "config-chain-1.1.10.tgz"; + sha1 = "7fc383de0fcc84d711cb465bd176579cad612346"; }; deps = { - "proto-list-1.2.3" = self.by-version."proto-list"."1.2.3"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; + "proto-list-1.2.4" = self.by-version."proto-list"."1.2.4"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; }; optionalDependencies = { }; @@ -8071,28 +8916,30 @@ os = [ ]; cpu = [ ]; }; + by-spec."config-chain"."~1.1.10" = + self.by-version."config-chain"."1.1.10"; by-spec."config-chain"."~1.1.8" = - self.by-version."config-chain"."1.1.8"; - by-spec."configstore"."^0.3.1" = - self.by-version."configstore"."0.3.2"; - by-version."configstore"."0.3.2" = self.buildNodePackage { - name = "configstore-0.3.2"; - version = "0.3.2"; + self.by-version."config-chain"."1.1.10"; + by-spec."configstore"."^1.0.0" = + self.by-version."configstore"."1.4.0"; + by-version."configstore"."1.4.0" = self.buildNodePackage { + name = "configstore-1.4.0"; + version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/configstore/-/configstore-0.3.2.tgz"; - name = "configstore-0.3.2.tgz"; - sha1 = "25e4c16c3768abf75c5a65bc61761f495055b459"; + url = "https://registry.npmjs.org/configstore/-/configstore-1.4.0.tgz"; + name = "configstore-1.4.0.tgz"; + sha1 = "c35781d0501d268c25c54b8b17f6240e8a4fb021"; }; deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "js-yaml-3.2.7" = self.by-version."js-yaml"."3.2.7"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "object-assign-2.0.0" = self.by-version."object-assign"."2.0.0"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; - "xdg-basedir-1.0.1" = self.by-version."xdg-basedir"."1.0.1"; + "write-file-atomic-1.1.4" = self.by-version."write-file-atomic"."1.1.4"; + "xdg-basedir-2.0.0" = self.by-version."xdg-basedir"."2.0.0"; }; optionalDependencies = { }; @@ -8100,8 +8947,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."configstore"."^0.3.2" = - self.by-version."configstore"."0.3.2"; by-spec."connect"."1.x" = self.by-version."connect"."1.9.2"; by-version."connect"."1.9.2" = self.buildNodePackage { @@ -8109,12 +8954,12 @@ version = "1.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-1.9.2.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-1.9.2.tgz"; name = "connect-1.9.2.tgz"; sha1 = "42880a22e9438ae59a8add74e437f58ae8e52807"; }; deps = { - "qs-2.4.1" = self.by-version."qs"."2.4.1"; + "qs-6.1.0" = self.by-version."qs"."6.1.0"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; "formidable-1.0.17" = self.by-version."formidable"."1.0.17"; }; @@ -8131,7 +8976,7 @@ version = "2.11.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.11.0.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-2.11.0.tgz"; name = "connect-2.11.0.tgz"; sha1 = "9991ce09ff9b85d9ead27f9d41d0b2a2df2f9284"; }; @@ -8145,7 +8990,7 @@ "fresh-0.2.0" = self.by-version."fresh"."0.2.0"; "pause-0.0.1" = self.by-version."pause"."0.0.1"; "uid2-0.0.3" = self.by-version."uid2"."0.0.3"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "methods-0.0.1" = self.by-version."methods"."0.0.1"; "raw-body-0.0.3" = self.by-version."raw-body"."0.0.3"; "negotiator-0.3.0" = self.by-version."negotiator"."0.3.0"; @@ -8164,7 +9009,7 @@ version = "2.14.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.14.5.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-2.14.5.tgz"; name = "connect-2.14.5.tgz"; sha1 = "73217513152c152ebe049c499fa09211b8c476f4"; }; @@ -8199,104 +9044,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."connect"."2.26.1" = - self.by-version."connect"."2.26.1"; - by-version."connect"."2.26.1" = self.buildNodePackage { - name = "connect-2.26.1"; - version = "2.26.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.26.1.tgz"; - name = "connect-2.26.1.tgz"; - sha1 = "e8eb8c182c5120d25f5a5b76a09e7b99694d1403"; - }; - deps = { - "basic-auth-connect-1.0.0" = self.by-version."basic-auth-connect"."1.0.0"; - "body-parser-1.8.4" = self.by-version."body-parser"."1.8.4"; - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-parser-1.3.4" = self.by-version."cookie-parser"."1.3.4"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "compression-1.1.2" = self.by-version."compression"."1.1.2"; - "connect-timeout-1.3.0" = self.by-version."connect-timeout"."1.3.0"; - "csurf-1.6.6" = self.by-version."csurf"."1.6.6"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "errorhandler-1.2.4" = self.by-version."errorhandler"."1.2.4"; - "express-session-1.8.2" = self.by-version."express-session"."1.8.2"; - "finalhandler-0.2.0" = self.by-version."finalhandler"."0.2.0"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "method-override-2.2.0" = self.by-version."method-override"."2.2.0"; - "morgan-1.3.2" = self.by-version."morgan"."1.3.2"; - "multiparty-3.3.2" = self.by-version."multiparty"."3.3.2"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "qs-2.2.3" = self.by-version."qs"."2.2.3"; - "response-time-2.0.1" = self.by-version."response-time"."2.0.1"; - "serve-favicon-2.1.7" = self.by-version."serve-favicon"."2.1.7"; - "serve-index-1.2.1" = self.by-version."serve-index"."1.2.1"; - "serve-static-1.6.5" = self.by-version."serve-static"."1.6.5"; - "type-is-1.5.7" = self.by-version."type-is"."1.5.7"; - "vhost-3.0.0" = self.by-version."vhost"."3.0.0"; - "pause-0.0.1" = self.by-version."pause"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."connect"."2.29.1" = - self.by-version."connect"."2.29.1"; - by-version."connect"."2.29.1" = self.buildNodePackage { - name = "connect-2.29.1"; - version = "2.29.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.29.1.tgz"; - name = "connect-2.29.1.tgz"; - sha1 = "e0456742d25ed232b573ce156883dd4e6f208538"; - }; - deps = { - "basic-auth-connect-1.0.0" = self.by-version."basic-auth-connect"."1.0.0"; - "body-parser-1.12.3" = self.by-version."body-parser"."1.12.3"; - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-parser-1.3.4" = self.by-version."cookie-parser"."1.3.4"; - "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "compression-1.4.3" = self.by-version."compression"."1.4.3"; - "connect-timeout-1.6.1" = self.by-version."connect-timeout"."1.6.1"; - "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; - "csurf-1.7.0" = self.by-version."csurf"."1.7.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "errorhandler-1.3.5" = self.by-version."errorhandler"."1.3.5"; - "express-session-1.10.4" = self.by-version."express-session"."1.10.4"; - "finalhandler-0.3.4" = self.by-version."finalhandler"."0.3.4"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; - "method-override-2.3.2" = self.by-version."method-override"."2.3.2"; - "morgan-1.5.2" = self.by-version."morgan"."1.5.2"; - "multiparty-3.3.2" = self.by-version."multiparty"."3.3.2"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "qs-2.4.1" = self.by-version."qs"."2.4.1"; - "response-time-2.3.0" = self.by-version."response-time"."2.3.0"; - "serve-favicon-2.2.0" = self.by-version."serve-favicon"."2.2.0"; - "serve-index-1.6.3" = self.by-version."serve-index"."1.6.3"; - "serve-static-1.9.2" = self.by-version."serve-static"."1.9.2"; - "type-is-1.6.1" = self.by-version."type-is"."1.6.1"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - "vhost-3.0.0" = self.by-version."vhost"."3.0.0"; - "pause-0.0.1" = self.by-version."pause"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."connect"."2.3.x" = self.by-version."connect"."2.3.9"; by-version."connect"."2.3.9" = self.buildNodePackage { @@ -8304,7 +9051,7 @@ version = "2.3.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.3.9.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-2.3.9.tgz"; name = "connect-2.3.9.tgz"; sha1 = "4d26ddc485c32e5a1cf1b35854823b4720d25a52"; }; @@ -8316,7 +9063,7 @@ "bytes-0.1.0" = self.by-version."bytes"."0.1.0"; "send-0.0.3" = self.by-version."send"."0.0.3"; "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -8324,28 +9071,49 @@ os = [ ]; cpu = [ ]; }; - by-spec."connect"."2.7.5" = - self.by-version."connect"."2.7.5"; - by-version."connect"."2.7.5" = self.buildNodePackage { - name = "connect-2.7.5"; - version = "2.7.5"; + by-spec."connect"."2.30.2" = + self.by-version."connect"."2.30.2"; + by-version."connect"."2.30.2" = self.buildNodePackage { + name = "connect-2.30.2"; + version = "2.30.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.7.5.tgz"; - name = "connect-2.7.5.tgz"; - sha1 = "139111b4b03f0533a524927a88a646ae467b2c02"; + url = "https://registry.npmjs.org/connect/-/connect-2.30.2.tgz"; + name = "connect-2.30.2.tgz"; + sha1 = "8da9bcbe8a054d3d318d74dfec903b5c39a1b609"; }; deps = { - "qs-0.5.1" = self.by-version."qs"."0.5.1"; - "formidable-1.0.11" = self.by-version."formidable"."1.0.11"; - "cookie-signature-1.0.0" = self.by-version."cookie-signature"."1.0.0"; - "buffer-crc32-0.1.1" = self.by-version."buffer-crc32"."0.1.1"; - "cookie-0.0.5" = self.by-version."cookie"."0.0.5"; - "send-0.1.0" = self.by-version."send"."0.1.0"; - "bytes-0.2.0" = self.by-version."bytes"."0.2.0"; - "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; - "pause-0.0.1" = self.by-version."pause"."0.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "basic-auth-connect-1.0.0" = self.by-version."basic-auth-connect"."1.0.0"; + "body-parser-1.13.3" = self.by-version."body-parser"."1.13.3"; + "bytes-2.1.0" = self.by-version."bytes"."2.1.0"; + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; + "cookie-parser-1.3.5" = self.by-version."cookie-parser"."1.3.5"; + "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; + "compression-1.5.2" = self.by-version."compression"."1.5.2"; + "connect-timeout-1.6.2" = self.by-version."connect-timeout"."1.6.2"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "csurf-1.8.3" = self.by-version."csurf"."1.8.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.0.1" = self.by-version."depd"."1.0.1"; + "errorhandler-1.4.3" = self.by-version."errorhandler"."1.4.3"; + "express-session-1.11.3" = self.by-version."express-session"."1.11.3"; + "finalhandler-0.4.0" = self.by-version."finalhandler"."0.4.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "method-override-2.3.5" = self.by-version."method-override"."2.3.5"; + "morgan-1.6.1" = self.by-version."morgan"."1.6.1"; + "multiparty-3.3.2" = self.by-version."multiparty"."3.3.2"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "pause-0.1.0" = self.by-version."pause"."0.1.0"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "response-time-2.3.1" = self.by-version."response-time"."2.3.1"; + "serve-favicon-2.3.0" = self.by-version."serve-favicon"."2.3.0"; + "serve-index-1.7.3" = self.by-version."serve-index"."1.7.3"; + "serve-static-1.10.2" = self.by-version."serve-static"."1.10.2"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + "vhost-3.0.2" = self.by-version."vhost"."3.0.2"; }; optionalDependencies = { }; @@ -8360,7 +9128,7 @@ version = "2.7.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.7.6.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-2.7.6.tgz"; name = "connect-2.7.6.tgz"; sha1 = "b83b68fa6f245c5020e2395472cc8322b0060738"; }; @@ -8374,7 +9142,7 @@ "bytes-0.2.0" = self.by-version."bytes"."0.2.0"; "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; "pause-0.0.1" = self.by-version."pause"."0.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -8389,7 +9157,7 @@ version = "3.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-3.0.2.tgz"; + url = "https://registry.npmjs.org/connect/-/connect-3.0.2.tgz"; name = "connect-3.0.2.tgz"; sha1 = "1f90b4672fe009fa2876df860442d30db18609a2"; }; @@ -8405,51 +9173,44 @@ os = [ ]; cpu = [ ]; }; - by-spec."connect"."^2.14.5" = - self.by-version."connect"."2.29.1"; - by-spec."connect"."~2" = - self.by-version."connect"."2.29.1"; - by-spec."connect"."~2.26.0" = - self.by-version."connect"."2.26.6"; - by-version."connect"."2.26.6" = self.buildNodePackage { - name = "connect-2.26.6"; - version = "2.26.6"; + by-spec."connect"."^3.3.5" = + self.by-version."connect"."3.4.1"; + by-version."connect"."3.4.1" = self.buildNodePackage { + name = "connect-3.4.1"; + version = "3.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect/-/connect-2.26.6.tgz"; - name = "connect-2.26.6.tgz"; - sha1 = "94f3eef3fdeeb405806ea46dc036ee0b2acae700"; + url = "https://registry.npmjs.org/connect/-/connect-3.4.1.tgz"; + name = "connect-3.4.1.tgz"; + sha1 = "a21361d3f4099ef761cda6dc4a973bb1ebb0a34d"; }; deps = { - "basic-auth-connect-1.0.0" = self.by-version."basic-auth-connect"."1.0.0"; - "body-parser-1.8.4" = self.by-version."body-parser"."1.8.4"; - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-parser-1.3.4" = self.by-version."cookie-parser"."1.3.4"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "compression-1.1.2" = self.by-version."compression"."1.1.2"; - "connect-timeout-1.3.0" = self.by-version."connect-timeout"."1.3.0"; - "csurf-1.6.6" = self.by-version."csurf"."1.6.6"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "errorhandler-1.2.4" = self.by-version."errorhandler"."1.2.4"; - "express-session-1.8.2" = self.by-version."express-session"."1.8.2"; - "finalhandler-0.2.0" = self.by-version."finalhandler"."0.2.0"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "method-override-2.2.0" = self.by-version."method-override"."2.2.0"; - "morgan-1.3.2" = self.by-version."morgan"."1.3.2"; - "multiparty-3.3.2" = self.by-version."multiparty"."3.3.2"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "qs-2.2.4" = self.by-version."qs"."2.2.4"; - "response-time-2.0.1" = self.by-version."response-time"."2.0.1"; - "serve-favicon-2.1.7" = self.by-version."serve-favicon"."2.1.7"; - "serve-index-1.2.1" = self.by-version."serve-index"."1.2.1"; - "serve-static-1.6.5" = self.by-version."serve-static"."1.6.5"; - "type-is-1.5.7" = self.by-version."type-is"."1.5.7"; - "vhost-3.0.0" = self.by-version."vhost"."3.0.0"; - "pause-0.0.1" = self.by-version."pause"."0.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "finalhandler-0.4.1" = self.by-version."finalhandler"."0.4.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."connect"."~2" = + self.by-version."connect"."2.30.2"; + by-spec."connect-busboy"."^0.0.2" = + self.by-version."connect-busboy"."0.0.2"; + by-version."connect-busboy"."0.0.2" = self.buildNodePackage { + name = "connect-busboy-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/connect-busboy/-/connect-busboy-0.0.2.tgz"; + name = "connect-busboy-0.0.2.tgz"; + sha1 = "ac5c9c96672171885e576c66b2bfd95d3bb11097"; + }; + deps = { + "busboy-0.2.13" = self.by-version."busboy"."0.2.13"; }; optionalDependencies = { }; @@ -8464,7 +9225,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz"; + url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.1.tgz"; name = "connect-flash-0.1.1.tgz"; sha1 = "d8630f26d95a7f851f9956b1e8cc6732f3b6aa30"; }; @@ -8484,7 +9245,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-flash/-/connect-flash-0.1.0.tgz"; + url = "https://registry.npmjs.org/connect-flash/-/connect-flash-0.1.0.tgz"; name = "connect-flash-0.1.0.tgz"; sha1 = "82b381d61a12b651437df1c259c1f1c841239b88"; }; @@ -8503,12 +9264,12 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-jade-static/-/connect-jade-static-0.2.2.tgz"; + url = "https://registry.npmjs.org/connect-jade-static/-/connect-jade-static-0.2.2.tgz"; name = "connect-jade-static-0.2.2.tgz"; sha1 = "c1812f6245ee38a6db0e278c4043b53464099f84"; }; deps = { - "jade-1.9.2" = self.by-version."jade"."1.9.2"; + "jade-1.11.0" = self.by-version."jade"."1.11.0"; }; optionalDependencies = { }; @@ -8518,21 +9279,43 @@ }; "connect-jade-static" = self.by-version."connect-jade-static"."0.2.2"; by-spec."connect-mongo"."*" = - self.by-version."connect-mongo"."0.8.0"; - by-version."connect-mongo"."0.8.0" = self.buildNodePackage { - name = "connect-mongo-0.8.0"; - version = "0.8.0"; + self.by-version."connect-mongo"."1.1.0"; + by-version."connect-mongo"."1.1.0" = self.buildNodePackage { + name = "connect-mongo-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-mongo/-/connect-mongo-0.8.0.tgz"; - name = "connect-mongo-0.8.0.tgz"; - sha1 = "5775b43a2762e4f39121d4a41a2871c3b42fbd4f"; + url = "https://registry.npmjs.org/connect-mongo/-/connect-mongo-1.1.0.tgz"; + name = "connect-mongo-1.1.0.tgz"; + sha1 = "b9de9433afd4807d8965377dfb73e67507bd2439"; }; deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; - "mongodb-2.0.27" = self.by-version."mongodb"."2.0.27"; + "bluebird-3.3.4" = self.by-version."bluebird"."3.3.4"; + "mongodb-2.1.16" = self.by-version."mongodb"."2.1.16"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "connect-mongo" = self.by-version."connect-mongo"."1.1.0"; + by-spec."connect-mongo"."0.8.2" = + self.by-version."connect-mongo"."0.8.2"; + by-version."connect-mongo"."0.8.2" = self.buildNodePackage { + name = "connect-mongo-0.8.2"; + version = "0.8.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/connect-mongo/-/connect-mongo-0.8.2.tgz"; + name = "connect-mongo-0.8.2.tgz"; + sha1 = "c92878eec0c5a5a6625b79a0c214f37f861fc6e0"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "mongodb-2.0.55" = self.by-version."mongodb"."2.0.55"; }; optionalDependencies = { }; @@ -8540,9 +9323,6 @@ os = [ ]; cpu = [ ]; }; - "connect-mongo" = self.by-version."connect-mongo"."0.8.0"; - by-spec."connect-mongo".">=0.4.0" = - self.by-version."connect-mongo"."0.8.0"; by-spec."connect-multiparty"."^1.2.5" = self.by-version."connect-multiparty"."1.2.5"; by-version."connect-multiparty"."1.2.5" = self.buildNodePackage { @@ -8550,7 +9330,7 @@ version = "1.2.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-multiparty/-/connect-multiparty-1.2.5.tgz"; + url = "https://registry.npmjs.org/connect-multiparty/-/connect-multiparty-1.2.5.tgz"; name = "connect-multiparty-1.2.5.tgz"; sha1 = "2fabecfdc1a8a774ba19484dce660c818a8555e7"; }; @@ -8566,25 +9346,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."connect-restreamer"."*" = - self.by-version."connect-restreamer"."1.0.2"; - by-version."connect-restreamer"."1.0.2" = self.buildNodePackage { - name = "connect-restreamer-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/connect-restreamer/-/connect-restreamer-1.0.2.tgz"; - name = "connect-restreamer-1.0.2.tgz"; - sha1 = "51dcc63860c4320aef1e72b137123f7653bfe397"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."connect-timeout"."1.0.0" = self.by-version."connect-timeout"."1.0.0"; by-version."connect-timeout"."1.0.0" = self.buildNodePackage { @@ -8592,12 +9353,12 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-timeout/-/connect-timeout-1.0.0.tgz"; + url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.0.0.tgz"; name = "connect-timeout-1.0.0.tgz"; sha1 = "12054799f90bb9566f8b274efe7842d6465d10bb"; }; deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -8605,63 +9366,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."connect-timeout"."~1.3.0" = - self.by-version."connect-timeout"."1.3.0"; - by-version."connect-timeout"."1.3.0" = self.buildNodePackage { - name = "connect-timeout-1.3.0"; - version = "1.3.0"; + by-spec."connect-timeout"."~1.6.2" = + self.by-version."connect-timeout"."1.6.2"; + by-version."connect-timeout"."1.6.2" = self.buildNodePackage { + name = "connect-timeout-1.6.2"; + version = "1.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/connect-timeout/-/connect-timeout-1.3.0.tgz"; - name = "connect-timeout-1.3.0.tgz"; - sha1 = "d9d1d2df2900d490ed54190809f37e6b4508a1ec"; + url = "https://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.2.tgz"; + name = "connect-timeout-1.6.2.tgz"; + sha1 = "de9a5ec61e33a12b6edaab7b5f062e98c599b88e"; }; deps = { - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."connect-timeout"."~1.6.1" = - self.by-version."connect-timeout"."1.6.1"; - by-version."connect-timeout"."1.6.1" = self.buildNodePackage { - name = "connect-timeout-1.6.1"; - version = "1.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/connect-timeout/-/connect-timeout-1.6.1.tgz"; - name = "connect-timeout-1.6.1.tgz"; - sha1 = "1de3a2b853734820a232080b95742494ba4cd067"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; - "ms-0.7.0" = self.by-version."ms"."0.7.0"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."connection-parse"."0.0.x" = - self.by-version."connection-parse"."0.0.7"; - by-version."connection-parse"."0.0.7" = self.buildNodePackage { - name = "connection-parse-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/connection-parse/-/connection-parse-0.0.7.tgz"; - name = "connection-parse-0.0.7.tgz"; - sha1 = "18e7318aab06a699267372b10c5226d25a1c9a69"; - }; - deps = { + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; }; optionalDependencies = { }; @@ -8676,7 +9396,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz"; + url = "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz"; name = "console-browserify-1.1.0.tgz"; sha1 = "f0241c45730a9fc6323b206dbf38edc741d0bb10"; }; @@ -8691,60 +9411,19 @@ }; by-spec."console-browserify"."^1.1.0" = self.by-version."console-browserify"."1.1.0"; - by-spec."console-browserify"."~1.0.1" = - self.by-version."console-browserify"."1.0.3"; - by-version."console-browserify"."1.0.3" = self.buildNodePackage { - name = "console-browserify-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/console-browserify/-/console-browserify-1.0.3.tgz"; - name = "console-browserify-1.0.3.tgz"; - sha1 = "d3898d2c3a93102f364197f8874b4f92b5286a8e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."constantinople"."~1.0.1" = - self.by-version."constantinople"."1.0.2"; - by-version."constantinople"."1.0.2" = self.buildNodePackage { - name = "constantinople-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/constantinople/-/constantinople-1.0.2.tgz"; - name = "constantinople-1.0.2.tgz"; - sha1 = "0e64747dc836644d3f659247efd95231b48c3e71"; - }; - deps = { - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."constantinople"."~1.0.2" = - self.by-version."constantinople"."1.0.2"; by-spec."constantinople"."~3.0.1" = - self.by-version."constantinople"."3.0.1"; - by-version."constantinople"."3.0.1" = self.buildNodePackage { - name = "constantinople-3.0.1"; - version = "3.0.1"; + self.by-version."constantinople"."3.0.2"; + by-version."constantinople"."3.0.2" = self.buildNodePackage { + name = "constantinople-3.0.2"; + version = "3.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/constantinople/-/constantinople-3.0.1.tgz"; - name = "constantinople-3.0.1.tgz"; - sha1 = "1ddf9deac0d14c4367c1d5b3f16fb2763f123108"; + url = "https://registry.npmjs.org/constantinople/-/constantinople-3.0.2.tgz"; + name = "constantinople-3.0.2.tgz"; + sha1 = "4b945d9937907bcd98ee575122c3817516544141"; }; deps = { - "acorn-globals-1.0.4" = self.by-version."acorn-globals"."1.0.4"; + "acorn-2.7.0" = self.by-version."acorn"."2.7.0"; }; optionalDependencies = { }; @@ -8759,7 +9438,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/constants-browserify/-/constants-browserify-0.0.1.tgz"; + url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-0.0.1.tgz"; name = "constants-browserify-0.0.1.tgz"; sha1 = "92577db527ba6c4cf0a4568d84bc031f441e21f2"; }; @@ -8771,8 +9450,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."constants-browserify"."^1.0.0" = + self.by-version."constants-browserify"."1.0.0"; + by-version."constants-browserify"."1.0.0" = self.buildNodePackage { + name = "constants-browserify-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"; + name = "constants-browserify-1.0.0.tgz"; + sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."constants-browserify"."~0.0.1" = self.by-version."constants-browserify"."0.0.1"; + by-spec."constants-browserify"."~1.0.0" = + self.by-version."constants-browserify"."1.0.0"; by-spec."content-disposition"."0.5.0" = self.by-version."content-disposition"."0.5.0"; by-version."content-disposition"."0.5.0" = self.buildNodePackage { @@ -8780,7 +9480,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/content-disposition/-/content-disposition-0.5.0.tgz"; + url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.0.tgz"; name = "content-disposition-0.5.0.tgz"; sha1 = "4284fe6ae0630874639e44e80a418c2934135e9e"; }; @@ -8792,6 +9492,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."content-disposition"."0.5.1" = + self.by-version."content-disposition"."0.5.1"; + by-version."content-disposition"."0.5.1" = self.buildNodePackage { + name = "content-disposition-0.5.1"; + version = "0.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.1.tgz"; + name = "content-disposition-0.5.1.tgz"; + sha1 = "87476c6a67c8daa87e32e87616df883ba7fb071b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."content-type"."~1.0.1" = self.by-version."content-type"."1.0.1"; by-version."content-type"."1.0.1" = self.buildNodePackage { @@ -8799,7 +9518,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/content-type/-/content-type-1.0.1.tgz"; + url = "https://registry.npmjs.org/content-type/-/content-type-1.0.1.tgz"; name = "content-type-1.0.1.tgz"; sha1 = "a19d2247327dc038050ce622b7a154ec59c5e600"; }; @@ -8811,20 +9530,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."contextify"."~0.1.5" = - self.by-version."contextify"."0.1.13"; - by-version."contextify"."0.1.13" = self.buildNodePackage { - name = "contextify-0.1.13"; - version = "0.1.13"; + by-spec."contextify".">= 0.1.9 < 0.2.0" = + self.by-version."contextify"."0.1.15"; + by-version."contextify"."0.1.15" = self.buildNodePackage { + name = "contextify-0.1.15"; + version = "0.1.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/contextify/-/contextify-0.1.13.tgz"; - name = "contextify-0.1.13.tgz"; - sha1 = "4ecac6abf6fd266aff1a7b5c4fcc902932cb4efe"; + url = "https://registry.npmjs.org/contextify/-/contextify-0.1.15.tgz"; + name = "contextify-0.1.15.tgz"; + sha1 = "3d34681d14a5ccbbe609c9ee11eda206b8cf266f"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.5.3" = self.by-version."nan"."1.5.3"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -8832,6 +9551,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."contextify"."~0.1.5" = + self.by-version."contextify"."0.1.15"; by-spec."convert-source-map"."~0.3.0" = self.by-version."convert-source-map"."0.3.5"; by-version."convert-source-map"."0.3.5" = self.buildNodePackage { @@ -8839,7 +9560,7 @@ version = "0.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz"; + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz"; name = "convert-source-map-0.3.5.tgz"; sha1 = "f1d802950af7dd2631a1febe0596550c86ab3190"; }; @@ -8851,6 +9572,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."convert-source-map"."~1.1.0" = + self.by-version."convert-source-map"."1.1.3"; + by-version."convert-source-map"."1.1.3" = self.buildNodePackage { + name = "convert-source-map-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.3.tgz"; + name = "convert-source-map-1.1.3.tgz"; + sha1 = "4829c877e9fe49b3161f3bf3673888e204699860"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."cookie"."0.0.4" = self.by-version."cookie"."0.0.4"; by-version."cookie"."0.0.4" = self.buildNodePackage { @@ -8858,7 +9598,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz"; + url = "https://registry.npmjs.org/cookie/-/cookie-0.0.4.tgz"; name = "cookie-0.0.4.tgz"; sha1 = "5456bd47aee2666eac976ea80a6105940483fe98"; }; @@ -8877,7 +9617,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz"; + url = "https://registry.npmjs.org/cookie/-/cookie-0.0.5.tgz"; name = "cookie-0.0.5.tgz"; sha1 = "f9acf9db57eb7568c9fcc596256b7bb22e307c81"; }; @@ -8896,7 +9636,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz"; + url = "https://registry.npmjs.org/cookie/-/cookie-0.1.0.tgz"; name = "cookie-0.1.0.tgz"; sha1 = "90eb469ddce905c866de687efc43131d8801f9d0"; }; @@ -8915,7 +9655,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz"; + url = "https://registry.npmjs.org/cookie/-/cookie-0.1.2.tgz"; name = "cookie-0.1.2.tgz"; sha1 = "72fec3d24e48a3432073d90c12642005061004b1"; }; @@ -8927,6 +9667,63 @@ os = [ ]; cpu = [ ]; }; + by-spec."cookie"."0.1.3" = + self.by-version."cookie"."0.1.3"; + by-version."cookie"."0.1.3" = self.buildNodePackage { + name = "cookie-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cookie/-/cookie-0.1.3.tgz"; + name = "cookie-0.1.3.tgz"; + sha1 = "e734a5c1417fce472d5aef82c381cabb64d1a435"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."cookie"."0.1.5" = + self.by-version."cookie"."0.1.5"; + by-version."cookie"."0.1.5" = self.buildNodePackage { + name = "cookie-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cookie/-/cookie-0.1.5.tgz"; + name = "cookie-0.1.5.tgz"; + sha1 = "6ab9948a4b1ae21952cd2588530a4722d4044d7c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."cookie"."0.2.3" = + self.by-version."cookie"."0.2.3"; + by-version."cookie"."0.2.3" = self.buildNodePackage { + name = "cookie-0.2.3"; + version = "0.2.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cookie/-/cookie-0.2.3.tgz"; + name = "cookie-0.2.3.tgz"; + sha1 = "1a59536af68537a21178a01346f87cb059d2ae5c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."cookie-jar"."~0.2.0" = self.by-version."cookie-jar"."0.2.0"; by-version."cookie-jar"."0.2.0" = self.buildNodePackage { @@ -8934,7 +9731,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz"; + url = "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz"; name = "cookie-jar-0.2.0.tgz"; sha1 = "64ecc06ac978db795e4b5290cbe48ba3781400fa"; }; @@ -8953,7 +9750,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-jar/-/cookie-jar-0.3.0.tgz"; + url = "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.3.0.tgz"; name = "cookie-jar-0.3.0.tgz"; sha1 = "bc9a27d4e2b97e186cd57c9e2063cb99fa68cccc"; }; @@ -8972,7 +9769,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-parser/-/cookie-parser-1.0.1.tgz"; + url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.0.1.tgz"; name = "cookie-parser-1.0.1.tgz"; sha1 = "17bd622c9717cd0858a912a9fef4c0362360a7b0"; }; @@ -8987,18 +9784,18 @@ cpu = [ ]; }; by-spec."cookie-parser"."^1.0.1" = - self.by-version."cookie-parser"."1.3.4"; - by-version."cookie-parser"."1.3.4" = self.buildNodePackage { - name = "cookie-parser-1.3.4"; - version = "1.3.4"; + self.by-version."cookie-parser"."1.4.1"; + by-version."cookie-parser"."1.4.1" = self.buildNodePackage { + name = "cookie-parser-1.4.1"; + version = "1.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.4.tgz"; - name = "cookie-parser-1.3.4.tgz"; - sha1 = "193035a5be97117a21709b3aa737f6132717bda6"; + url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.4.1.tgz"; + name = "cookie-parser-1.4.1.tgz"; + sha1 = "6b0ee6a8dec27a063af42d188a592cc1d72ba4f4"; }; deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; + "cookie-0.2.3" = self.by-version."cookie"."0.2.3"; "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; }; optionalDependencies = { @@ -9007,22 +9804,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."cookie-parser"."~1.3.3" = - self.by-version."cookie-parser"."1.3.4"; - by-spec."cookie-parser"."~1.3.4" = - self.by-version."cookie-parser"."1.3.4"; - by-spec."cookie-signature"."1.0.0" = - self.by-version."cookie-signature"."1.0.0"; - by-version."cookie-signature"."1.0.0" = self.buildNodePackage { - name = "cookie-signature-1.0.0"; - version = "1.0.0"; + by-spec."cookie-parser"."~1.3.5" = + self.by-version."cookie-parser"."1.3.5"; + by-version."cookie-parser"."1.3.5" = self.buildNodePackage { + name = "cookie-parser-1.3.5"; + version = "1.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.0.tgz"; - name = "cookie-signature-1.0.0.tgz"; - sha1 = "0044f332ac623df851c914e88eacc57f0c9704fe"; + url = "https://registry.npmjs.org/cookie-parser/-/cookie-parser-1.3.5.tgz"; + name = "cookie-parser-1.3.5.tgz"; + sha1 = "9d755570fb5d17890771227a02314d9be7cf8356"; }; deps = { + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; + "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; }; optionalDependencies = { }; @@ -9030,6 +9825,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."cookie-parser"."~1.4.1" = + self.by-version."cookie-parser"."1.4.1"; by-spec."cookie-signature"."1.0.1" = self.by-version."cookie-signature"."1.0.1"; by-version."cookie-signature"."1.0.1" = self.buildNodePackage { @@ -9037,7 +9834,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz"; + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.1.tgz"; name = "cookie-signature-1.0.1.tgz"; sha1 = "44e072148af01e6e8e24afbf12690d68ae698ecb"; }; @@ -9056,7 +9853,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz"; + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.3.tgz"; name = "cookie-signature-1.0.3.tgz"; sha1 = "91cd997cc51fb641595738c69cda020328f50ff9"; }; @@ -9075,7 +9872,7 @@ version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.4.tgz"; + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.4.tgz"; name = "cookie-signature-1.0.4.tgz"; sha1 = "0edd22286e3a111b9a2a70db363e925e867f6aca"; }; @@ -9087,25 +9884,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."cookie-signature"."1.0.5" = - self.by-version."cookie-signature"."1.0.5"; - by-version."cookie-signature"."1.0.5" = self.buildNodePackage { - name = "cookie-signature-1.0.5"; - version = "1.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.5.tgz"; - name = "cookie-signature-1.0.5.tgz"; - sha1 = "a122e3f1503eca0f5355795b0711bb2368d450f9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."cookie-signature"."1.0.6" = self.by-version."cookie-signature"."1.0.6"; by-version."cookie-signature"."1.0.6" = self.buildNodePackage { @@ -9113,7 +9891,7 @@ version = "1.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; + url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; name = "cookie-signature-1.0.6.tgz"; sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; }; @@ -9134,7 +9912,7 @@ version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookiejar/-/cookiejar-2.0.1.tgz"; + url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.0.1.tgz"; name = "cookiejar-2.0.1.tgz"; sha1 = "3d12752f6adf68a892f332433492bd5812bb668f"; }; @@ -9153,7 +9931,7 @@ version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookies/-/cookies-0.1.6.tgz"; + url = "https://registry.npmjs.org/cookies/-/cookies-0.1.6.tgz"; name = "cookies-0.1.6.tgz"; sha1 = "2129588b8b1e382ffba990d9f9cf9ddf2c142846"; }; @@ -9166,17 +9944,18 @@ cpu = [ ]; }; by-spec."cookies".">= 0.2.2" = - self.by-version."cookies"."0.5.0"; - by-version."cookies"."0.5.0" = self.buildNodePackage { - name = "cookies-0.5.0"; - version = "0.5.0"; + self.by-version."cookies"."0.6.1"; + by-version."cookies"."0.6.1" = self.buildNodePackage { + name = "cookies-0.6.1"; + version = "0.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cookies/-/cookies-0.5.0.tgz"; - name = "cookies-0.5.0.tgz"; - sha1 = "164cac46a1d3ca3b3b87427414c24931d8381025"; + url = "https://registry.npmjs.org/cookies/-/cookies-0.6.1.tgz"; + name = "cookies-0.6.1.tgz"; + sha1 = "ef693b1bc6f01f567d46e2f504e9c15fb70cba90"; }; deps = { + "depd-1.1.0" = self.by-version."depd"."1.1.0"; "keygrip-1.0.1" = self.by-version."keygrip"."1.0.1"; }; optionalDependencies = { @@ -9186,23 +9965,26 @@ cpu = [ ]; }; by-spec."cookies".">=0.5.0 <1.0.0-0" = - self.by-version."cookies"."0.5.0"; + self.by-version."cookies"."0.6.1"; by-spec."cordova"."*" = - self.by-version."cordova"."5.0.0"; - by-version."cordova"."5.0.0" = self.buildNodePackage { - name = "cordova-5.0.0"; - version = "5.0.0"; + self.by-version."cordova"."6.1.1"; + by-version."cordova"."6.1.1" = self.buildNodePackage { + name = "cordova-6.1.1"; + version = "6.1.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/cordova/-/cordova-5.0.0.tgz"; - name = "cordova-5.0.0.tgz"; - sha1 = "696907aff7c889beea4422b6c80e57558a905c05"; + url = "https://registry.npmjs.org/cordova/-/cordova-6.1.1.tgz"; + name = "cordova-6.1.1.tgz"; + sha1 = "156488fe453182941e6034516d4e0f2f85dd47bc"; }; deps = { - "cordova-lib-5.0.0" = self.by-version."cordova-lib"."5.0.0"; + "ansi-0.3.1" = self.by-version."ansi"."0.3.1"; + "cordova-lib-6.1.1" = self.by-version."cordova-lib"."6.1.1"; + "cordova-common-1.1.1" = self.by-version."cordova-common"."1.1.1"; "q-1.0.1" = self.by-version."q"."1.0.1"; "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; "underscore-1.7.0" = self.by-version."underscore"."1.7.0"; + "update-notifier-0.5.0" = self.by-version."update-notifier"."0.5.0"; }; optionalDependencies = { }; @@ -9210,17 +9992,17 @@ os = [ ]; cpu = [ ]; }; - "cordova" = self.by-version."cordova"."5.0.0"; - by-spec."cordova-app-hello-world"."3.9.0" = - self.by-version."cordova-app-hello-world"."3.9.0"; - by-version."cordova-app-hello-world"."3.9.0" = self.buildNodePackage { - name = "cordova-app-hello-world-3.9.0"; - version = "3.9.0"; + "cordova" = self.by-version."cordova"."6.1.1"; + by-spec."cordova-app-hello-world"."3.10.0" = + self.by-version."cordova-app-hello-world"."3.10.0"; + by-version."cordova-app-hello-world"."3.10.0" = self.buildNodePackage { + name = "cordova-app-hello-world-3.10.0"; + version = "3.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-3.9.0.tgz"; - name = "cordova-app-hello-world-3.9.0.tgz"; - sha1 = "5866d8fed5582686c68ec59a6d1097c4ec0fcc4b"; + url = "https://registry.npmjs.org/cordova-app-hello-world/-/cordova-app-hello-world-3.10.0.tgz"; + name = "cordova-app-hello-world-3.10.0.tgz"; + sha1 = "e3825fc6ca950090a6a37437fcfb88c1622fd80e"; }; deps = { }; @@ -9230,21 +10012,30 @@ os = [ ]; cpu = [ ]; }; - by-spec."cordova-js"."3.9.0" = - self.by-version."cordova-js"."3.9.0"; - by-version."cordova-js"."3.9.0" = self.buildNodePackage { - name = "cordova-js-3.9.0"; - version = "3.9.0"; + by-spec."cordova-common"."1.1.x" = + self.by-version."cordova-common"."1.1.1"; + by-version."cordova-common"."1.1.1" = self.buildNodePackage { + name = "cordova-common-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cordova-js/-/cordova-js-3.9.0.tgz"; - name = "cordova-js-3.9.0.tgz"; - sha1 = "d5e0b7a97e475a6c70a901b49c3ed44637b2b7f2"; + url = "https://registry.npmjs.org/cordova-common/-/cordova-common-1.1.1.tgz"; + name = "cordova-common-1.1.1.tgz"; + sha1 = "4f74e182fe706b7a0ad626b0b3d303910af21d25"; }; deps = { - "browserify-7.1.0" = self.by-version."browserify"."7.1.0"; - "through-2.3.4" = self.by-version."through"."2.3.4"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; + "ansi-0.3.1" = self.by-version."ansi"."0.3.1"; + "bplist-parser-0.1.1" = self.by-version."bplist-parser"."0.1.1"; + "cordova-registry-mapper-1.1.15" = self.by-version."cordova-registry-mapper"."1.1.15"; + "elementtree-0.1.6" = self.by-version."elementtree"."0.1.6"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; + "plist-1.2.0" = self.by-version."plist"."1.2.0"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "shelljs-0.5.3" = self.by-version."shelljs"."0.5.3"; + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + "unorm-1.4.1" = self.by-version."unorm"."1.4.1"; }; optionalDependencies = { }; @@ -9252,44 +10043,64 @@ os = [ ]; cpu = [ ]; }; - by-spec."cordova-lib"."5.0.0" = - self.by-version."cordova-lib"."5.0.0"; - by-version."cordova-lib"."5.0.0" = self.buildNodePackage { - name = "cordova-lib-5.0.0"; - version = "5.0.0"; + by-spec."cordova-common"."^1.1.0" = + self.by-version."cordova-common"."1.1.1"; + by-spec."cordova-js"."4.1.4" = + self.by-version."cordova-js"."4.1.4"; + by-version."cordova-js"."4.1.4" = self.buildNodePackage { + name = "cordova-js-4.1.4"; + version = "4.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cordova-lib/-/cordova-lib-5.0.0.tgz"; - name = "cordova-lib-5.0.0.tgz"; - sha1 = "39588131d11b79c92fd1b590549454bea04257c9"; + url = "https://registry.npmjs.org/cordova-js/-/cordova-js-4.1.4.tgz"; + name = "cordova-js-4.1.4.tgz"; + sha1 = "33c67efcc751a4b36d91301c2e5bd409003daf13"; }; deps = { - "bplist-parser-0.0.6" = self.by-version."bplist-parser"."0.0.6"; - "cordova-app-hello-world-3.9.0" = self.by-version."cordova-app-hello-world"."3.9.0"; - "cordova-js-3.9.0" = self.by-version."cordova-js"."3.9.0"; - "cordova-registry-mapper-1.1.0" = self.by-version."cordova-registry-mapper"."1.1.0"; - "d8-0.4.4" = self.by-version."d8"."0.4.4"; + "browserify-10.1.3" = self.by-version."browserify"."10.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."cordova-lib"."6.1.1" = + self.by-version."cordova-lib"."6.1.1"; + by-version."cordova-lib"."6.1.1" = self.buildNodePackage { + name = "cordova-lib-6.1.1"; + version = "6.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cordova-lib/-/cordova-lib-6.1.1.tgz"; + name = "cordova-lib-6.1.1.tgz"; + sha1 = "d527ceca6f91476ad759d339886f26f7d7af810f"; + }; + deps = { + "aliasify-1.9.0" = self.by-version."aliasify"."1.9.0"; + "cordova-app-hello-world-3.10.0" = self.by-version."cordova-app-hello-world"."3.10.0"; + "cordova-common-1.1.1" = self.by-version."cordova-common"."1.1.1"; + "cordova-js-4.1.4" = self.by-version."cordova-js"."4.1.4"; + "cordova-registry-mapper-1.1.15" = self.by-version."cordova-registry-mapper"."1.1.15"; + "cordova-serve-1.0.0" = self.by-version."cordova-serve"."1.0.0"; "dep-graph-1.1.0" = self.by-version."dep-graph"."1.1.0"; - "elementtree-0.1.5" = self.by-version."elementtree"."0.1.5"; - "glob-4.0.6" = self.by-version."glob"."4.0.6"; - "init-package-json-1.4.1" = self.by-version."init-package-json"."1.4.1"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "npm-1.3.4" = self.by-version."npm"."1.3.4"; - "npmconf-0.1.16" = self.by-version."npmconf"."0.1.16"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "plist-1.1.0" = self.by-version."plist"."1.1.0"; + "elementtree-0.1.6" = self.by-version."elementtree"."0.1.6"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "init-package-json-1.9.3" = self.by-version."init-package-json"."1.9.3"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "npm-2.15.3" = self.by-version."npm"."2.15.3"; + "opener-1.4.1" = self.by-version."opener"."1.4.1"; + "plist-1.2.0" = self.by-version."plist"."1.2.0"; "properties-parser-0.2.3" = self.by-version."properties-parser"."0.2.3"; "q-1.0.1" = self.by-version."q"."1.0.1"; - "rc-0.5.2" = self.by-version."rc"."0.5.2"; "request-2.47.0" = self.by-version."request"."2.47.0"; - "semver-2.1.0" = self.by-version."semver"."2.1.0"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; "shelljs-0.3.0" = self.by-version."shelljs"."0.3.0"; "tar-1.0.2" = self.by-version."tar"."1.0.2"; - "through2-0.6.3" = self.by-version."through2"."0.6.3"; "underscore-1.7.0" = self.by-version."underscore"."1.7.0"; "unorm-1.3.3" = self.by-version."unorm"."1.3.3"; "valid-identifier-0.0.1" = self.by-version."valid-identifier"."0.0.1"; - "xcode-0.6.7" = self.by-version."xcode"."0.6.7"; + "xcode-0.8.0" = self.by-version."xcode"."0.8.0"; }; optionalDependencies = { }; @@ -9298,18 +10109,118 @@ cpu = [ ]; }; by-spec."cordova-registry-mapper"."1.x" = - self.by-version."cordova-registry-mapper"."1.1.0"; - by-version."cordova-registry-mapper"."1.1.0" = self.buildNodePackage { - name = "cordova-registry-mapper-1.1.0"; - version = "1.1.0"; + self.by-version."cordova-registry-mapper"."1.1.15"; + by-version."cordova-registry-mapper"."1.1.15" = self.buildNodePackage { + name = "cordova-registry-mapper-1.1.15"; + version = "1.1.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.0.tgz"; - name = "cordova-registry-mapper-1.1.0.tgz"; - sha1 = "3d4d2283207776960d054d4966a1e31901f0c281"; + url = "https://registry.npmjs.org/cordova-registry-mapper/-/cordova-registry-mapper-1.1.15.tgz"; + name = "cordova-registry-mapper-1.1.15.tgz"; + sha1 = "e244b9185b8175473bff6079324905115f83dc7c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."cordova-registry-mapper"."^1.1.8" = + self.by-version."cordova-registry-mapper"."1.1.15"; + by-spec."cordova-serve"."^1.0.0" = + self.by-version."cordova-serve"."1.0.0"; + by-version."cordova-serve"."1.0.0" = self.buildNodePackage { + name = "cordova-serve-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cordova-serve/-/cordova-serve-1.0.0.tgz"; + name = "cordova-serve-1.0.0.tgz"; + sha1 = "7fa1c40183d2b82adb792f9cb9e0d554a23eed85"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "compression-1.6.1" = self.by-version."compression"."1.6.1"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."core-js"."^0.8.1" = + self.by-version."core-js"."0.8.4"; + by-version."core-js"."0.8.4" = self.buildNodePackage { + name = "core-js-0.8.4"; + version = "0.8.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/core-js/-/core-js-0.8.4.tgz"; + name = "core-js-0.8.4.tgz"; + sha1 = "c22665f1e0d1b9c3c5e1b08dabd1f108695e4fcf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."core-js"."^1.0.0" = + self.by-version."core-js"."1.2.6"; + by-version."core-js"."1.2.6" = self.buildNodePackage { + name = "core-js-1.2.6"; + version = "1.2.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/core-js/-/core-js-1.2.6.tgz"; + name = "core-js-1.2.6.tgz"; + sha1 = "e2351f6cae764f8c34e5d839acb6a60cef8b4a45"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."core-js"."^2.1.0" = + self.by-version."core-js"."2.2.2"; + by-version."core-js"."2.2.2" = self.buildNodePackage { + name = "core-js-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/core-js/-/core-js-2.2.2.tgz"; + name = "core-js-2.2.2.tgz"; + sha1 = "79a0f3a9495507641a5bf7ce275fa494649180bf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."core-util-is"."1.0.2" = + self.by-version."core-util-is"."1.0.2"; + by-version."core-util-is"."1.0.2" = self.buildNodePackage { + name = "core-util-is-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; + name = "core-util-is-1.0.2.tgz"; + sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; }; deps = { - "tape-3.5.0" = self.by-version."tape"."3.5.0"; }; optionalDependencies = { }; @@ -9318,37 +10229,20 @@ cpu = [ ]; }; by-spec."core-util-is"."~1.0.0" = - self.by-version."core-util-is"."1.0.1"; - by-version."core-util-is"."1.0.1" = self.buildNodePackage { - name = "core-util-is-1.0.1"; - version = "1.0.1"; + self.by-version."core-util-is"."1.0.2"; + by-spec."cors"."2.7.1" = + self.by-version."cors"."2.7.1"; + by-version."cors"."2.7.1" = self.buildNodePackage { + name = "cors-2.7.1"; + version = "2.7.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz"; - name = "core-util-is-1.0.1.tgz"; - sha1 = "6b07085aef9a3ccac6ee53bf9d3df0c1521a5538"; + url = "https://registry.npmjs.org/cors/-/cors-2.7.1.tgz"; + name = "cors-2.7.1.tgz"; + sha1 = "3c2e50a58af9ef8c89bee21226b099be1f02739b"; }; deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."cors"."2.5.3" = - self.by-version."cors"."2.5.3"; - by-version."cors"."2.5.3" = self.buildNodePackage { - name = "cors-2.5.3"; - version = "2.5.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cors/-/cors-2.5.3.tgz"; - name = "cors-2.5.3.tgz"; - sha1 = "0d70a211ec3b6cc9824e6cdc299c0630ef69c392"; - }; - deps = { - "vary-1.0.0" = self.by-version."vary"."1.0.0"; + "vary-1.1.0" = self.by-version."vary"."1.1.0"; }; optionalDependencies = { }; @@ -9357,7 +10251,7 @@ cpu = [ ]; }; by-spec."cors"."^2.4.2" = - self.by-version."cors"."2.5.3"; + self.by-version."cors"."2.7.1"; by-spec."couch-login"."~0.1.15" = self.by-version."couch-login"."0.1.20"; by-version."couch-login"."0.1.20" = self.buildNodePackage { @@ -9365,12 +10259,12 @@ version = "0.1.20"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/couch-login/-/couch-login-0.1.20.tgz"; + url = "https://registry.npmjs.org/couch-login/-/couch-login-0.1.20.tgz"; name = "couch-login-0.1.20.tgz"; sha1 = "007c70ef80089dbae6f59eeeec37480799b39595"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -9378,24 +10272,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."couch-login"."~0.1.18" = - self.by-version."couch-login"."0.1.20"; by-spec."coveralls"."*" = - self.by-version."coveralls"."2.11.2"; - by-version."coveralls"."2.11.2" = self.buildNodePackage { - name = "coveralls-2.11.2"; - version = "2.11.2"; + self.by-version."coveralls"."2.11.9"; + by-version."coveralls"."2.11.9" = self.buildNodePackage { + name = "coveralls-2.11.9"; + version = "2.11.9"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/coveralls/-/coveralls-2.11.2.tgz"; - name = "coveralls-2.11.2.tgz"; - sha1 = "d4d982016cb2f9da89d77ab204d86a8537e6a12d"; + url = "https://registry.npmjs.org/coveralls/-/coveralls-2.11.9.tgz"; + name = "coveralls-2.11.9.tgz"; + sha1 = "f9ff01a1adbf22a129e35a8d62345a52a781b395"; }; deps = { "js-yaml-3.0.1" = self.by-version."js-yaml"."3.0.1"; "lcov-parse-0.0.6" = self.by-version."lcov-parse"."0.0.6"; "log-driver-1.2.4" = self.by-version."log-driver"."1.2.4"; - "request-2.40.0" = self.by-version."request"."2.40.0"; + "request-2.67.0" = self.by-version."request"."2.67.0"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; }; optionalDependencies = { }; @@ -9403,7 +10296,7 @@ os = [ ]; cpu = [ ]; }; - "coveralls" = self.by-version."coveralls"."2.11.2"; + "coveralls" = self.by-version."coveralls"."2.11.9"; by-spec."crc"."0.2.0" = self.by-version."crc"."0.2.0"; by-version."crc"."0.2.0" = self.buildNodePackage { @@ -9411,7 +10304,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crc/-/crc-0.2.0.tgz"; + url = "https://registry.npmjs.org/crc/-/crc-0.2.0.tgz"; name = "crc-0.2.0.tgz"; sha1 = "f4486b9bf0a12df83c3fca14e31e030fdabd9454"; }; @@ -9430,7 +10323,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crc/-/crc-3.0.0.tgz"; + url = "https://registry.npmjs.org/crc/-/crc-3.0.0.tgz"; name = "crc-3.0.0.tgz"; sha1 = "d11e97ec44a844e5eb15a74fa2c7875d0aac4b22"; }; @@ -9442,16 +10335,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."crc"."3.2.1" = - self.by-version."crc"."3.2.1"; - by-version."crc"."3.2.1" = self.buildNodePackage { - name = "crc-3.2.1"; - version = "3.2.1"; + by-spec."crc"."3.3.0" = + self.by-version."crc"."3.3.0"; + by-version."crc"."3.3.0" = self.buildNodePackage { + name = "crc-3.3.0"; + version = "3.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crc/-/crc-3.2.1.tgz"; - name = "crc-3.2.1.tgz"; - sha1 = "5d9c8fb77a245cd5eca291e5d2d005334bab0082"; + url = "https://registry.npmjs.org/crc/-/crc-3.3.0.tgz"; + name = "crc-3.3.0.tgz"; + sha1 = "fa622e1bc388bf257309082d6b65200ce67090ba"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."crc"."3.4.0" = + self.by-version."crc"."3.4.0"; + by-version."crc"."3.4.0" = self.buildNodePackage { + name = "crc-3.4.0"; + version = "3.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/crc/-/crc-3.4.0.tgz"; + name = "crc-3.4.0.tgz"; + sha1 = "4258e351613a74ef1153dfcb05e820c3e9715d7f"; }; deps = { }; @@ -9462,15 +10374,15 @@ cpu = [ ]; }; by-spec."crc32-stream"."~0.3.1" = - self.by-version."crc32-stream"."0.3.3"; - by-version."crc32-stream"."0.3.3" = self.buildNodePackage { - name = "crc32-stream-0.3.3"; - version = "0.3.3"; + self.by-version."crc32-stream"."0.3.4"; + by-version."crc32-stream"."0.3.4" = self.buildNodePackage { + name = "crc32-stream-0.3.4"; + version = "0.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crc32-stream/-/crc32-stream-0.3.3.tgz"; - name = "crc32-stream-0.3.3.tgz"; - sha1 = "27cdfad6eec97a139820e3bff2b4aaad82e85e19"; + url = "https://registry.npmjs.org/crc32-stream/-/crc32-stream-0.3.4.tgz"; + name = "crc32-stream-0.3.4.tgz"; + sha1 = "73bc25b45fac1db6632231a7bfce8927e9f06552"; }; deps = { "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; @@ -9482,20 +10394,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."create-ecdh"."^2.0.0" = - self.by-version."create-ecdh"."2.0.0"; - by-version."create-ecdh"."2.0.0" = self.buildNodePackage { - name = "create-ecdh-2.0.0"; - version = "2.0.0"; + by-spec."create-ecdh"."^4.0.0" = + self.by-version."create-ecdh"."4.0.0"; + by-version."create-ecdh"."4.0.0" = self.buildNodePackage { + name = "create-ecdh-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/create-ecdh/-/create-ecdh-2.0.0.tgz"; - name = "create-ecdh-2.0.0.tgz"; - sha1 = "59a11dbd3af8de5acbc8d005b624ccf7136f2a78"; + url = "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.0.tgz"; + name = "create-ecdh-4.0.0.tgz"; + sha1 = "888c723596cdf7612f6498233eebd7a35301737d"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "elliptic-1.0.1" = self.by-version."elliptic"."1.0.1"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "elliptic-6.2.3" = self.by-version."elliptic"."6.2.3"; }; optionalDependencies = { }; @@ -9504,20 +10416,21 @@ cpu = [ ]; }; by-spec."create-hash"."^1.1.0" = - self.by-version."create-hash"."1.1.1"; - by-version."create-hash"."1.1.1" = self.buildNodePackage { - name = "create-hash-1.1.1"; - version = "1.1.1"; + self.by-version."create-hash"."1.1.2"; + by-version."create-hash"."1.1.2" = self.buildNodePackage { + name = "create-hash-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/create-hash/-/create-hash-1.1.1.tgz"; - name = "create-hash-1.1.1.tgz"; - sha1 = "a55424f97b5369bfb2a97e53bd9b7a1aa6dd3a17"; + url = "https://registry.npmjs.org/create-hash/-/create-hash-1.1.2.tgz"; + name = "create-hash-1.1.2.tgz"; + sha1 = "51210062d7bb7479f6c65bb41a92208b1d61abad"; }; deps = { + "cipher-base-1.0.2" = self.by-version."cipher-base"."1.0.2"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "ripemd160-1.0.0" = self.by-version."ripemd160"."1.0.0"; - "sha.js-2.4.0" = self.by-version."sha.js"."2.4.0"; + "ripemd160-1.0.1" = self.by-version."ripemd160"."1.0.1"; + "sha.js-2.4.5" = self.by-version."sha.js"."2.4.5"; }; optionalDependencies = { }; @@ -9525,19 +10438,21 @@ os = [ ]; cpu = [ ]; }; + by-spec."create-hash"."^1.1.1" = + self.by-version."create-hash"."1.1.2"; by-spec."create-hmac"."^1.1.0" = - self.by-version."create-hmac"."1.1.3"; - by-version."create-hmac"."1.1.3" = self.buildNodePackage { - name = "create-hmac-1.1.3"; - version = "1.1.3"; + self.by-version."create-hmac"."1.1.4"; + by-version."create-hmac"."1.1.4" = self.buildNodePackage { + name = "create-hmac-1.1.4"; + version = "1.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.3.tgz"; - name = "create-hmac-1.1.3.tgz"; - sha1 = "29843e9c191ba412ab001bc55ac8b8b9ae54b670"; + url = "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.4.tgz"; + name = "create-hmac-1.1.4.tgz"; + sha1 = "d3fb4ba253eb8b3f56e39ea2fbcb8af747bd3170"; }; deps = { - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { @@ -9547,37 +10462,17 @@ cpu = [ ]; }; by-spec."create-hmac"."^1.1.2" = - self.by-version."create-hmac"."1.1.3"; - by-spec."cron"."1.0.6" = - self.by-version."cron"."1.0.6"; - by-version."cron"."1.0.6" = self.buildNodePackage { - name = "cron-1.0.6"; - version = "1.0.6"; + self.by-version."create-hmac"."1.1.4"; + by-spec."cron"."1.1.0" = + self.by-version."cron"."1.1.0"; + by-version."cron"."1.1.0" = self.buildNodePackage { + name = "cron-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cron/-/cron-1.0.6.tgz"; - name = "cron-1.0.6.tgz"; - sha1 = "92a32920a8d0fa433248e9de46768d53c55269d7"; - }; - deps = { - "moment-timezone-0.2.4" = self.by-version."moment-timezone"."0.2.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."cron".">=1.0.1" = - self.by-version."cron"."1.0.9"; - by-version."cron"."1.0.9" = self.buildNodePackage { - name = "cron-1.0.9"; - version = "1.0.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cron/-/cron-1.0.9.tgz"; - name = "cron-1.0.9.tgz"; - sha1 = "5177cf751f3263f00f45ebf69fead1ea96d31cfc"; + url = "https://registry.npmjs.org/cron/-/cron-1.1.0.tgz"; + name = "cron-1.1.0.tgz"; + sha1 = "61e868c6f18f98e8bcb88bcd7ab9fb8fae909453"; }; deps = { "moment-timezone-0.3.1" = self.by-version."moment-timezone"."0.3.1"; @@ -9588,18 +10483,20 @@ os = [ ]; cpu = [ ]; }; + by-spec."cron".">=1.0.1" = + self.by-version."cron"."1.1.0"; by-spec."cron"."^1.0.4" = - self.by-version."cron"."1.0.9"; - by-spec."crossroads"."~0.12.0" = - self.by-version."crossroads"."0.12.0"; - by-version."crossroads"."0.12.0" = self.buildNodePackage { - name = "crossroads-0.12.0"; - version = "0.12.0"; + self.by-version."cron"."1.1.0"; + by-spec."crossroads"."~0.12.2" = + self.by-version."crossroads"."0.12.2"; + by-version."crossroads"."0.12.2" = self.buildNodePackage { + name = "crossroads-0.12.2"; + version = "0.12.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crossroads/-/crossroads-0.12.0.tgz"; - name = "crossroads-0.12.0.tgz"; - sha1 = "24114f9de3abfa0271df66b4ec56c3b984b7f56e"; + url = "https://registry.npmjs.org/crossroads/-/crossroads-0.12.2.tgz"; + name = "crossroads-0.12.2.tgz"; + sha1 = "b1d5f9c1d98af3bdd61f1bda6a86dd1aee4ff8f2"; }; deps = { "signals-1.0.0" = self.by-version."signals"."1.0.0"; @@ -9611,18 +10508,18 @@ cpu = [ ]; }; by-spec."crypt3".">=0.1.5 <1.0.0-0" = - self.by-version."crypt3"."0.1.8"; - by-version."crypt3"."0.1.8" = self.buildNodePackage { - name = "crypt3-0.1.8"; - version = "0.1.8"; + self.by-version."crypt3"."0.2.0"; + by-version."crypt3"."0.2.0" = self.buildNodePackage { + name = "crypt3-0.2.0"; + version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crypt3/-/crypt3-0.1.8.tgz"; - name = "crypt3-0.1.8.tgz"; - sha1 = "60f27edeb4ec10703012463e6b974c73a1129688"; + url = "https://registry.npmjs.org/crypt3/-/crypt3-0.2.0.tgz"; + name = "crypt3-0.2.0.tgz"; + sha1 = "4bd28e0770fad421fc807745c1ef3010905b2332"; }; deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -9631,7 +10528,7 @@ cpu = [ ]; }; by-spec."crypt3".">=0.1.6 <1.0.0-0" = - self.by-version."crypt3"."0.1.8"; + self.by-version."crypt3"."0.2.0"; by-spec."cryptiles"."0.1.x" = self.by-version."cryptiles"."0.1.3"; by-version."cryptiles"."0.1.3" = self.buildNodePackage { @@ -9639,7 +10536,7 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz"; + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz"; name = "cryptiles-0.1.3.tgz"; sha1 = "1a556734f06d24ba34862ae9cb9e709a3afbff1c"; }; @@ -9659,7 +10556,7 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz"; + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz"; name = "cryptiles-0.2.2.tgz"; sha1 = "ed91ff1f17ad13d3748288594f8a48a0d26f325c"; }; @@ -9673,18 +10570,18 @@ cpu = [ ]; }; by-spec."cryptiles"."2.x.x" = - self.by-version."cryptiles"."2.0.4"; - by-version."cryptiles"."2.0.4" = self.buildNodePackage { - name = "cryptiles-2.0.4"; - version = "2.0.4"; + self.by-version."cryptiles"."2.0.5"; + by-version."cryptiles"."2.0.5" = self.buildNodePackage { + name = "cryptiles-2.0.5"; + version = "2.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cryptiles/-/cryptiles-2.0.4.tgz"; - name = "cryptiles-2.0.4.tgz"; - sha1 = "09ea1775b9e1c7de7e60a99d42ab6f08ce1a1285"; + url = "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; + name = "cryptiles-2.0.5.tgz"; + sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; }; deps = { - "boom-2.7.1" = self.by-version."boom"."2.7.1"; + "boom-2.10.1" = self.by-version."boom"."2.10.1"; }; optionalDependencies = { }; @@ -9699,7 +10596,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crypto/-/crypto-0.0.3.tgz"; + url = "https://registry.npmjs.org/crypto/-/crypto-0.0.3.tgz"; name = "crypto-0.0.3.tgz"; sha1 = "470a81b86be4c5ee17acc8207a1f5315ae20dbb0"; }; @@ -9712,27 +10609,27 @@ cpu = [ ]; }; by-spec."crypto-browserify"."^3.0.0" = - self.by-version."crypto-browserify"."3.9.14"; - by-version."crypto-browserify"."3.9.14" = self.buildNodePackage { - name = "crypto-browserify-3.9.14"; - version = "3.9.14"; + self.by-version."crypto-browserify"."3.11.0"; + by-version."crypto-browserify"."3.11.0" = self.buildNodePackage { + name = "crypto-browserify-3.11.0"; + version = "3.11.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.9.14.tgz"; - name = "crypto-browserify-3.9.14.tgz"; - sha1 = "d69925252c845392714aed1460c54b56605314ab"; + url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.11.0.tgz"; + name = "crypto-browserify-3.11.0.tgz"; + sha1 = "3652a0906ab9b2a7e0c3ce66a408e957a2485522"; }; deps = { - "browserify-aes-1.0.0" = self.by-version."browserify-aes"."1.0.0"; - "browserify-sign-3.0.1" = self.by-version."browserify-sign"."3.0.1"; - "create-ecdh-2.0.0" = self.by-version."create-ecdh"."2.0.0"; - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; - "create-hmac-1.1.3" = self.by-version."create-hmac"."1.1.3"; - "diffie-hellman-3.0.1" = self.by-version."diffie-hellman"."3.0.1"; + "browserify-cipher-1.0.0" = self.by-version."browserify-cipher"."1.0.0"; + "browserify-sign-4.0.0" = self.by-version."browserify-sign"."4.0.0"; + "create-ecdh-4.0.0" = self.by-version."create-ecdh"."4.0.0"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; + "create-hmac-1.1.4" = self.by-version."create-hmac"."1.1.4"; + "diffie-hellman-5.0.2" = self.by-version."diffie-hellman"."5.0.2"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; "pbkdf2-3.0.4" = self.by-version."pbkdf2"."3.0.4"; - "public-encrypt-2.0.0" = self.by-version."public-encrypt"."2.0.0"; - "randombytes-2.0.1" = self.by-version."randombytes"."2.0.1"; + "public-encrypt-4.0.0" = self.by-version."public-encrypt"."4.0.0"; + "randombytes-2.0.3" = self.by-version."randombytes"."2.0.3"; }; optionalDependencies = { }; @@ -9740,27 +10637,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."crypto-browserify"."^3.11.0" = + self.by-version."crypto-browserify"."3.11.0"; by-spec."crypto-browserify"."^3.2.6" = - self.by-version."crypto-browserify"."3.9.14"; - by-spec."crypto-browserify"."~1.0.9" = - self.by-version."crypto-browserify"."1.0.9"; - by-version."crypto-browserify"."1.0.9" = self.buildNodePackage { - name = "crypto-browserify-1.0.9"; - version = "1.0.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/crypto-browserify/-/crypto-browserify-1.0.9.tgz"; - name = "crypto-browserify-1.0.9.tgz"; - sha1 = "cc5449685dfb85eb11c9828acc7cb87ab5bbfcc0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."crypto-browserify"."3.11.0"; by-spec."crypto-browserify"."~3.2.6" = self.by-version."crypto-browserify"."3.2.8"; by-version."crypto-browserify"."3.2.8" = self.buildNodePackage { @@ -9768,7 +10648,7 @@ version = "3.2.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.2.8.tgz"; + url = "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.2.8.tgz"; name = "crypto-browserify-3.2.8.tgz"; sha1 = "b9b11dbe6d9651dd882a01e6cc467df718ecf189"; }; @@ -9783,22 +10663,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."csrf"."~2.0.5" = - self.by-version."csrf"."2.0.6"; - by-version."csrf"."2.0.6" = self.buildNodePackage { - name = "csrf-2.0.6"; - version = "2.0.6"; + by-spec."csrf"."~3.0.0" = + self.by-version."csrf"."3.0.1"; + by-version."csrf"."3.0.1" = self.buildNodePackage { + name = "csrf-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/csrf/-/csrf-2.0.6.tgz"; - name = "csrf-2.0.6.tgz"; - sha1 = "a90a9d88fc7411423cb0c5c13e901a8cc588132e"; + url = "https://registry.npmjs.org/csrf/-/csrf-3.0.1.tgz"; + name = "csrf-3.0.1.tgz"; + sha1 = "985b218d7e2e558ed3d980fa38f694ba682784c2"; }; deps = { "base64-url-1.2.1" = self.by-version."base64-url"."1.2.1"; - "rndm-1.1.0" = self.by-version."rndm"."1.1.0"; + "rndm-1.2.0" = self.by-version."rndm"."1.2.0"; "scmp-1.0.0" = self.by-version."scmp"."1.0.0"; - "uid-safe-1.1.0" = self.by-version."uid-safe"."1.1.0"; + "uid-safe-2.1.0" = self.by-version."uid-safe"."2.1.0"; }; optionalDependencies = { }; @@ -9806,8 +10686,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."csrf"."~2.0.6" = - self.by-version."csrf"."2.0.6"; by-spec."css"."~1.0.8" = self.by-version."css"."1.0.8"; by-version."css"."1.0.8" = self.buildNodePackage { @@ -9815,7 +10693,7 @@ version = "1.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/css/-/css-1.0.8.tgz"; + url = "https://registry.npmjs.org/css/-/css-1.0.8.tgz"; name = "css-1.0.8.tgz"; sha1 = "9386811ca82bccc9ee7fb5a732b1e2a317c8a3e7"; }; @@ -9836,7 +10714,7 @@ version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz"; + url = "https://registry.npmjs.org/css-parse/-/css-parse-1.0.4.tgz"; name = "css-parse-1.0.4.tgz"; sha1 = "38b0503fbf9da9f54e9c1dbda60e145c77117bdd"; }; @@ -9855,7 +10733,7 @@ version = "1.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz"; + url = "https://registry.npmjs.org/css-parse/-/css-parse-1.7.0.tgz"; name = "css-parse-1.7.0.tgz"; sha1 = "321f6cf73782a6ff751111390fc05e2c657d8c9b"; }; @@ -9867,6 +10745,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."css-select"."~1.0.0" = + self.by-version."css-select"."1.0.0"; + by-version."css-select"."1.0.0" = self.buildNodePackage { + name = "css-select-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/css-select/-/css-select-1.0.0.tgz"; + name = "css-select-1.0.0.tgz"; + sha1 = "b1121ca51848dd264e2244d058cee254deeb44b0"; + }; + deps = { + "css-what-1.0.0" = self.by-version."css-what"."1.0.0"; + "domutils-1.4.3" = self.by-version."domutils"."1.4.3"; + "boolbase-1.0.0" = self.by-version."boolbase"."1.0.0"; + "nth-check-1.0.1" = self.by-version."nth-check"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."css-stringify"."1.0.5" = self.by-version."css-stringify"."1.0.5"; by-version."css-stringify"."1.0.5" = self.buildNodePackage { @@ -9874,7 +10775,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz"; + url = "https://registry.npmjs.org/css-stringify/-/css-stringify-1.0.5.tgz"; name = "css-stringify-1.0.5.tgz"; sha1 = "b0d042946db2953bb9d292900a6cb5f6d0122031"; }; @@ -9886,16 +10787,35 @@ os = [ ]; cpu = [ ]; }; + by-spec."css-what"."1.0" = + self.by-version."css-what"."1.0.0"; + by-version."css-what"."1.0.0" = self.buildNodePackage { + name = "css-what-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/css-what/-/css-what-1.0.0.tgz"; + name = "css-what-1.0.0.tgz"; + sha1 = "d7cc2df45180666f99d2b14462639469e00f736c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."cssom"."0.3.x" = - self.by-version."cssom"."0.3.0"; - by-version."cssom"."0.3.0" = self.buildNodePackage { - name = "cssom-0.3.0"; - version = "0.3.0"; + self.by-version."cssom"."0.3.1"; + by-version."cssom"."0.3.1" = self.buildNodePackage { + name = "cssom-0.3.1"; + version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cssom/-/cssom-0.3.0.tgz"; - name = "cssom-0.3.0.tgz"; - sha1 = "386d5135528fe65c1ee1bc7c4e55a38854dbcf7a"; + url = "https://registry.npmjs.org/cssom/-/cssom-0.3.1.tgz"; + name = "cssom-0.3.1.tgz"; + sha1 = "c9e37ef2490e64f6d1baa10fda852257082c25d3"; }; deps = { }; @@ -9905,21 +10825,23 @@ os = [ ]; cpu = [ ]; }; + by-spec."cssom".">= 0.3.0 < 0.4.0" = + self.by-version."cssom"."0.3.1"; by-spec."cssom"."~0.3.0" = - self.by-version."cssom"."0.3.0"; - by-spec."cssstyle"."~0.2.9" = - self.by-version."cssstyle"."0.2.23"; - by-version."cssstyle"."0.2.23" = self.buildNodePackage { - name = "cssstyle-0.2.23"; - version = "0.2.23"; + self.by-version."cssom"."0.3.1"; + by-spec."cssstyle".">= 0.2.21 < 0.3.0" = + self.by-version."cssstyle"."0.2.34"; + by-version."cssstyle"."0.2.34" = self.buildNodePackage { + name = "cssstyle-0.2.34"; + version = "0.2.34"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cssstyle/-/cssstyle-0.2.23.tgz"; - name = "cssstyle-0.2.23.tgz"; - sha1 = "34af29a8e9d82ffa031573cbce4309ca27a899f6"; + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.34.tgz"; + name = "cssstyle-0.2.34.tgz"; + sha1 = "7a7a1bd44b60753926a6738e7bc075f15d97c970"; }; deps = { - "cssom-0.3.0" = self.by-version."cssom"."0.3.0"; + "cssom-0.3.1" = self.by-version."cssom"."0.3.1"; }; optionalDependencies = { }; @@ -9927,6 +10849,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."cssstyle"."~0.2.9" = + self.by-version."cssstyle"."0.2.34"; by-spec."csurf"."1.1.0" = self.by-version."csurf"."1.1.0"; by-version."csurf"."1.1.0" = self.buildNodePackage { @@ -9934,7 +10858,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/csurf/-/csurf-1.1.0.tgz"; + url = "https://registry.npmjs.org/csurf/-/csurf-1.1.0.tgz"; name = "csurf-1.1.0.tgz"; sha1 = "5dd459df40df43b9eb828284d6d03132f42cb8b2"; }; @@ -9948,46 +10872,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."csurf"."~1.6.1" = - self.by-version."csurf"."1.6.6"; - by-version."csurf"."1.6.6" = self.buildNodePackage { - name = "csurf-1.6.6"; - version = "1.6.6"; + by-spec."csurf"."~1.8.3" = + self.by-version."csurf"."1.8.3"; + by-version."csurf"."1.8.3" = self.buildNodePackage { + name = "csurf-1.8.3"; + version = "1.8.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/csurf/-/csurf-1.6.6.tgz"; - name = "csurf-1.6.6.tgz"; - sha1 = "fc4b1aa293f65da87731c049350d01b25bda3ece"; + url = "https://registry.npmjs.org/csurf/-/csurf-1.8.3.tgz"; + name = "csurf-1.8.3.tgz"; + sha1 = "23f2a13bf1d8fce1d0c996588394442cba86a56a"; }; deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "csrf-2.0.6" = self.by-version."csrf"."2.0.6"; - "http-errors-1.2.8" = self.by-version."http-errors"."1.2.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."csurf"."~1.6.2" = - self.by-version."csurf"."1.6.6"; - by-spec."csurf"."~1.7.0" = - self.by-version."csurf"."1.7.0"; - by-version."csurf"."1.7.0" = self.buildNodePackage { - name = "csurf-1.7.0"; - version = "1.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/csurf/-/csurf-1.7.0.tgz"; - name = "csurf-1.7.0.tgz"; - sha1 = "f24dc53753fccbdce0505f2abc5b57167b65ff18"; - }; - deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "csrf-2.0.6" = self.by-version."csrf"."2.0.6"; + "csrf-3.0.1" = self.by-version."csrf"."3.0.1"; "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; }; optionalDependencies = { @@ -9997,21 +10896,21 @@ cpu = [ ]; }; by-spec."csv"."^0.4.0" = - self.by-version."csv"."0.4.1"; - by-version."csv"."0.4.1" = self.buildNodePackage { - name = "csv-0.4.1"; - version = "0.4.1"; + self.by-version."csv"."0.4.6"; + by-version."csv"."0.4.6" = self.buildNodePackage { + name = "csv-0.4.6"; + version = "0.4.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/csv/-/csv-0.4.1.tgz"; - name = "csv-0.4.1.tgz"; - sha1 = "aa58f059591c98a361a61b287d1c0a394c79160e"; + url = "https://registry.npmjs.org/csv/-/csv-0.4.6.tgz"; + name = "csv-0.4.6.tgz"; + sha1 = "8dbae7ddfdbaae62c1ea987c3e0f8a9ac737b73d"; }; deps = { - "csv-generate-0.0.4" = self.by-version."csv-generate"."0.0.4"; - "csv-parse-0.1.0" = self.by-version."csv-parse"."0.1.0"; - "stream-transform-0.0.7" = self.by-version."stream-transform"."0.0.7"; - "csv-stringify-0.0.6" = self.by-version."csv-stringify"."0.0.6"; + "csv-generate-0.0.6" = self.by-version."csv-generate"."0.0.6"; + "csv-parse-1.0.4" = self.by-version."csv-parse"."1.0.4"; + "stream-transform-0.1.1" = self.by-version."stream-transform"."0.1.1"; + "csv-stringify-0.0.8" = self.by-version."csv-stringify"."0.0.8"; }; optionalDependencies = { }; @@ -10019,54 +10918,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."csv-generate"."*" = - self.by-version."csv-generate"."0.0.4"; - by-version."csv-generate"."0.0.4" = self.buildNodePackage { - name = "csv-generate-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/csv-generate/-/csv-generate-0.0.4.tgz"; - name = "csv-generate-0.0.4.tgz"; - sha1 = "6d0329b847ba0e12e24b82f4cf949c38c6f84d2f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."csv-parse"."*" = - self.by-version."csv-parse"."0.1.0"; - by-version."csv-parse"."0.1.0" = self.buildNodePackage { - name = "csv-parse-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/csv-parse/-/csv-parse-0.1.0.tgz"; - name = "csv-parse-0.1.0.tgz"; - sha1 = "da80610577d05b1cfd7cabd0376bb7cdf707aa42"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."csv-stringify"."*" = - self.by-version."csv-stringify"."0.0.6"; - by-version."csv-stringify"."0.0.6" = self.buildNodePackage { - name = "csv-stringify-0.0.6"; + by-spec."csv-generate"."^0.0.6" = + self.by-version."csv-generate"."0.0.6"; + by-version."csv-generate"."0.0.6" = self.buildNodePackage { + name = "csv-generate-0.0.6"; version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.6.tgz"; - name = "csv-stringify-0.0.6.tgz"; - sha1 = "7cf09e868b1b18a497dac1553420bdabb99b6b62"; + url = "https://registry.npmjs.org/csv-generate/-/csv-generate-0.0.6.tgz"; + name = "csv-generate-0.0.6.tgz"; + sha1 = "97e4e63ae46b21912cd9475bc31469d26f5ade66"; }; deps = { }; @@ -10076,16 +10937,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."ctype"."0.5.2" = - self.by-version."ctype"."0.5.2"; - by-version."ctype"."0.5.2" = self.buildNodePackage { - name = "ctype-0.5.2"; - version = "0.5.2"; + by-spec."csv-parse"."^1.0.0" = + self.by-version."csv-parse"."1.0.4"; + by-version."csv-parse"."1.0.4" = self.buildNodePackage { + name = "csv-parse-1.0.4"; + version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ctype/-/ctype-0.5.2.tgz"; - name = "ctype-0.5.2.tgz"; - sha1 = "fe8091d468a373a0b0c9ff8bbfb3425c00973a1d"; + url = "https://registry.npmjs.org/csv-parse/-/csv-parse-1.0.4.tgz"; + name = "csv-parse-1.0.4.tgz"; + sha1 = "200ad360b07c3e8986ddc990b7bc070bc85f147a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."csv-stringify"."^0.0.8" = + self.by-version."csv-stringify"."0.0.8"; + by-version."csv-stringify"."0.0.8" = self.buildNodePackage { + name = "csv-stringify-0.0.8"; + version = "0.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/csv-stringify/-/csv-stringify-0.0.8.tgz"; + name = "csv-stringify-0.0.8.tgz"; + sha1 = "52cc3b3dfc197758c55ad325a95be85071f9e51b"; }; deps = { }; @@ -10102,7 +10982,7 @@ version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; + url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; name = "ctype-0.5.3.tgz"; sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f"; }; @@ -10114,16 +10994,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."ctype"."0.5.4" = - self.by-version."ctype"."0.5.4"; - by-version."ctype"."0.5.4" = self.buildNodePackage { - name = "ctype-0.5.4"; - version = "0.5.4"; + by-spec."custom-event"."~1.0.0" = + self.by-version."custom-event"."1.0.0"; + by-version."custom-event"."1.0.0" = self.buildNodePackage { + name = "custom-event-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ctype/-/ctype-0.5.4.tgz"; - name = "ctype-0.5.4.tgz"; - sha1 = "5cfffbc266442ce8a1239a5f37091a085b7a3e6e"; + url = "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz"; + name = "custom-event-1.0.0.tgz"; + sha1 = "2e4628be19dc4b214b5c02630c5971e811618062"; }; deps = { }; @@ -10140,7 +11020,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; + url = "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz"; name = "cycle-1.0.3.tgz"; sha1 = "21e80b2be8580f98b468f379430662b046c34ad2"; }; @@ -10152,19 +11032,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."d"."~0.1.1" = + by-spec."cyclist"."~0.1.0" = + self.by-version."cyclist"."0.1.1"; + by-version."cyclist"."0.1.1" = self.buildNodePackage { + name = "cyclist-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/cyclist/-/cyclist-0.1.1.tgz"; + name = "cyclist-0.1.1.tgz"; + sha1 = "1bcfa56b081448cdb5e12bfc1bfad34b47fba8f3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."d"."^0.1.1" = self.by-version."d"."0.1.1"; by-version."d"."0.1.1" = self.buildNodePackage { name = "d-0.1.1"; version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/d/-/d-0.1.1.tgz"; + url = "https://registry.npmjs.org/d/-/d-0.1.1.tgz"; name = "d-0.1.1.tgz"; sha1 = "da184c535d18d8ee7ba2aa229b914009fae11309"; }; deps = { - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; }; optionalDependencies = { }; @@ -10172,19 +11071,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."d8"."0.4.4" = - self.by-version."d8"."0.4.4"; - by-version."d8"."0.4.4" = self.buildNodePackage { - name = "d8-0.4.4"; - version = "0.4.4"; + by-spec."d"."~0.1.1" = + self.by-version."d"."0.1.1"; + by-spec."dashdash"."1.10.1" = + self.by-version."dashdash"."1.10.1"; + by-version."dashdash"."1.10.1" = self.buildNodePackage { + name = "dashdash-1.10.1"; + version = "1.10.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/d8/-/d8-0.4.4.tgz"; - name = "d8-0.4.4.tgz"; - sha1 = "5989dd62b90bdd853d3978f1261a4bc76bcf6485"; + url = "https://registry.npmjs.org/dashdash/-/dashdash-1.10.1.tgz"; + name = "dashdash-1.10.1.tgz"; + sha1 = "0abf1af89a8f5129a81f18c2b35b21df22622f60"; }; deps = { - "m8-0.4.4" = self.by-version."m8"."0.4.4"; + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; }; optionalDependencies = { }; @@ -10192,19 +11093,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."dashdash"."1.3.2" = - self.by-version."dashdash"."1.3.2"; - by-version."dashdash"."1.3.2" = self.buildNodePackage { - name = "dashdash-1.3.2"; - version = "1.3.2"; + by-spec."dashdash"."1.7.3" = + self.by-version."dashdash"."1.7.3"; + by-version."dashdash"."1.7.3" = self.buildNodePackage { + name = "dashdash-1.7.3"; + version = "1.7.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dashdash/-/dashdash-1.3.2.tgz"; - name = "dashdash-1.3.2.tgz"; - sha1 = "1e76d13fadf25f8f50e70212c98a25beb1b3b8eb"; + url = "https://registry.npmjs.org/dashdash/-/dashdash-1.7.3.tgz"; + name = "dashdash-1.7.3.tgz"; + sha1 = "bf533fedaa455ed8fee11519ebfb9ad66170dcdf"; }; deps = { - "assert-plus-0.1.2" = self.by-version."assert-plus"."0.1.2"; + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; }; optionalDependencies = { }; @@ -10212,19 +11113,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."dashdash"."1.5.0" = - self.by-version."dashdash"."1.5.0"; - by-version."dashdash"."1.5.0" = self.buildNodePackage { - name = "dashdash-1.5.0"; - version = "1.5.0"; + by-spec."dashdash".">=1.10.1 <2.0.0" = + self.by-version."dashdash"."1.13.0"; + by-version."dashdash"."1.13.0" = self.buildNodePackage { + name = "dashdash-1.13.0"; + version = "1.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dashdash/-/dashdash-1.5.0.tgz"; - name = "dashdash-1.5.0.tgz"; - sha1 = "fa5aa8a9415a7c5c3928be18bd4975458e666452"; + url = "https://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz"; + name = "dashdash-1.13.0.tgz"; + sha1 = "a5aae6fd9d8e156624eb0dd9259eb12ba245385a"; }; deps = { - "assert-plus-0.1.2" = self.by-version."assert-plus"."0.1.2"; + "assert-plus-1.0.0" = self.by-version."assert-plus"."1.0.0"; }; optionalDependencies = { }; @@ -10232,16 +11133,18 @@ os = [ ]; cpu = [ ]; }; + by-spec."dashdash"."^1.7.1" = + self.by-version."dashdash"."1.13.0"; by-spec."data-uri-to-buffer"."0" = - self.by-version."data-uri-to-buffer"."0.0.3"; - by-version."data-uri-to-buffer"."0.0.3" = self.buildNodePackage { - name = "data-uri-to-buffer-0.0.3"; - version = "0.0.3"; + self.by-version."data-uri-to-buffer"."0.0.4"; + by-version."data-uri-to-buffer"."0.0.4" = self.buildNodePackage { + name = "data-uri-to-buffer-0.0.4"; + version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz"; - name = "data-uri-to-buffer-0.0.3.tgz"; - sha1 = "18ae979a6a0ca994b0625853916d2662bbae0b1a"; + url = "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.4.tgz"; + name = "data-uri-to-buffer-0.0.4.tgz"; + sha1 = "46e13ab9da8e309745c8d01ce547213ebdb2fe3f"; }; deps = { }; @@ -10258,7 +11161,7 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz"; + url = "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz"; name = "date-now-0.1.4.tgz"; sha1 = "eaf439fd4d4848ad74e5cc7dbef200672b9e345b"; }; @@ -10277,7 +11180,7 @@ version = "1.0.2-1.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"; + url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.2-1.2.3.tgz"; name = "dateformat-1.0.2-1.2.3.tgz"; sha1 = "b0220c02de98617433b72851cf47de3df2cdbee9"; }; @@ -10296,7 +11199,7 @@ version = "1.0.7-1.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dateformat/-/dateformat-1.0.7-1.2.3.tgz"; + url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.7-1.2.3.tgz"; name = "dateformat-1.0.7-1.2.3.tgz"; sha1 = "ebb561bb7214ee57a8dc2687adab1d555de9419c"; }; @@ -10309,19 +11212,19 @@ cpu = [ ]; }; by-spec."dateformat"."^1.0.11" = - self.by-version."dateformat"."1.0.11"; - by-version."dateformat"."1.0.11" = self.buildNodePackage { - name = "dateformat-1.0.11"; - version = "1.0.11"; + self.by-version."dateformat"."1.0.12"; + by-version."dateformat"."1.0.12" = self.buildNodePackage { + name = "dateformat-1.0.12"; + version = "1.0.12"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/dateformat/-/dateformat-1.0.11.tgz"; - name = "dateformat-1.0.11.tgz"; - sha1 = "f27cbee7a012bbfb82ea051562d3977f6093dbb1"; + url = "https://registry.npmjs.org/dateformat/-/dateformat-1.0.12.tgz"; + name = "dateformat-1.0.12.tgz"; + sha1 = "9f124b67594c937ff706932e4a642cca8dbbfee9"; }; deps = { "get-stdin-4.0.1" = self.by-version."get-stdin"."4.0.1"; - "meow-3.1.0" = self.by-version."meow"."3.1.0"; + "meow-3.7.0" = self.by-version."meow"."3.7.0"; }; optionalDependencies = { }; @@ -10329,8 +11232,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."dateformat"."~1.0.6" = - self.by-version."dateformat"."1.0.11"; + by-spec."dateformat"."^1.0.6" = + self.by-version."dateformat"."1.0.12"; + by-spec."dateformat"."~1.0.12" = + self.by-version."dateformat"."1.0.12"; by-spec."datejs".">=0.0.2" = self.by-version."datejs"."0.0.2"; by-version."datejs"."0.0.2" = self.buildNodePackage { @@ -10338,7 +11243,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/datejs/-/datejs-0.0.2.tgz"; + url = "https://registry.npmjs.org/datejs/-/datejs-0.0.2.tgz"; name = "datejs-0.0.2.tgz"; sha1 = "242cf2e1c7338d9502a5ae4196fd69e234211f4a"; }; @@ -10358,7 +11263,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debounced-seeker/-/debounced-seeker-1.0.0.tgz"; + url = "https://registry.npmjs.org/debounced-seeker/-/debounced-seeker-1.0.0.tgz"; name = "debounced-seeker-1.0.0.tgz"; sha1 = "e74befcd1a62ae7a5e5fbfbfa6f5d2bacd962bdd"; }; @@ -10371,37 +11276,18 @@ cpu = [ ]; }; by-spec."debug"."*" = - self.by-version."debug"."2.1.3"; - by-version."debug"."2.1.3" = self.buildNodePackage { - name = "debug-2.1.3"; - version = "2.1.3"; + self.by-version."debug"."2.2.0"; + by-version."debug"."2.2.0" = self.buildNodePackage { + name = "debug-2.2.0"; + version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.1.3.tgz"; - name = "debug-2.1.3.tgz"; - sha1 = "ce8ab1b5ee8fbee2bfa3b633cab93d366b63418e"; - }; - deps = { - "ms-0.7.0" = self.by-version."ms"."0.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."debug"."0" = - self.by-version."debug"."0.8.1"; - by-version."debug"."0.8.1" = self.buildNodePackage { - name = "debug-0.8.1"; - version = "0.8.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.8.1.tgz"; - name = "debug-0.8.1.tgz"; - sha1 = "20ff4d26f5e422cb68a1bacbbb61039ad8c1c130"; + url = "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; + name = "debug-2.2.0.tgz"; + sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; }; deps = { + "ms-0.7.1" = self.by-version."ms"."0.7.1"; }; optionalDependencies = { }; @@ -10416,7 +11302,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.5.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.5.0.tgz"; name = "debug-0.5.0.tgz"; sha1 = "9d48c946fb7d7d59807ffe07822f515fd76d7a9e"; }; @@ -10435,7 +11321,7 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.6.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.6.0.tgz"; name = "debug-0.6.0.tgz"; sha1 = "ce9d5d025d5294b3f0748a494bebaf3c9fd8734f"; }; @@ -10454,7 +11340,7 @@ version = "0.7.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz"; name = "debug-0.7.4.tgz"; sha1 = "06e1ea8082c2cb14e39806e22e2f6f757f92af39"; }; @@ -10466,8 +11352,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."debug"."0.7.x" = - self.by-version."debug"."0.7.4"; by-spec."debug"."0.8.0" = self.by-version."debug"."0.8.0"; by-version."debug"."0.8.0" = self.buildNodePackage { @@ -10475,7 +11359,7 @@ version = "0.8.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-0.8.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-0.8.0.tgz"; name = "debug-0.8.0.tgz"; sha1 = "0541ea91f0e503fdf0c5eed418a32550234967f0"; }; @@ -10494,7 +11378,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-1.0.2.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-1.0.2.tgz"; name = "debug-1.0.2.tgz"; sha1 = "3849591c10cce648476c3c7c2e2e3416db5963c4"; }; @@ -10514,7 +11398,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-1.0.3.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-1.0.3.tgz"; name = "debug-1.0.3.tgz"; sha1 = "fc8c6b2d6002804b4081c0208e0f6460ba1fa3e4"; }; @@ -10527,14 +11411,41 @@ os = [ ]; cpu = [ ]; }; - by-spec."debug"."1.0.4" = + by-spec."debug"."2" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."2.2.0" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."2.x.x" = + self.by-version."debug"."2.2.0"; + by-spec."debug".">= 0.7.0" = + self.by-version."debug"."2.2.0"; + by-spec."debug".">= 0.7.3 < 1" = + self.by-version."debug"."0.8.1"; + by-version."debug"."0.8.1" = self.buildNodePackage { + name = "debug-0.8.1"; + version = "0.8.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/debug/-/debug-0.8.1.tgz"; + name = "debug-0.8.1.tgz"; + sha1 = "20ff4d26f5e422cb68a1bacbbb61039ad8c1c130"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."debug"."^1.0.2" = self.by-version."debug"."1.0.4"; by-version."debug"."1.0.4" = self.buildNodePackage { name = "debug-1.0.4"; version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-1.0.4.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-1.0.4.tgz"; name = "debug-1.0.4.tgz"; sha1 = "5b9c256bd54b6ec02283176fa8a0ede6d154cbf8"; }; @@ -10547,16 +11458,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."debug"."2" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."2.0.0" = + by-spec."debug"."^2.0.0" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."^2.1.0" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."^2.1.1" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."^2.1.3" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."^2.2.0" = + self.by-version."debug"."2.2.0"; + by-spec."debug"."~1.0.1" = + self.by-version."debug"."1.0.4"; + by-spec."debug"."~2.0.0" = self.by-version."debug"."2.0.0"; by-version."debug"."2.0.0" = self.buildNodePackage { name = "debug-2.0.0"; version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.0.0.tgz"; + url = "https://registry.npmjs.org/debug/-/debug-2.0.0.tgz"; name = "debug-2.0.0.tgz"; sha1 = "89bd9df6732b51256bc6705342bba02ed12131ef"; }; @@ -10569,19 +11490,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."debug"."2.1.0" = - self.by-version."debug"."2.1.0"; - by-version."debug"."2.1.0" = self.buildNodePackage { - name = "debug-2.1.0"; - version = "2.1.0"; + by-spec."debug"."~2.1.1" = + self.by-version."debug"."2.1.3"; + by-version."debug"."2.1.3" = self.buildNodePackage { + name = "debug-2.1.3"; + version = "2.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.1.0.tgz"; - name = "debug-2.1.0.tgz"; - sha1 = "33ab915659d8c2cc8a41443d94d6ebd37697ed21"; + url = "https://registry.npmjs.org/debug/-/debug-2.1.3.tgz"; + name = "debug-2.1.3.tgz"; + sha1 = "ce8ab1b5ee8fbee2bfa3b633cab93d366b63418e"; }; deps = { - "ms-0.6.2" = self.by-version."ms"."0.6.2"; + "ms-0.7.0" = self.by-version."ms"."0.7.0"; }; optionalDependencies = { }; @@ -10589,56 +11510,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."debug".">= 0.7.0" = - self.by-version."debug"."2.1.3"; - by-spec."debug".">= 0.7.3 < 1" = - self.by-version."debug"."0.8.1"; - by-spec."debug"."^0.8.1" = - self.by-version."debug"."0.8.1"; - by-spec."debug"."^1.0" = - self.by-version."debug"."1.0.4"; - by-spec."debug"."^1.0.0" = - self.by-version."debug"."1.0.4"; - by-spec."debug"."^1.0.2" = - self.by-version."debug"."1.0.4"; - by-spec."debug"."^2.0.0" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."^2.1.0" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."^2.1.1" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."^2.1.3" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."~0.7.2" = - self.by-version."debug"."0.7.4"; - by-spec."debug"."~0.7.4" = - self.by-version."debug"."0.7.4"; - by-spec."debug"."~0.8.1" = - self.by-version."debug"."0.8.1"; - by-spec."debug"."~0.x" = - self.by-version."debug"."0.8.1"; - by-spec."debug"."~1.0.0" = - self.by-version."debug"."1.0.4"; - by-spec."debug"."~1.0.1" = - self.by-version."debug"."1.0.4"; - by-spec."debug"."~2.0.0" = - self.by-version."debug"."2.0.0"; - by-spec."debug"."~2.1.0" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."~2.1.1" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."~2.1.2" = - self.by-version."debug"."2.1.3"; - by-spec."debug"."~2.1.3" = - self.by-version."debug"."2.1.3"; - by-spec."debuglog"."^1.0.1" = + by-spec."debug"."~2.2.0" = + self.by-version."debug"."2.2.0"; + by-spec."debuglog"."*" = self.by-version."debuglog"."1.0.1"; by-version."debuglog"."1.0.1" = self.buildNodePackage { name = "debuglog-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"; + url = "https://registry.npmjs.org/debuglog/-/debuglog-1.0.1.tgz"; name = "debuglog-1.0.1.tgz"; sha1 = "aa24ffb9ac3df9a2351837cfb2d279360cd78492"; }; @@ -10650,16 +11531,18 @@ os = [ ]; cpu = [ ]; }; + by-spec."debuglog"."^1.0.1" = + self.by-version."debuglog"."1.0.1"; by-spec."decamelize"."^1.0.0" = - self.by-version."decamelize"."1.0.0"; - by-version."decamelize"."1.0.0" = self.buildNodePackage { - name = "decamelize-1.0.0"; - version = "1.0.0"; + self.by-version."decamelize"."1.2.0"; + by-version."decamelize"."1.2.0" = self.buildNodePackage { + name = "decamelize-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/decamelize/-/decamelize-1.0.0.tgz"; - name = "decamelize-1.0.0.tgz"; - sha1 = "5287122f71691d4505b18ff2258dc400a5b23847"; + url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; + name = "decamelize-1.2.0.tgz"; + sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; }; deps = { }; @@ -10669,40 +11552,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."decompress-zip"."^0.1.0" = - self.by-version."decompress-zip"."0.1.0"; - by-version."decompress-zip"."0.1.0" = self.buildNodePackage { - name = "decompress-zip-0.1.0"; - version = "0.1.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/decompress-zip/-/decompress-zip-0.1.0.tgz"; - name = "decompress-zip-0.1.0.tgz"; - sha1 = "bce60c11664f2d660fca4bcf634af6de5d6c14c7"; - }; - deps = { - "binary-0.3.0" = self.by-version."binary"."0.3.0"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "mkpath-0.1.0" = self.by-version."mkpath"."0.1.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "q-1.2.0" = self.by-version."q"."1.2.0"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "touch-0.0.3" = self.by-version."touch"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."deep-eql"."0.1.3" = + by-spec."decamelize"."^1.1.1" = + self.by-version."decamelize"."1.2.0"; + by-spec."decamelize"."^1.1.2" = + self.by-version."decamelize"."1.2.0"; + by-spec."deep-eql"."^0.1.3" = self.by-version."deep-eql"."0.1.3"; by-version."deep-eql"."0.1.3" = self.buildNodePackage { name = "deep-eql-0.1.3"; version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz"; + url = "https://registry.npmjs.org/deep-eql/-/deep-eql-0.1.3.tgz"; name = "deep-eql-0.1.3.tgz"; sha1 = "ef558acab8de25206cd713906d74e56930eb69f2"; }; @@ -10716,34 +11577,15 @@ cpu = [ ]; }; by-spec."deep-equal"."*" = - self.by-version."deep-equal"."1.0.0"; - by-version."deep-equal"."1.0.0" = self.buildNodePackage { - name = "deep-equal-1.0.0"; - version = "1.0.0"; + self.by-version."deep-equal"."1.0.1"; + by-version."deep-equal"."1.0.1" = self.buildNodePackage { + name = "deep-equal-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deep-equal/-/deep-equal-1.0.0.tgz"; - name = "deep-equal-1.0.0.tgz"; - sha1 = "d4564f07d2f0ab3e46110bec16592abd7dc2e326"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."deep-equal"."^0.2.1" = - self.by-version."deep-equal"."0.2.2"; - by-version."deep-equal"."0.2.2" = self.buildNodePackage { - name = "deep-equal-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/deep-equal/-/deep-equal-0.2.2.tgz"; - name = "deep-equal-0.2.2.tgz"; - sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d"; + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz"; + name = "deep-equal-1.0.1.tgz"; + sha1 = "f5d260292b660e084eff4cdbc9f08ad3247448b5"; }; deps = { }; @@ -10754,26 +11596,7 @@ cpu = [ ]; }; by-spec."deep-equal"."^1.0.0" = - self.by-version."deep-equal"."1.0.0"; - by-spec."deep-equal"."~0.0.0" = - self.by-version."deep-equal"."0.0.0"; - by-version."deep-equal"."0.0.0" = self.buildNodePackage { - name = "deep-equal-0.0.0"; - version = "0.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/deep-equal/-/deep-equal-0.0.0.tgz"; - name = "deep-equal-0.0.0.tgz"; - sha1 = "99679d3bbd047156fcd450d3d01eeb9068691e83"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."deep-equal"."1.0.1"; by-spec."deep-equal"."~0.1.0" = self.by-version."deep-equal"."0.1.2"; by-version."deep-equal"."0.1.2" = self.buildNodePackage { @@ -10781,7 +11604,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz"; + url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz"; name = "deep-equal-0.1.2.tgz"; sha1 = "b246c2b80a570a47c11be1d9bd1070ec878b87ce"; }; @@ -10793,10 +11616,25 @@ os = [ ]; cpu = [ ]; }; - by-spec."deep-equal"."~0.2.0" = - self.by-version."deep-equal"."0.2.2"; - by-spec."deep-equal"."~0.2.1" = - self.by-version."deep-equal"."0.2.2"; + by-spec."deep-extend"."^0.4.0" = + self.by-version."deep-extend"."0.4.1"; + by-version."deep-extend"."0.4.1" = self.buildNodePackage { + name = "deep-extend-0.4.1"; + version = "0.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz"; + name = "deep-extend-0.4.1.tgz"; + sha1 = "efe4113d08085f4e6f9687759810f807469e2253"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."deep-extend"."~0.2.5" = self.by-version."deep-extend"."0.2.11"; by-version."deep-extend"."0.2.11" = self.buildNodePackage { @@ -10804,7 +11642,7 @@ version = "0.2.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz"; + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz"; name = "deep-extend-0.2.11.tgz"; sha1 = "7a16ba69729132340506170494bc83f7076fe08f"; }; @@ -10816,14 +11654,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."deep-is"."0.1.x" = + by-spec."deep-extend"."~0.4.0" = + self.by-version."deep-extend"."0.4.1"; + by-spec."deep-is"."~0.1.3" = self.by-version."deep-is"."0.1.3"; by-version."deep-is"."0.1.3" = self.buildNodePackage { name = "deep-is-0.1.3"; version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; + url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; name = "deep-is-0.1.3.tgz"; sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; }; @@ -10835,18 +11675,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."deep-is"."~0.1.2" = - self.by-version."deep-is"."0.1.3"; by-spec."deepmerge"."*" = - self.by-version."deepmerge"."0.2.7"; - by-version."deepmerge"."0.2.7" = self.buildNodePackage { - name = "deepmerge-0.2.7"; - version = "0.2.7"; + self.by-version."deepmerge"."0.2.10"; + by-version."deepmerge"."0.2.10" = self.buildNodePackage { + name = "deepmerge-0.2.10"; + version = "0.2.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deepmerge/-/deepmerge-0.2.7.tgz"; - name = "deepmerge-0.2.7.tgz"; - sha1 = "3a5ab8d37311c4d1aefb22209693afe0a91a0563"; + url = "https://registry.npmjs.org/deepmerge/-/deepmerge-0.2.10.tgz"; + name = "deepmerge-0.2.10.tgz"; + sha1 = "8906bf9e525a4fbf1b203b2afcb4640249821219"; }; deps = { }; @@ -10856,26 +11694,27 @@ os = [ ]; cpu = [ ]; }; - "deepmerge" = self.by-version."deepmerge"."0.2.7"; - by-spec."default-browser-id"."1.0.2" = - self.by-version."default-browser-id"."1.0.2"; - by-version."default-browser-id"."1.0.2" = self.buildNodePackage { - name = "default-browser-id-1.0.2"; - version = "1.0.2"; + "deepmerge" = self.by-version."deepmerge"."0.2.10"; + by-spec."default-browser-id"."^1.0.4" = + self.by-version."default-browser-id"."1.0.4"; + by-version."default-browser-id"."1.0.4" = self.buildNodePackage { + name = "default-browser-id-1.0.4"; + version = "1.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.2.tgz"; - name = "default-browser-id-1.0.2.tgz"; - sha1 = "17f500f18e466d1a82c06cd7ccba71c6ee6600a9"; + url = "https://registry.npmjs.org/default-browser-id/-/default-browser-id-1.0.4.tgz"; + name = "default-browser-id-1.0.4.tgz"; + sha1 = "e59d09a5d157b828b876c26816e61c3d2a2c203a"; }; deps = { - "bplist-parser-0.0.6" = self.by-version."bplist-parser"."0.0.6"; - "untildify-1.0.0" = self.by-version."untildify"."1.0.0"; + "bplist-parser-0.1.1" = self.by-version."bplist-parser"."0.1.1"; + "meow-3.7.0" = self.by-version."meow"."3.7.0"; + "untildify-2.1.0" = self.by-version."untildify"."2.1.0"; }; optionalDependencies = { }; peerDependencies = []; - os = [ "darwin" ]; + os = [ ]; cpu = [ ]; }; by-spec."defaultable"."~0.7.2" = @@ -10885,7 +11724,7 @@ version = "0.7.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/defaultable/-/defaultable-0.7.2.tgz"; + url = "https://registry.npmjs.org/defaultable/-/defaultable-0.7.2.tgz"; name = "defaultable-0.7.2.tgz"; sha1 = "7c1564ca14f9eca4c4127a539790777d44085bd7"; }; @@ -10898,18 +11737,18 @@ cpu = [ ]; }; by-spec."defaults"."^1.0.0" = - self.by-version."defaults"."1.0.2"; - by-version."defaults"."1.0.2" = self.buildNodePackage { - name = "defaults-1.0.2"; - version = "1.0.2"; + self.by-version."defaults"."1.0.3"; + by-version."defaults"."1.0.3" = self.buildNodePackage { + name = "defaults-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/defaults/-/defaults-1.0.2.tgz"; - name = "defaults-1.0.2.tgz"; - sha1 = "6902e25aa047649a501e19ef9e98f3e8365c109a"; + url = "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz"; + name = "defaults-1.0.3.tgz"; + sha1 = "c656051e9817d9ff08ed881477f3fe4019f3ef7d"; }; deps = { - "clone-0.1.19" = self.by-version."clone"."0.1.19"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; }; optionalDependencies = { }; @@ -10924,7 +11763,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz"; + url = "https://registry.npmjs.org/deferred-leveldown/-/deferred-leveldown-0.2.0.tgz"; name = "deferred-leveldown-0.2.0.tgz"; sha1 = "2cef1f111e1c57870d8bbb8af2650e587cd2f5b4"; }; @@ -10937,16 +11776,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."defined"."0.0.0" = - self.by-version."defined"."0.0.0"; - by-version."defined"."0.0.0" = self.buildNodePackage { - name = "defined-0.0.0"; - version = "0.0.0"; + by-spec."defined"."^1.0.0" = + self.by-version."defined"."1.0.0"; + by-version."defined"."1.0.0" = self.buildNodePackage { + name = "defined-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; - name = "defined-0.0.0.tgz"; - sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e"; + url = "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz"; + name = "defined-1.0.0.tgz"; + sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; }; deps = { }; @@ -10958,28 +11797,45 @@ }; by-spec."defined"."~0.0.0" = self.by-version."defined"."0.0.0"; + by-version."defined"."0.0.0" = self.buildNodePackage { + name = "defined-0.0.0"; + version = "0.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; + name = "defined-0.0.0.tgz"; + sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."defs"."~1.1.0" = - self.by-version."defs"."1.1.0"; - by-version."defs"."1.1.0" = self.buildNodePackage { - name = "defs-1.1.0"; - version = "1.1.0"; + self.by-version."defs"."1.1.1"; + by-version."defs"."1.1.1" = self.buildNodePackage { + name = "defs-1.1.1"; + version = "1.1.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/defs/-/defs-1.1.0.tgz"; - name = "defs-1.1.0.tgz"; - sha1 = "a271201acd271eb0be887eefc61edd9f89f32b49"; + url = "https://registry.npmjs.org/defs/-/defs-1.1.1.tgz"; + name = "defs-1.1.1.tgz"; + sha1 = "b22609f2c7a11ba7a3db116805c139b1caffa9d2"; }; deps = { "alter-0.2.0" = self.by-version."alter"."0.2.0"; "ast-traverse-0.1.1" = self.by-version."ast-traverse"."0.1.1"; "breakable-1.0.0" = self.by-version."breakable"."1.0.0"; - "esprima-fb-8001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."8001.1001.0-dev-harmony-fb"; + "esprima-fb-15001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."15001.1001.0-dev-harmony-fb"; "simple-fmt-0.1.0" = self.by-version."simple-fmt"."0.1.0"; "simple-is-0.2.0" = self.by-version."simple-is"."0.2.0"; "stringmap-0.2.2" = self.by-version."stringmap"."0.2.2"; "stringset-0.2.1" = self.by-version."stringset"."0.2.1"; "tryor-0.1.2" = self.by-version."tryor"."0.1.2"; - "yargs-1.3.3" = self.by-version."yargs"."1.3.3"; + "yargs-3.27.0" = self.by-version."yargs"."3.27.0"; }; optionalDependencies = { }; @@ -10988,18 +11844,18 @@ cpu = [ ]; }; by-spec."degenerator"."~1.0.0" = - self.by-version."degenerator"."1.0.1"; - by-version."degenerator"."1.0.1" = self.buildNodePackage { - name = "degenerator-1.0.1"; - version = "1.0.1"; + self.by-version."degenerator"."1.0.2"; + by-version."degenerator"."1.0.2" = self.buildNodePackage { + name = "degenerator-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/degenerator/-/degenerator-1.0.1.tgz"; - name = "degenerator-1.0.1.tgz"; - sha1 = "54a67ae57012ced53b0d51d8dcf7a5d3ee79cf62"; + url = "https://registry.npmjs.org/degenerator/-/degenerator-1.0.2.tgz"; + name = "degenerator-1.0.2.tgz"; + sha1 = "c22222c8115cb22f3bfeee0a7b55843f1677caaa"; }; deps = { - "esprima-1.1.0-dev-harmony" = self.by-version."esprima"."1.1.0-dev-harmony"; + "esprima-2.3.0" = self.by-version."esprima"."2.3.0"; "escodegen-1.3.3" = self.by-version."escodegen"."1.3.3"; "ast-types-0.3.38" = self.by-version."ast-types"."0.3.38"; }; @@ -11009,6 +11865,32 @@ os = [ ]; cpu = [ ]; }; + by-spec."del"."^2.0.2" = + self.by-version."del"."2.2.0"; + by-version."del"."2.2.0" = self.buildNodePackage { + name = "del-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/del/-/del-2.2.0.tgz"; + name = "del-2.2.0.tgz"; + sha1 = "9a50f04bf37325e283b4f44e985336c252456bd5"; + }; + deps = { + "globby-4.0.0" = self.by-version."globby"."4.0.0"; + "is-path-cwd-1.0.0" = self.by-version."is-path-cwd"."1.0.0"; + "is-path-in-cwd-1.0.0" = self.by-version."is-path-in-cwd"."1.0.0"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."delayed-stream"."0.0.5" = self.by-version."delayed-stream"."0.0.5"; by-version."delayed-stream"."0.0.5" = self.buildNodePackage { @@ -11016,7 +11898,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz"; + url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz"; name = "delayed-stream-0.0.5.tgz"; sha1 = "d4b1f43a93e8296dfe02694f4680bc37a313c73f"; }; @@ -11028,16 +11910,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."delegates"."^0.1.0" = - self.by-version."delegates"."0.1.0"; - by-version."delegates"."0.1.0" = self.buildNodePackage { - name = "delegates-0.1.0"; - version = "0.1.0"; + by-spec."delayed-stream"."~1.0.0" = + self.by-version."delayed-stream"."1.0.0"; + by-version."delayed-stream"."1.0.0" = self.buildNodePackage { + name = "delayed-stream-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz"; - name = "delegates-0.1.0.tgz"; - sha1 = "b4b57be11a1653517a04b27f0949bdc327dfe390"; + url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; + name = "delayed-stream-1.0.0.tgz"; + sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."delegates"."^1.0.0" = + self.by-version."delegates"."1.0.0"; + by-version."delegates"."1.0.0" = self.buildNodePackage { + name = "delegates-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz"; + name = "delegates-1.0.0.tgz"; + sha1 = "84c6e159b81904fdca59a0ef44cd870d31250f9a"; }; deps = { }; @@ -11054,7 +11955,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dep-graph/-/dep-graph-1.1.0.tgz"; + url = "https://registry.npmjs.org/dep-graph/-/dep-graph-1.1.0.tgz"; name = "dep-graph-1.1.0.tgz"; sha1 = "fade86a92799a813e9b42511cdf3dfa6cc8dbefe"; }; @@ -11074,7 +11975,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/depd/-/depd-0.3.0.tgz"; + url = "https://registry.npmjs.org/depd/-/depd-0.3.0.tgz"; name = "depd-0.3.0.tgz"; sha1 = "11c9bc28e425325fbd8b38940beff69fa5326883"; }; @@ -11093,7 +11994,7 @@ version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/depd/-/depd-0.4.2.tgz"; + url = "https://registry.npmjs.org/depd/-/depd-0.4.2.tgz"; name = "depd-0.4.2.tgz"; sha1 = "a4bc8a0e4801770a66363daa6d35138f3e3b54dd"; }; @@ -11112,7 +12013,7 @@ version = "0.4.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/depd/-/depd-0.4.5.tgz"; + url = "https://registry.npmjs.org/depd/-/depd-0.4.5.tgz"; name = "depd-0.4.5.tgz"; sha1 = "1a664b53388b4a6573e8ae67b5f767c693ca97f1"; }; @@ -11125,13 +12026,32 @@ cpu = [ ]; }; by-spec."depd".">= 0.4.0" = + self.by-version."depd"."1.1.0"; + by-version."depd"."1.1.0" = self.buildNodePackage { + name = "depd-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz"; + name = "depd-1.1.0.tgz"; + sha1 = "e1bd82c6aab6ced965b97b88b17ed3e528ca18c3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."depd"."~1.0.1" = self.by-version."depd"."1.0.1"; by-version."depd"."1.0.1" = self.buildNodePackage { name = "depd-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/depd/-/depd-1.0.1.tgz"; + url = "https://registry.npmjs.org/depd/-/depd-1.0.1.tgz"; name = "depd-1.0.1.tgz"; sha1 = "80aec64c9d6d97e65cc2a9caa93c0aa6abf73aaa"; }; @@ -11143,10 +12063,27 @@ os = [ ]; cpu = [ ]; }; - by-spec."depd"."~1.0.0" = - self.by-version."depd"."1.0.1"; - by-spec."depd"."~1.0.1" = - self.by-version."depd"."1.0.1"; + by-spec."depd"."~1.1.0" = + self.by-version."depd"."1.1.0"; + by-spec."deprecate"."^0.1.0" = + self.by-version."deprecate"."0.1.0"; + by-version."deprecate"."0.1.0" = self.buildNodePackage { + name = "deprecate-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/deprecate/-/deprecate-0.1.0.tgz"; + name = "deprecate-0.1.0.tgz"; + sha1 = "c49058612dc6c8e5145eafe4839b8c2c7d041c14"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."deprecated"."^0.0.1" = self.by-version."deprecated"."0.0.1"; by-version."deprecated"."0.0.1" = self.buildNodePackage { @@ -11154,7 +12091,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz"; + url = "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz"; name = "deprecated-0.0.1.tgz"; sha1 = "f9c9af5464afa1e7a971458a8bdef2aa94d5bb19"; }; @@ -11166,23 +12103,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."deps-sort"."^1.3.5" = - self.by-version."deps-sort"."1.3.5"; - by-version."deps-sort"."1.3.5" = self.buildNodePackage { - name = "deps-sort-1.3.5"; - version = "1.3.5"; + by-spec."deps-sort"."^1.3.7" = + self.by-version."deps-sort"."1.3.9"; + by-version."deps-sort"."1.3.9" = self.buildNodePackage { + name = "deps-sort-1.3.9"; + version = "1.3.9"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/deps-sort/-/deps-sort-1.3.5.tgz"; - name = "deps-sort-1.3.5.tgz"; - sha1 = "89dc3c323504080558f9909bf57df1f7837c5c6f"; + url = "https://registry.npmjs.org/deps-sort/-/deps-sort-1.3.9.tgz"; + name = "deps-sort-1.3.9.tgz"; + sha1 = "29dfff53e17b36aecae7530adbbbf622c2ed1a71"; }; deps = { - "JSONStream-0.8.4" = self.by-version."JSONStream"."0.8.4"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "minimist-0.2.0" = self.by-version."minimist"."0.2.0"; - "shasum-1.0.1" = self.by-version."shasum"."1.0.1"; - "through2-0.5.1" = self.by-version."through2"."0.5.1"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "shasum-1.0.2" = self.by-version."shasum"."1.0.2"; + "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; + "through2-1.1.1" = self.by-version."through2"."1.1.1"; }; optionalDependencies = { }; @@ -11190,21 +12126,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."deps-sort"."~0.1.1" = - self.by-version."deps-sort"."0.1.2"; - by-version."deps-sort"."0.1.2" = self.buildNodePackage { - name = "deps-sort-0.1.2"; - version = "0.1.2"; + by-spec."deps-sort"."^2.0.0" = + self.by-version."deps-sort"."2.0.0"; + by-version."deps-sort"."2.0.0" = self.buildNodePackage { + name = "deps-sort-2.0.0"; + version = "2.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/deps-sort/-/deps-sort-0.1.2.tgz"; - name = "deps-sort-0.1.2.tgz"; - sha1 = "daa2fb614a17c9637d801e2f55339ae370f3611a"; + url = "https://registry.npmjs.org/deps-sort/-/deps-sort-2.0.0.tgz"; + name = "deps-sort-2.0.0.tgz"; + sha1 = "091724902e84658260eb910748cccd1af6e21fb5"; }; deps = { - "through-2.3.7" = self.by-version."through"."2.3.7"; - "JSONStream-0.6.4" = self.by-version."JSONStream"."0.6.4"; - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "shasum-1.0.2" = self.by-version."shasum"."1.0.2"; + "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; }; optionalDependencies = { }; @@ -11212,21 +12149,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."derequire"."~0.6.0" = - self.by-version."derequire"."0.6.1"; - by-version."derequire"."0.6.1" = self.buildNodePackage { - name = "derequire-0.6.1"; - version = "0.6.1"; + by-spec."des.js"."^1.0.0" = + self.by-version."des.js"."1.0.0"; + by-version."des.js"."1.0.0" = self.buildNodePackage { + name = "des.js-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/derequire/-/derequire-0.6.1.tgz"; - name = "derequire-0.6.1.tgz"; - sha1 = "cce8ee25380de715deb61900f0bdd38222928788"; + url = "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz"; + name = "des.js-1.0.0.tgz"; + sha1 = "c074d2e2aa6a8a9a07dbd61f9a15c2cd83ec8ecc"; }; deps = { - "estraverse-1.5.1" = self.by-version."estraverse"."1.5.1"; - "esprima-six-0.0.3" = self.by-version."esprima-six"."0.0.3"; - "esrefactor-0.1.0" = self.by-version."esrefactor"."0.1.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimalistic-assert-1.0.0" = self.by-version."minimalistic-assert"."1.0.0"; }; optionalDependencies = { }; @@ -11241,7 +12177,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz"; + url = "https://registry.npmjs.org/destroy/-/destroy-1.0.3.tgz"; name = "destroy-1.0.3.tgz"; sha1 = "b433b4724e71fd8551d9885174851c5fc377e2c9"; }; @@ -11253,42 +12189,39 @@ os = [ ]; cpu = [ ]; }; + by-spec."destroy"."~1.0.4" = + self.by-version."destroy"."1.0.4"; + by-version."destroy"."1.0.4" = self.buildNodePackage { + name = "destroy-1.0.4"; + version = "1.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz"; + name = "destroy-1.0.4.tgz"; + sha1 = "978857442c44749e4206613e37946205826abd80"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."detective"."^4.0.0" = - self.by-version."detective"."4.0.0"; - by-version."detective"."4.0.0" = self.buildNodePackage { - name = "detective-4.0.0"; - version = "4.0.0"; + self.by-version."detective"."4.3.1"; + by-version."detective"."4.3.1" = self.buildNodePackage { + name = "detective-4.3.1"; + version = "4.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/detective/-/detective-4.0.0.tgz"; - name = "detective-4.0.0.tgz"; - sha1 = "9ffdb5555ddb1571fdbdc6f4ceac08e5e4cf8467"; + url = "https://registry.npmjs.org/detective/-/detective-4.3.1.tgz"; + name = "detective-4.3.1.tgz"; + sha1 = "9fb06dd1ee8f0ea4dbcc607cda39d9ce1d4f726f"; }; deps = { - "acorn-0.9.0" = self.by-version."acorn"."0.9.0"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "escodegen-1.6.1" = self.by-version."escodegen"."1.6.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."detective"."~2.1.2" = - self.by-version."detective"."2.1.2"; - by-version."detective"."2.1.2" = self.buildNodePackage { - name = "detective-2.1.2"; - version = "2.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/detective/-/detective-2.1.2.tgz"; - name = "detective-2.1.2.tgz"; - sha1 = "d22ad9f18c82efb3f55fee2e244883da6bbb8e37"; - }; - deps = { - "esprima-1.0.2" = self.by-version."esprima"."1.0.2"; - "escodegen-0.0.15" = self.by-version."escodegen"."0.0.15"; + "acorn-1.2.2" = self.by-version."acorn"."1.2.2"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; }; optionalDependencies = { }; @@ -11296,19 +12229,21 @@ os = [ ]; cpu = [ ]; }; + by-spec."detective"."^4.3.1" = + self.by-version."detective"."4.3.1"; by-spec."dezalgo"."^1.0.0" = - self.by-version."dezalgo"."1.0.1"; - by-version."dezalgo"."1.0.1" = self.buildNodePackage { - name = "dezalgo-1.0.1"; - version = "1.0.1"; + self.by-version."dezalgo"."1.0.3"; + by-version."dezalgo"."1.0.3" = self.buildNodePackage { + name = "dezalgo-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dezalgo/-/dezalgo-1.0.1.tgz"; - name = "dezalgo-1.0.1.tgz"; - sha1 = "12bde135060807900d5a7aebb607c2abb7c76937"; + url = "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.3.tgz"; + name = "dezalgo-1.0.3.tgz"; + sha1 = "7f742de066fc748bc8db820569dddce49bf0d456"; }; deps = { - "asap-1.0.0" = self.by-version."asap"."1.0.0"; + "asap-2.0.3" = self.by-version."asap"."2.0.3"; "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; }; optionalDependencies = { @@ -11318,17 +12253,19 @@ cpu = [ ]; }; by-spec."dezalgo"."^1.0.1" = - self.by-version."dezalgo"."1.0.1"; - by-spec."dezalgo"."~1.0.1" = - self.by-version."dezalgo"."1.0.1"; - by-spec."di"."~0.0.1" = + self.by-version."dezalgo"."1.0.3"; + by-spec."dezalgo"."^1.0.2" = + self.by-version."dezalgo"."1.0.3"; + by-spec."dezalgo"."~1.0.3" = + self.by-version."dezalgo"."1.0.3"; + by-spec."di"."^0.0.1" = self.by-version."di"."0.0.1"; by-version."di"."0.0.1" = self.buildNodePackage { name = "di-0.0.1"; version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/di/-/di-0.0.1.tgz"; + url = "https://registry.npmjs.org/di/-/di-0.0.1.tgz"; name = "di-0.0.1.tgz"; sha1 = "806649326ceaa7caa3306d75d985ea2748ba913c"; }; @@ -11340,16 +12277,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."dicer"."0.2.3" = - self.by-version."dicer"."0.2.3"; - by-version."dicer"."0.2.3" = self.buildNodePackage { - name = "dicer-0.2.3"; - version = "0.2.3"; + by-spec."dicer"."0.2.5" = + self.by-version."dicer"."0.2.5"; + by-version."dicer"."0.2.5" = self.buildNodePackage { + name = "dicer-0.2.5"; + version = "0.2.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dicer/-/dicer-0.2.3.tgz"; - name = "dicer-0.2.3.tgz"; - sha1 = "f00281189a55c2351ef80490a4fe9fb2c59c4939"; + url = "https://registry.npmjs.org/dicer/-/dicer-0.2.5.tgz"; + name = "dicer-0.2.5.tgz"; + sha1 = "5996c086bb33218c812c090bddc09cd12facb70f"; }; deps = { "streamsearch-0.1.2" = self.by-version."streamsearch"."0.1.2"; @@ -11361,16 +12298,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."diff"."1.0.7" = - self.by-version."diff"."1.0.7"; - by-version."diff"."1.0.7" = self.buildNodePackage { - name = "diff-1.0.7"; - version = "1.0.7"; + by-spec."diff"."1.4.0" = + self.by-version."diff"."1.4.0"; + by-version."diff"."1.4.0" = self.buildNodePackage { + name = "diff-1.4.0"; + version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/diff/-/diff-1.0.7.tgz"; - name = "diff-1.0.7.tgz"; - sha1 = "24bbb001c4a7d5522169e7cabdb2c2814ed91cf4"; + url = "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz"; + name = "diff-1.4.0.tgz"; + sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"; }; deps = { }; @@ -11380,16 +12317,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."diff"."1.0.8" = - self.by-version."diff"."1.0.8"; - by-version."diff"."1.0.8" = self.buildNodePackage { - name = "diff-1.0.8"; - version = "1.0.8"; + by-spec."diff"."2.1.0" = + self.by-version."diff"."2.1.0"; + by-version."diff"."2.1.0" = self.buildNodePackage { + name = "diff-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/diff/-/diff-1.0.8.tgz"; - name = "diff-1.0.8.tgz"; - sha1 = "343276308ec991b7bc82267ed55bc1411f971666"; + url = "https://registry.npmjs.org/diff/-/diff-2.1.0.tgz"; + name = "diff-2.1.0.tgz"; + sha1 = "39b5aa97f0d1600b428ad0a91dc8efcc9b29e288"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."diff"."2.2.*" = + self.by-version."diff"."2.2.2"; + by-version."diff"."2.2.2" = self.buildNodePackage { + name = "diff-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/diff/-/diff-2.2.2.tgz"; + name = "diff-2.2.2.tgz"; + sha1 = "5f813f994a0caa1a2ef79200759c4b89ca233a81"; }; deps = { }; @@ -11401,23 +12357,38 @@ }; by-spec."diff"."~1.0.7" = self.by-version."diff"."1.0.8"; + by-version."diff"."1.0.8" = self.buildNodePackage { + name = "diff-1.0.8"; + version = "1.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/diff/-/diff-1.0.8.tgz"; + name = "diff-1.0.8.tgz"; + sha1 = "343276308ec991b7bc82267ed55bc1411f971666"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."diff"."~1.0.8" = self.by-version."diff"."1.0.8"; - by-spec."diff2html"."~0.1.8" = - self.by-version."diff2html"."0.1.9"; - by-version."diff2html"."0.1.9" = self.buildNodePackage { - name = "diff2html-0.1.9"; - version = "0.1.9"; - bin = true; + by-spec."diff2html"."~1.2.0" = + self.by-version."diff2html"."1.2.0"; + by-version."diff2html"."1.2.0" = self.buildNodePackage { + name = "diff2html-1.2.0"; + version = "1.2.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/diff2html/-/diff2html-0.1.9.tgz"; - name = "diff2html-0.1.9.tgz"; - sha1 = "7005815d50da0d0729a6a43f0cfb24bbdf375f88"; + url = "https://registry.npmjs.org/diff2html/-/diff2html-1.2.0.tgz"; + name = "diff2html-1.2.0.tgz"; + sha1 = "8b54af41c180befd9cb1caa130a3d76081ae4a07"; }; deps = { - "commander-2.7.1" = self.by-version."commander"."2.7.1"; - "extend-2.0.0" = self.by-version."extend"."2.0.0"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; + "diff-2.2.2" = self.by-version."diff"."2.2.2"; }; optionalDependencies = { }; @@ -11425,43 +12396,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."diffie-hellman"."^3.0.1" = - self.by-version."diffie-hellman"."3.0.1"; - by-version."diffie-hellman"."3.0.1" = self.buildNodePackage { - name = "diffie-hellman-3.0.1"; - version = "3.0.1"; + by-spec."diffie-hellman"."^5.0.0" = + self.by-version."diffie-hellman"."5.0.2"; + by-version."diffie-hellman"."5.0.2" = self.buildNodePackage { + name = "diffie-hellman-5.0.2"; + version = "5.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-3.0.1.tgz"; - name = "diffie-hellman-3.0.1.tgz"; - sha1 = "13be8fc4ad657278408cd796b554a93e586ed66a"; + url = "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.2.tgz"; + name = "diffie-hellman-5.0.2.tgz"; + sha1 = "b5835739270cfe26acf632099fded2a07f209e5e"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "miller-rabin-1.1.5" = self.by-version."miller-rabin"."1.1.5"; - "randombytes-2.0.1" = self.by-version."randombytes"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."difflet"."~0.2.0" = - self.by-version."difflet"."0.2.6"; - by-version."difflet"."0.2.6" = self.buildNodePackage { - name = "difflet-0.2.6"; - version = "0.2.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/difflet/-/difflet-0.2.6.tgz"; - name = "difflet-0.2.6.tgz"; - sha1 = "ab23b31f5649b6faa8e3d2acbd334467365ca6fa"; - }; - deps = { - "traverse-0.6.6" = self.by-version."traverse"."0.6.6"; - "charm-0.1.2" = self.by-version."charm"."0.1.2"; - "deep-is-0.1.3" = self.by-version."deep-is"."0.1.3"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "miller-rabin-4.0.0" = self.by-version."miller-rabin"."4.0.0"; + "randombytes-2.0.3" = self.by-version."randombytes"."2.0.3"; }; optionalDependencies = { }; @@ -11476,7 +12425,7 @@ version = "0.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/directmail/-/directmail-0.1.8.tgz"; + url = "https://registry.npmjs.org/directmail/-/directmail-0.1.8.tgz"; name = "directmail-0.1.8.tgz"; sha1 = "e4852c8a0c5519bef4904fcd96d760822f42a446"; }; @@ -11496,7 +12445,7 @@ version = "1.2.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/director/-/director-1.2.7.tgz"; + url = "https://registry.npmjs.org/director/-/director-1.2.7.tgz"; name = "director-1.2.7.tgz"; sha1 = "bfd3741075fd7fb1a5b2e13658c5f4bec77736f3"; }; @@ -11515,7 +12464,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dkim-signer/-/dkim-signer-0.1.2.tgz"; + url = "https://registry.npmjs.org/dkim-signer/-/dkim-signer-0.1.2.tgz"; name = "dkim-signer-0.1.2.tgz"; sha1 = "2ff5d61c87d8fbff5a8b131cffc5ec3ba1c25553"; }; @@ -11536,7 +12485,7 @@ version = "0.2.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/dns/-/dns-0.2.2.tgz"; + url = "https://registry.npmjs.org/dns/-/dns-0.2.2.tgz"; name = "dns-0.2.2.tgz"; sha1 = "a8477ca26b835842c3125204d8cbcdd6af98c9ec"; }; @@ -11561,7 +12510,7 @@ version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/docker-parse-image/-/docker-parse-image-3.0.1.tgz"; + url = "https://registry.npmjs.org/docker-parse-image/-/docker-parse-image-3.0.1.tgz"; name = "docker-parse-image-3.0.1.tgz"; sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4"; }; @@ -11580,39 +12529,39 @@ version = "2.2.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/docker-registry-server/-/docker-registry-server-2.2.0.tgz"; + url = "https://registry.npmjs.org/docker-registry-server/-/docker-registry-server-2.2.0.tgz"; name = "docker-registry-server-2.2.0.tgz"; sha1 = "5b98836cd7f0348f7f472f7f5a42dd3cab231731"; }; deps = { "JSONStream-0.8.4" = self.by-version."JSONStream"."0.8.4"; - "basic-auth-1.0.0" = self.by-version."basic-auth"."1.0.0"; + "basic-auth-1.0.3" = self.by-version."basic-auth"."1.0.3"; "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "cors-2.5.3" = self.by-version."cors"."2.5.3"; + "cors-2.7.1" = self.by-version."cors"."2.7.1"; "docker-parse-image-3.0.1" = self.by-version."docker-parse-image"."3.0.1"; "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; "from2-1.3.0" = self.by-version."from2"."1.3.0"; - "fs-blob-store-5.1.1" = self.by-version."fs-blob-store"."5.1.1"; + "fs-blob-store-5.2.1" = self.by-version."fs-blob-store"."5.2.1"; "level-0.18.0" = self.by-version."level"."0.18.0"; - "level-sublevel-6.4.6" = self.by-version."level-sublevel"."6.4.6"; - "leveldown-0.10.4" = self.by-version."leveldown"."0.10.4"; + "level-sublevel-6.5.4" = self.by-version."level-sublevel"."6.5.4"; + "leveldown-0.10.6" = self.by-version."leveldown"."0.10.6"; "levelup-0.18.6" = self.by-version."levelup"."0.18.6"; "lexicographic-integer-1.1.0" = self.by-version."lexicographic-integer"."1.1.0"; "memdown-0.10.2" = self.by-version."memdown"."0.10.2"; "minimist-0.2.0" = self.by-version."minimist"."0.2.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "ndjson-1.3.0" = self.by-version."ndjson"."1.3.0"; - "pump-1.0.0" = self.by-version."pump"."1.0.0"; - "pumpify-1.3.3" = self.by-version."pumpify"."1.3.3"; - "relative-date-1.1.2" = self.by-version."relative-date"."1.1.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "ndjson-1.4.3" = self.by-version."ndjson"."1.4.3"; + "pump-1.0.1" = self.by-version."pump"."1.0.1"; + "pumpify-1.3.4" = self.by-version."pumpify"."1.3.4"; + "relative-date-1.1.3" = self.by-version."relative-date"."1.1.3"; "root-2.0.0" = self.by-version."root"."2.0.0"; "sorted-union-stream-1.0.2" = self.by-version."sorted-union-stream"."1.0.2"; "split2-0.2.1" = self.by-version."split2"."0.2.1"; "stream-collector-1.0.1" = self.by-version."stream-collector"."1.0.1"; - "tar-stream-1.1.4" = self.by-version."tar-stream"."1.1.4"; + "tar-stream-1.5.1" = self.by-version."tar-stream"."1.5.1"; "through2-0.6.5" = self.by-version."through2"."0.6.5"; "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -11621,6 +12570,50 @@ cpu = [ ]; }; "docker-registry-server" = self.by-version."docker-registry-server"."2.2.0"; + by-spec."doctrine"."^1.2.1" = + self.by-version."doctrine"."1.2.1"; + by-version."doctrine"."1.2.1" = self.buildNodePackage { + name = "doctrine-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/doctrine/-/doctrine-1.2.1.tgz"; + name = "doctrine-1.2.1.tgz"; + sha1 = "ac0c649d70b9501e16e97acb7ec4e27168f746a3"; + }; + deps = { + "esutils-1.1.6" = self.by-version."esutils"."1.1.6"; + "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."dom-serialize"."^2.2.0" = + self.by-version."dom-serialize"."2.2.1"; + by-version."dom-serialize"."2.2.1" = self.buildNodePackage { + name = "dom-serialize-2.2.1"; + version = "2.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz"; + name = "dom-serialize-2.2.1.tgz"; + sha1 = "562ae8999f44be5ea3076f5419dcd59eb43ac95b"; + }; + deps = { + "custom-event-1.0.0" = self.by-version."custom-event"."1.0.0"; + "ent-2.2.0" = self.by-version."ent"."2.2.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "void-elements-2.0.1" = self.by-version."void-elements"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."dom-serializer"."0" = self.by-version."dom-serializer"."0.1.0"; by-version."dom-serializer"."0.1.0" = self.buildNodePackage { @@ -11628,7 +12621,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz"; + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz"; name = "dom-serializer-0.1.0.tgz"; sha1 = "073c697546ce0780ce23be4a28e293e40bc30c82"; }; @@ -11649,7 +12642,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dom-serializer/-/dom-serializer-0.0.1.tgz"; + url = "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.0.1.tgz"; name = "dom-serializer-0.0.1.tgz"; sha1 = "9589827f1e32d22c37c829adabd59b3247af8eaf"; }; @@ -11663,16 +12656,18 @@ os = [ ]; cpu = [ ]; }; + by-spec."dom-serializer"."~0.1.0" = + self.by-version."dom-serializer"."0.1.0"; by-spec."domain-browser"."^1.1.1" = - self.by-version."domain-browser"."1.1.4"; - by-version."domain-browser"."1.1.4" = self.buildNodePackage { - name = "domain-browser-1.1.4"; - version = "1.1.4"; + self.by-version."domain-browser"."1.1.7"; + by-version."domain-browser"."1.1.7" = self.buildNodePackage { + name = "domain-browser-1.1.7"; + version = "1.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domain-browser/-/domain-browser-1.1.4.tgz"; - name = "domain-browser-1.1.4.tgz"; - sha1 = "90b42769333e909ce3f13bf3e1023ba4a6d6b723"; + url = "https://registry.npmjs.org/domain-browser/-/domain-browser-1.1.7.tgz"; + name = "domain-browser-1.1.7.tgz"; + sha1 = "867aa4b093faa05f1de08c06f4d7b21fdf8698bc"; }; deps = { }; @@ -11683,7 +12678,7 @@ cpu = [ ]; }; by-spec."domain-browser"."~1.1.0" = - self.by-version."domain-browser"."1.1.4"; + self.by-version."domain-browser"."1.1.7"; by-spec."domelementtype"."1" = self.by-version."domelementtype"."1.3.0"; by-version."domelementtype"."1.3.0" = self.buildNodePackage { @@ -11691,7 +12686,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz"; + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz"; name = "domelementtype-1.3.0.tgz"; sha1 = "b17aed82e8ab59e52dd9c19b1756e0fc187204c2"; }; @@ -11703,6 +12698,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."domelementtype"."^1.3.0" = + self.by-version."domelementtype"."1.3.0"; by-spec."domelementtype"."~1.1.1" = self.by-version."domelementtype"."1.1.3"; by-version."domelementtype"."1.1.3" = self.buildNodePackage { @@ -11710,7 +12707,7 @@ version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; + url = "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz"; name = "domelementtype-1.1.3.tgz"; sha1 = "bd28773e2642881aec51544924299c5cd822185b"; }; @@ -11729,7 +12726,7 @@ version = "2.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domhandler/-/domhandler-2.2.1.tgz"; + url = "https://registry.npmjs.org/domhandler/-/domhandler-2.2.1.tgz"; name = "domhandler-2.2.1.tgz"; sha1 = "59df9dcd227e808b365ae73e1f6684ac3d946fc2"; }; @@ -11749,7 +12746,7 @@ version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz"; + url = "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz"; name = "domhandler-2.3.0.tgz"; sha1 = "2de59a0822d5027fabff6f032c2b25a2a8abe738"; }; @@ -11762,16 +12759,37 @@ os = [ ]; cpu = [ ]; }; - by-spec."domino"."~1.0.18" = - self.by-version."domino"."1.0.18"; - by-version."domino"."1.0.18" = self.buildNodePackage { - name = "domino-1.0.18"; - version = "1.0.18"; + by-spec."domhandler"."^2.3.0" = + self.by-version."domhandler"."2.3.0"; + by-spec."domino"."~1.0.19" = + self.by-version."domino"."1.0.24"; + by-version."domino"."1.0.24" = self.buildNodePackage { + name = "domino-1.0.24"; + version = "1.0.24"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domino/-/domino-1.0.18.tgz"; - name = "domino-1.0.18.tgz"; - sha1 = "3a9bcf9db6d693e1ffb7d06d96c9138e1d331a7b"; + url = "https://registry.npmjs.org/domino/-/domino-1.0.24.tgz"; + name = "domino-1.0.24.tgz"; + sha1 = "a3fab865851197f22943d3a1ec0f507e1ff008e1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."domready"."0.3.0" = + self.by-version."domready"."0.3.0"; + by-version."domready"."0.3.0" = self.buildNodePackage { + name = "domready-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/domready/-/domready-0.3.0.tgz"; + name = "domready-0.3.0.tgz"; + sha1 = "b3740facbd09163018152d12aec239383e102175"; }; deps = { }; @@ -11788,7 +12806,7 @@ version = "1.4.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz"; + url = "https://registry.npmjs.org/domutils/-/domutils-1.4.3.tgz"; name = "domutils-1.4.3.tgz"; sha1 = "0865513796c6b306031850e175516baf80b72a6f"; }; @@ -11808,7 +12826,7 @@ version = "1.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; + url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz"; name = "domutils-1.5.1.tgz"; sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf"; }; @@ -11822,6 +12840,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."domutils"."^1.5.1" = + self.by-version."domutils"."1.5.1"; + by-spec."double-ended-queue"."^2.1.0-0" = + self.by-version."double-ended-queue"."2.1.0-0"; + by-version."double-ended-queue"."2.1.0-0" = self.buildNodePackage { + name = "double-ended-queue-2.1.0-0"; + version = "2.1.0-0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/double-ended-queue/-/double-ended-queue-2.1.0-0.tgz"; + name = "double-ended-queue-2.1.0-0.tgz"; + sha1 = "103d3527fd31528f40188130c841efdd78264e5c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."dropbox"."=0.9.2" = self.by-version."dropbox"."0.9.2"; by-version."dropbox"."0.9.2" = self.buildNodePackage { @@ -11829,13 +12868,13 @@ version = "0.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dropbox/-/dropbox-0.9.2.tgz"; + url = "https://registry.npmjs.org/dropbox/-/dropbox-0.9.2.tgz"; name = "dropbox-0.9.2.tgz"; sha1 = "b516a0483d136c16dd52acf729687e87578425cb"; }; deps = { "open-0.0.5" = self.by-version."open"."0.0.5"; - "xhr2-0.1.2" = self.by-version."xhr2"."0.1.2"; + "xhr2-0.1.3" = self.by-version."xhr2"."0.1.3"; }; optionalDependencies = { }; @@ -11850,7 +12889,7 @@ version = "0.2.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.2.8.tgz"; + url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.2.8.tgz"; name = "dtrace-provider-0.2.8.tgz"; sha1 = "e243f19219aa95fbf0d8f2ffb07f5bd64e94fe20"; }; @@ -11862,19 +12901,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."dtrace-provider"."^0.3.1" = - self.by-version."dtrace-provider"."0.3.2"; - by-version."dtrace-provider"."0.3.2" = self.buildNodePackage { - name = "dtrace-provider-0.3.2"; - version = "0.3.2"; + by-spec."dtrace-provider"."^0.6.0" = + self.by-version."dtrace-provider"."0.6.0"; + by-version."dtrace-provider"."0.6.0" = self.buildNodePackage { + name = "dtrace-provider-0.6.0"; + version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.3.2.tgz"; - name = "dtrace-provider-0.3.2.tgz"; - sha1 = "794e4df1993d93ec333baed9c1a4d2da72f875b9"; + url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.6.0.tgz"; + name = "dtrace-provider-0.6.0.tgz"; + sha1 = "0b078d5517937d873101452d9146737557b75e51"; }; deps = { - "nan-1.3.0" = self.by-version."nan"."1.3.0"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -11882,34 +12921,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."dtrace-provider"."~0.4" = - self.by-version."dtrace-provider"."0.4.0"; - by-version."dtrace-provider"."0.4.0" = self.buildNodePackage { - name = "dtrace-provider-0.4.0"; - version = "0.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.4.0.tgz"; - name = "dtrace-provider-0.4.0.tgz"; - sha1 = "0b67bc1cc77e79bf88b87ad20664f4a753ce3f26"; - }; - deps = { - "nan-1.5.3" = self.by-version."nan"."1.5.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."duplexer"."~0.1.0" = + by-spec."dtrace-provider"."~0.6" = + self.by-version."dtrace-provider"."0.6.0"; + by-spec."duplexer"."~0.1.1" = self.by-version."duplexer"."0.1.1"; by-version."duplexer"."0.1.1" = self.buildNodePackage { name = "duplexer-0.1.1"; version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; + url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz"; name = "duplexer-0.1.1.tgz"; sha1 = "ace6ff808c1ce66b57d1ebf97977acb02334cfc1"; }; @@ -11921,8 +12942,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."duplexer"."~0.1.1" = - self.by-version."duplexer"."0.1.1"; by-spec."duplexer2"."0.0.2" = self.by-version."duplexer2"."0.0.2"; by-version."duplexer2"."0.0.2" = self.buildNodePackage { @@ -11930,7 +12949,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz"; + url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz"; name = "duplexer2-0.0.2.tgz"; sha1 = "c614dcf67e2fb14995a91711e5a617e8a60a31db"; }; @@ -11943,22 +12962,47 @@ os = [ ]; cpu = [ ]; }; - by-spec."duplexer2"."~0.0.2" = - self.by-version."duplexer2"."0.0.2"; - by-spec."duplexify"."^3.1.2" = - self.by-version."duplexify"."3.3.0"; - by-version."duplexify"."3.3.0" = self.buildNodePackage { - name = "duplexify-3.3.0"; - version = "3.3.0"; + by-spec."duplexer2"."^0.1.2" = + self.by-version."duplexer2"."0.1.4"; + by-version."duplexer2"."0.1.4" = self.buildNodePackage { + name = "duplexer2-0.1.4"; + version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/duplexify/-/duplexify-3.3.0.tgz"; - name = "duplexify-3.3.0.tgz"; - sha1 = "f5025c4b1f49f998b7399cd2d008e2895d18d247"; + url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; + name = "duplexer2-0.1.4.tgz"; + sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."duplexer2"."~0.0.2" = + self.by-version."duplexer2"."0.0.2"; + by-spec."duplexer2"."~0.1.0" = + self.by-version."duplexer2"."0.1.4"; + by-spec."duplexer2"."~0.1.2" = + self.by-version."duplexer2"."0.1.4"; + by-spec."duplexify"."^3.1.2" = + self.by-version."duplexify"."3.4.3"; + by-version."duplexify"."3.4.3" = self.buildNodePackage { + name = "duplexify-3.4.3"; + version = "3.4.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/duplexify/-/duplexify-3.4.3.tgz"; + name = "duplexify-3.4.3.tgz"; + sha1 = "af6a7b10d928b095f8ad854d072bb90998db850d"; }; deps = { "end-of-stream-1.0.0" = self.by-version."end-of-stream"."1.0.0"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -11967,21 +13011,40 @@ cpu = [ ]; }; by-spec."duplexify"."^3.2.0" = - self.by-version."duplexify"."3.3.0"; - by-spec."each-async"."^1.1.0" = - self.by-version."each-async"."1.1.1"; - by-version."each-async"."1.1.1" = self.buildNodePackage { - name = "each-async-1.1.1"; - version = "1.1.1"; + self.by-version."duplexify"."3.4.3"; + by-spec."ecc-jsbn".">=0.0.1 <1.0.0" = + self.by-version."ecc-jsbn"."0.1.1"; + by-version."ecc-jsbn"."0.1.1" = self.buildNodePackage { + name = "ecc-jsbn-0.1.1"; + version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/each-async/-/each-async-1.1.1.tgz"; - name = "each-async-1.1.1.tgz"; - sha1 = "dee5229bdf0ab6ba2012a395e1b869abf8813473"; + url = "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; + name = "ecc-jsbn-0.1.1.tgz"; + sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; }; deps = { - "onetime-1.0.0" = self.by-version."onetime"."1.0.0"; - "set-immediate-shim-1.0.1" = self.by-version."set-immediate-shim"."1.0.1"; + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ecdsa-sig-formatter"."^1.0.0" = + self.by-version."ecdsa-sig-formatter"."1.0.5"; + by-version."ecdsa-sig-formatter"."1.0.5" = self.buildNodePackage { + name = "ecdsa-sig-formatter-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.5.tgz"; + name = "ecdsa-sig-formatter-1.0.5.tgz"; + sha1 = "0d0f32b638611f6b8f36ffd305a3e512ea5444e6"; + }; + deps = { + "base64-url-1.2.2" = self.by-version."base64-url"."1.2.2"; }; optionalDependencies = { }; @@ -11996,12 +13059,12 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ecurve/-/ecurve-1.0.0.tgz"; + url = "https://registry.npmjs.org/ecurve/-/ecurve-1.0.0.tgz"; name = "ecurve-1.0.0.tgz"; sha1 = "32cfd5ce5f421e9351206a33d4e3cfd36f3465a4"; }; deps = { - "bigi-1.4.0" = self.by-version."bigi"."1.4.0"; + "bigi-1.4.1" = self.by-version."bigi"."1.4.1"; }; optionalDependencies = { }; @@ -12009,35 +13072,43 @@ os = [ ]; cpu = [ ]; }; - by-spec."editor"."0.0.4" = - self.by-version."editor"."0.0.4"; - by-version."editor"."0.0.4" = self.buildNodePackage { - name = "editor-0.0.4"; - version = "0.0.4"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/editor/-/editor-0.0.4.tgz"; - name = "editor-0.0.4.tgz"; - sha1 = "478920f77bca6c1c1749d5e3edde4bd5966efda8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."editor"."~0.1.0" = - self.by-version."editor"."0.1.0"; - by-version."editor"."0.1.0" = self.buildNodePackage { - name = "editor-0.1.0"; - version = "0.1.0"; + by-spec."edit-google-spreadsheet".">=0.0.1" = + self.by-version."edit-google-spreadsheet"."0.2.21"; + by-version."edit-google-spreadsheet"."0.2.21" = self.buildNodePackage { + name = "edit-google-spreadsheet-0.2.21"; + version = "0.2.21"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/editor/-/editor-0.1.0.tgz"; - name = "editor-0.1.0.tgz"; - sha1 = "542f4662c6a8c88e862fc11945e204e51981b9a1"; + url = "https://registry.npmjs.org/edit-google-spreadsheet/-/edit-google-spreadsheet-0.2.21.tgz"; + name = "edit-google-spreadsheet-0.2.21.tgz"; + sha1 = "36a249bb2773c5642b8cba70c31bfb19b421eadc"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "google-auth-library-0.9.7" = self.by-version."google-auth-library"."0.9.7"; + "google-oauth-jwt-0.1.7" = self.by-version."google-oauth-jwt"."0.1.7"; + "googleclientlogin-0.2.8" = self.by-version."googleclientlogin"."0.2.8"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."editor"."~1.0.0" = + self.by-version."editor"."1.0.0"; + by-version."editor"."1.0.0" = self.buildNodePackage { + name = "editor-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/editor/-/editor-1.0.0.tgz"; + name = "editor-1.0.0.tgz"; + sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742"; }; deps = { }; @@ -12054,7 +13125,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ee-first/-/ee-first-1.0.3.tgz"; + url = "https://registry.npmjs.org/ee-first/-/ee-first-1.0.3.tgz"; name = "ee-first-1.0.3.tgz"; sha1 = "6c98c4089abecb5a7b85c1ac449aa603d3b3dabe"; }; @@ -12073,7 +13144,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ee-first/-/ee-first-1.0.5.tgz"; + url = "https://registry.npmjs.org/ee-first/-/ee-first-1.0.5.tgz"; name = "ee-first-1.0.5.tgz"; sha1 = "8c9b212898d8cd9f1a9436650ce7be202c9e9ff0"; }; @@ -12092,7 +13163,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz"; + url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.0.tgz"; name = "ee-first-1.1.0.tgz"; sha1 = "6a0d7c6221e490feefd92ec3f441c9ce8cd097f4"; }; @@ -12104,6 +13175,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."ee-first"."1.1.1" = + self.by-version."ee-first"."1.1.1"; + by-version."ee-first"."1.1.1" = self.buildNodePackage { + name = "ee-first-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz"; + name = "ee-first-1.1.1.tgz"; + sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."ejs"."0.7.1" = self.by-version."ejs"."0.7.1"; by-version."ejs"."0.7.1" = self.buildNodePackage { @@ -12111,7 +13201,7 @@ version = "0.7.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ejs/-/ejs-0.7.1.tgz"; + url = "https://registry.npmjs.org/ejs/-/ejs-0.7.1.tgz"; name = "ejs-0.7.1.tgz"; sha1 = "6dab41cbdee572986db328a2a8d22040f20fba7c"; }; @@ -12130,7 +13220,7 @@ version = "0.8.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ejs/-/ejs-0.8.3.tgz"; + url = "https://registry.npmjs.org/ejs/-/ejs-0.8.3.tgz"; name = "ejs-0.8.3.tgz"; sha1 = "db8aac47ff80a7df82b4c82c126fe8970870626f"; }; @@ -12143,15 +13233,15 @@ cpu = [ ]; }; by-spec."ejs".">=0.7.1" = - self.by-version."ejs"."2.3.1"; - by-version."ejs"."2.3.1" = self.buildNodePackage { - name = "ejs-2.3.1"; - version = "2.3.1"; + self.by-version."ejs"."2.4.1"; + by-version."ejs"."2.4.1" = self.buildNodePackage { + name = "ejs-2.4.1"; + version = "2.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ejs/-/ejs-2.3.1.tgz"; - name = "ejs-2.3.1.tgz"; - sha1 = "a697d98ac401e32a99c3deed92c60c19b6199a7f"; + url = "https://registry.npmjs.org/ejs/-/ejs-2.4.1.tgz"; + name = "ejs-2.4.1.tgz"; + sha1 = "82e15b1b2a1f948b18097476ba2bd7c66f4d1566"; }; deps = { }; @@ -12161,16 +13251,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."elementtree"."0.1.5" = - self.by-version."elementtree"."0.1.5"; - by-version."elementtree"."0.1.5" = self.buildNodePackage { - name = "elementtree-0.1.5"; - version = "0.1.5"; + by-spec."elementtree"."0.1.6" = + self.by-version."elementtree"."0.1.6"; + by-version."elementtree"."0.1.6" = self.buildNodePackage { + name = "elementtree-0.1.6"; + version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/elementtree/-/elementtree-0.1.5.tgz"; - name = "elementtree-0.1.5.tgz"; - sha1 = "8d5fd80440b4be806c4a01b63914b40e0daab9ff"; + url = "https://registry.npmjs.org/elementtree/-/elementtree-0.1.6.tgz"; + name = "elementtree-0.1.6.tgz"; + sha1 = "2ac4c46ea30516c8c4cbdb5e3ac7418e592de20c"; }; deps = { "sax-0.3.5" = self.by-version."sax"."0.3.5"; @@ -12181,21 +13271,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."elliptic"."^1.0.0" = - self.by-version."elliptic"."1.0.1"; - by-version."elliptic"."1.0.1" = self.buildNodePackage { - name = "elliptic-1.0.1"; - version = "1.0.1"; + by-spec."elementtree"."^0.1.6" = + self.by-version."elementtree"."0.1.6"; + by-spec."elliptic"."^6.0.0" = + self.by-version."elliptic"."6.2.3"; + by-version."elliptic"."6.2.3" = self.buildNodePackage { + name = "elliptic-6.2.3"; + version = "6.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/elliptic/-/elliptic-1.0.1.tgz"; - name = "elliptic-1.0.1.tgz"; - sha1 = "d180376b66a17d74995c837796362ac4d22aefe3"; + url = "https://registry.npmjs.org/elliptic/-/elliptic-6.2.3.tgz"; + name = "elliptic-6.2.3.tgz"; + sha1 = "18e46d7306b0951275a2d42063270a14b74ebe99"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; "brorand-1.0.5" = self.by-version."brorand"."1.0.5"; - "hash.js-1.0.2" = self.by-version."hash.js"."1.0.2"; + "hash.js-1.0.3" = self.by-version."hash.js"."1.0.3"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { @@ -12211,7 +13303,7 @@ version = "1.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/embedly/-/embedly-1.0.4.tgz"; + url = "https://registry.npmjs.org/embedly/-/embedly-1.0.4.tgz"; name = "embedly-1.0.4.tgz"; sha1 = "2f778885b44a3cf6c377c1dc31ce1321956733a6"; }; @@ -12247,43 +13339,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."empty-trash"."*" = - self.by-version."empty-trash"."1.1.3"; - by-version."empty-trash"."1.1.3" = self.buildNodePackage { - name = "empty-trash-1.1.3"; - version = "1.1.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/empty-trash/-/empty-trash-1.1.3.tgz"; - name = "empty-trash-1.1.3.tgz"; - sha1 = "41676c594d2786760bbfff0013ca5b865da56627"; - }; - deps = { - "meow-3.1.0" = self.by-version."meow"."3.1.0"; - "run-applescript-1.0.1" = self.by-version."run-applescript"."1.0.1"; - "update-notifier-0.3.2" = self.by-version."update-notifier"."0.3.2"; - "xdg-empty-trash-1.0.0" = self.by-version."xdg-empty-trash"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "empty-trash" = self.by-version."empty-trash"."1.1.3"; - by-spec."encoding"."~0.1.7" = - self.by-version."encoding"."0.1.11"; - by-version."encoding"."0.1.11" = self.buildNodePackage { - name = "encoding-0.1.11"; - version = "0.1.11"; + by-spec."encoding"."^0.1.11" = + self.by-version."encoding"."0.1.12"; + by-version."encoding"."0.1.12" = self.buildNodePackage { + name = "encoding-0.1.12"; + version = "0.1.12"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/encoding/-/encoding-0.1.11.tgz"; - name = "encoding-0.1.11.tgz"; - sha1 = "52c65ac15aab467f1338451e2615f988eccc0258"; + url = "https://registry.npmjs.org/encoding/-/encoding-0.1.12.tgz"; + name = "encoding-0.1.12.tgz"; + sha1 = "538b66f3ee62cd1ab51ec323829d1f9480c74beb"; }; deps = { - "iconv-lite-0.4.8" = self.by-version."iconv-lite"."0.4.8"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; }; optionalDependencies = { }; @@ -12291,6 +13359,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."encoding"."~0.1.7" = + self.by-version."encoding"."0.1.12"; by-spec."end-of-stream"."1.0.0" = self.by-version."end-of-stream"."1.0.0"; by-version."end-of-stream"."1.0.0" = self.buildNodePackage { @@ -12298,12 +13368,12 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz"; + url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz"; name = "end-of-stream-1.0.0.tgz"; sha1 = "d4596e702734a93e40e9af864319eabd99ff2f0e"; }; deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -12318,12 +13388,12 @@ version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz"; + url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz"; name = "end-of-stream-0.1.5.tgz"; sha1 = "8e177206c3c80837d85632e8b9359dfe8b2f6eaf"; }; deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -12338,12 +13408,12 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz"; + url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz"; name = "end-of-stream-1.1.0.tgz"; sha1 = "e9353258baa9108965efc41cb0ef8ade2f3cfb07"; }; deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -12357,6 +13427,25 @@ self.by-version."end-of-stream"."0.1.5"; by-spec."end-of-stream"."~1.0.0" = self.by-version."end-of-stream"."1.0.0"; + by-spec."ends-with"."^0.2.0" = + self.by-version."ends-with"."0.2.0"; + by-version."ends-with"."0.2.0" = self.buildNodePackage { + name = "ends-with-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz"; + name = "ends-with-0.2.0.tgz"; + sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."engine.io"."1.3.1" = self.by-version."engine.io"."1.3.1"; by-version."engine.io"."1.3.1" = self.buildNodePackage { @@ -12364,7 +13453,7 @@ version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz"; + url = "https://registry.npmjs.org/engine.io/-/engine.io-1.3.1.tgz"; name = "engine.io-1.3.1.tgz"; sha1 = "2d968308fffae5d17f5209b6775246e90d8a705e"; }; @@ -12380,22 +13469,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."engine.io"."1.5.1" = - self.by-version."engine.io"."1.5.1"; - by-version."engine.io"."1.5.1" = self.buildNodePackage { - name = "engine.io-1.5.1"; - version = "1.5.1"; + by-spec."engine.io"."1.6.8" = + self.by-version."engine.io"."1.6.8"; + by-version."engine.io"."1.6.8" = self.buildNodePackage { + name = "engine.io-1.6.8"; + version = "1.6.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io/-/engine.io-1.5.1.tgz"; - name = "engine.io-1.5.1.tgz"; - sha1 = "8f7a4b2aadf974b71ffd185cffe1e2bdf384ddfb"; + url = "https://registry.npmjs.org/engine.io/-/engine.io-1.6.8.tgz"; + name = "engine.io-1.6.8.tgz"; + sha1 = "de05a06b757e7517695e088c7b051c47819f511b"; }; deps = { - "debug-1.0.3" = self.by-version."debug"."1.0.3"; - "ws-0.5.0" = self.by-version."ws"."0.5.0"; - "engine.io-parser-1.2.1" = self.by-version."engine.io-parser"."1.2.1"; "base64id-0.1.0" = self.by-version."base64id"."0.1.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + "engine.io-parser-1.2.4" = self.by-version."engine.io-parser"."1.2.4"; + "accepts-1.1.4" = self.by-version."accepts"."1.1.4"; }; optionalDependencies = { }; @@ -12410,7 +13500,7 @@ version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz"; + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.3.1.tgz"; name = "engine.io-client-1.3.1.tgz"; sha1 = "1c5a65d5c5af6d04b44c22c3dbcd95c39ed1c989"; }; @@ -12433,29 +13523,30 @@ os = [ ]; cpu = [ ]; }; - by-spec."engine.io-client"."1.5.1" = - self.by-version."engine.io-client"."1.5.1"; - by-version."engine.io-client"."1.5.1" = self.buildNodePackage { - name = "engine.io-client-1.5.1"; - version = "1.5.1"; + by-spec."engine.io-client"."1.6.8" = + self.by-version."engine.io-client"."1.6.8"; + by-version."engine.io-client"."1.6.8" = self.buildNodePackage { + name = "engine.io-client-1.6.8"; + version = "1.6.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-client/-/engine.io-client-1.5.1.tgz"; - name = "engine.io-client-1.5.1.tgz"; - sha1 = "ecd0026d90b065169b9885960183f3d56b8da18e"; + url = "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.6.8.tgz"; + name = "engine.io-client-1.6.8.tgz"; + sha1 = "6e2db11648b45e405c46b172ea3e3dac37cc0ceb"; }; deps = { - "has-cors-1.0.3" = self.by-version."has-cors"."1.0.3"; - "ws-0.4.31" = self.by-version."ws"."0.4.31"; - "xmlhttprequest-1.5.0" = self.by-version."xmlhttprequest"."1.5.0"; + "has-cors-1.1.0" = self.by-version."has-cors"."1.1.0"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + "xmlhttprequest-ssl-1.5.1" = self.by-version."xmlhttprequest-ssl"."1.5.1"; "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; - "engine.io-parser-1.2.1" = self.by-version."engine.io-parser"."1.2.1"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; + "engine.io-parser-1.2.4" = self.by-version."engine.io-parser"."1.2.4"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "parseuri-0.0.4" = self.by-version."parseuri"."0.0.4"; "parsejson-0.0.1" = self.by-version."parsejson"."0.0.1"; "parseqs-0.0.2" = self.by-version."parseqs"."0.0.2"; "component-inherit-0.0.3" = self.by-version."component-inherit"."0.0.3"; + "yeast-0.1.2" = self.by-version."yeast"."0.1.2"; }; optionalDependencies = { }; @@ -12470,7 +13561,7 @@ version = "1.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz"; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.0.6.tgz"; name = "engine.io-parser-1.0.6.tgz"; sha1 = "d38813143a411cb3b914132ab05bf99e6f7a248e"; }; @@ -12487,24 +13578,24 @@ os = [ ]; cpu = [ ]; }; - by-spec."engine.io-parser"."1.2.1" = - self.by-version."engine.io-parser"."1.2.1"; - by-version."engine.io-parser"."1.2.1" = self.buildNodePackage { - name = "engine.io-parser-1.2.1"; - version = "1.2.1"; + by-spec."engine.io-parser"."1.2.4" = + self.by-version."engine.io-parser"."1.2.4"; + by-version."engine.io-parser"."1.2.4" = self.buildNodePackage { + name = "engine.io-parser-1.2.4"; + version = "1.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.1.tgz"; - name = "engine.io-parser-1.2.1.tgz"; - sha1 = "4462a67d0c70a907c06db2e1de53791a86f5ab37"; + url = "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.4.tgz"; + name = "engine.io-parser-1.2.4.tgz"; + sha1 = "e0897b0bf14e792d4cd2a5950553919c56948c42"; }; deps = { "after-0.8.1" = self.by-version."after"."0.8.1"; "arraybuffer.slice-0.0.6" = self.by-version."arraybuffer.slice"."0.0.6"; "base64-arraybuffer-0.1.2" = self.by-version."base64-arraybuffer"."0.1.2"; - "blob-0.0.2" = self.by-version."blob"."0.0.2"; - "has-binary-0.1.5" = self.by-version."has-binary"."0.1.5"; - "utf8-2.0.0" = self.by-version."utf8"."2.0.0"; + "blob-0.0.4" = self.by-version."blob"."0.0.4"; + "has-binary-0.1.6" = self.by-version."has-binary"."0.1.6"; + "utf8-2.1.0" = self.by-version."utf8"."2.1.0"; }; optionalDependencies = { }; @@ -12512,21 +13603,65 @@ os = [ ]; cpu = [ ]; }; - by-spec."enhanced-resolve"."~0.8.2" = - self.by-version."enhanced-resolve"."0.8.5"; - by-version."enhanced-resolve"."0.8.5" = self.buildNodePackage { - name = "enhanced-resolve-0.8.5"; - version = "0.8.5"; + by-spec."enhanced-resolve"."^0.9.1" = + self.by-version."enhanced-resolve"."0.9.1"; + by-version."enhanced-resolve"."0.9.1" = self.buildNodePackage { + name = "enhanced-resolve-0.9.1"; + version = "0.9.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.8.5.tgz"; - name = "enhanced-resolve-0.8.5.tgz"; - sha1 = "cf0a05c2d186969e1681963e59593ffdd8a4362c"; + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-0.9.1.tgz"; + name = "enhanced-resolve-0.9.1.tgz"; + sha1 = "4d6e689b3725f86090927ccc86cd9f1635b89e2e"; }; deps = { - "tapable-0.1.9" = self.by-version."tapable"."0.1.9"; + "tapable-0.1.10" = self.by-version."tapable"."0.1.10"; "memory-fs-0.2.0" = self.by-version."memory-fs"."0.2.0"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."enhanced-resolve"."^2.2.0" = + self.by-version."enhanced-resolve"."2.2.2"; + by-version."enhanced-resolve"."2.2.2" = self.buildNodePackage { + name = "enhanced-resolve-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-2.2.2.tgz"; + name = "enhanced-resolve-2.2.2.tgz"; + sha1 = "4da494d591183308bd46a95f5b40e255dc9d4a16"; + }; + deps = { + "tapable-0.2.4" = self.by-version."tapable"."0.2.4"; + "memory-fs-0.3.0" = self.by-version."memory-fs"."0.3.0"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."enhanced-resolve"."~0.9.0" = + self.by-version."enhanced-resolve"."0.9.1"; + by-spec."ent"."~2.2.0" = + self.by-version."ent"."2.2.0"; + by-version."ent"."2.2.0" = self.buildNodePackage { + name = "ent-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz"; + name = "ent-2.2.0.tgz"; + sha1 = "e964219325a21d05f44466a2f686ed6ce5f5dd1d"; + }; + deps = { }; optionalDependencies = { }; @@ -12541,7 +13676,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; + url = "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz"; name = "entities-1.0.0.tgz"; sha1 = "b2987aa3821347fcde642b24fdfc9e4fb712bf26"; }; @@ -12553,14 +13688,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."entities"."~1.1.1" = + by-spec."entities"."^1.1.1" = self.by-version."entities"."1.1.1"; by-version."entities"."1.1.1" = self.buildNodePackage { name = "entities-1.1.1"; version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/entities/-/entities-1.1.1.tgz"; + url = "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz"; name = "entities-1.1.1.tgz"; sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0"; }; @@ -12572,37 +13707,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."envify"."^3.0.0" = - self.by-version."envify"."3.4.0"; - by-version."envify"."3.4.0" = self.buildNodePackage { - name = "envify-3.4.0"; - version = "3.4.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/envify/-/envify-3.4.0.tgz"; - name = "envify-3.4.0.tgz"; - sha1 = "a0bed52222529076a02fabf6ce00eef42d7b6734"; - }; - deps = { - "through-2.3.7" = self.by-version."through"."2.3.7"; - "jstransform-10.1.0" = self.by-version."jstransform"."10.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + by-spec."entities"."~1.1.1" = + self.by-version."entities"."1.1.1"; by-spec."errno"."^0.1.1" = - self.by-version."errno"."0.1.2"; - by-version."errno"."0.1.2" = self.buildNodePackage { - name = "errno-0.1.2"; - version = "0.1.2"; + self.by-version."errno"."0.1.4"; + by-version."errno"."0.1.4" = self.buildNodePackage { + name = "errno-0.1.4"; + version = "0.1.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/errno/-/errno-0.1.2.tgz"; - name = "errno-0.1.2.tgz"; - sha1 = "ec94dac3794a92cec9e1f08502b165933a805808"; + url = "https://registry.npmjs.org/errno/-/errno-0.1.4.tgz"; + name = "errno-0.1.4.tgz"; + sha1 = "b896e23a9e5e8ba33871fc996abd3635fc9a1c7d"; }; deps = { "prr-0.0.0" = self.by-version."prr"."0.0.0"; @@ -12613,8 +13729,30 @@ os = [ ]; cpu = [ ]; }; + by-spec."errno"."^0.1.3" = + self.by-version."errno"."0.1.4"; by-spec."errno"."~0.1.1" = - self.by-version."errno"."0.1.2"; + self.by-version."errno"."0.1.4"; + by-spec."error-ex"."^1.2.0" = + self.by-version."error-ex"."1.3.0"; + by-version."error-ex"."1.3.0" = self.buildNodePackage { + name = "error-ex-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz"; + name = "error-ex-1.3.0.tgz"; + sha1 = "e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"; + }; + deps = { + "is-arrayish-0.2.1" = self.by-version."is-arrayish"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."errorhandler"."1.0.0" = self.by-version."errorhandler"."1.0.0"; by-version."errorhandler"."1.0.0" = self.buildNodePackage { @@ -12622,7 +13760,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/errorhandler/-/errorhandler-1.0.0.tgz"; + url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.0.0.tgz"; name = "errorhandler-1.0.0.tgz"; sha1 = "d74b37e8dc38c99afb3f5a79edcebaea022d042a"; }; @@ -12641,7 +13779,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/errorhandler/-/errorhandler-1.1.1.tgz"; + url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.1.1.tgz"; name = "errorhandler-1.1.1.tgz"; sha1 = "18defd436d8ca2efe0a2d886c5c4d6ee6d76d691"; }; @@ -12656,19 +13794,19 @@ cpu = [ ]; }; by-spec."errorhandler"."^1.1.1" = - self.by-version."errorhandler"."1.3.5"; - by-version."errorhandler"."1.3.5" = self.buildNodePackage { - name = "errorhandler-1.3.5"; - version = "1.3.5"; + self.by-version."errorhandler"."1.4.3"; + by-version."errorhandler"."1.4.3" = self.buildNodePackage { + name = "errorhandler-1.4.3"; + version = "1.4.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/errorhandler/-/errorhandler-1.3.5.tgz"; - name = "errorhandler-1.3.5.tgz"; - sha1 = "4ef655dd2c30e1fc1bf9c24805fa34ba20d4f69a"; + url = "https://registry.npmjs.org/errorhandler/-/errorhandler-1.4.3.tgz"; + name = "errorhandler-1.4.3.tgz"; + sha1 = "b7b70ed8f359e9db88092f2d20c0f831420ad83f"; }; deps = { - "accepts-1.2.5" = self.by-version."accepts"."1.2.5"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; + "accepts-1.3.2" = self.by-version."accepts"."1.3.2"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; }; optionalDependencies = { }; @@ -12676,31 +13814,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."errorhandler"."~1.2.0" = - self.by-version."errorhandler"."1.2.4"; - by-version."errorhandler"."1.2.4" = self.buildNodePackage { - name = "errorhandler-1.2.4"; - version = "1.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/errorhandler/-/errorhandler-1.2.4.tgz"; - name = "errorhandler-1.2.4.tgz"; - sha1 = "4726630d6c6c2c11a7cd589b7376f7336473d6aa"; - }; - deps = { - "accepts-1.1.4" = self.by-version."accepts"."1.1.4"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."errorhandler"."~1.2.2" = - self.by-version."errorhandler"."1.2.4"; - by-spec."errorhandler"."~1.3.5" = - self.by-version."errorhandler"."1.3.5"; + by-spec."errorhandler"."~1.4.2" = + self.by-version."errorhandler"."1.4.3"; by-spec."errs"."0.3.x" = self.by-version."errs"."0.3.2"; by-version."errs"."0.3.2" = self.buildNodePackage { @@ -12708,7 +13823,7 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/errs/-/errs-0.3.2.tgz"; + url = "https://registry.npmjs.org/errs/-/errs-0.3.2.tgz"; name = "errs-0.3.2.tgz"; sha1 = "798099b2dbd37ca2bc749e538a7c1307d0b50499"; }; @@ -12720,20 +13835,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."es5-ext"."~0.10.2" = - self.by-version."es5-ext"."0.10.6"; - by-version."es5-ext"."0.10.6" = self.buildNodePackage { - name = "es5-ext-0.10.6"; - version = "0.10.6"; + by-spec."es5-ext"."^0.10.7" = + self.by-version."es5-ext"."0.10.11"; + by-version."es5-ext"."0.10.11" = self.buildNodePackage { + name = "es5-ext-0.10.11"; + version = "0.10.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es5-ext/-/es5-ext-0.10.6.tgz"; - name = "es5-ext-0.10.6.tgz"; - sha1 = "e27d5750401a11c08259e3b9b5d3bdd3281df00a"; + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.11.tgz"; + name = "es5-ext-0.10.11.tgz"; + sha1 = "8184c3e705a820948c2dbe043849379b1dbd0c45"; }; deps = { - "es6-iterator-0.1.3" = self.by-version."es6-iterator"."0.1.3"; - "es6-symbol-2.0.1" = self.by-version."es6-symbol"."2.0.1"; + "es6-iterator-2.0.0" = self.by-version."es6-iterator"."2.0.0"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; }; optionalDependencies = { }; @@ -12741,27 +13856,115 @@ os = [ ]; cpu = [ ]; }; - by-spec."es5-ext"."~0.10.4" = - self.by-version."es5-ext"."0.10.6"; - by-spec."es5-ext"."~0.10.5" = - self.by-version."es5-ext"."0.10.6"; - by-spec."es5-ext"."~0.10.6" = - self.by-version."es5-ext"."0.10.6"; - by-spec."es6-iterator"."~0.1.3" = - self.by-version."es6-iterator"."0.1.3"; - by-version."es6-iterator"."0.1.3" = self.buildNodePackage { - name = "es6-iterator-0.1.3"; - version = "0.1.3"; + by-spec."es5-ext"."^0.10.8" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es5-ext"."~0.10.10" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es5-ext"."~0.10.11" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es5-ext"."~0.10.2" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es5-ext"."~0.10.7" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es5-ext"."~0.10.8" = + self.by-version."es5-ext"."0.10.11"; + by-spec."es6-collections"."^0.5.5" = + self.by-version."es6-collections"."0.5.6"; + by-version."es6-collections"."0.5.6" = self.buildNodePackage { + name = "es6-collections-0.5.6"; + version = "0.5.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-iterator/-/es6-iterator-0.1.3.tgz"; - name = "es6-iterator-0.1.3.tgz"; - sha1 = "d6f58b8c4fc413c249b4baa19768f8e4d7c8944e"; + url = "https://registry.npmjs.org/es6-collections/-/es6-collections-0.5.6.tgz"; + name = "es6-collections-0.5.6.tgz"; + sha1 = "5552e800ad12c1820cda2bd4a79ae7dbb03d89a2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."es6-iterator"."2" = + self.by-version."es6-iterator"."2.0.0"; + by-version."es6-iterator"."2.0.0" = self.buildNodePackage { + name = "es6-iterator-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz"; + name = "es6-iterator-2.0.0.tgz"; + sha1 = "bd968567d61635e33c0b80727613c9cb4b096bac"; }; deps = { "d-0.1.1" = self.by-version."d"."0.1.1"; - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - "es6-symbol-2.0.1" = self.by-version."es6-symbol"."2.0.1"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."es6-map"."^0.1.3" = + self.by-version."es6-map"."0.1.3"; + by-version."es6-map"."0.1.3" = self.buildNodePackage { + name = "es6-map-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.3.tgz"; + name = "es6-map-0.1.3.tgz"; + sha1 = "fe58c6654c6acd54e4397cdb72379d59b6ad5894"; + }; + deps = { + "d-0.1.1" = self.by-version."d"."0.1.1"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; + "es6-iterator-2.0.0" = self.by-version."es6-iterator"."2.0.0"; + "es6-set-0.1.4" = self.by-version."es6-set"."0.1.4"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; + "event-emitter-0.3.4" = self.by-version."event-emitter"."0.3.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."es6-promise"."2.1.1" = + self.by-version."es6-promise"."2.1.1"; + by-version."es6-promise"."2.1.1" = self.buildNodePackage { + name = "es6-promise-2.1.1"; + version = "2.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.1.1.tgz"; + name = "es6-promise-2.1.1.tgz"; + sha1 = "03e8f3c7297928e5478d6ab1d0643251507bdedd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."es6-promise"."3.0.2" = + self.by-version."es6-promise"."3.0.2"; + by-version."es6-promise"."3.0.2" = self.buildNodePackage { + name = "es6-promise-3.0.2"; + version = "3.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz"; + name = "es6-promise-3.0.2.tgz"; + sha1 = "010d5858423a5f118979665f46486a95c6ee2bb6"; + }; + deps = { }; optionalDependencies = { }; @@ -12770,15 +13973,15 @@ cpu = [ ]; }; by-spec."es6-promise"."^2.0.0" = - self.by-version."es6-promise"."2.1.0"; - by-version."es6-promise"."2.1.0" = self.buildNodePackage { - name = "es6-promise-2.1.0"; - version = "2.1.0"; + self.by-version."es6-promise"."2.3.0"; + by-version."es6-promise"."2.3.0" = self.buildNodePackage { + name = "es6-promise-2.3.0"; + version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-promise/-/es6-promise-2.1.0.tgz"; - name = "es6-promise-2.1.0.tgz"; - sha1 = "ff979910a05a884c0557edc40e6d9c26fe38167a"; + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-2.3.0.tgz"; + name = "es6-promise-2.3.0.tgz"; + sha1 = "96edb9f2fdb01995822b263dd8aadab6748181bc"; }; deps = { }; @@ -12788,6 +13991,49 @@ os = [ ]; cpu = [ ]; }; + by-spec."es6-promise"."^3.0.2" = + self.by-version."es6-promise"."3.1.2"; + by-version."es6-promise"."3.1.2" = self.buildNodePackage { + name = "es6-promise-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-promise/-/es6-promise-3.1.2.tgz"; + name = "es6-promise-3.1.2.tgz"; + sha1 = "795e25ceb47f7babb263d151afbedd92d18e6a07"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."es6-set"."~0.1.3" = + self.by-version."es6-set"."0.1.4"; + by-version."es6-set"."0.1.4" = self.buildNodePackage { + name = "es6-set-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.4.tgz"; + name = "es6-set-0.1.4.tgz"; + sha1 = "9516b6761c2964b92ff479456233a247dc707ce8"; + }; + deps = { + "d-0.1.1" = self.by-version."d"."0.1.1"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; + "es6-iterator-2.0.0" = self.by-version."es6-iterator"."2.0.0"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; + "event-emitter-0.3.4" = self.by-version."event-emitter"."0.3.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."es6-shim"."0.21.x" = self.by-version."es6-shim"."0.21.1"; by-version."es6-shim"."0.21.1" = self.buildNodePackage { @@ -12795,7 +14041,7 @@ version = "0.21.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-shim/-/es6-shim-0.21.1.tgz"; + url = "https://registry.npmjs.org/es6-shim/-/es6-shim-0.21.1.tgz"; name = "es6-shim-0.21.1.tgz"; sha1 = "6621bce72e1ac80a6e1f002abd4e789f12489fd2"; }; @@ -12808,15 +14054,15 @@ cpu = [ ]; }; by-spec."es6-shim".">=0.10.0 <1.0.0-0" = - self.by-version."es6-shim"."0.28.1"; - by-version."es6-shim"."0.28.1" = self.buildNodePackage { - name = "es6-shim-0.28.1"; - version = "0.28.1"; + self.by-version."es6-shim"."0.35.0"; + by-version."es6-shim"."0.35.0" = self.buildNodePackage { + name = "es6-shim-0.35.0"; + version = "0.35.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-shim/-/es6-shim-0.28.1.tgz"; - name = "es6-shim-0.28.1.tgz"; - sha1 = "f59d122a42b810c085fa6b0340e365578a5739ea"; + url = "https://registry.npmjs.org/es6-shim/-/es6-shim-0.35.0.tgz"; + name = "es6-shim-0.35.0.tgz"; + sha1 = "272d927950889eabe299927cdc9c0010b7bfc00a"; }; deps = { }; @@ -12826,18 +14072,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."es6-shim"."~0.16.0" = - self.by-version."es6-shim"."0.16.0"; - by-version."es6-shim"."0.16.0" = self.buildNodePackage { - name = "es6-shim-0.16.0"; - version = "0.16.0"; + by-spec."es6-symbol"."3" = + self.by-version."es6-symbol"."3.0.2"; + by-version."es6-symbol"."3.0.2" = self.buildNodePackage { + name = "es6-symbol-3.0.2"; + version = "3.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-shim/-/es6-shim-0.16.0.tgz"; - name = "es6-shim-0.16.0.tgz"; - sha1 = "07e122909722d0fce581b17f64d1505c98094454"; + url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.0.2.tgz"; + name = "es6-symbol-3.0.2.tgz"; + sha1 = "1e928878c6f5e63541625b4bb4df4af07d154219"; }; deps = { + "d-0.1.1" = self.by-version."d"."0.1.1"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; }; optionalDependencies = { }; @@ -12845,43 +14093,28 @@ os = [ ]; cpu = [ ]; }; - by-spec."es6-symbol"."~2.0.1" = - self.by-version."es6-symbol"."2.0.1"; - by-version."es6-symbol"."2.0.1" = self.buildNodePackage { - name = "es6-symbol-2.0.1"; + by-spec."es6-symbol"."^3.0.2" = + self.by-version."es6-symbol"."3.0.2"; + by-spec."es6-symbol"."~3.0.1" = + self.by-version."es6-symbol"."3.0.2"; + by-spec."es6-symbol"."~3.0.2" = + self.by-version."es6-symbol"."3.0.2"; + by-spec."es6-weak-map"."^2.0.1" = + self.by-version."es6-weak-map"."2.0.1"; + by-version."es6-weak-map"."2.0.1" = self.buildNodePackage { + name = "es6-weak-map-2.0.1"; version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/es6-symbol/-/es6-symbol-2.0.1.tgz"; - name = "es6-symbol-2.0.1.tgz"; - sha1 = "761b5c67cfd4f1d18afb234f691d678682cb3bf3"; + url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.1.tgz"; + name = "es6-weak-map-2.0.1.tgz"; + sha1 = "0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81"; }; deps = { "d-0.1.1" = self.by-version."d"."0.1.1"; - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."es6-weak-map"."~0.1.2" = - self.by-version."es6-weak-map"."0.1.4"; - by-version."es6-weak-map"."0.1.4" = self.buildNodePackage { - name = "es6-weak-map-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/es6-weak-map/-/es6-weak-map-0.1.4.tgz"; - name = "es6-weak-map-0.1.4.tgz"; - sha1 = "706cef9e99aa236ba7766c239c8b9e286ea7d228"; - }; - deps = { - "d-0.1.1" = self.by-version."d"."0.1.1"; - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - "es6-iterator-0.1.3" = self.by-version."es6-iterator"."0.1.3"; - "es6-symbol-2.0.1" = self.by-version."es6-symbol"."2.0.1"; + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; + "es6-iterator-2.0.0" = self.by-version."es6-iterator"."2.0.0"; + "es6-symbol-3.0.2" = self.by-version."es6-symbol"."3.0.2"; }; optionalDependencies = { }; @@ -12890,13 +14123,33 @@ cpu = [ ]; }; by-spec."escape-html"."*" = + self.by-version."escape-html"."1.0.3"; + by-version."escape-html"."1.0.3" = self.buildNodePackage { + name = "escape-html-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz"; + name = "escape-html-1.0.3.tgz"; + sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "escape-html" = self.by-version."escape-html"."1.0.3"; + by-spec."escape-html"."1.0.1" = self.by-version."escape-html"."1.0.1"; by-version."escape-html"."1.0.1" = self.buildNodePackage { name = "escape-html-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-html/-/escape-html-1.0.1.tgz"; + url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.1.tgz"; name = "escape-html-1.0.1.tgz"; sha1 = "181a286ead397a39a92857cfb1d43052e356bff0"; }; @@ -12908,19 +14161,16 @@ os = [ ]; cpu = [ ]; }; - "escape-html" = self.by-version."escape-html"."1.0.1"; - by-spec."escape-html"."1.0.1" = - self.by-version."escape-html"."1.0.1"; - by-spec."escape-regexp-component"."^1.0.2" = - self.by-version."escape-regexp-component"."1.0.2"; - by-version."escape-regexp-component"."1.0.2" = self.buildNodePackage { - name = "escape-regexp-component-1.0.2"; + by-spec."escape-html"."1.0.2" = + self.by-version."escape-html"."1.0.2"; + by-version."escape-html"."1.0.2" = self.buildNodePackage { + name = "escape-html-1.0.2"; version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz"; - name = "escape-regexp-component-1.0.2.tgz"; - sha1 = "9c63b6d0b25ff2a88c3adbd18c5b61acc3b9faa2"; + url = "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz"; + name = "escape-html-1.0.2.tgz"; + sha1 = "d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c"; }; deps = { }; @@ -12930,16 +14180,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."escape-string-applescript"."^1.0.0" = - self.by-version."escape-string-applescript"."1.0.0"; - by-version."escape-string-applescript"."1.0.0" = self.buildNodePackage { - name = "escape-string-applescript-1.0.0"; - version = "1.0.0"; + by-spec."escape-html"."~1.0.3" = + self.by-version."escape-html"."1.0.3"; + by-spec."escape-regexp-component"."^1.0.2" = + self.by-version."escape-regexp-component"."1.0.2"; + by-version."escape-regexp-component"."1.0.2" = self.buildNodePackage { + name = "escape-regexp-component-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-string-applescript/-/escape-string-applescript-1.0.0.tgz"; - name = "escape-string-applescript-1.0.0.tgz"; - sha1 = "6f1c2294245d82c63bc03338dc19a94aa8428892"; + url = "https://registry.npmjs.org/escape-regexp-component/-/escape-regexp-component-1.0.2.tgz"; + name = "escape-regexp-component-1.0.2.tgz"; + sha1 = "9c63b6d0b25ff2a88c3adbd18c5b61acc3b9faa2"; }; deps = { }; @@ -12956,7 +14208,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz"; + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz"; name = "escape-string-regexp-1.0.2.tgz"; sha1 = "4dbc2fe674e71949caf3fb2695ce7f2dc1d9a8d1"; }; @@ -12969,15 +14221,15 @@ cpu = [ ]; }; by-spec."escape-string-regexp"."^1.0.0" = - self.by-version."escape-string-regexp"."1.0.3"; - by-version."escape-string-regexp"."1.0.3" = self.buildNodePackage { - name = "escape-string-regexp-1.0.3"; - version = "1.0.3"; + self.by-version."escape-string-regexp"."1.0.5"; + by-version."escape-string-regexp"."1.0.5" = self.buildNodePackage { + name = "escape-string-regexp-1.0.5"; + version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz"; - name = "escape-string-regexp-1.0.3.tgz"; - sha1 = "9e2d8b25bc2555c3336723750e03f099c2735bb5"; + url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; + name = "escape-string-regexp-1.0.5.tgz"; + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; }; deps = { }; @@ -12988,76 +14240,35 @@ cpu = [ ]; }; by-spec."escape-string-regexp"."^1.0.2" = - self.by-version."escape-string-regexp"."1.0.3"; - by-spec."escodegen"."0.0.15" = - self.by-version."escodegen"."0.0.15"; - by-version."escodegen"."0.0.15" = self.buildNodePackage { - name = "escodegen-0.0.15"; - version = "0.0.15"; + self.by-version."escape-string-regexp"."1.0.5"; + by-spec."escodegen"."1.8.x" = + self.by-version."escodegen"."1.8.0"; + by-version."escodegen"."1.8.0" = self.buildNodePackage { + name = "escodegen-1.8.0"; + version = "1.8.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/escodegen/-/escodegen-0.0.15.tgz"; - name = "escodegen-0.0.15.tgz"; - sha1 = "ffda9cb26b70b34f7cc19f1d88756539afb543bd"; - }; - deps = { - "esprima-2.2.0" = self.by-version."esprima"."2.2.0"; - }; - optionalDependencies = { - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."escodegen"."0.0.17" = - self.by-version."escodegen"."0.0.17"; - by-version."escodegen"."0.0.17" = self.buildNodePackage { - name = "escodegen-0.0.17"; - version = "0.0.17"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/escodegen/-/escodegen-0.0.17.tgz"; - name = "escodegen-0.0.17.tgz"; - sha1 = "1e78d17df1004fd7a88f2fed3b8b8592f3217f9c"; - }; - deps = { - "esprima-1.0.4" = self.by-version."esprima"."1.0.4"; - "estraverse-0.0.4" = self.by-version."estraverse"."0.0.4"; - }; - optionalDependencies = { - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."escodegen"."1.6.x" = - self.by-version."escodegen"."1.6.1"; - by-version."escodegen"."1.6.1" = self.buildNodePackage { - name = "escodegen-1.6.1"; - version = "1.6.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/escodegen/-/escodegen-1.6.1.tgz"; - name = "escodegen-1.6.1.tgz"; - sha1 = "367de17d8510540d12bc6dcb8b3f918391265815"; + url = "https://registry.npmjs.org/escodegen/-/escodegen-1.8.0.tgz"; + name = "escodegen-1.8.0.tgz"; + sha1 = "b246aae829ce73d59e2c55727359edd1c130a81b"; }; deps = { "estraverse-1.9.3" = self.by-version."estraverse"."1.9.3"; - "esutils-1.1.6" = self.by-version."esutils"."1.1.6"; - "esprima-1.2.5" = self.by-version."esprima"."1.2.5"; - "optionator-0.5.0" = self.by-version."optionator"."0.5.0"; + "esutils-2.0.2" = self.by-version."esutils"."2.0.2"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; + "optionator-0.8.1" = self.by-version."optionator"."0.8.1"; }; optionalDependencies = { - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + "source-map-0.2.0" = self.by-version."source-map"."0.2.0"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."escodegen"."^1.4.1" = - self.by-version."escodegen"."1.6.1"; + by-spec."escodegen"."^1.6.1" = + self.by-version."escodegen"."1.8.0"; + by-spec."escodegen"."^1.8.0" = + self.by-version."escodegen"."1.8.0"; by-spec."escodegen"."~1.3.1" = self.by-version."escodegen"."1.3.3"; by-version."escodegen"."1.3.3" = self.buildNodePackage { @@ -13065,7 +14276,7 @@ version = "1.3.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz"; + url = "https://registry.npmjs.org/escodegen/-/escodegen-1.3.3.tgz"; name = "escodegen-1.3.3.tgz"; sha1 = "f024016f5a88e046fd12005055e939802e6c5f23"; }; @@ -13081,19 +14292,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."escope"."~0.0.13" = - self.by-version."escope"."0.0.16"; - by-version."escope"."0.0.16" = self.buildNodePackage { - name = "escope-0.0.16"; - version = "0.0.16"; + by-spec."escope"."^3.6.0" = + self.by-version."escope"."3.6.0"; + by-version."escope"."3.6.0" = self.buildNodePackage { + name = "escope-3.6.0"; + version = "3.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/escope/-/escope-0.0.16.tgz"; - name = "escope-0.0.16.tgz"; - sha1 = "418c7a0afca721dafe659193fd986283e746538f"; + url = "https://registry.npmjs.org/escope/-/escope-3.6.0.tgz"; + name = "escope-3.6.0.tgz"; + sha1 = "e01975e812781a163a6dadfdd80398dc64c889c3"; }; deps = { - "estraverse-3.1.0" = self.by-version."estraverse"."3.1.0"; + "es6-map-0.1.3" = self.by-version."es6-map"."0.1.3"; + "es6-weak-map-2.0.1" = self.by-version."es6-weak-map"."2.0.1"; + "esrecurse-4.1.0" = self.by-version."esrecurse"."4.1.0"; + "estraverse-4.2.0" = self.by-version."estraverse"."4.2.0"; }; optionalDependencies = { }; @@ -13101,18 +14315,50 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima"."1.0.2" = - self.by-version."esprima"."1.0.2"; - by-version."esprima"."1.0.2" = self.buildNodePackage { - name = "esprima-1.0.2"; - version = "1.0.2"; + by-spec."eslint"."*" = + self.by-version."eslint"."2.7.0"; + by-version."eslint"."2.7.0" = self.buildNodePackage { + name = "eslint-2.7.0"; + version = "2.7.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-1.0.2.tgz"; - name = "esprima-1.0.2.tgz"; - sha1 = "8039bf9ceac4d9d2c15f623264fb292b5502ceaf"; + url = "https://registry.npmjs.org/eslint/-/eslint-2.7.0.tgz"; + name = "eslint-2.7.0.tgz"; + sha1 = "b02ac247d13ec45ea5b44a3c383ddb6feda08b00"; }; deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "doctrine-1.2.1" = self.by-version."doctrine"."1.2.1"; + "es6-map-0.1.3" = self.by-version."es6-map"."0.1.3"; + "escope-3.6.0" = self.by-version."escope"."3.6.0"; + "espree-3.1.3" = self.by-version."espree"."3.1.3"; + "estraverse-4.2.0" = self.by-version."estraverse"."4.2.0"; + "esutils-2.0.2" = self.by-version."esutils"."2.0.2"; + "file-entry-cache-1.2.4" = self.by-version."file-entry-cache"."1.2.4"; + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + "globals-9.4.0" = self.by-version."globals"."9.4.0"; + "ignore-3.0.14" = self.by-version."ignore"."3.0.14"; + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; + "inquirer-0.12.0" = self.by-version."inquirer"."0.12.0"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; + "is-resolvable-1.0.0" = self.by-version."is-resolvable"."1.0.0"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "json-stable-stringify-1.0.1" = self.by-version."json-stable-stringify"."1.0.1"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "optionator-0.8.1" = self.by-version."optionator"."0.8.1"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "path-is-inside-1.0.1" = self.by-version."path-is-inside"."1.0.1"; + "pluralize-1.2.1" = self.by-version."pluralize"."1.2.1"; + "progress-1.1.8" = self.by-version."progress"."1.1.8"; + "require-uncached-1.0.2" = self.by-version."require-uncached"."1.0.2"; + "shelljs-0.6.0" = self.by-version."shelljs"."0.6.0"; + "strip-json-comments-1.0.4" = self.by-version."strip-json-comments"."1.0.4"; + "table-3.7.8" = self.by-version."table"."3.7.8"; + "text-table-0.2.0" = self.by-version."text-table"."0.2.0"; + "user-home-2.0.0" = self.by-version."user-home"."2.0.0"; }; optionalDependencies = { }; @@ -13120,73 +14366,40 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima"."2.1.x" = - self.by-version."esprima"."2.1.0"; - by-version."esprima"."2.1.0" = self.buildNodePackage { - name = "esprima-2.1.0"; - version = "2.1.0"; + "eslint" = self.by-version."eslint"."2.7.0"; + by-spec."eslint".">0.7.3" = + self.by-version."eslint"."2.7.0"; + by-spec."espree"."3.1.3" = + self.by-version."espree"."3.1.3"; + by-version."espree"."3.1.3" = self.buildNodePackage { + name = "espree-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/espree/-/espree-3.1.3.tgz"; + name = "espree-3.1.3.tgz"; + sha1 = "a77ca630986c19b74d95541b845298cd6faa228c"; + }; + deps = { + "acorn-3.0.4" = self.by-version."acorn"."3.0.4"; + "acorn-jsx-2.0.1" = self.by-version."acorn-jsx"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."esprima"."2.7.x" = + self.by-version."esprima"."2.7.2"; + by-version."esprima"."2.7.2" = self.buildNodePackage { + name = "esprima-2.7.2"; + version = "2.7.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-2.1.0.tgz"; - name = "esprima-2.1.0.tgz"; - sha1 = "c1c9fb94975dfcc3fc71c60f074f3c5156a28ef5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima".">= 1.0.0" = - self.by-version."esprima"."2.2.0"; - by-version."esprima"."2.2.0" = self.buildNodePackage { - name = "esprima-2.2.0"; - version = "2.2.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-2.2.0.tgz"; - name = "esprima-2.2.0.tgz"; - sha1 = "4292c1d68e4173d815fa2290dc7afc96d81fcd83"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima"."^1.2.2" = - self.by-version."esprima"."1.2.5"; - by-version."esprima"."1.2.5" = self.buildNodePackage { - name = "esprima-1.2.5"; - version = "1.2.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz"; - name = "esprima-1.2.5.tgz"; - sha1 = "0993502feaf668138325756f30f9a51feeec11e9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima"."git+https://github.com/ariya/esprima.git#harmony" = - self.by-version."esprima"."1.1.0-dev-harmony"; - by-version."esprima"."1.1.0-dev-harmony" = self.buildNodePackage { - name = "esprima-1.1.0-dev-harmony"; - version = "1.1.0-dev-harmony"; - bin = true; - src = fetchgit { - url = "https://github.com/ariya/esprima.git"; - rev = "a41a40b49046747b3af57341cda048bbd3d9df79"; - sha256 = "a304effb5bc8e53d0752aeb7e10ab15afd8381ef09056d0fc98d94a43e5c748a"; + url = "https://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz"; + name = "esprima-2.7.2.tgz"; + sha1 = "f43be543609984eae44c933ac63352a6af35f339"; }; deps = { }; @@ -13196,6 +14409,14 @@ os = [ ]; cpu = [ ]; }; + by-spec."esprima"."^2.5.0" = + self.by-version."esprima"."2.7.2"; + by-spec."esprima"."^2.6.0" = + self.by-version."esprima"."2.7.2"; + by-spec."esprima"."^2.7" = + self.by-version."esprima"."2.7.2"; + by-spec."esprima"."^2.7.1" = + self.by-version."esprima"."2.7.2"; by-spec."esprima"."~ 1.0.2" = self.by-version."esprima"."1.0.4"; by-version."esprima"."1.0.4" = self.buildNodePackage { @@ -13203,7 +14424,7 @@ version = "1.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz"; + url = "https://registry.npmjs.org/esprima/-/esprima-1.0.4.tgz"; name = "esprima-1.0.4.tgz"; sha1 = "9f557e08fc3b4d26ece9dd34f8fbf476b62585ad"; }; @@ -13215,48 +14436,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima"."~ 2.0.0" = - self.by-version."esprima"."2.0.0"; - by-version."esprima"."2.0.0" = self.buildNodePackage { - name = "esprima-2.0.0"; - version = "2.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-2.0.0.tgz"; - name = "esprima-2.0.0.tgz"; - sha1 = "609ac5c2667eae5433b41eb9ecece2331b41498f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima"."~0.9.9" = - self.by-version."esprima"."0.9.9"; - by-version."esprima"."0.9.9" = self.buildNodePackage { - name = "esprima-0.9.9"; - version = "0.9.9"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-0.9.9.tgz"; - name = "esprima-0.9.9.tgz"; - sha1 = "1b90925c975d632d7282939c3bb9c3a423c30490"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima"."~1.0.2" = - self.by-version."esprima"."1.0.4"; - by-spec."esprima"."~1.0.4" = - self.by-version."esprima"."1.0.4"; by-spec."esprima"."~1.1.1" = self.by-version."esprima"."1.1.1"; by-version."esprima"."1.1.1" = self.buildNodePackage { @@ -13264,7 +14443,7 @@ version = "1.1.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz"; + url = "https://registry.npmjs.org/esprima/-/esprima-1.1.1.tgz"; name = "esprima-1.1.1.tgz"; sha1 = "5b6f1547f4d102e670e140c509be6771d6aeb549"; }; @@ -13276,18 +14455,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima"."~1.2.0" = - self.by-version."esprima"."1.2.5"; - by-spec."esprima-fb"."13001.1001.0-dev-harmony-fb" = - self.by-version."esprima-fb"."13001.1001.0-dev-harmony-fb"; - by-version."esprima-fb"."13001.1001.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-13001.1001.0-dev-harmony-fb"; - version = "13001.1001.0-dev-harmony-fb"; + by-spec."esprima"."~2.3.0" = + self.by-version."esprima"."2.3.0"; + by-version."esprima"."2.3.0" = self.buildNodePackage { + name = "esprima-2.3.0"; + version = "2.3.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1001.0-dev-harmony-fb.tgz"; - name = "esprima-fb-13001.1001.0-dev-harmony-fb.tgz"; - sha1 = "633acdb40d9bd4db8a1c1d68c06a942959fad2b0"; + url = "https://registry.npmjs.org/esprima/-/esprima-2.3.0.tgz"; + name = "esprima-2.3.0.tgz"; + sha1 = "d26debd7545fcf8916a80668236310e14da6b345"; }; deps = { }; @@ -13297,16 +14474,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima-fb"."3001.1.0-dev-harmony-fb" = - self.by-version."esprima-fb"."3001.1.0-dev-harmony-fb"; - by-version."esprima-fb"."3001.1.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-3001.1.0-dev-harmony-fb"; - version = "3001.1.0-dev-harmony-fb"; + by-spec."esprima-fb"."^15001.1.0-dev-harmony-fb" = + self.by-version."esprima-fb"."15001.1.0-dev-harmony-fb"; + by-version."esprima-fb"."15001.1.0-dev-harmony-fb" = self.buildNodePackage { + name = "esprima-fb-15001.1.0-dev-harmony-fb"; + version = "15001.1.0-dev-harmony-fb"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-3001.0001.0000-dev-harmony-fb.tgz"; - name = "esprima-fb-3001.1.0-dev-harmony-fb.tgz"; - sha1 = "b77d37abcd38ea0b77426bb8bc2922ce6b426411"; + url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz"; + name = "esprima-fb-15001.1.0-dev-harmony-fb.tgz"; + sha1 = "30a947303c6b8d5e955bee2b99b1d233206a6901"; }; deps = { }; @@ -13316,16 +14493,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima-fb"."~10001.1.0-dev-harmony-fb" = - self.by-version."esprima-fb"."10001.1.0-dev-harmony-fb"; - by-version."esprima-fb"."10001.1.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-10001.1.0-dev-harmony-fb"; - version = "10001.1.0-dev-harmony-fb"; + by-spec."esprima-fb"."~15001.1001.0-dev-harmony-fb" = + self.by-version."esprima-fb"."15001.1001.0-dev-harmony-fb"; + by-version."esprima-fb"."15001.1001.0-dev-harmony-fb" = self.buildNodePackage { + name = "esprima-fb-15001.1001.0-dev-harmony-fb"; + version = "15001.1001.0-dev-harmony-fb"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-10001.1.0-dev-harmony-fb.tgz"; - name = "esprima-fb-10001.1.0-dev-harmony-fb.tgz"; - sha1 = "f7efb452d3c8006dde6b3c59678604f7114a882c"; + url = "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz"; + name = "esprima-fb-15001.1001.0-dev-harmony-fb.tgz"; + sha1 = "43beb57ec26e8cf237d3dd8b33e42533577f2659"; }; deps = { }; @@ -13335,118 +14512,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."esprima-fb"."~13001.1.0-dev-harmony-fb" = - self.by-version."esprima-fb"."13001.1.0-dev-harmony-fb"; - by-version."esprima-fb"."13001.1.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-13001.1.0-dev-harmony-fb"; - version = "13001.1.0-dev-harmony-fb"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-13001.1.0-dev-harmony-fb.tgz"; - name = "esprima-fb-13001.1.0-dev-harmony-fb.tgz"; - sha1 = "43a4a28f8e01c2e3bb8dfb22fd178474d4d881f5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima-fb"."~14001.1.0-dev-harmony-fb" = - self.by-version."esprima-fb"."14001.1.0-dev-harmony-fb"; - by-version."esprima-fb"."14001.1.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-14001.1.0-dev-harmony-fb"; - version = "14001.1.0-dev-harmony-fb"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-14001.1.0-dev-harmony-fb.tgz"; - name = "esprima-fb-14001.1.0-dev-harmony-fb.tgz"; - sha1 = "9f4b99a36f45aa58e11da95c9bc9ccf25a6e958c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima-fb"."~8001.1001.0-dev-harmony-fb" = - self.by-version."esprima-fb"."8001.1001.0-dev-harmony-fb"; - by-version."esprima-fb"."8001.1001.0-dev-harmony-fb" = self.buildNodePackage { - name = "esprima-fb-8001.1001.0-dev-harmony-fb"; - version = "8001.1001.0-dev-harmony-fb"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima-fb/-/esprima-fb-8001.1001.0-dev-harmony-fb.tgz"; - name = "esprima-fb-8001.1001.0-dev-harmony-fb.tgz"; - sha1 = "c3190b05341d45643e093af70485ab4988e34d5e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima-six"."0.0.3" = - self.by-version."esprima-six"."0.0.3"; - by-version."esprima-six"."0.0.3" = self.buildNodePackage { - name = "esprima-six-0.0.3"; - version = "0.0.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima-six/-/esprima-six-0.0.3.tgz"; - name = "esprima-six-0.0.3.tgz"; - sha1 = "8eb750435b02d3e50cf09b5736cbce4606a4399f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima-six"."~0.0.3" = - self.by-version."esprima-six"."0.0.3"; - by-spec."esrefactor"."~0.1.0" = - self.by-version."esrefactor"."0.1.0"; - by-version."esrefactor"."0.1.0" = self.buildNodePackage { - name = "esrefactor-0.1.0"; - version = "0.1.0"; + by-spec."esrecurse"."^4.1.0" = + self.by-version."esrecurse"."4.1.0"; + by-version."esrecurse"."4.1.0" = self.buildNodePackage { + name = "esrecurse-4.1.0"; + version = "4.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/esrefactor/-/esrefactor-0.1.0.tgz"; - name = "esrefactor-0.1.0.tgz"; - sha1 = "d142795a282339ab81e936b5b7a21b11bf197b13"; - }; - deps = { - "esprima-1.0.4" = self.by-version."esprima"."1.0.4"; - "estraverse-0.0.4" = self.by-version."estraverse"."0.0.4"; - "escope-0.0.16" = self.by-version."escope"."0.0.16"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."estraverse".">= 0.0.2" = - self.by-version."estraverse"."3.1.0"; - by-version."estraverse"."3.1.0" = self.buildNodePackage { - name = "estraverse-3.1.0"; - version = "3.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/estraverse/-/estraverse-3.1.0.tgz"; - name = "estraverse-3.1.0.tgz"; - sha1 = "15e28a446b8b82bc700ccc8b96c78af4da0d6cba"; + url = "https://registry.npmjs.org/esrecurse/-/esrecurse-4.1.0.tgz"; + name = "esrecurse-4.1.0.tgz"; + sha1 = "4713b6536adf7f2ac4f327d559e7756bff648220"; }; deps = { + "estraverse-4.1.1" = self.by-version."estraverse"."4.1.1"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; }; optionalDependencies = { }; @@ -13461,7 +14540,7 @@ version = "1.9.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz"; + url = "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz"; name = "estraverse-1.9.3.tgz"; sha1 = "af67f2dc922582415950926091a4005d29c9bb44"; }; @@ -13473,16 +14552,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."estraverse"."~0.0.4" = - self.by-version."estraverse"."0.0.4"; - by-version."estraverse"."0.0.4" = self.buildNodePackage { - name = "estraverse-0.0.4"; - version = "0.0.4"; + by-spec."estraverse"."^4.1.1" = + self.by-version."estraverse"."4.2.0"; + by-version."estraverse"."4.2.0" = self.buildNodePackage { + name = "estraverse-4.2.0"; + version = "4.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/estraverse/-/estraverse-0.0.4.tgz"; - name = "estraverse-0.0.4.tgz"; - sha1 = "01a0932dfee574684a598af5a67c3bf9b6428db2"; + url = "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz"; + name = "estraverse-4.2.0.tgz"; + sha1 = "0dee3fed31fcd469618ce7342099fc1afa0bdb13"; }; deps = { }; @@ -13492,6 +14571,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."estraverse"."^4.2.0" = + self.by-version."estraverse"."4.2.0"; by-spec."estraverse"."~1.5.0" = self.by-version."estraverse"."1.5.1"; by-version."estraverse"."1.5.1" = self.buildNodePackage { @@ -13499,7 +14580,7 @@ version = "1.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz"; + url = "https://registry.npmjs.org/estraverse/-/estraverse-1.5.1.tgz"; name = "estraverse-1.5.1.tgz"; sha1 = "867a3e8e58a9f84618afb6c2ddbcd916b7cbaf71"; }; @@ -13511,6 +14592,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."estraverse"."~4.1.0" = + self.by-version."estraverse"."4.1.1"; + by-version."estraverse"."4.1.1" = self.buildNodePackage { + name = "estraverse-4.1.1"; + version = "4.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz"; + name = "estraverse-4.1.1.tgz"; + sha1 = "f6caca728933a850ef90661d0e17982ba47111a2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."esutils"."^1.1.6" = self.by-version."esutils"."1.1.6"; by-version."esutils"."1.1.6" = self.buildNodePackage { @@ -13518,7 +14618,7 @@ version = "1.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz"; + url = "https://registry.npmjs.org/esutils/-/esutils-1.1.6.tgz"; name = "esutils-1.1.6.tgz"; sha1 = "c01ccaa9ae4b897c6d0c3e210ae52f3c7a844375"; }; @@ -13530,6 +14630,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."esutils"."^2.0.2" = + self.by-version."esutils"."2.0.2"; + by-version."esutils"."2.0.2" = self.buildNodePackage { + name = "esutils-2.0.2"; + version = "2.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz"; + name = "esutils-2.0.2.tgz"; + sha1 = "0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."esutils"."~1.0.0" = self.by-version."esutils"."1.0.0"; by-version."esutils"."1.0.0" = self.buildNodePackage { @@ -13537,7 +14656,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz"; + url = "https://registry.npmjs.org/esutils/-/esutils-1.0.0.tgz"; name = "esutils-1.0.0.tgz"; sha1 = "8151d358e20c8acc7fb745e7472c0025fe496570"; }; @@ -13549,26 +14668,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."etag"."~1.3.1" = - self.by-version."etag"."1.3.1"; - by-version."etag"."1.3.1" = self.buildNodePackage { - name = "etag-1.3.1"; - version = "1.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/etag/-/etag-1.3.1.tgz"; - name = "etag-1.3.1.tgz"; - sha1 = "e51925728688a32dc4eea1cfa9ab4f734d055567"; - }; - deps = { - "crc-3.0.0" = self.by-version."crc"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."etag"."~1.4.0" = self.by-version."etag"."1.4.0"; by-version."etag"."1.4.0" = self.buildNodePackage { @@ -13576,7 +14675,7 @@ version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/etag/-/etag-1.4.0.tgz"; + url = "https://registry.npmjs.org/etag/-/etag-1.4.0.tgz"; name = "etag-1.4.0.tgz"; sha1 = "3050991615857707c04119d075ba2088e0701225"; }; @@ -13589,19 +14688,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."etag"."~1.5.0" = - self.by-version."etag"."1.5.1"; - by-version."etag"."1.5.1" = self.buildNodePackage { - name = "etag-1.5.1"; - version = "1.5.1"; + by-spec."etag"."~1.7.0" = + self.by-version."etag"."1.7.0"; + by-version."etag"."1.7.0" = self.buildNodePackage { + name = "etag-1.7.0"; + version = "1.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/etag/-/etag-1.5.1.tgz"; - name = "etag-1.5.1.tgz"; - sha1 = "54c50de04ee42695562925ac566588291be7e9ea"; + url = "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz"; + name = "etag-1.7.0.tgz"; + sha1 = "03d30b5f67dd6e632d2945d30d6652731a34d5d8"; }; deps = { - "crc-3.2.1" = self.by-version."crc"."3.2.1"; }; optionalDependencies = { }; @@ -13609,21 +14707,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."etag"."~1.5.1" = - self.by-version."etag"."1.5.1"; - by-spec."event-emitter"."~0.3.1" = - self.by-version."event-emitter"."0.3.3"; - by-version."event-emitter"."0.3.3" = self.buildNodePackage { - name = "event-emitter-0.3.3"; - version = "0.3.3"; + by-spec."eve"."~0.4.2" = + self.by-version."eve"."0.4.2"; + by-version."eve"."0.4.2" = self.buildNodePackage { + name = "eve-0.4.2"; + version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/event-emitter/-/event-emitter-0.3.3.tgz"; - name = "event-emitter-0.3.3.tgz"; - sha1 = "df8e806541c68ab8ff20a79a1841b91abaa1bee4"; + url = "https://registry.npmjs.org/eve/-/eve-0.4.2.tgz"; + name = "eve-0.4.2.tgz"; + sha1 = "7eea0afc0e4efb7c9365615315a3576833ead2ae"; }; deps = { - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."event-emitter"."~0.3.4" = + self.by-version."event-emitter"."0.3.4"; + by-version."event-emitter"."0.3.4" = self.buildNodePackage { + name = "event-emitter-0.3.4"; + version = "0.3.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.4.tgz"; + name = "event-emitter-0.3.4.tgz"; + sha1 = "8d63ddfb4cfe1fae3b32ca265c4c720222080bb5"; + }; + deps = { + "es5-ext-0.10.11" = self.by-version."es5-ext"."0.10.11"; "d-0.1.1" = self.by-version."d"."0.1.1"; }; optionalDependencies = { @@ -13639,7 +14754,7 @@ version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz"; + url = "https://registry.npmjs.org/event-stream/-/event-stream-0.5.3.tgz"; name = "event-stream-0.5.3.tgz"; sha1 = "b77b9309f7107addfeab63f0c0eafd8db0bd8c1c"; }; @@ -13652,6 +14767,32 @@ os = [ ]; cpu = [ ]; }; + by-spec."event-stream"."~3.3.0" = + self.by-version."event-stream"."3.3.2"; + by-version."event-stream"."3.3.2" = self.buildNodePackage { + name = "event-stream-3.3.2"; + version = "3.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/event-stream/-/event-stream-3.3.2.tgz"; + name = "event-stream-3.3.2.tgz"; + sha1 = "3cc310feb1f28d2f62b2a085d736a9ef566378b8"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; + "from-0.1.3" = self.by-version."from"."0.1.3"; + "map-stream-0.1.0" = self.by-version."map-stream"."0.1.0"; + "pause-stream-0.0.11" = self.by-version."pause-stream"."0.0.11"; + "split-0.3.3" = self.by-version."split"."0.3.3"; + "stream-combiner-0.0.4" = self.by-version."stream-combiner"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."eventemitter2"."0.4.14" = self.by-version."eventemitter2"."0.4.14"; by-version."eventemitter2"."0.4.14" = self.buildNodePackage { @@ -13659,7 +14800,7 @@ version = "0.4.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"; + url = "https://registry.npmjs.org/eventemitter2/-/eventemitter2-0.4.14.tgz"; name = "eventemitter2-0.4.14.tgz"; sha1 = "8f61b75cde012b2e9eb284d4545583b5643b61ab"; }; @@ -13678,15 +14819,15 @@ by-spec."eventemitter2"."~0.4.14" = self.by-version."eventemitter2"."0.4.14"; by-spec."eventemitter3"."*" = - self.by-version."eventemitter3"."0.1.6"; - by-version."eventemitter3"."0.1.6" = self.buildNodePackage { - name = "eventemitter3-0.1.6"; - version = "0.1.6"; + self.by-version."eventemitter3"."1.2.0"; + by-version."eventemitter3"."1.2.0" = self.buildNodePackage { + name = "eventemitter3-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/eventemitter3/-/eventemitter3-0.1.6.tgz"; - name = "eventemitter3-0.1.6.tgz"; - sha1 = "8c7ac44b87baab55cd50c828dc38778eac052ea5"; + url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.2.0.tgz"; + name = "eventemitter3-1.2.0.tgz"; + sha1 = "1c86991d816ad1e504750e73874224ecf3bec508"; }; deps = { }; @@ -13696,16 +14837,18 @@ os = [ ]; cpu = [ ]; }; + by-spec."eventemitter3"."1.x.x" = + self.by-version."eventemitter3"."1.2.0"; by-spec."events"."^1.0.0" = - self.by-version."events"."1.0.2"; - by-version."events"."1.0.2" = self.buildNodePackage { - name = "events-1.0.2"; - version = "1.0.2"; + self.by-version."events"."1.1.0"; + by-version."events"."1.1.0" = self.buildNodePackage { + name = "events-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/events/-/events-1.0.2.tgz"; - name = "events-1.0.2.tgz"; - sha1 = "75849dcfe93d10fb057c30055afdbd51d06a8e24"; + url = "https://registry.npmjs.org/events/-/events-1.1.0.tgz"; + name = "events-1.1.0.tgz"; + sha1 = "4b389fc200f910742ebff3abb2efe33690f45429"; }; deps = { }; @@ -13717,6 +14860,25 @@ }; by-spec."events"."~1.0.0" = self.by-version."events"."1.0.2"; + by-version."events"."1.0.2" = self.buildNodePackage { + name = "events-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/events/-/events-1.0.2.tgz"; + name = "events-1.0.2.tgz"; + sha1 = "75849dcfe93d10fb057c30055afdbd51d06a8e24"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."events"."~1.1.0" = + self.by-version."events"."1.1.0"; by-spec."events.node".">= 0.4.0" = self.by-version."events.node"."0.4.9"; by-version."events.node"."0.4.9" = self.buildNodePackage { @@ -13724,7 +14886,7 @@ version = "0.4.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/events.node/-/events.node-0.4.9.tgz"; + url = "https://registry.npmjs.org/events.node/-/events.node-0.4.9.tgz"; name = "events.node-0.4.9.tgz"; sha1 = "82998ea749501145fd2da7cf8ecbe6420fac02a4"; }; @@ -13737,18 +14899,18 @@ cpu = [ ]; }; by-spec."evernote"."^1.25.3" = - self.by-version."evernote"."1.25.4"; - by-version."evernote"."1.25.4" = self.buildNodePackage { - name = "evernote-1.25.4"; - version = "1.25.4"; + self.by-version."evernote"."1.25.82"; + by-version."evernote"."1.25.82" = self.buildNodePackage { + name = "evernote-1.25.82"; + version = "1.25.82"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/evernote/-/evernote-1.25.4.tgz"; - name = "evernote-1.25.4.tgz"; - sha1 = "b2dea7683c4b26ab2af0fc965fdade2d6d022849"; + url = "https://registry.npmjs.org/evernote/-/evernote-1.25.82.tgz"; + name = "evernote-1.25.82.tgz"; + sha1 = "79f3f74767c655c5bb42b2ac341913e81c50fa54"; }; deps = { - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; }; optionalDependencies = { }; @@ -13763,20 +14925,20 @@ version = "0.4.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/everyauth/-/everyauth-0.4.5.tgz"; + url = "https://registry.npmjs.org/everyauth/-/everyauth-0.4.5.tgz"; name = "everyauth-0.4.5.tgz"; sha1 = "282d358439d91c30fb4aa2320dc362edac7dd189"; }; deps = { - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; "request-2.9.203" = self.by-version."request"."2.9.203"; "connect-2.3.9" = self.by-version."connect"."2.3.9"; - "openid-0.5.11" = self.by-version."openid"."0.5.11"; - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; + "openid-2.0.0" = self.by-version."openid"."2.0.0"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; "node-swt-0.1.1" = self.by-version."node-swt"."0.1.1"; "node-wsfederation-0.1.1" = self.by-version."node-wsfederation"."0.1.1"; "debug-0.5.0" = self.by-version."debug"."0.5.0"; - "express-3.20.2" = self.by-version."express"."3.20.2"; + "express-3.21.2" = self.by-version."express"."3.21.2"; }; optionalDependencies = { }; @@ -13784,19 +14946,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."execSync"."^1.0.2" = - self.by-version."execSync"."1.0.2"; - by-version."execSync"."1.0.2" = self.buildNodePackage { - name = "execSync-1.0.2"; - version = "1.0.2"; + by-spec."evp_bytestokey"."^1.0.0" = + self.by-version."evp_bytestokey"."1.0.0"; + by-version."evp_bytestokey"."1.0.0" = self.buildNodePackage { + name = "evp_bytestokey-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/execSync/-/execSync-1.0.2.tgz"; - name = "execSync-1.0.2.tgz"; - sha1 = "1f42eda582225180053224ecdd3fd1960fdb3139"; + url = "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.0.tgz"; + name = "evp_bytestokey-1.0.0.tgz"; + sha1 = "497b66ad9fef65cd7c08a6180824ba1476b66e53"; }; deps = { - "temp-0.5.1" = self.by-version."temp"."0.5.1"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; }; optionalDependencies = { }; @@ -13811,7 +14973,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/exit/-/exit-0.1.2.tgz"; + url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"; name = "exit-0.1.2.tgz"; sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; }; @@ -13827,20 +14989,58 @@ self.by-version."exit"."0.1.2"; by-spec."exit"."~0.1.1" = self.by-version."exit"."0.1.2"; - by-spec."expand-braces"."~0.1.1" = - self.by-version."expand-braces"."0.1.1"; - by-version."expand-braces"."0.1.1" = self.buildNodePackage { - name = "expand-braces-0.1.1"; - version = "0.1.1"; + by-spec."exit-hook"."^1.0.0" = + self.by-version."exit-hook"."1.1.1"; + by-version."exit-hook"."1.1.1" = self.buildNodePackage { + name = "exit-hook-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/expand-braces/-/expand-braces-0.1.1.tgz"; - name = "expand-braces-0.1.1.tgz"; - sha1 = "83f2b897a16abebd406abad10949c2e03cae55d4"; + url = "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz"; + name = "exit-hook-1.1.1.tgz"; + sha1 = "f05ca233b48c05d54fff07765df8507e95c02ff8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."exit-on-epipe"."*" = + self.by-version."exit-on-epipe"."0.0.1"; + by-version."exit-on-epipe"."0.0.1" = self.buildNodePackage { + name = "exit-on-epipe-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/exit-on-epipe/-/exit-on-epipe-0.0.1.tgz"; + name = "exit-on-epipe-0.0.1.tgz"; + sha1 = "ea41650007098c8444519a5d48958170c4ad929b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."expand-braces"."^0.1.1" = + self.by-version."expand-braces"."0.1.2"; + by-version."expand-braces"."0.1.2" = self.buildNodePackage { + name = "expand-braces-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz"; + name = "expand-braces-0.1.2.tgz"; + sha1 = "488b1d1d2451cb3d3a6b192cfc030f44c5855fea"; }; deps = { "array-slice-0.2.3" = self.by-version."array-slice"."0.2.3"; - "array-uniq-1.0.2" = self.by-version."array-uniq"."1.0.2"; + "array-unique-0.2.1" = self.by-version."array-unique"."0.2.1"; "braces-0.1.5" = self.by-version."braces"."0.1.5"; }; optionalDependencies = { @@ -13849,18 +15049,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."expand-brackets"."^0.1.1" = - self.by-version."expand-brackets"."0.1.1"; - by-version."expand-brackets"."0.1.1" = self.buildNodePackage { - name = "expand-brackets-0.1.1"; - version = "0.1.1"; + by-spec."expand-brackets"."^0.1.4" = + self.by-version."expand-brackets"."0.1.5"; + by-version."expand-brackets"."0.1.5" = self.buildNodePackage { + name = "expand-brackets-0.1.5"; + version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.1.tgz"; - name = "expand-brackets-0.1.1.tgz"; - sha1 = "e9a1a1a1bbbac19fbf065646fe63fe51f498821f"; + url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz"; + name = "expand-brackets-0.1.5.tgz"; + sha1 = "df07284e342a807cd733ac5af72411e581d1177b"; }; deps = { + "is-posix-bracket-0.1.1" = self.by-version."is-posix-bracket"."0.1.1"; }; optionalDependencies = { }; @@ -13875,7 +15076,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz"; + url = "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz"; name = "expand-range-0.1.1.tgz"; sha1 = "4cb8eda0993ca56fa4f41fc42f3cbb4ccadff044"; }; @@ -13896,12 +15097,12 @@ version = "1.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz"; + url = "https://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz"; name = "expand-range-1.8.1.tgz"; sha1 = "acbd63e56efd9139722b755f099b9db5ac1f33f6"; }; deps = { - "fill-range-2.2.2" = self.by-version."fill-range"."2.2.2"; + "fill-range-2.2.3" = self.by-version."fill-range"."2.2.3"; }; optionalDependencies = { }; @@ -13910,40 +15111,43 @@ cpu = [ ]; }; by-spec."express"."*" = - self.by-version."express"."5.0.0-alpha.1"; - by-version."express"."5.0.0-alpha.1" = self.buildNodePackage { - name = "express-5.0.0-alpha.1"; - version = "5.0.0-alpha.1"; + self.by-version."express"."5.0.0-alpha.2"; + by-version."express"."5.0.0-alpha.2" = self.buildNodePackage { + name = "express-5.0.0-alpha.2"; + version = "5.0.0-alpha.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-5.0.0-alpha.1.tgz"; - name = "express-5.0.0-alpha.1.tgz"; - sha1 = "415df02c51ae01c221362fca59b03591d956b2d7"; + url = "https://registry.npmjs.org/express/-/express-5.0.0-alpha.2.tgz"; + name = "express-5.0.0-alpha.2.tgz"; + sha1 = "fd54177f657b6a4c4540727702edd1cbaa3a6ac5"; }; deps = { - "accepts-1.1.4" = self.by-version."accepts"."1.1.4"; + "accepts-1.2.13" = self.by-version."accepts"."1.2.13"; + "array-flatten-1.1.0" = self.by-version."array-flatten"."1.1.0"; "content-disposition-0.5.0" = self.by-version."content-disposition"."0.5.0"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; + "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "finalhandler-0.3.2" = self.by-version."finalhandler"."0.3.2"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "methods-1.1.0" = self.by-version."methods"."1.1.0"; - "on-finished-2.1.1" = self.by-version."on-finished"."2.1.1"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "path-to-regexp-0.1.3" = self.by-version."path-to-regexp"."0.1.3"; - "proxy-addr-1.0.7" = self.by-version."proxy-addr"."1.0.7"; - "qs-2.3.2" = self.by-version."qs"."2.3.2"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - "send-0.10.1" = self.by-version."send"."0.10.1"; - "serve-static-1.7.2" = self.by-version."serve-static"."1.7.2"; - "type-is-1.5.7" = self.by-version."type-is"."1.5.7"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "merge-descriptors-0.0.2" = self.by-version."merge-descriptors"."0.0.2"; + "escape-html-1.0.2" = self.by-version."escape-html"."1.0.2"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "finalhandler-0.4.0" = self.by-version."finalhandler"."0.4.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "merge-descriptors-1.0.0" = self.by-version."merge-descriptors"."1.0.0"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "path-to-regexp-0.1.6" = self.by-version."path-to-regexp"."0.1.6"; + "proxy-addr-1.0.10" = self.by-version."proxy-addr"."1.0.10"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "router-1.1.4" = self.by-version."router"."1.1.4"; + "send-0.13.0" = self.by-version."send"."0.13.0"; + "serve-static-1.10.2" = self.by-version."serve-static"."1.10.2"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + "vary-1.0.1" = self.by-version."vary"."1.0.1"; "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; }; optionalDependencies = { @@ -13952,7 +15156,7 @@ os = [ ]; cpu = [ ]; }; - "express" = self.by-version."express"."5.0.0-alpha.1"; + "express" = self.by-version."express"."5.0.0-alpha.2"; by-spec."express"."2.5.11" = self.by-version."express"."2.5.11"; by-version."express"."2.5.11" = self.buildNodePackage { @@ -13960,7 +15164,7 @@ version = "2.5.11"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-2.5.11.tgz"; + url = "https://registry.npmjs.org/express/-/express-2.5.11.tgz"; name = "express-2.5.11.tgz"; sha1 = "4ce8ea1f3635e69e49f0ebb497b6a4b0a51ce6f0"; }; @@ -13976,84 +15180,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."express"."3.*" = - self.by-version."express"."3.20.2"; - by-version."express"."3.20.2" = self.buildNodePackage { - name = "express-3.20.2"; - version = "3.20.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.20.2.tgz"; - name = "express-3.20.2.tgz"; - sha1 = "c604027746e60f3da0a4b43063375d21c3235858"; - }; - deps = { - "basic-auth-1.0.0" = self.by-version."basic-auth"."1.0.0"; - "connect-2.29.1" = self.by-version."connect"."2.29.1"; - "content-disposition-0.5.0" = self.by-version."content-disposition"."0.5.0"; - "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; - "commander-2.6.0" = self.by-version."commander"."2.6.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "merge-descriptors-1.0.0" = self.by-version."merge-descriptors"."1.0.0"; - "methods-1.1.1" = self.by-version."methods"."1.1.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "proxy-addr-1.0.7" = self.by-version."proxy-addr"."1.0.7"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - "send-0.12.2" = self.by-version."send"."0.12.2"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."express"."3.17.2" = - self.by-version."express"."3.17.2"; - by-version."express"."3.17.2" = self.buildNodePackage { - name = "express-3.17.2"; - version = "3.17.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.17.2.tgz"; - name = "express-3.17.2.tgz"; - sha1 = "9593dd94af5d4776ea2b6dbff8c4d850a3381353"; - }; - deps = { - "basic-auth-1.0.0" = self.by-version."basic-auth"."1.0.0"; - "connect-2.26.1" = self.by-version."connect"."2.26.1"; - "commander-1.3.2" = self.by-version."commander"."1.3.2"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "crc-3.0.0" = self.by-version."crc"."3.0.0"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "methods-1.1.0" = self.by-version."methods"."1.1.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "proxy-addr-1.0.1" = self.by-version."proxy-addr"."1.0.1"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - "send-0.9.2" = self.by-version."send"."0.9.2"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "merge-descriptors-0.0.2" = self.by-version."merge-descriptors"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."express"."3.2.0" = self.by-version."express"."3.2.0"; by-version."express"."3.2.0" = self.buildNodePackage { @@ -14061,7 +15187,7 @@ version = "3.2.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.2.0.tgz"; + url = "https://registry.npmjs.org/express/-/express-3.2.0.tgz"; name = "express-3.2.0.tgz"; sha1 = "7b66d6c66b038038eedf452804222b3077374ae0"; }; @@ -14076,7 +15202,7 @@ "methods-0.0.1" = self.by-version."methods"."0.0.1"; "send-0.1.0" = self.by-version."send"."0.1.0"; "cookie-signature-1.0.1" = self.by-version."cookie-signature"."1.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -14091,7 +15217,7 @@ version = "3.4.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.4.4.tgz"; + url = "https://registry.npmjs.org/express/-/express-3.4.4.tgz"; name = "express-3.4.4.tgz"; sha1 = "0b63ae626c96b71b78d13dfce079c10351635a86"; }; @@ -14106,7 +15232,7 @@ "methods-0.1.0" = self.by-version."methods"."0.1.0"; "send-0.1.4" = self.by-version."send"."0.1.4"; "cookie-signature-1.0.1" = self.by-version."cookie-signature"."1.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -14115,7 +15241,89 @@ cpu = [ ]; }; by-spec."express"."3.x" = - self.by-version."express"."3.20.2"; + self.by-version."express"."3.21.2"; + by-version."express"."3.21.2" = self.buildNodePackage { + name = "express-3.21.2"; + version = "3.21.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/express/-/express-3.21.2.tgz"; + name = "express-3.21.2.tgz"; + sha1 = "0c2903ee5c54e63d65a96170764703550665a3de"; + }; + deps = { + "basic-auth-1.0.3" = self.by-version."basic-auth"."1.0.3"; + "connect-2.30.2" = self.by-version."connect"."2.30.2"; + "content-disposition-0.5.0" = self.by-version."content-disposition"."0.5.0"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "commander-2.6.0" = self.by-version."commander"."2.6.0"; + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; + "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.0.1" = self.by-version."depd"."1.0.1"; + "escape-html-1.0.2" = self.by-version."escape-html"."1.0.2"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "merge-descriptors-1.0.0" = self.by-version."merge-descriptors"."1.0.0"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "proxy-addr-1.0.10" = self.by-version."proxy-addr"."1.0.10"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "send-0.13.0" = self.by-version."send"."0.13.0"; + "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + "vary-1.0.1" = self.by-version."vary"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."express"."4.13.4" = + self.by-version."express"."4.13.4"; + by-version."express"."4.13.4" = self.buildNodePackage { + name = "express-4.13.4"; + version = "4.13.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/express/-/express-4.13.4.tgz"; + name = "express-4.13.4.tgz"; + sha1 = "3c0b76f3c77590c8345739061ec0bd3ba067ec24"; + }; + deps = { + "accepts-1.2.13" = self.by-version."accepts"."1.2.13"; + "array-flatten-1.1.1" = self.by-version."array-flatten"."1.1.1"; + "content-disposition-0.5.1" = self.by-version."content-disposition"."0.5.1"; + "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; + "cookie-0.1.5" = self.by-version."cookie"."0.1.5"; + "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "finalhandler-0.4.1" = self.by-version."finalhandler"."0.4.1"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "merge-descriptors-1.0.1" = self.by-version."merge-descriptors"."1.0.1"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "path-to-regexp-0.1.7" = self.by-version."path-to-regexp"."0.1.7"; + "proxy-addr-1.0.10" = self.by-version."proxy-addr"."1.0.10"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "send-0.13.1" = self.by-version."send"."0.13.1"; + "serve-static-1.10.2" = self.by-version."serve-static"."1.10.2"; + "type-is-1.6.12" = self.by-version."type-is"."1.6.12"; + "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + "vary-1.0.1" = self.by-version."vary"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."express"."4.6.1" = self.by-version."express"."4.6.1"; by-version."express"."4.6.1" = self.buildNodePackage { @@ -14123,7 +15331,7 @@ version = "4.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-4.6.1.tgz"; + url = "https://registry.npmjs.org/express/-/express-4.6.1.tgz"; name = "express-4.6.1.tgz"; sha1 = "c806e51755cb453ba17fac2f343caff6af885df4"; }; @@ -14158,86 +15366,19 @@ cpu = [ ]; }; by-spec."express".">=3.0.0" = - self.by-version."express"."4.12.3"; - by-version."express"."4.12.3" = self.buildNodePackage { - name = "express-4.12.3"; - version = "4.12.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-4.12.3.tgz"; - name = "express-4.12.3.tgz"; - sha1 = "6b9d94aec5ae03270d86d390c277a8c5a5ad0ee2"; - }; - deps = { - "accepts-1.2.5" = self.by-version."accepts"."1.2.5"; - "content-disposition-0.5.0" = self.by-version."content-disposition"."0.5.0"; - "content-type-1.0.1" = self.by-version."content-type"."1.0.1"; - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "finalhandler-0.3.4" = self.by-version."finalhandler"."0.3.4"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "merge-descriptors-1.0.0" = self.by-version."merge-descriptors"."1.0.0"; - "methods-1.1.1" = self.by-version."methods"."1.1.1"; - "on-finished-2.2.0" = self.by-version."on-finished"."2.2.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "path-to-regexp-0.1.3" = self.by-version."path-to-regexp"."0.1.3"; - "proxy-addr-1.0.7" = self.by-version."proxy-addr"."1.0.7"; - "qs-2.4.1" = self.by-version."qs"."2.4.1"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - "send-0.12.2" = self.by-version."send"."0.12.2"; - "serve-static-1.9.2" = self.by-version."serve-static"."1.9.2"; - "type-is-1.6.1" = self.by-version."type-is"."1.6.1"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."express"."4.13.4"; by-spec."express".">=4.0.0" = - self.by-version."express"."4.12.3"; + self.by-version."express"."4.13.4"; by-spec."express".">=5.0.0-0 <6.0.0-0" = - self.by-version."express"."5.0.0-alpha.1"; - by-spec."express"."^4.8.0" = - self.by-version."express"."4.12.3"; - by-spec."express"."~2.5.11" = - self.by-version."express"."2.5.11"; - by-spec."express"."~3.1.1" = - self.by-version."express"."3.1.2"; - by-version."express"."3.1.2" = self.buildNodePackage { - name = "express-3.1.2"; - version = "3.1.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.1.2.tgz"; - name = "express-3.1.2.tgz"; - sha1 = "52a02c8db8f22bbfa0d7478d847cd45161f985f7"; - }; - deps = { - "connect-2.7.5" = self.by-version."connect"."2.7.5"; - "commander-0.6.1" = self.by-version."commander"."0.6.1"; - "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "cookie-0.0.5" = self.by-version."cookie"."0.0.5"; - "buffer-crc32-0.2.5" = self.by-version."buffer-crc32"."0.2.5"; - "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; - "methods-0.0.1" = self.by-version."methods"."0.0.1"; - "send-0.1.0" = self.by-version."send"."0.1.0"; - "cookie-signature-1.0.0" = self.by-version."cookie-signature"."1.0.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."express"."5.0.0-alpha.2"; + by-spec."express"."^4.12.2" = + self.by-version."express"."4.13.4"; + by-spec."express"."^4.12.3" = + self.by-version."express"."4.13.4"; + by-spec."express"."^4.12.4" = + self.by-version."express"."4.13.4"; + by-spec."express"."^4.13.3" = + self.by-version."express"."4.13.4"; by-spec."express"."~3.5.1" = self.by-version."express"."3.5.3"; by-version."express"."3.5.3" = self.buildNodePackage { @@ -14245,7 +15386,7 @@ version = "3.5.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/express/-/express-3.5.3.tgz"; + url = "https://registry.npmjs.org/express/-/express-3.5.3.tgz"; name = "express-3.5.3.tgz"; sha1 = "af440e1ddad078934ec78241420b40bbc56dc2ad"; }; @@ -14269,32 +15410,56 @@ os = [ ]; cpu = [ ]; }; - by-spec."express"."~4.12.3" = - self.by-version."express"."4.12.3"; + by-spec."express"."~4.13.4" = + self.by-version."express"."4.13.4"; by-spec."express-form"."*" = - self.by-version."express-form"."0.12.4"; - by-version."express-form"."0.12.4" = self.buildNodePackage { - name = "express-form-0.12.4"; - version = "0.12.4"; + self.by-version."express-form"."0.12.5"; + by-version."express-form"."0.12.5" = self.buildNodePackage { + name = "express-form-0.12.5"; + version = "0.12.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-form/-/express-form-0.12.4.tgz"; - name = "express-form-0.12.4.tgz"; - sha1 = "d671fa5887acf32a005618ce8b652f67b30e2cb1"; + url = "https://registry.npmjs.org/express-form/-/express-form-0.12.5.tgz"; + name = "express-form-0.12.5.tgz"; + sha1 = "09ac0849ad33ffd6f1980dbad91ca24bbe53c125"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; "object-additions-0.5.1" = self.by-version."object-additions"."0.5.1"; "validator-2.1.0" = self.by-version."validator"."2.1.0"; }; optionalDependencies = { }; peerDependencies = [ - self.by-version."express"."4.12.3"]; + self.by-version."express"."4.13.4"]; + os = [ ]; + cpu = [ ]; + }; + "express-form" = self.by-version."express-form"."0.12.5"; + by-spec."express-handlebars"."^2.0.1" = + self.by-version."express-handlebars"."2.0.1"; + by-version."express-handlebars"."2.0.1" = self.buildNodePackage { + name = "express-handlebars-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/express-handlebars/-/express-handlebars-2.0.1.tgz"; + name = "express-handlebars-2.0.1.tgz"; + sha1 = "975661ffebd6e79463230ba4c8e0ca5cd0522fb1"; + }; + deps = { + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; + "handlebars-3.0.3" = self.by-version."handlebars"."3.0.3"; + "object.assign-1.1.1" = self.by-version."object.assign"."1.1.1"; + "promise-6.1.0" = self.by-version."promise"."6.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "express-form" = self.by-version."express-form"."0.12.4"; by-spec."express-json5".">=0.1.0 <1.0.0-0" = self.by-version."express-json5"."0.1.0"; by-version."express-json5"."0.1.0" = self.buildNodePackage { @@ -14302,13 +15467,13 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-json5/-/express-json5-0.1.0.tgz"; + url = "https://registry.npmjs.org/express-json5/-/express-json5-0.1.0.tgz"; name = "express-json5-0.1.0.tgz"; sha1 = "114a514bd734b319e018a1bde337923cc455b836"; }; deps = { "raw-body-1.3.4" = self.by-version."raw-body"."1.3.4"; - "jju-1.2.0" = self.by-version."jju"."1.2.0"; + "jju-1.3.0" = self.by-version."jju"."1.3.0"; }; optionalDependencies = { }; @@ -14323,7 +15488,7 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-partials/-/express-partials-0.0.6.tgz"; + url = "https://registry.npmjs.org/express-partials/-/express-partials-0.0.6.tgz"; name = "express-partials-0.0.6.tgz"; sha1 = "b2664f15c636d5248e60fdbe29131c4440552eda"; }; @@ -14342,7 +15507,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-session/-/express-session-1.0.2.tgz"; + url = "https://registry.npmjs.org/express-session/-/express-session-1.0.2.tgz"; name = "express-session-1.0.2.tgz"; sha1 = "004478c742561774411ceb79733155a56b6d49eb"; }; @@ -14361,25 +15526,25 @@ cpu = [ ]; }; by-spec."express-session"."^1.0.4" = - self.by-version."express-session"."1.11.1"; - by-version."express-session"."1.11.1" = self.buildNodePackage { - name = "express-session-1.11.1"; - version = "1.11.1"; + self.by-version."express-session"."1.13.0"; + by-version."express-session"."1.13.0" = self.buildNodePackage { + name = "express-session-1.13.0"; + version = "1.13.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-session/-/express-session-1.11.1.tgz"; - name = "express-session-1.11.1.tgz"; - sha1 = "607eb9458e9e98c1ab576e3408f5c8d9019fe633"; + url = "https://registry.npmjs.org/express-session/-/express-session-1.13.0.tgz"; + name = "express-session-1.13.0.tgz"; + sha1 = "8ac3b5c0188b48382851d88207b8e7746efb4011"; }; deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; + "cookie-0.2.3" = self.by-version."cookie"."0.2.3"; "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "crc-3.2.1" = self.by-version."crc"."3.2.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "uid-safe-1.1.0" = self.by-version."uid-safe"."1.1.0"; + "crc-3.4.0" = self.by-version."crc"."3.4.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "uid-safe-2.0.0" = self.by-version."uid-safe"."2.0.0"; "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; }; optionalDependencies = { @@ -14388,26 +15553,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."express-session"."~1.10.4" = - self.by-version."express-session"."1.10.4"; - by-version."express-session"."1.10.4" = self.buildNodePackage { - name = "express-session-1.10.4"; - version = "1.10.4"; + by-spec."express-session"."~1.11.3" = + self.by-version."express-session"."1.11.3"; + by-version."express-session"."1.11.3" = self.buildNodePackage { + name = "express-session-1.11.3"; + version = "1.11.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-session/-/express-session-1.10.4.tgz"; - name = "express-session-1.10.4.tgz"; - sha1 = "04e1d92e00593893e1f76569eb3ad63113daf94c"; + url = "https://registry.npmjs.org/express-session/-/express-session-1.11.3.tgz"; + name = "express-session-1.11.3.tgz"; + sha1 = "5cc98f3f5ff84ed835f91cbf0aabd0c7107400af"; }; deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; + "cookie-0.1.3" = self.by-version."cookie"."0.1.3"; "cookie-signature-1.0.6" = self.by-version."cookie-signature"."1.0.6"; - "crc-3.2.1" = self.by-version."crc"."3.2.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "crc-3.3.0" = self.by-version."crc"."3.3.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "uid-safe-1.1.0" = self.by-version."uid-safe"."1.1.0"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "uid-safe-2.0.0" = self.by-version."uid-safe"."2.0.0"; "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; }; optionalDependencies = { @@ -14416,27 +15581,44 @@ os = [ ]; cpu = [ ]; }; - by-spec."express-session"."~1.8.2" = - self.by-version."express-session"."1.8.2"; - by-version."express-session"."1.8.2" = self.buildNodePackage { - name = "express-session-1.8.2"; - version = "1.8.2"; + by-spec."express-session"."~1.13.0" = + self.by-version."express-session"."1.13.0"; + by-spec."ext-list"."^2.0.0" = + self.by-version."ext-list"."2.2.0"; + by-version."ext-list"."2.2.0" = self.buildNodePackage { + name = "ext-list-2.2.0"; + version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/express-session/-/express-session-1.8.2.tgz"; - name = "express-session-1.8.2.tgz"; - sha1 = "c4011e728a2349b3c18f117a5409908985e83483"; + url = "https://registry.npmjs.org/ext-list/-/ext-list-2.2.0.tgz"; + name = "ext-list-2.2.0.tgz"; + sha1 = "a3e6fdeab978bca7a320c7e786f537083fc30055"; }; deps = { - "cookie-0.1.2" = self.by-version."cookie"."0.1.2"; - "cookie-signature-1.0.5" = self.by-version."cookie-signature"."1.0.5"; - "crc-3.0.0" = self.by-version."crc"."3.0.0"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "uid-safe-1.0.1" = self.by-version."uid-safe"."1.0.1"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + "got-2.9.2" = self.by-version."got"."2.9.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ext-name"."^3.0.0" = + self.by-version."ext-name"."3.0.0"; + by-version."ext-name"."3.0.0" = self.buildNodePackage { + name = "ext-name-3.0.0"; + version = "3.0.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/ext-name/-/ext-name-3.0.0.tgz"; + name = "ext-name-3.0.0.tgz"; + sha1 = "07e4418737cb1f513c32c6ea48d8b8c8e0471abb"; + }; + deps = { + "ends-with-0.2.0" = self.by-version."ends-with"."0.2.0"; + "ext-list-2.2.0" = self.by-version."ext-list"."2.2.0"; + "meow-3.7.0" = self.by-version."meow"."3.7.0"; + "sort-keys-length-1.0.1" = self.by-version."sort-keys-length"."1.0.1"; }; optionalDependencies = { }; @@ -14445,15 +15627,15 @@ cpu = [ ]; }; by-spec."extend"."*" = - self.by-version."extend"."2.0.0"; - by-version."extend"."2.0.0" = self.buildNodePackage { - name = "extend-2.0.0"; - version = "2.0.0"; + self.by-version."extend"."3.0.0"; + by-version."extend"."3.0.0" = self.buildNodePackage { + name = "extend-3.0.0"; + version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extend/-/extend-2.0.0.tgz"; - name = "extend-2.0.0.tgz"; - sha1 = "cc3c1e238521df4c28e3f30868b7324bb5898a5c"; + url = "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz"; + name = "extend-3.0.0.tgz"; + sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; }; deps = { }; @@ -14463,19 +15645,19 @@ os = [ ]; cpu = [ ]; }; - "extend" = self.by-version."extend"."2.0.0"; - by-spec."extend"."2.0.0" = - self.by-version."extend"."2.0.0"; + "extend" = self.by-version."extend"."3.0.0"; + by-spec."extend"."3" = + self.by-version."extend"."3.0.0"; by-spec."extend".">=1.1.3" = - self.by-version."extend"."2.0.0"; - by-spec."extend"."^1.3.0" = + self.by-version."extend"."3.0.0"; + by-spec."extend"."^1.2.1" = self.by-version."extend"."1.3.0"; by-version."extend"."1.3.0" = self.buildNodePackage { name = "extend-1.3.0"; version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extend/-/extend-1.3.0.tgz"; + url = "https://registry.npmjs.org/extend/-/extend-1.3.0.tgz"; name = "extend-1.3.0.tgz"; sha1 = "d1516fb0ff5624d2ebf9123ea1dac5a1994004f8"; }; @@ -14487,8 +15669,31 @@ os = [ ]; cpu = [ ]; }; + by-spec."extend"."^1.3.0" = + self.by-version."extend"."1.3.0"; by-spec."extend"."^2.0.0" = - self.by-version."extend"."2.0.0"; + self.by-version."extend"."2.0.1"; + by-version."extend"."2.0.1" = self.buildNodePackage { + name = "extend-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz"; + name = "extend-2.0.1.tgz"; + sha1 = "1ee8010689e7395ff9448241c98652bc759a8260"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."extend"."^2.0.1" = + self.by-version."extend"."2.0.1"; + by-spec."extend"."^3.0.0" = + self.by-version."extend"."3.0.0"; by-spec."extend"."~1.2.1" = self.by-version."extend"."1.2.1"; by-version."extend"."1.2.1" = self.buildNodePackage { @@ -14496,7 +15701,7 @@ version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extend/-/extend-1.2.1.tgz"; + url = "https://registry.npmjs.org/extend/-/extend-1.2.1.tgz"; name = "extend-1.2.1.tgz"; sha1 = "a0f5fd6cfc83a5fe49ef698d60ec8a624dd4576c"; }; @@ -14508,8 +15713,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."extend"."~2.0.0" = - self.by-version."extend"."2.0.0"; + by-spec."extend"."~3.0.0" = + self.by-version."extend"."3.0.0"; by-spec."extend.js"."0.0.2" = self.by-version."extend.js"."0.0.2"; by-version."extend.js"."0.0.2" = self.buildNodePackage { @@ -14517,7 +15722,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extend.js/-/extend.js-0.0.2.tgz"; + url = "https://registry.npmjs.org/extend.js/-/extend.js-0.0.2.tgz"; name = "extend.js-0.0.2.tgz"; sha1 = "0f9c7a81a1f208b703eb0c3131fe5716ac6ecd15"; }; @@ -14529,6 +15734,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."extglob"."^0.3.1" = + self.by-version."extglob"."0.3.2"; + by-version."extglob"."0.3.2" = self.buildNodePackage { + name = "extglob-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz"; + name = "extglob-0.3.2.tgz"; + sha1 = "2e18ff3d2f49ab2765cec9023f011daa8d8349a1"; + }; + deps = { + "is-extglob-1.0.0" = self.by-version."is-extglob"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."extract-opts"."^2.2.0" = self.by-version."extract-opts"."2.2.0"; by-version."extract-opts"."2.2.0" = self.buildNodePackage { @@ -14536,7 +15761,7 @@ version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extract-opts/-/extract-opts-2.2.0.tgz"; + url = "https://registry.npmjs.org/extract-opts/-/extract-opts-2.2.0.tgz"; name = "extract-opts-2.2.0.tgz"; sha1 = "1fa28eba7352c6db480f885ceb71a46810be6d7d"; }; @@ -14549,6 +15774,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."extract-zip"."~1.5.0" = + self.by-version."extract-zip"."1.5.0"; + by-version."extract-zip"."1.5.0" = self.buildNodePackage { + name = "extract-zip-1.5.0"; + version = "1.5.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.5.0.tgz"; + name = "extract-zip-1.5.0.tgz"; + sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"; + }; + deps = { + "concat-stream-1.5.0" = self.by-version."concat-stream"."1.5.0"; + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; + "yauzl-2.4.1" = self.by-version."yauzl"."2.4.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."extsprintf"."1.0.0" = self.by-version."extsprintf"."1.0.0"; by-version."extsprintf"."1.0.0" = self.buildNodePackage { @@ -14556,7 +15804,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extsprintf/-/extsprintf-1.0.0.tgz"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.0.tgz"; name = "extsprintf-1.0.0.tgz"; sha1 = "4d58b815ace5bebfc4ebf03cf98b0a7604a99b86"; }; @@ -14575,7 +15823,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.0.2.tgz"; name = "extsprintf-1.0.2.tgz"; sha1 = "e1080e0658e300b06294990cc70e1502235fd550"; }; @@ -14594,7 +15842,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.2.0.tgz"; name = "extsprintf-1.2.0.tgz"; sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; }; @@ -14606,6 +15854,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."extsprintf"."^1.2.0" = + self.by-version."extsprintf"."1.3.0"; + by-version."extsprintf"."1.3.0" = self.buildNodePackage { + name = "extsprintf-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz"; + name = "extsprintf-1.3.0.tgz"; + sha1 = "96918440e3041a7a414f8c52e3c574eb3c3e1e05"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."eyes"."0.1.x" = self.by-version."eyes"."0.1.8"; by-version."eyes"."0.1.8" = self.buildNodePackage { @@ -14613,7 +15880,7 @@ version = "0.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; + url = "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz"; name = "eyes-0.1.8.tgz"; sha1 = "62cf120234c683785d902348a800ef3e0cc20bc0"; }; @@ -14629,19 +15896,22 @@ self.by-version."eyes"."0.1.8"; by-spec."eyes"."~0.1.8" = self.by-version."eyes"."0.1.8"; - by-spec."falafel"."~0.1.6" = - self.by-version."falafel"."0.1.6"; - by-version."falafel"."0.1.6" = self.buildNodePackage { - name = "falafel-0.1.6"; - version = "0.1.6"; + by-spec."falafel"."^1.0.1" = + self.by-version."falafel"."1.2.0"; + by-version."falafel"."1.2.0" = self.buildNodePackage { + name = "falafel-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/falafel/-/falafel-0.1.6.tgz"; - name = "falafel-0.1.6.tgz"; - sha1 = "3084cf3d41b59d15c813be6f259557fdc82b0660"; + url = "https://registry.npmjs.org/falafel/-/falafel-1.2.0.tgz"; + name = "falafel-1.2.0.tgz"; + sha1 = "c18d24ef5091174a497f318cd24b026a25cddab4"; }; deps = { - "esprima-1.0.4" = self.by-version."esprima"."1.0.4"; + "acorn-1.2.2" = self.by-version."acorn"."1.2.2"; + "foreach-2.0.5" = self.by-version."foreach"."2.0.5"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "object-keys-1.0.9" = self.by-version."object-keys"."1.0.9"; }; optionalDependencies = { }; @@ -14649,16 +15919,75 @@ os = [ ]; cpu = [ ]; }; - by-spec."fast-levenshtein"."~1.0.0" = - self.by-version."fast-levenshtein"."1.0.6"; - by-version."fast-levenshtein"."1.0.6" = self.buildNodePackage { - name = "fast-levenshtein-1.0.6"; - version = "1.0.6"; + by-spec."fancy-log"."^1.1.0" = + self.by-version."fancy-log"."1.2.0"; + by-version."fancy-log"."1.2.0" = self.buildNodePackage { + name = "fancy-log-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.0.6.tgz"; - name = "fast-levenshtein-1.0.6.tgz"; - sha1 = "3bedb184e39f95cb0d88928688e6b1ee3273446a"; + url = "https://registry.npmjs.org/fancy-log/-/fancy-log-1.2.0.tgz"; + name = "fancy-log-1.2.0.tgz"; + sha1 = "d5a51b53e9ab22ca07d558f2b67ae55fdb5fcbd8"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "time-stamp-1.0.1" = self.by-version."time-stamp"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fast-diff"."^1.0.1" = + self.by-version."fast-diff"."1.0.1"; + by-version."fast-diff"."1.0.1" = self.buildNodePackage { + name = "fast-diff-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fast-diff/-/fast-diff-1.0.1.tgz"; + name = "fast-diff-1.0.1.tgz"; + sha1 = "76532d5b8e49f6770fd464658628f9ed47eb5ac8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fast-json-patch"."0.5.x" = + self.by-version."fast-json-patch"."0.5.6"; + by-version."fast-json-patch"."0.5.6" = self.buildNodePackage { + name = "fast-json-patch-0.5.6"; + version = "0.5.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fast-json-patch/-/fast-json-patch-0.5.6.tgz"; + name = "fast-json-patch-0.5.6.tgz"; + sha1 = "66e4028e381eaa002edeb280d10238f3a46c3402"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fast-levenshtein"."^1.1.0" = + self.by-version."fast-levenshtein"."1.1.3"; + by-version."fast-levenshtein"."1.1.3" = self.buildNodePackage { + name = "fast-levenshtein-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.3.tgz"; + name = "fast-levenshtein-1.1.3.tgz"; + sha1 = "2ae7b32abc1e612da48a4e13849b888a2f61e7e9"; }; deps = { }; @@ -14675,15 +16004,15 @@ version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/favitest/-/favitest-1.0.7.tgz"; + url = "https://registry.npmjs.org/favitest/-/favitest-1.0.7.tgz"; name = "favitest-1.0.7.tgz"; sha1 = "efa1ee02866f6e2f0f619a889a6c993269a0b603"; }; deps = { - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "q-1.2.0" = self.by-version."q"."1.2.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; "tldtools-0.0.19" = self.by-version."tldtools"."0.0.19"; }; optionalDependencies = { @@ -14695,18 +16024,18 @@ by-spec."favitest"."^1.0.7" = self.by-version."favitest"."1.0.7"; by-spec."faye-websocket"."*" = - self.by-version."faye-websocket"."0.9.4"; - by-version."faye-websocket"."0.9.4" = self.buildNodePackage { - name = "faye-websocket-0.9.4"; - version = "0.9.4"; + self.by-version."faye-websocket"."0.11.0"; + by-version."faye-websocket"."0.11.0" = self.buildNodePackage { + name = "faye-websocket-0.11.0"; + version = "0.11.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/faye-websocket/-/faye-websocket-0.9.4.tgz"; - name = "faye-websocket-0.9.4.tgz"; - sha1 = "885934c79effb0409549e0c0a3801ed17a40cdad"; + url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.0.tgz"; + name = "faye-websocket-0.11.0.tgz"; + sha1 = "d9ccf0e789e7db725d74bc4877d23aa42972ac50"; }; deps = { - "websocket-driver-0.5.4" = self.by-version."websocket-driver"."0.5.4"; + "websocket-driver-0.6.4" = self.by-version."websocket-driver"."0.6.4"; }; optionalDependencies = { }; @@ -14714,24 +16043,20 @@ os = [ ]; cpu = [ ]; }; - "faye-websocket" = self.by-version."faye-websocket"."0.9.4"; - by-spec."faye-websocket".">= 0.4.1" = - self.by-version."faye-websocket"."0.9.4"; - by-spec."faye-websocket"."^0.9.3" = - self.by-version."faye-websocket"."0.9.4"; - by-spec."faye-websocket"."~0.7.0" = - self.by-version."faye-websocket"."0.7.3"; - by-version."faye-websocket"."0.7.3" = self.buildNodePackage { - name = "faye-websocket-0.7.3"; - version = "0.7.3"; + "faye-websocket" = self.by-version."faye-websocket"."0.11.0"; + by-spec."faye-websocket"."^0.10.0" = + self.by-version."faye-websocket"."0.10.0"; + by-version."faye-websocket"."0.10.0" = self.buildNodePackage { + name = "faye-websocket-0.10.0"; + version = "0.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/faye-websocket/-/faye-websocket-0.7.3.tgz"; - name = "faye-websocket-0.7.3.tgz"; - sha1 = "cc4074c7f4a4dfd03af54dd65c354b135132ce11"; + url = "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz"; + name = "faye-websocket-0.10.0.tgz"; + sha1 = "4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"; }; deps = { - "websocket-driver-0.5.4" = self.by-version."websocket-driver"."0.5.4"; + "websocket-driver-0.6.4" = self.by-version."websocket-driver"."0.6.4"; }; optionalDependencies = { }; @@ -14740,19 +16065,19 @@ cpu = [ ]; }; by-spec."fb".">=0.0.9" = - self.by-version."fb"."0.7.0"; - by-version."fb"."0.7.0" = self.buildNodePackage { - name = "fb-0.7.0"; - version = "0.7.0"; + self.by-version."fb"."1.0.2"; + by-version."fb"."1.0.2" = self.buildNodePackage { + name = "fb-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fb/-/fb-0.7.0.tgz"; - name = "fb-0.7.0.tgz"; - sha1 = "599994a3604d7898eff3108c48c6d3112de10563"; + url = "https://registry.npmjs.org/fb/-/fb-1.0.2.tgz"; + name = "fb-1.0.2.tgz"; + sha1 = "4872ccfa1fc1ce01392e6026826a8197439c01fa"; }; deps = { - "request-2.9.203" = self.by-version."request"."2.9.203"; - "crypto-0.0.3" = self.by-version."crypto"."0.0.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -14760,23 +16085,67 @@ os = [ ]; cpu = [ ]; }; - by-spec."feedparser"."0.19.2" = - self.by-version."feedparser"."0.19.2"; - by-version."feedparser"."0.19.2" = self.buildNodePackage { - name = "feedparser-0.19.2"; - version = "0.19.2"; + by-spec."fbjs"."^0.8.0" = + self.by-version."fbjs"."0.8.0"; + by-version."fbjs"."0.8.0" = self.buildNodePackage { + name = "fbjs-0.8.0"; + version = "0.8.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/feedparser/-/feedparser-0.19.2.tgz"; - name = "feedparser-0.19.2.tgz"; - sha1 = "9de04f1621e755f2c151daf39f0ea662a0e392b7"; + url = "https://registry.npmjs.org/fbjs/-/fbjs-0.8.0.tgz"; + name = "fbjs-0.8.0.tgz"; + sha1 = "1903b52cc9ad6fc7e1df152ae0c89829a833ad46"; + }; + deps = { + "babel-plugin-syntax-flow-6.5.0" = self.by-version."babel-plugin-syntax-flow"."6.5.0"; + "core-js-1.2.6" = self.by-version."core-js"."1.2.6"; + "isomorphic-fetch-2.2.1" = self.by-version."isomorphic-fetch"."2.2.1"; + "loose-envify-1.1.0" = self.by-version."loose-envify"."1.1.0"; + "promise-7.1.1" = self.by-version."promise"."7.1.1"; + "ua-parser-js-0.7.10" = self.by-version."ua-parser-js"."0.7.10"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fd-slicer"."~1.0.1" = + self.by-version."fd-slicer"."1.0.1"; + by-version."fd-slicer"."1.0.1" = self.buildNodePackage { + name = "fd-slicer-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; + name = "fd-slicer-1.0.1.tgz"; + sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; + }; + deps = { + "pend-1.2.0" = self.by-version."pend"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."feedparser"."1.1.3" = + self.by-version."feedparser"."1.1.3"; + by-version."feedparser"."1.1.3" = self.buildNodePackage { + name = "feedparser-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/feedparser/-/feedparser-1.1.3.tgz"; + name = "feedparser-1.1.3.tgz"; + sha1 = "0b725f6b4cbe4b26d518baec0d010ad020156c8b"; }; deps = { "sax-0.6.1" = self.by-version."sax"."0.6.1"; "addressparser-0.1.3" = self.by-version."addressparser"."0.1.3"; "array-indexofobject-0.0.1" = self.by-version."array-indexofobject"."0.0.1"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "resanitize-0.3.0" = self.by-version."resanitize"."0.3.0"; }; optionalDependencies = { }; @@ -14785,15 +16154,15 @@ cpu = [ ]; }; by-spec."feedparser".">=0.16.2" = - self.by-version."feedparser"."1.0.1"; - by-version."feedparser"."1.0.1" = self.buildNodePackage { - name = "feedparser-1.0.1"; - version = "1.0.1"; + self.by-version."feedparser"."1.1.4"; + by-version."feedparser"."1.1.4" = self.buildNodePackage { + name = "feedparser-1.1.4"; + version = "1.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/feedparser/-/feedparser-1.0.1.tgz"; - name = "feedparser-1.0.1.tgz"; - sha1 = "9db66f6d94072c427cecdb18a9c884a95c7c658e"; + url = "https://registry.npmjs.org/feedparser/-/feedparser-1.1.4.tgz"; + name = "feedparser-1.1.4.tgz"; + sha1 = "17845be84ad3fcd986daee12fe421f8b54df0def"; }; deps = { "sax-0.6.1" = self.by-version."sax"."0.6.1"; @@ -14807,16 +16176,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."fields"."~0.1.22" = - self.by-version."fields"."0.1.23"; - by-version."fields"."0.1.23" = self.buildNodePackage { - name = "fields-0.1.23"; - version = "0.1.23"; + by-spec."fields"."0.1.24" = + self.by-version."fields"."0.1.24"; + by-version."fields"."0.1.24" = self.buildNodePackage { + name = "fields-0.1.24"; + version = "0.1.24"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fields/-/fields-0.1.23.tgz"; - name = "fields-0.1.23.tgz"; - sha1 = "6ad465e4294a78870aaeb4a63517576f704732f3"; + url = "https://registry.npmjs.org/fields/-/fields-0.1.24.tgz"; + name = "fields-0.1.24.tgz"; + sha1 = "bed93b1c2521f4705fe764f4209267fdfd89f5d3"; }; deps = { "colors-0.6.2" = self.by-version."colors"."0.6.2"; @@ -14836,7 +16205,7 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fifo/-/fifo-0.1.4.tgz"; + url = "https://registry.npmjs.org/fifo/-/fifo-0.1.4.tgz"; name = "fifo-0.1.4.tgz"; sha1 = "bf42d87c0ad07b00d0949d12388f6289606ece34"; }; @@ -14849,15 +16218,15 @@ cpu = [ ]; }; by-spec."figures"."^1.0.1" = - self.by-version."figures"."1.3.5"; - by-version."figures"."1.3.5" = self.buildNodePackage { - name = "figures-1.3.5"; - version = "1.3.5"; + self.by-version."figures"."1.5.0"; + by-version."figures"."1.5.0" = self.buildNodePackage { + name = "figures-1.5.0"; + version = "1.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/figures/-/figures-1.3.5.tgz"; - name = "figures-1.3.5.tgz"; - sha1 = "d1a31f4e1d2c2938ecde5c06aa16134cf29f4771"; + url = "https://registry.npmjs.org/figures/-/figures-1.5.0.tgz"; + name = "figures-1.5.0.tgz"; + sha1 = "56d8a0949c19643af764d573a648d384218da737"; }; deps = { }; @@ -14867,10 +16236,29 @@ os = [ ]; cpu = [ ]; }; - by-spec."figures"."^1.3.2" = - self.by-version."figures"."1.3.5"; by-spec."figures"."^1.3.5" = - self.by-version."figures"."1.3.5"; + self.by-version."figures"."1.5.0"; + by-spec."file-entry-cache"."^1.1.1" = + self.by-version."file-entry-cache"."1.2.4"; + by-version."file-entry-cache"."1.2.4" = self.buildNodePackage { + name = "file-entry-cache-1.2.4"; + version = "1.2.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-1.2.4.tgz"; + name = "file-entry-cache-1.2.4.tgz"; + sha1 = "9a586072c69365a7ef7ec72a7c2b9046de091e9c"; + }; + deps = { + "flat-cache-1.0.10" = self.by-version."flat-cache"."1.0.10"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."file-uri-to-path"."0" = self.by-version."file-uri-to-path"."0.0.2"; by-version."file-uri-to-path"."0.0.2" = self.buildNodePackage { @@ -14878,7 +16266,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-0.0.2.tgz"; + url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-0.0.2.tgz"; name = "file-uri-to-path-0.0.2.tgz"; sha1 = "37cdd1b5b905404b3f05e1b23645be694ff70f82"; }; @@ -14897,7 +16285,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/filed/-/filed-0.1.0.tgz"; + url = "https://registry.npmjs.org/filed/-/filed-0.1.0.tgz"; name = "filed-0.1.0.tgz"; sha1 = "b0f626472a2366dc1194537a4eea7e7a89f3c735"; }; @@ -14917,7 +16305,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz"; + url = "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz"; name = "filename-regex-2.0.0.tgz"; sha1 = "996e3e80479b98b9897f15a8a58b3d084e926775"; }; @@ -14929,20 +16317,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."fileset"."0.1.x" = - self.by-version."fileset"."0.1.5"; - by-version."fileset"."0.1.5" = self.buildNodePackage { - name = "fileset-0.1.5"; - version = "0.1.5"; + by-spec."fileset"."0.2.x" = + self.by-version."fileset"."0.2.1"; + by-version."fileset"."0.2.1" = self.buildNodePackage { + name = "fileset-0.2.1"; + version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fileset/-/fileset-0.1.5.tgz"; - name = "fileset-0.1.5.tgz"; - sha1 = "acc423bfaf92843385c66bf75822264d11b7bd94"; + url = "https://registry.npmjs.org/fileset/-/fileset-0.2.1.tgz"; + name = "fileset-0.2.1.tgz"; + sha1 = "588ef8973c6623b2a76df465105696b96aac8067"; }; deps = { - "minimatch-0.4.0" = self.by-version."minimatch"."0.4.0"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; }; optionalDependencies = { }; @@ -14951,22 +16339,22 @@ cpu = [ ]; }; by-spec."fill-range"."^2.1.0" = - self.by-version."fill-range"."2.2.2"; - by-version."fill-range"."2.2.2" = self.buildNodePackage { - name = "fill-range-2.2.2"; - version = "2.2.2"; + self.by-version."fill-range"."2.2.3"; + by-version."fill-range"."2.2.3" = self.buildNodePackage { + name = "fill-range-2.2.3"; + version = "2.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fill-range/-/fill-range-2.2.2.tgz"; - name = "fill-range-2.2.2.tgz"; - sha1 = "2ad9d158a6a666f9fb8c9f9f05345dff68d45760"; + url = "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz"; + name = "fill-range-2.2.3.tgz"; + sha1 = "50b77dfd7e469bc7492470963699fe7a8485a723"; }; deps = { - "is-number-1.1.2" = self.by-version."is-number"."1.1.2"; - "isobject-1.0.0" = self.by-version."isobject"."1.0.0"; - "randomatic-1.1.0" = self.by-version."randomatic"."1.1.0"; - "repeat-element-1.1.0" = self.by-version."repeat-element"."1.1.0"; - "repeat-string-1.5.2" = self.by-version."repeat-string"."1.5.2"; + "is-number-2.1.0" = self.by-version."is-number"."2.1.0"; + "isobject-2.0.0" = self.by-version."isobject"."2.0.0"; + "randomatic-1.1.5" = self.by-version."randomatic"."1.1.5"; + "repeat-element-1.1.2" = self.by-version."repeat-element"."1.1.2"; + "repeat-string-1.5.4" = self.by-version."repeat-string"."1.5.4"; }; optionalDependencies = { }; @@ -14981,7 +16369,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.0.2.tgz"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.0.2.tgz"; name = "finalhandler-0.0.2.tgz"; sha1 = "0603d875ee87d567a266692815cc8ad44fcceeda"; }; @@ -15002,7 +16390,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.0.3.tgz"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.0.3.tgz"; name = "finalhandler-0.0.3.tgz"; sha1 = "5a86b7bc4dca3d1275eb0532c81ee81d747504df"; }; @@ -15016,20 +16404,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."finalhandler"."0.2.0" = - self.by-version."finalhandler"."0.2.0"; - by-version."finalhandler"."0.2.0" = self.buildNodePackage { - name = "finalhandler-0.2.0"; - version = "0.2.0"; + by-spec."finalhandler"."0.4.0" = + self.by-version."finalhandler"."0.4.0"; + by-version."finalhandler"."0.4.0" = self.buildNodePackage { + name = "finalhandler-0.4.0"; + version = "0.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.2.0.tgz"; - name = "finalhandler-0.2.0.tgz"; - sha1 = "794082424b17f6a4b2a0eda39f9db6948ee4be8d"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz"; + name = "finalhandler-0.4.0.tgz"; + sha1 = "965a52d9e8d05d2b857548541fb89b53a2497d9b"; }; deps = { - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "escape-html-1.0.2" = self.by-version."escape-html"."1.0.2"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "unpipe-1.0.0" = self.by-version."unpipe"."1.0.0"; }; optionalDependencies = { }; @@ -15037,43 +16427,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."finalhandler"."0.3.2" = - self.by-version."finalhandler"."0.3.2"; - by-version."finalhandler"."0.3.2" = self.buildNodePackage { - name = "finalhandler-0.3.2"; - version = "0.3.2"; + by-spec."finalhandler"."0.4.1" = + self.by-version."finalhandler"."0.4.1"; + by-version."finalhandler"."0.4.1" = self.buildNodePackage { + name = "finalhandler-0.4.1"; + version = "0.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.3.2.tgz"; - name = "finalhandler-0.3.2.tgz"; - sha1 = "7b389b0fd3647a6f90bd564e22624bf8a4a77fb5"; + url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.1.tgz"; + name = "finalhandler-0.4.1.tgz"; + sha1 = "85a17c6c59a94717d262d61230d4b0ebe3d4a14d"; }; deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "on-finished-2.1.1" = self.by-version."on-finished"."2.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."finalhandler"."0.3.4" = - self.by-version."finalhandler"."0.3.4"; - by-version."finalhandler"."0.3.4" = self.buildNodePackage { - name = "finalhandler-0.3.4"; - version = "0.3.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/finalhandler/-/finalhandler-0.3.4.tgz"; - name = "finalhandler-0.3.4.tgz"; - sha1 = "4787d3573d079ae8b07536f26b0b911ebaf2a2ac"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "on-finished-2.2.0" = self.by-version."on-finished"."2.2.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "unpipe-1.0.0" = self.by-version."unpipe"."1.0.0"; }; optionalDependencies = { }; @@ -15088,7 +16457,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz"; + url = "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz"; name = "find-index-0.1.1.tgz"; sha1 = "675d358b2ca3892d795a1ab47232f8b6e2e0dde4"; }; @@ -15100,6 +16469,48 @@ os = [ ]; cpu = [ ]; }; + by-spec."find-root"."^0.1.1" = + self.by-version."find-root"."0.1.2"; + by-version."find-root"."0.1.2" = self.buildNodePackage { + name = "find-root-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/find-root/-/find-root-0.1.2.tgz"; + name = "find-root-0.1.2.tgz"; + sha1 = "98d2267cff1916ccaf2743b3a0eea81d79d7dcd1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."find-up"."^1.0.0" = + self.by-version."find-up"."1.1.2"; + by-version."find-up"."1.1.2" = self.buildNodePackage { + name = "find-up-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; + name = "find-up-1.1.2.tgz"; + sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; + }; + deps = { + "path-exists-2.1.0" = self.by-version."path-exists"."2.1.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."find-up"."^1.1.0" = + self.by-version."find-up"."1.1.2"; by-spec."findit".">=1.1.0 <2.0.0" = self.by-version."findit"."1.2.0"; by-version."findit"."1.2.0" = self.buildNodePackage { @@ -15107,7 +16518,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/findit/-/findit-1.2.0.tgz"; + url = "https://registry.npmjs.org/findit/-/findit-1.2.0.tgz"; name = "findit-1.2.0.tgz"; sha1 = "f571a3a840749ae8b0cbf4bf43ced7659eec3ce8"; }; @@ -15119,20 +16530,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."findup-sync"."~0.1.0" = - self.by-version."findup-sync"."0.1.3"; - by-version."findup-sync"."0.1.3" = self.buildNodePackage { - name = "findup-sync-0.1.3"; - version = "0.1.3"; + by-spec."findup-sync"."^0.3.0" = + self.by-version."findup-sync"."0.3.0"; + by-version."findup-sync"."0.3.0" = self.buildNodePackage { + name = "findup-sync-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz"; - name = "findup-sync-0.1.3.tgz"; - sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683"; + url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz"; + name = "findup-sync-0.3.0.tgz"; + sha1 = "37930aa5d816b777c03445e1966cc6790a4c0b16"; }; deps = { - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; }; optionalDependencies = { }; @@ -15142,19 +16552,18 @@ }; by-spec."findup-sync"."~0.1.2" = self.by-version."findup-sync"."0.1.3"; - by-spec."findup-sync"."~0.2.0" = - self.by-version."findup-sync"."0.2.1"; - by-version."findup-sync"."0.2.1" = self.buildNodePackage { - name = "findup-sync-0.2.1"; - version = "0.2.1"; + by-version."findup-sync"."0.1.3" = self.buildNodePackage { + name = "findup-sync-0.1.3"; + version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/findup-sync/-/findup-sync-0.2.1.tgz"; - name = "findup-sync-0.2.1.tgz"; - sha1 = "e0a90a450075c49466ee513732057514b81e878c"; + url = "https://registry.npmjs.org/findup-sync/-/findup-sync-0.1.3.tgz"; + name = "findup-sync-0.1.3.tgz"; + sha1 = "7f3e7a97b82392c653bf06589bd85190e93c3683"; }; deps = { - "glob-4.3.5" = self.by-version."glob"."4.3.5"; + "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; }; optionalDependencies = { }; @@ -15162,6 +16571,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."findup-sync"."~0.3.0" = + self.by-version."findup-sync"."0.3.0"; by-spec."finished"."1.2.2" = self.by-version."finished"."1.2.2"; by-version."finished"."1.2.2" = self.buildNodePackage { @@ -15169,7 +16580,7 @@ version = "1.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/finished/-/finished-1.2.2.tgz"; + url = "https://registry.npmjs.org/finished/-/finished-1.2.2.tgz"; name = "finished-1.2.2.tgz"; sha1 = "41608eafadfd65683b46a1220bc4b1ec3daedcd8"; }; @@ -15191,7 +16602,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; + url = "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz"; name = "first-chunk-stream-1.0.0.tgz"; sha1 = "59bfb50cd905f60d7c394cd3d9acaab4e6ad934e"; }; @@ -15203,16 +16614,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."flagged-respawn"."~0.3.0" = - self.by-version."flagged-respawn"."0.3.1"; - by-version."flagged-respawn"."0.3.1" = self.buildNodePackage { - name = "flagged-respawn-0.3.1"; - version = "0.3.1"; + by-spec."flagged-respawn"."^0.3.2" = + self.by-version."flagged-respawn"."0.3.2"; + by-version."flagged-respawn"."0.3.2" = self.buildNodePackage { + name = "flagged-respawn-0.3.2"; + version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.1.tgz"; - name = "flagged-respawn-0.3.1.tgz"; - sha1 = "397700925df6e12452202a71e89d89545fbbbe9d"; + url = "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.2.tgz"; + name = "flagged-respawn-0.3.2.tgz"; + sha1 = "ff191eddcd7088a675b2610fffc976be9b8074b5"; }; deps = { }; @@ -15222,6 +16633,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."flat-cache"."^1.0.9" = + self.by-version."flat-cache"."1.0.10"; + by-version."flat-cache"."1.0.10" = self.buildNodePackage { + name = "flat-cache-1.0.10"; + version = "1.0.10"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-1.0.10.tgz"; + name = "flat-cache-1.0.10.tgz"; + sha1 = "73d6df4a28502160a05e059544a6aeeae8b0047a"; + }; + deps = { + "del-2.2.0" = self.by-version."del"."2.2.0"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "read-json-sync-1.1.1" = self.by-version."read-json-sync"."1.1.1"; + "write-0.2.1" = self.by-version."write"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."flatiron"."*" = self.by-version."flatiron"."0.4.3"; by-version."flatiron"."0.4.3" = self.buildNodePackage { @@ -15229,7 +16663,7 @@ version = "0.4.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz"; + url = "https://registry.npmjs.org/flatiron/-/flatiron-0.4.3.tgz"; name = "flatiron-0.4.3.tgz"; sha1 = "248cf79a3da7d7dc379e2a11c92a2719cbb540f6"; }; @@ -15255,7 +16689,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/flatten/-/flatten-0.0.1.tgz"; + url = "https://registry.npmjs.org/flatten/-/flatten-0.0.1.tgz"; name = "flatten-0.0.1.tgz"; sha1 = "554440766da0a0d603999f433453f6c2fc6a75c1"; }; @@ -15268,15 +16702,15 @@ cpu = [ ]; }; by-spec."flickrapi".">=0.3.12" = - self.by-version."flickrapi"."0.3.28"; - by-version."flickrapi"."0.3.28" = self.buildNodePackage { - name = "flickrapi-0.3.28"; - version = "0.3.28"; + self.by-version."flickrapi"."0.4.2"; + by-version."flickrapi"."0.4.2" = self.buildNodePackage { + name = "flickrapi-0.4.2"; + version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/flickrapi/-/flickrapi-0.3.28.tgz"; - name = "flickrapi-0.3.28.tgz"; - sha1 = "7aae812b877e7ba10e100ea0cf4b2abeb0038fda"; + url = "https://registry.npmjs.org/flickrapi/-/flickrapi-0.4.2.tgz"; + name = "flickrapi-0.4.2.tgz"; + sha1 = "b9866a8a9e725920d278e3b936aa6cc0a31bcb58"; }; deps = { "async-0.2.10" = self.by-version."async"."0.2.10"; @@ -15293,18 +16727,18 @@ cpu = [ ]; }; by-spec."fluent-ffmpeg"."^2.0.0-rc3" = - self.by-version."fluent-ffmpeg"."2.0.0-rc3"; - by-version."fluent-ffmpeg"."2.0.0-rc3" = self.buildNodePackage { - name = "fluent-ffmpeg-2.0.0-rc3"; - version = "2.0.0-rc3"; + self.by-version."fluent-ffmpeg"."2.0.1"; + by-version."fluent-ffmpeg"."2.0.1" = self.buildNodePackage { + name = "fluent-ffmpeg-2.0.1"; + version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.0.0-rc3.tgz"; - name = "fluent-ffmpeg-2.0.0-rc3.tgz"; - sha1 = "c5a933fe1902fd829c9c060332f6b503d879b083"; + url = "https://registry.npmjs.org/fluent-ffmpeg/-/fluent-ffmpeg-2.0.1.tgz"; + name = "fluent-ffmpeg-2.0.1.tgz"; + sha1 = "4dddcbb82da348158380d5282d21fd4ea64bf4ce"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-1.5.2" = self.by-version."async"."1.5.2"; }; optionalDependencies = { }; @@ -15319,7 +16753,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/flushwritable/-/flushwritable-1.0.0.tgz"; + url = "https://registry.npmjs.org/flushwritable/-/flushwritable-1.0.0.tgz"; name = "flushwritable-1.0.0.tgz"; sha1 = "3e328d8fde412ad47e738e3be750b4d290043498"; }; @@ -15338,7 +16772,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.3.tgz"; + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.3.tgz"; name = "follow-redirects-0.0.3.tgz"; sha1 = "6ce67a24db1fe13f226c1171a72a7ef2b17b8f65"; }; @@ -15351,16 +16785,37 @@ os = [ ]; cpu = [ ]; }; - by-spec."for-in"."^0.1.4" = - self.by-version."for-in"."0.1.4"; - by-version."for-in"."0.1.4" = self.buildNodePackage { - name = "for-in-0.1.4"; - version = "0.1.4"; + by-spec."follow-redirects"."0.0.7" = + self.by-version."follow-redirects"."0.0.7"; + by-version."follow-redirects"."0.0.7" = self.buildNodePackage { + name = "follow-redirects-0.0.7"; + version = "0.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz"; - name = "for-in-0.1.4.tgz"; - sha1 = "9f5cf7b4ffc7e1ae6591a4e97b177aa59d70fb2e"; + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-0.0.7.tgz"; + name = "follow-redirects-0.0.7.tgz"; + sha1 = "34b90bab2a911aa347571da90f22bd36ecd8a919"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "stream-consume-0.1.0" = self.by-version."stream-consume"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."for-in"."^0.1.5" = + self.by-version."for-in"."0.1.5"; + by-version."for-in"."0.1.5" = self.buildNodePackage { + name = "for-in-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/for-in/-/for-in-0.1.5.tgz"; + name = "for-in-0.1.5.tgz"; + sha1 = "007374e2b6d5c67420a1479bdb75a04872b738c4"; }; deps = { }; @@ -15370,19 +16825,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."for-own"."^0.1.1" = - self.by-version."for-own"."0.1.3"; - by-version."for-own"."0.1.3" = self.buildNodePackage { - name = "for-own-0.1.3"; - version = "0.1.3"; + by-spec."for-own"."^0.1.3" = + self.by-version."for-own"."0.1.4"; + by-version."for-own"."0.1.4" = self.buildNodePackage { + name = "for-own-0.1.4"; + version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz"; - name = "for-own-0.1.3.tgz"; - sha1 = "606444cde77c2f0a11088169e2e354eaf56e74fe"; + url = "https://registry.npmjs.org/for-own/-/for-own-0.1.4.tgz"; + name = "for-own-0.1.4.tgz"; + sha1 = "0149b41a39088c7515f51ebe1c1386d45f935072"; + }; + deps = { + "for-in-0.1.5" = self.by-version."for-in"."0.1.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."foreach"."^2.0.5" = + self.by-version."foreach"."2.0.5"; + by-version."foreach"."2.0.5" = self.buildNodePackage { + name = "foreach-2.0.5"; + version = "2.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; + name = "foreach-2.0.5.tgz"; + sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; }; deps = { - "for-in-0.1.4" = self.by-version."for-in"."0.1.4"; }; optionalDependencies = { }; @@ -15397,7 +16871,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz"; + url = "https://registry.npmjs.org/foreachasync/-/foreachasync-3.0.0.tgz"; name = "foreachasync-3.0.0.tgz"; sha1 = "5502987dc8714be3392097f32e0071c9dee07cf6"; }; @@ -15410,24 +16884,29 @@ cpu = [ ]; }; by-spec."forever"."*" = - self.by-version."forever"."0.14.1"; - by-version."forever"."0.14.1" = self.buildNodePackage { - name = "forever-0.14.1"; - version = "0.14.1"; + self.by-version."forever"."0.15.1"; + by-version."forever"."0.15.1" = self.buildNodePackage { + name = "forever-0.15.1"; + version = "0.15.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/forever/-/forever-0.14.1.tgz"; - name = "forever-0.14.1.tgz"; - sha1 = "48bed8c2b215be5c1a3bf429275514a4dca1158a"; + url = "https://registry.npmjs.org/forever/-/forever-0.15.1.tgz"; + name = "forever-0.15.1.tgz"; + sha1 = "5e4e3d4ef946bef88ddcb9cc7412e478ad19e04e"; }; deps = { - "colors-0.6.2" = self.by-version."colors"."0.6.2"; "cliff-0.1.10" = self.by-version."cliff"."0.1.10"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; "flatiron-0.4.3" = self.by-version."flatiron"."0.4.3"; - "forever-monitor-1.5.2" = self.by-version."forever-monitor"."1.5.2"; + "forever-monitor-1.6.0" = self.by-version."forever-monitor"."1.6.0"; "nconf-0.6.9" = self.by-version."nconf"."0.6.9"; "nssocket-0.5.3" = self.by-version."nssocket"."0.5.3"; + "object-assign-3.0.0" = self.by-version."object-assign"."3.0.0"; "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "prettyjson-1.1.3" = self.by-version."prettyjson"."1.1.3"; + "shush-1.0.0" = self.by-version."shush"."1.0.0"; "timespan-2.3.0" = self.by-version."timespan"."2.3.0"; "utile-0.2.1" = self.by-version."utile"."0.2.1"; "winston-0.8.3" = self.by-version."winston"."0.8.3"; @@ -15438,7 +16917,7 @@ os = [ ]; cpu = [ ]; }; - "forever" = self.by-version."forever"."0.14.1"; + "forever" = self.by-version."forever"."0.15.1"; by-spec."forever-agent"."~0.2.0" = self.by-version."forever-agent"."0.2.0"; by-version."forever-agent"."0.2.0" = self.buildNodePackage { @@ -15446,7 +16925,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz"; + url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz"; name = "forever-agent-0.2.0.tgz"; sha1 = "e1c25c7ad44e09c38f233876c76fcc24ff843b1f"; }; @@ -15465,7 +16944,7 @@ version = "0.5.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"; + url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"; name = "forever-agent-0.5.2.tgz"; sha1 = "6d0e09c4921f94a27f63d3b49c5feff1ea4c5130"; }; @@ -15484,7 +16963,7 @@ version = "0.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; + url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz"; name = "forever-agent-0.6.1.tgz"; sha1 = "fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"; }; @@ -15496,22 +16975,24 @@ os = [ ]; cpu = [ ]; }; + by-spec."forever-agent"."~0.6.1" = + self.by-version."forever-agent"."0.6.1"; by-spec."forever-monitor"."*" = - self.by-version."forever-monitor"."1.5.2"; - by-version."forever-monitor"."1.5.2" = self.buildNodePackage { - name = "forever-monitor-1.5.2"; - version = "1.5.2"; + self.by-version."forever-monitor"."1.7.0"; + by-version."forever-monitor"."1.7.0" = self.buildNodePackage { + name = "forever-monitor-1.7.0"; + version = "1.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/forever-monitor/-/forever-monitor-1.5.2.tgz"; - name = "forever-monitor-1.5.2.tgz"; - sha1 = "279388dfa93b085363d6b28a823ef0a6aeeb35d7"; + url = "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.7.0.tgz"; + name = "forever-monitor-1.7.0.tgz"; + sha1 = "4f3f4d42c78cbf7c795139964f85f2d9167eb192"; }; deps = { "broadway-0.3.6" = self.by-version."broadway"."0.3.6"; - "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; "ps-tree-0.0.3" = self.by-version."ps-tree"."0.0.3"; - "watch-0.13.0" = self.by-version."watch"."0.13.0"; "utile-0.2.1" = self.by-version."utile"."0.2.1"; }; optionalDependencies = { @@ -15520,26 +17001,49 @@ os = [ ]; cpu = [ ]; }; - "forever-monitor" = self.by-version."forever-monitor"."1.5.2"; - by-spec."forever-monitor"."~1.5.1" = - self.by-version."forever-monitor"."1.5.2"; - by-spec."forever-monitor"."~1.5.2" = - self.by-version."forever-monitor"."1.5.2"; - by-spec."form-data"."0.0.8" = - self.by-version."form-data"."0.0.8"; - by-version."form-data"."0.0.8" = self.buildNodePackage { - name = "form-data-0.0.8"; - version = "0.0.8"; + "forever-monitor" = self.by-version."forever-monitor"."1.7.0"; + by-spec."forever-monitor"."~1.1.0" = + self.by-version."forever-monitor"."1.1.0"; + by-version."forever-monitor"."1.1.0" = self.buildNodePackage { + name = "forever-monitor-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.0.8.tgz"; - name = "form-data-0.0.8.tgz"; - sha1 = "0890cd1005c5ccecc0b9d24a88052c92442d0db5"; + url = "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.1.0.tgz"; + name = "forever-monitor-1.1.0.tgz"; + sha1 = "439ce036f999601cff551aea7f5151001a869ef9"; }; deps = { - "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "async-0.2.10" = self.by-version."async"."0.2.10"; + "broadway-0.2.10" = self.by-version."broadway"."0.2.10"; + "minimatch-0.0.5" = self.by-version."minimatch"."0.0.5"; + "pkginfo-0.4.0" = self.by-version."pkginfo"."0.4.0"; + "ps-tree-0.0.3" = self.by-version."ps-tree"."0.0.3"; + "watch-0.5.1" = self.by-version."watch"."0.5.1"; + "utile-0.1.7" = self.by-version."utile"."0.1.7"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."forever-monitor"."~1.6.0" = + self.by-version."forever-monitor"."1.6.0"; + by-version."forever-monitor"."1.6.0" = self.buildNodePackage { + name = "forever-monitor-1.6.0"; + version = "1.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/forever-monitor/-/forever-monitor-1.6.0.tgz"; + name = "forever-monitor-1.6.0.tgz"; + sha1 = "3de1afd3e49f25712987281a252c02cb2463ad40"; + }; + deps = { + "broadway-0.3.6" = self.by-version."broadway"."0.3.6"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; + "ps-tree-0.0.3" = self.by-version."ps-tree"."0.0.3"; + "utile-0.2.1" = self.by-version."utile"."0.2.1"; }; optionalDependencies = { }; @@ -15554,14 +17058,14 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-0.1.3.tgz"; name = "form-data-0.1.3.tgz"; sha1 = "4ee4346e6eb5362e8344a02075bd8dbd8c7373ea"; }; deps = { "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; }; optionalDependencies = { }; @@ -15576,14 +17080,14 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz"; name = "form-data-0.2.0.tgz"; sha1 = "26f8bc26da6440e299cbdcfb69035c4f77a6e466"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; + "mime-types-2.0.14" = self.by-version."mime-types"."2.0.14"; }; optionalDependencies = { }; @@ -15598,14 +17102,36 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz"; name = "form-data-0.1.4.tgz"; sha1 = "91abd788aba9702b1aabfa8bc01031a2ac9e3b12"; }; deps = { "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."form-data"."^1.0.0-rc1" = + self.by-version."form-data"."1.0.0-rc4"; + by-version."form-data"."1.0.0-rc4" = self.buildNodePackage { + name = "form-data-1.0.0-rc4"; + version = "1.0.0-rc4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz"; + name = "form-data-1.0.0-rc4.tgz"; + sha1 = "05ac6bc22227b43e4461f488161554699d4f8b5e"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; }; optionalDependencies = { }; @@ -15620,7 +17146,7 @@ version = "0.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz"; + url = "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz"; name = "form-data-0.0.10.tgz"; sha1 = "db345a5378d86aeeb1ed5d553b869ac192d2f5ed"; }; @@ -15639,6 +17165,10 @@ self.by-version."form-data"."0.1.4"; by-spec."form-data"."~0.2.0" = self.by-version."form-data"."0.2.0"; + by-spec."form-data"."~1.0.0-rc1" = + self.by-version."form-data"."1.0.0-rc4"; + by-spec."form-data"."~1.0.0-rc3" = + self.by-version."form-data"."1.0.0-rc4"; by-spec."formatio"."1.1.1" = self.by-version."formatio"."1.1.1"; by-version."formatio"."1.1.1" = self.buildNodePackage { @@ -15646,12 +17176,12 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz"; + url = "https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz"; name = "formatio-1.1.1.tgz"; sha1 = "5ed3ccd636551097383465d996199100e86161e9"; }; deps = { - "samsam-1.1.2" = self.by-version."samsam"."1.1.2"; + "samsam-1.1.3" = self.by-version."samsam"."1.1.3"; }; optionalDependencies = { }; @@ -15666,7 +17196,7 @@ version = "1.0.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz"; + url = "https://registry.npmjs.org/formidable/-/formidable-1.0.11.tgz"; name = "formidable-1.0.11.tgz"; sha1 = "68f63325a035e644b6f7bb3d11243b9761de1b30"; }; @@ -15685,7 +17215,7 @@ version = "1.0.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/formidable/-/formidable-1.0.14.tgz"; + url = "https://registry.npmjs.org/formidable/-/formidable-1.0.14.tgz"; name = "formidable-1.0.14.tgz"; sha1 = "2b3f4c411cbb5fdd695c44843e2a23514a43231a"; }; @@ -15704,7 +17234,7 @@ version = "1.0.17"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz"; + url = "https://registry.npmjs.org/formidable/-/formidable-1.0.17.tgz"; name = "formidable-1.0.17.tgz"; sha1 = "ef5491490f9433b705faa77249c99029ae348559"; }; @@ -15725,7 +17255,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; + url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.0.tgz"; name = "forwarded-0.1.0.tgz"; sha1 = "19ef9874c4ae1c297bcf078fde63a09b66a84363"; }; @@ -15744,7 +17274,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz"; + url = "https://registry.npmjs.org/fresh/-/fresh-0.1.0.tgz"; name = "fresh-0.1.0.tgz"; sha1 = "03e4b0178424e4c2d5d19a54d8814cdc97934850"; }; @@ -15763,7 +17293,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz"; + url = "https://registry.npmjs.org/fresh/-/fresh-0.2.0.tgz"; name = "fresh-0.2.0.tgz"; sha1 = "bfd9402cf3df12c4a4c310c79f99a3dde13d34a7"; }; @@ -15782,7 +17312,7 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fresh/-/fresh-0.2.2.tgz"; + url = "https://registry.npmjs.org/fresh/-/fresh-0.2.2.tgz"; name = "fresh-0.2.2.tgz"; sha1 = "9731dcf5678c7faeb44fb903c4f72df55187fa77"; }; @@ -15801,7 +17331,7 @@ version = "0.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fresh/-/fresh-0.2.4.tgz"; + url = "https://registry.npmjs.org/fresh/-/fresh-0.2.4.tgz"; name = "fresh-0.2.4.tgz"; sha1 = "3582499206c9723714190edd74b4604feb4a614c"; }; @@ -15813,8 +17343,46 @@ os = [ ]; cpu = [ ]; }; + by-spec."fresh"."0.3.0" = + self.by-version."fresh"."0.3.0"; + by-version."fresh"."0.3.0" = self.buildNodePackage { + name = "fresh-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz"; + name = "fresh-0.3.0.tgz"; + sha1 = "651f838e22424e7566de161d8358caa199f83d4f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."fresh"."~0.2.1" = self.by-version."fresh"."0.2.4"; + by-spec."from"."~0" = + self.by-version."from"."0.1.3"; + by-version."from"."0.1.3" = self.buildNodePackage { + name = "from-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/from/-/from-0.1.3.tgz"; + name = "from-0.1.3.tgz"; + sha1 = "ef63ac2062ac32acf7862e0d40b44b896f22f3bc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."from2"."^1.1.0" = self.by-version."from2"."1.3.0"; by-version."from2"."1.3.0" = self.buildNodePackage { @@ -15822,7 +17390,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/from2/-/from2-1.3.0.tgz"; + url = "https://registry.npmjs.org/from2/-/from2-1.3.0.tgz"; name = "from2-1.3.0.tgz"; sha1 = "88413baaa5f9a597cfde9221d86986cd3c061dfd"; }; @@ -15836,22 +17404,68 @@ os = [ ]; cpu = [ ]; }; - by-spec."fs-blob-store"."^5.0.0" = - self.by-version."fs-blob-store"."5.1.1"; - by-version."fs-blob-store"."5.1.1" = self.buildNodePackage { - name = "fs-blob-store-5.1.1"; - version = "5.1.1"; + by-spec."fs-access"."^1.0.0" = + self.by-version."fs-access"."1.0.0"; + by-version."fs-access"."1.0.0" = self.buildNodePackage { + name = "fs-access-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-blob-store/-/fs-blob-store-5.1.1.tgz"; - name = "fs-blob-store-5.1.1.tgz"; - sha1 = "970f2df170d0f21313c932f817b8cb0660c42137"; + url = "https://registry.npmjs.org/fs-access/-/fs-access-1.0.0.tgz"; + name = "fs-access-1.0.0.tgz"; + sha1 = "e96872b1f415ae302bdda4ef05309eb4bde1934c"; }; deps = { - "duplexify-3.3.0" = self.by-version."duplexify"."3.3.0"; + "null-check-1.0.0" = self.by-version."null-check"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fs-blob-store"."^5.0.0" = + self.by-version."fs-blob-store"."5.2.1"; + by-version."fs-blob-store"."5.2.1" = self.buildNodePackage { + name = "fs-blob-store-5.2.1"; + version = "5.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fs-blob-store/-/fs-blob-store-5.2.1.tgz"; + name = "fs-blob-store-5.2.1.tgz"; + sha1 = "2a7db7ef59a5ec548cce8564066508224c9b0457"; + }; + deps = { + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."fs-chunk-store"."^1.3.0" = + self.by-version."fs-chunk-store"."1.4.0"; + by-version."fs-chunk-store"."1.4.0" = self.buildNodePackage { + name = "fs-chunk-store-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/fs-chunk-store/-/fs-chunk-store-1.4.0.tgz"; + name = "fs-chunk-store-1.4.0.tgz"; + sha1 = "66cfa534780c6ade87a6d4c1e6ffac9be89318a7"; + }; + deps = { + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "path-exists-2.1.0" = self.by-version."path-exists"."2.1.0"; + "random-access-file-0.3.2" = self.by-version."random-access-file"."0.3.2"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "run-parallel-1.1.6" = self.by-version."run-parallel"."1.1.6"; + "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; }; optionalDependencies = { }; @@ -15860,18 +17474,18 @@ cpu = [ ]; }; by-spec."fs-ext"."*" = - self.by-version."fs-ext"."0.4.4"; - by-version."fs-ext"."0.4.4" = self.buildNodePackage { - name = "fs-ext-0.4.4"; - version = "0.4.4"; + self.by-version."fs-ext"."0.5.0"; + by-version."fs-ext"."0.5.0" = self.buildNodePackage { + name = "fs-ext-0.5.0"; + version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-ext/-/fs-ext-0.4.4.tgz"; - name = "fs-ext-0.4.4.tgz"; - sha1 = "406dc3ff81c0db69a63e11b6755916256407bb30"; + url = "https://registry.npmjs.org/fs-ext/-/fs-ext-0.5.0.tgz"; + name = "fs-ext-0.5.0.tgz"; + sha1 = "9c1f9a20b8e7e012e0a914b5e19132724f44f69e"; }; deps = { - "nan-1.6.2" = self.by-version."nan"."1.6.2"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -15880,17 +17494,17 @@ cpu = [ ]; }; by-spec."fs-ext".">=0.4.1 <1.0.0-0" = - self.by-version."fs-ext"."0.4.4"; + self.by-version."fs-ext"."0.5.0"; by-spec."fs-extended"."^0.2.0" = - self.by-version."fs-extended"."0.2.0"; - by-version."fs-extended"."0.2.0" = self.buildNodePackage { - name = "fs-extended-0.2.0"; - version = "0.2.0"; + self.by-version."fs-extended"."0.2.1"; + by-version."fs-extended"."0.2.1" = self.buildNodePackage { + name = "fs-extended-0.2.1"; + version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-extended/-/fs-extended-0.2.0.tgz"; - name = "fs-extended-0.2.0.tgz"; - sha1 = "9523d413a014d1a6e35b2a64baa5e66d17f0c6fe"; + url = "https://registry.npmjs.org/fs-extended/-/fs-extended-0.2.1.tgz"; + name = "fs-extended-0.2.1.tgz"; + sha1 = "3910358127e9c72c8296c30142c7763b5f5e2d3a"; }; deps = { }; @@ -15900,65 +17514,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."fs-extra"."0.16.3" = - self.by-version."fs-extra"."0.16.3"; - by-version."fs-extra"."0.16.3" = self.buildNodePackage { - name = "fs-extra-0.16.3"; - version = "0.16.3"; + by-spec."fs-extra"."0.26.7" = + self.by-version."fs-extra"."0.26.7"; + by-version."fs-extra"."0.26.7" = self.buildNodePackage { + name = "fs-extra-0.26.7"; + version = "0.26.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.16.3.tgz"; - name = "fs-extra-0.16.3.tgz"; - sha1 = "4a5663cc51582546625a1bce04f09a1f5ceec35b"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz"; + name = "fs-extra-0.26.7.tgz"; + sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9"; }; deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "jsonfile-2.0.0" = self.by-version."jsonfile"."2.0.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."fs-extra"."^0.18.0" = - self.by-version."fs-extra"."0.18.2"; - by-version."fs-extra"."0.18.2" = self.buildNodePackage { - name = "fs-extra-0.18.2"; - version = "0.18.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.18.2.tgz"; - name = "fs-extra-0.18.2.tgz"; - sha1 = "af05ca702b0b6dfa7de803a1f7ab479ec5c21525"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "jsonfile-2.0.0" = self.by-version."jsonfile"."2.0.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."fs-extra"."~0.16.0" = - self.by-version."fs-extra"."0.16.5"; - by-version."fs-extra"."0.16.5" = self.buildNodePackage { - name = "fs-extra-0.16.5"; - version = "0.16.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.16.5.tgz"; - name = "fs-extra-0.16.5.tgz"; - sha1 = "1ad661fa6c86c9608cd1b49efc6fce834939a750"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "jsonfile-2.0.0" = self.by-version."jsonfile"."2.0.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "jsonfile-2.2.3" = self.by-version."jsonfile"."2.2.3"; + "klaw-1.1.3" = self.by-version."klaw"."1.1.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; }; optionalDependencies = { }; @@ -15966,6 +17538,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."fs-extra"."~0.26.4" = + self.by-version."fs-extra"."0.26.7"; + by-spec."fs-extra"."~0.26.5" = + self.by-version."fs-extra"."0.26.7"; by-spec."fs-extra"."~0.6.1" = self.by-version."fs-extra"."0.6.4"; by-version."fs-extra"."0.6.4" = self.buildNodePackage { @@ -15973,7 +17549,7 @@ version = "0.6.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.6.4.tgz"; name = "fs-extra-0.6.4.tgz"; sha1 = "f46f0c75b7841f8d200b3348cd4d691d5a099d15"; }; @@ -15996,7 +17572,7 @@ version = "0.7.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.7.1.tgz"; + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.7.1.tgz"; name = "fs-extra-0.7.1.tgz"; sha1 = "516505a3be70c1bead91df000ceb9955ab1b5f8b"; }; @@ -16012,21 +17588,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."fs-vacuum"."~1.2.5" = - self.by-version."fs-vacuum"."1.2.5"; - by-version."fs-vacuum"."1.2.5" = self.buildNodePackage { - name = "fs-vacuum-1.2.5"; - version = "1.2.5"; + by-spec."fs-vacuum"."~1.2.7" = + self.by-version."fs-vacuum"."1.2.7"; + by-version."fs-vacuum"."1.2.7" = self.buildNodePackage { + name = "fs-vacuum-1.2.7"; + version = "1.2.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.5.tgz"; - name = "fs-vacuum-1.2.5.tgz"; - sha1 = "a5cbaa844b4b3a7cff139f3cc90e7f7007e5fbb8"; + url = "https://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.7.tgz"; + name = "fs-vacuum-1.2.7.tgz"; + sha1 = "75e501f9d2889ba2fe9fe12f936ba5dad50ca35a"; }; deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; "path-is-inside-1.0.1" = self.by-version."path-is-inside"."1.0.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; }; optionalDependencies = { }; @@ -16041,12 +17617,12 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-walk/-/fs-walk-0.0.1.tgz"; + url = "https://registry.npmjs.org/fs-walk/-/fs-walk-0.0.1.tgz"; name = "fs-walk-0.0.1.tgz"; sha1 = "f7fc91c3ae1eead07c998bc5d0dd41f2dbebd335"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-2.0.0-rc.3" = self.by-version."async"."2.0.0-rc.3"; }; optionalDependencies = { }; @@ -16055,19 +17631,22 @@ cpu = [ ]; }; "fs-walk" = self.by-version."fs-walk"."0.0.1"; - by-spec."fs-write-stream-atomic"."~1.0.2" = - self.by-version."fs-write-stream-atomic"."1.0.2"; - by-version."fs-write-stream-atomic"."1.0.2" = self.buildNodePackage { - name = "fs-write-stream-atomic-1.0.2"; - version = "1.0.2"; + by-spec."fs-write-stream-atomic"."~1.0.8" = + self.by-version."fs-write-stream-atomic"."1.0.8"; + by-version."fs-write-stream-atomic"."1.0.8" = self.buildNodePackage { + name = "fs-write-stream-atomic-1.0.8"; + version = "1.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.2.tgz"; - name = "fs-write-stream-atomic-1.0.2.tgz"; - sha1 = "fe0c6cec75256072b2fef8180d97e309fe3f5efb"; + url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.8.tgz"; + name = "fs-write-stream-atomic-1.0.8.tgz"; + sha1 = "e49aaddf288f87d46ff9e882f216a13abc40778b"; }; deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "iferr-0.1.5" = self.by-version."iferr"."0.1.5"; + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -16082,7 +17661,7 @@ version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz"; + url = "https://registry.npmjs.org/fs.extra/-/fs.extra-1.3.2.tgz"; name = "fs.extra-1.3.2.tgz"; sha1 = "dd023f93013bee24531f1b33514c37b20fd93349"; }; @@ -16097,8 +17676,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."fs.extra".">=1.2.1 <2" = - self.by-version."fs.extra"."1.3.2"; by-spec."fs.notify"."0.0.4" = self.by-version."fs.notify"."0.0.4"; by-version."fs.notify"."0.0.4" = self.buildNodePackage { @@ -16106,7 +17683,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fs.notify/-/fs.notify-0.0.4.tgz"; + url = "https://registry.npmjs.org/fs.notify/-/fs.notify-0.0.4.tgz"; name = "fs.notify-0.0.4.tgz"; sha1 = "63284d45a34b52ce60088a6ddbec5b776d3c013d"; }; @@ -16120,19 +17697,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."fsevents"."^0.3.1" = - self.by-version."fsevents"."0.3.5"; - by-version."fsevents"."0.3.5" = self.buildNodePackage { - name = "fsevents-0.3.5"; - version = "0.3.5"; + by-spec."fsevents"."^1.0.0" = + self.by-version."fsevents"."1.0.11"; + by-version."fsevents"."1.0.11" = self.buildNodePackage { + name = "fsevents-1.0.11"; + version = "1.0.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fsevents/-/fsevents-0.3.5.tgz"; - name = "fsevents-0.3.5.tgz"; - sha1 = "d0938147614066c0e1297647b3b8ab5a4baf4688"; + url = "https://registry.npmjs.org/fsevents/-/fsevents-1.0.11.tgz"; + name = "fsevents-1.0.11.tgz"; + sha1 = "303d4051e411a95a7ad187e6f8ccffe936ca78ac"; }; deps = { - "nan-1.5.3" = self.by-version."nan"."1.5.3"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + "node-pre-gyp-0.6.26" = self.by-version."node-pre-gyp"."0.6.26"; }; optionalDependencies = { }; @@ -16140,45 +17718,22 @@ os = [ "darwin" ]; cpu = [ ]; }; - by-spec."fstream"."0" = - self.by-version."fstream"."0.1.31"; - by-version."fstream"."0.1.31" = self.buildNodePackage { - name = "fstream-0.1.31"; - version = "0.1.31"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz"; - name = "fstream-0.1.31.tgz"; - sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."fstream"."^1.0.0" = - self.by-version."fstream"."1.0.4"; - by-version."fstream"."1.0.4" = self.buildNodePackage { - name = "fstream-1.0.4"; - version = "1.0.4"; + self.by-version."fstream"."1.0.8"; + by-version."fstream"."1.0.8" = self.buildNodePackage { + name = "fstream-1.0.8"; + version = "1.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fstream/-/fstream-1.0.4.tgz"; - name = "fstream-1.0.4.tgz"; - sha1 = "6c52298473fd6351fd22fc4bf9254fcfebe80f2b"; + url = "https://registry.npmjs.org/fstream/-/fstream-1.0.8.tgz"; + name = "fstream-1.0.8.tgz"; + sha1 = "7e8d7a73abb3647ef36e4b8a15ca801dba03d038"; }; deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; }; optionalDependencies = { }; @@ -16187,36 +17742,23 @@ cpu = [ ]; }; by-spec."fstream"."^1.0.2" = - self.by-version."fstream"."1.0.4"; - by-spec."fstream"."^1.0.3" = - self.by-version."fstream"."1.0.4"; - by-spec."fstream"."~0.1.17" = - self.by-version."fstream"."0.1.31"; - by-spec."fstream"."~0.1.22" = - self.by-version."fstream"."0.1.31"; - by-spec."fstream"."~0.1.23" = - self.by-version."fstream"."0.1.31"; - by-spec."fstream"."~0.1.28" = - self.by-version."fstream"."0.1.31"; + self.by-version."fstream"."1.0.8"; by-spec."fstream"."~0.1.8" = self.by-version."fstream"."0.1.31"; - by-spec."fstream"."~1.0.4" = - self.by-version."fstream"."1.0.4"; - by-spec."fstream-ignore"."0.0.7" = - self.by-version."fstream-ignore"."0.0.7"; - by-version."fstream-ignore"."0.0.7" = self.buildNodePackage { - name = "fstream-ignore-0.0.7"; - version = "0.0.7"; + by-version."fstream"."0.1.31" = self.buildNodePackage { + name = "fstream-0.1.31"; + version = "0.1.31"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.7.tgz"; - name = "fstream-ignore-0.0.7.tgz"; - sha1 = "eea3033f0c3728139de7b57ab1b0d6d89c353c63"; + url = "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz"; + name = "fstream-0.1.31.tgz"; + sha1 = "7337f058fbbbbefa8c9f561a28cab0849202c988"; }; deps = { - "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; }; optionalDependencies = { }; @@ -16224,21 +17766,23 @@ os = [ ]; cpu = [ ]; }; + by-spec."fstream"."~1.0.8" = + self.by-version."fstream"."1.0.8"; by-spec."fstream-ignore"."^1.0.0" = - self.by-version."fstream-ignore"."1.0.2"; - by-version."fstream-ignore"."1.0.2" = self.buildNodePackage { - name = "fstream-ignore-1.0.2"; - version = "1.0.2"; + self.by-version."fstream-ignore"."1.0.3"; + by-version."fstream-ignore"."1.0.3" = self.buildNodePackage { + name = "fstream-ignore-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.2.tgz"; - name = "fstream-ignore-1.0.2.tgz"; - sha1 = "18c891db01b782a74a7bff936a0f24997741c7ab"; + url = "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-1.0.3.tgz"; + name = "fstream-ignore-1.0.3.tgz"; + sha1 = "4c74d91fa88b22b42f4f86a18a2820dd79d8fcdd"; }; deps = { - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; }; optionalDependencies = { }; @@ -16246,42 +17790,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."fstream-ignore"."^1.0.2" = - self.by-version."fstream-ignore"."1.0.2"; - by-spec."fstream-npm"."~0.1.3" = - self.by-version."fstream-npm"."0.1.8"; - by-version."fstream-npm"."0.1.8" = self.buildNodePackage { - name = "fstream-npm-0.1.8"; - version = "0.1.8"; + by-spec."fstream-ignore"."~1.0.3" = + self.by-version."fstream-ignore"."1.0.3"; + by-spec."fstream-npm"."~1.0.7" = + self.by-version."fstream-npm"."1.0.7"; + by-version."fstream-npm"."1.0.7" = self.buildNodePackage { + name = "fstream-npm-1.0.7"; + version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/fstream-npm/-/fstream-npm-0.1.8.tgz"; - name = "fstream-npm-0.1.8.tgz"; - sha1 = "38a70fdeb510a443e1a5378d90413403fc724fa8"; + url = "https://registry.npmjs.org/fstream-npm/-/fstream-npm-1.0.7.tgz"; + name = "fstream-npm-1.0.7.tgz"; + sha1 = "7ed0d1ac13d7686dd9e1bf6ceb8be273bf6d2f86"; }; deps = { - "fstream-ignore-1.0.2" = self.by-version."fstream-ignore"."1.0.2"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."fstream-npm"."~1.0.2" = - self.by-version."fstream-npm"."1.0.2"; - by-version."fstream-npm"."1.0.2" = self.buildNodePackage { - name = "fstream-npm-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/fstream-npm/-/fstream-npm-1.0.2.tgz"; - name = "fstream-npm-1.0.2.tgz"; - sha1 = "a1d2a4ce6ac2db731f0f66a85b4dddfea9565d77"; - }; - deps = { - "fstream-ignore-1.0.2" = self.by-version."fstream-ignore"."1.0.2"; + "fstream-ignore-1.0.3" = self.by-version."fstream-ignore"."1.0.3"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { @@ -16297,7 +17820,7 @@ version = "0.3.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz"; + url = "https://registry.npmjs.org/ftp/-/ftp-0.3.10.tgz"; name = "ftp-0.3.10.tgz"; sha1 = "9197d861ad8142f3e63d5a83bfe4c59f7330885d"; }; @@ -16311,20 +17834,39 @@ os = [ ]; cpu = [ ]; }; - by-spec."gapitoken"."^0.1.3" = - self.by-version."gapitoken"."0.1.4"; - by-version."gapitoken"."0.1.4" = self.buildNodePackage { - name = "gapitoken-0.1.4"; - version = "0.1.4"; + by-spec."function-bind"."^1.0.2" = + self.by-version."function-bind"."1.1.0"; + by-version."function-bind"."1.1.0" = self.buildNodePackage { + name = "function-bind-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gapitoken/-/gapitoken-0.1.4.tgz"; - name = "gapitoken-0.1.4.tgz"; - sha1 = "643dedb26cb142466f62b73d2782e7822a6f1ad8"; + url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.0.tgz"; + name = "function-bind-1.1.0.tgz"; + sha1 = "16176714c801798e4e8f2cf7f7529467bb4a5771"; }; deps = { - "jws-0.0.2" = self.by-version."jws"."0.0.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."gapitoken"."^0.1.3" = + self.by-version."gapitoken"."0.1.5"; + by-version."gapitoken"."0.1.5" = self.buildNodePackage { + name = "gapitoken-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/gapitoken/-/gapitoken-0.1.5.tgz"; + name = "gapitoken-0.1.5.tgz"; + sha1 = "3577fcfb5426be3a7b8ebada92671229d8cc81ce"; + }; + deps = { + "jws-3.0.0" = self.by-version."jws"."3.0.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -16333,48 +17875,24 @@ cpu = [ ]; }; by-spec."gapitoken"."~0.1.2" = - self.by-version."gapitoken"."0.1.4"; - by-spec."gauge"."~1.1.0" = - self.by-version."gauge"."1.1.0"; - by-version."gauge"."1.1.0" = self.buildNodePackage { - name = "gauge-1.1.0"; - version = "1.1.0"; + self.by-version."gapitoken"."0.1.5"; + by-spec."gauge"."~1.2.5" = + self.by-version."gauge"."1.2.7"; + by-version."gauge"."1.2.7" = self.buildNodePackage { + name = "gauge-1.2.7"; + version = "1.2.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gauge/-/gauge-1.1.0.tgz"; - name = "gauge-1.1.0.tgz"; - sha1 = "4f1c13cb6232469f65de92357b34f8ff53c5ca41"; + url = "https://registry.npmjs.org/gauge/-/gauge-1.2.7.tgz"; + name = "gauge-1.2.7.tgz"; + sha1 = "e9cec5483d3d4ee0ef44b60a7d99e4935e136d93"; }; deps = { - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - "has-unicode-1.0.0" = self.by-version."has-unicode"."1.0.0"; - "lodash.pad-3.1.0" = self.by-version."lodash.pad"."3.1.0"; - "lodash.padleft-3.1.0" = self.by-version."lodash.padleft"."3.1.0"; - "lodash.padright-3.1.0" = self.by-version."lodash.padright"."3.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."gauge"."~1.2.0" = - self.by-version."gauge"."1.2.0"; - by-version."gauge"."1.2.0" = self.buildNodePackage { - name = "gauge-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/gauge/-/gauge-1.2.0.tgz"; - name = "gauge-1.2.0.tgz"; - sha1 = "3094ab1285633f799814388fc8f2de67b4c012c5"; - }; - deps = { - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - "has-unicode-1.0.0" = self.by-version."has-unicode"."1.0.0"; - "lodash.pad-3.1.0" = self.by-version."lodash.pad"."3.1.0"; - "lodash.padleft-3.1.0" = self.by-version."lodash.padleft"."3.1.0"; - "lodash.padright-3.1.0" = self.by-version."lodash.padright"."3.1.0"; + "ansi-0.3.1" = self.by-version."ansi"."0.3.1"; + "has-unicode-2.0.0" = self.by-version."has-unicode"."2.0.0"; + "lodash.pad-4.2.0" = self.by-version."lodash.pad"."4.2.0"; + "lodash.padend-4.3.0" = self.by-version."lodash.padend"."4.3.0"; + "lodash.padstart-4.3.0" = self.by-version."lodash.padstart"."4.3.0"; }; optionalDependencies = { }; @@ -16383,15 +17901,15 @@ cpu = [ ]; }; by-spec."gaze"."^0.5.1" = - self.by-version."gaze"."0.5.1"; - by-version."gaze"."0.5.1" = self.buildNodePackage { - name = "gaze-0.5.1"; - version = "0.5.1"; + self.by-version."gaze"."0.5.2"; + by-version."gaze"."0.5.2" = self.buildNodePackage { + name = "gaze-0.5.2"; + version = "0.5.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gaze/-/gaze-0.5.1.tgz"; - name = "gaze-0.5.1.tgz"; - sha1 = "22e731078ef3e49d1c4ab1115ac091192051824c"; + url = "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz"; + name = "gaze-0.5.2.tgz"; + sha1 = "40b709537d24d1d45767db5a908689dfe69ac44f"; }; deps = { "globule-0.1.0" = self.by-version."globule"."0.1.0"; @@ -16409,17 +17927,17 @@ version = "0.10.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gcloud/-/gcloud-0.10.0.tgz"; + url = "https://registry.npmjs.org/gcloud/-/gcloud-0.10.0.tgz"; name = "gcloud-0.10.0.tgz"; sha1 = "855a26b3531dc7b0791513fffb89fc65921f43ee"; }; deps = { - "duplexify-3.3.0" = self.by-version."duplexify"."3.3.0"; + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; "extend-1.3.0" = self.by-version."extend"."1.3.0"; - "gapitoken-0.1.4" = self.by-version."gapitoken"."0.1.4"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "gapitoken-0.1.5" = self.by-version."gapitoken"."0.1.5"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "protobufjs-3.8.2" = self.by-version."protobufjs"."3.8.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; "stream-events-1.0.1" = self.by-version."stream-events"."1.0.1"; "through2-0.6.5" = self.by-version."through2"."0.6.5"; }; @@ -16436,7 +17954,7 @@ version = "0.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gelf-stream/-/gelf-stream-0.2.4.tgz"; + url = "https://registry.npmjs.org/gelf-stream/-/gelf-stream-0.2.4.tgz"; name = "gelf-stream-0.2.4.tgz"; sha1 = "a418c8c2e39b85b7932a3e8523f6022d6852e013"; }; @@ -16456,7 +17974,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gelfling/-/gelfling-0.2.0.tgz"; + url = "https://registry.npmjs.org/gelfling/-/gelfling-0.2.0.tgz"; name = "gelfling-0.2.0.tgz"; sha1 = "23a13c366883adae32ecfd252a566be302b88dc3"; }; @@ -16475,7 +17993,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"; + url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz"; name = "generate-function-2.0.0.tgz"; sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74"; }; @@ -16488,15 +18006,15 @@ cpu = [ ]; }; by-spec."generate-object-property"."^1.1.0" = - self.by-version."generate-object-property"."1.1.1"; - by-version."generate-object-property"."1.1.1" = self.buildNodePackage { - name = "generate-object-property-1.1.1"; - version = "1.1.1"; + self.by-version."generate-object-property"."1.2.0"; + by-version."generate-object-property"."1.2.0" = self.buildNodePackage { + name = "generate-object-property-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/generate-object-property/-/generate-object-property-1.1.1.tgz"; - name = "generate-object-property-1.1.1.tgz"; - sha1 = "8fda6b4cb69b34a189a6cebee7c4c268af47cc93"; + url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; + name = "generate-object-property-1.2.0.tgz"; + sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; }; deps = { "is-property-1.0.2" = self.by-version."is-property"."1.0.2"; @@ -16507,16 +18025,36 @@ os = [ ]; cpu = [ ]; }; - by-spec."get-stdin"."*" = - self.by-version."get-stdin"."4.0.1"; - by-version."get-stdin"."4.0.1" = self.buildNodePackage { - name = "get-stdin-4.0.1"; - version = "4.0.1"; + by-spec."generate-schema"."^2.1.1" = + self.by-version."generate-schema"."2.1.1"; + by-version."generate-schema"."2.1.1" = self.buildNodePackage { + name = "generate-schema-2.1.1"; + version = "2.1.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/generate-schema/-/generate-schema-2.1.1.tgz"; + name = "generate-schema-2.1.1.tgz"; + sha1 = "d93e50e08460c02d58cada55317e9f4f588a7d42"; + }; + deps = { + "type-of-is-3.4.0" = self.by-version."type-of-is"."3.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."get-browser-rtc"."^1.0.0" = + self.by-version."get-browser-rtc"."1.0.2"; + by-version."get-browser-rtc"."1.0.2" = self.buildNodePackage { + name = "get-browser-rtc-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"; - name = "get-stdin-4.0.1.tgz"; - sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe"; + url = "https://registry.npmjs.org/get-browser-rtc/-/get-browser-rtc-1.0.2.tgz"; + name = "get-browser-rtc-1.0.2.tgz"; + sha1 = "bbcd40c8451a7ed4ef5c373b8169a409dd1d11d9"; }; deps = { }; @@ -16528,24 +18066,60 @@ }; by-spec."get-stdin"."^4.0.1" = self.by-version."get-stdin"."4.0.1"; - by-spec."get-uri"."~0.1.0" = - self.by-version."get-uri"."0.1.3"; - by-version."get-uri"."0.1.3" = self.buildNodePackage { - name = "get-uri-0.1.3"; - version = "0.1.3"; + by-version."get-stdin"."4.0.1" = self.buildNodePackage { + name = "get-stdin-4.0.1"; + version = "4.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/get-uri/-/get-uri-0.1.3.tgz"; - name = "get-uri-0.1.3.tgz"; - sha1 = "b1b3f9dfe0da1c0909097b1ca1ce4d4b72a8d1ab"; + url = "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz"; + name = "get-stdin-4.0.1.tgz"; + sha1 = "b968c6b0a04384324902e8bf1a5df32579a450fe"; }; deps = { - "data-uri-to-buffer-0.0.3" = self.by-version."data-uri-to-buffer"."0.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."get-stdin"."^5.0.1" = + self.by-version."get-stdin"."5.0.1"; + by-version."get-stdin"."5.0.1" = self.buildNodePackage { + name = "get-stdin-5.0.1"; + version = "5.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.1.tgz"; + name = "get-stdin-5.0.1.tgz"; + sha1 = "122e161591e21ff4c52530305693f20e6393a398"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."get-uri"."~0.1.0" = + self.by-version."get-uri"."0.1.4"; + by-version."get-uri"."0.1.4" = self.buildNodePackage { + name = "get-uri-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/get-uri/-/get-uri-0.1.4.tgz"; + name = "get-uri-0.1.4.tgz"; + sha1 = "35f8a7954c129fb132ff2ddf5ed81a57cb8a9e54"; + }; + deps = { + "data-uri-to-buffer-0.0.4" = self.by-version."data-uri-to-buffer"."0.0.4"; "ftp-0.3.10" = self.by-version."ftp"."0.3.10"; - "debug-0.8.1" = self.by-version."debug"."0.8.1"; - "extend-1.2.1" = self.by-version."extend"."1.2.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; "file-uri-to-path-0.0.2" = self.by-version."file-uri-to-path"."0.0.2"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -16560,7 +18134,7 @@ version = "0.1.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/get-youtube-id/-/get-youtube-id-0.1.3.tgz"; + url = "https://registry.npmjs.org/get-youtube-id/-/get-youtube-id-0.1.3.tgz"; name = "get-youtube-id-0.1.3.tgz"; sha1 = "eb76a0534cb7e9d1fcce5d4b61a0820d32d6855d"; }; @@ -16579,7 +18153,7 @@ version = "1.0.7"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/getmac/-/getmac-1.0.7.tgz"; + url = "https://registry.npmjs.org/getmac/-/getmac-1.0.7.tgz"; name = "getmac-1.0.7.tgz"; sha1 = "94460f9778698d2e159a03da6c165689f22cdd67"; }; @@ -16599,7 +18173,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz"; + url = "https://registry.npmjs.org/getobject/-/getobject-0.1.0.tgz"; name = "getobject-0.1.0.tgz"; sha1 = "047a449789fa160d018f5486ed91320b6ec7885c"; }; @@ -16612,18 +18186,18 @@ cpu = [ ]; }; by-spec."git-run"."*" = - self.by-version."git-run"."0.3.1"; - by-version."git-run"."0.3.1" = self.buildNodePackage { - name = "git-run-0.3.1"; - version = "0.3.1"; + self.by-version."git-run"."0.5.1"; + by-version."git-run"."0.5.1" = self.buildNodePackage { + name = "git-run-0.5.1"; + version = "0.5.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/git-run/-/git-run-0.3.1.tgz"; - name = "git-run-0.3.1.tgz"; - sha1 = "34a59d4a90c1501d491ea87d478d26c877808415"; + url = "https://registry.npmjs.org/git-run/-/git-run-0.5.1.tgz"; + name = "git-run-0.5.1.tgz"; + sha1 = "7d9cb28a9e8e1076d005b94baa6ec5c6316fe1e9"; }; deps = { - "minilog-2.0.7" = self.by-version."minilog"."2.0.7"; + "minilog-2.0.8" = self.by-version."minilog"."2.0.8"; "tabtab-0.0.2" = self.by-version."tabtab"."0.0.2"; }; optionalDependencies = { @@ -16632,15 +18206,15 @@ os = [ ]; cpu = [ ]; }; - "git-run" = self.by-version."git-run"."0.3.1"; - by-spec."github"."^0.2.3" = + "git-run" = self.by-version."git-run"."0.5.1"; + by-spec."github"."^0.2.4" = self.by-version."github"."0.2.4"; by-version."github"."0.2.4" = self.buildNodePackage { name = "github-0.2.4"; version = "0.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/github/-/github-0.2.4.tgz"; + url = "https://registry.npmjs.org/github/-/github-0.2.4.tgz"; name = "github-0.2.4.tgz"; sha1 = "24fa7f0e13fa11b946af91134c51982a91ce538b"; }; @@ -16653,14 +18227,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."github-url-from-git"."^1.3.0" = + by-spec."github-url-from-git"."~1.4.0" = self.by-version."github-url-from-git"."1.4.0"; by-version."github-url-from-git"."1.4.0" = self.buildNodePackage { name = "github-url-from-git-1.4.0"; version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/github-url-from-git/-/github-url-from-git-1.4.0.tgz"; + url = "https://registry.npmjs.org/github-url-from-git/-/github-url-from-git-1.4.0.tgz"; name = "github-url-from-git-1.4.0.tgz"; sha1 = "285e6b520819001bde128674704379e4ff03e0de"; }; @@ -16672,54 +18246,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."github-url-from-git"."~1.1.1" = - self.by-version."github-url-from-git"."1.1.1"; - by-version."github-url-from-git"."1.1.1" = self.buildNodePackage { - name = "github-url-from-git-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/github-url-from-git/-/github-url-from-git-1.1.1.tgz"; - name = "github-url-from-git-1.1.1.tgz"; - sha1 = "1f89623453123ef9623956e264c60bf4c3cf5ccf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."github-url-from-git"."~1.4.0" = - self.by-version."github-url-from-git"."1.4.0"; - by-spec."github-url-from-username-repo"."^0.1.0" = - self.by-version."github-url-from-username-repo"."0.1.0"; - by-version."github-url-from-username-repo"."0.1.0" = self.buildNodePackage { - name = "github-url-from-username-repo-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/github-url-from-username-repo/-/github-url-from-username-repo-0.1.0.tgz"; - name = "github-url-from-username-repo-0.1.0.tgz"; - sha1 = "fe398af670692e91af7bcfc5ae1d99ff97b1df89"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."github-url-from-username-repo"."^1.0.0" = + by-spec."github-url-from-username-repo"."~1.0.2" = self.by-version."github-url-from-username-repo"."1.0.2"; by-version."github-url-from-username-repo"."1.0.2" = self.buildNodePackage { name = "github-url-from-username-repo-1.0.2"; version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz"; + url = "https://registry.npmjs.org/github-url-from-username-repo/-/github-url-from-username-repo-1.0.2.tgz"; name = "github-url-from-username-repo-1.0.2.tgz"; sha1 = "7dd79330d2abe69c10c2cef79714c97215791dfa"; }; @@ -16731,8 +18265,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."github-url-from-username-repo"."~1.0.2" = - self.by-version."github-url-from-username-repo"."1.0.2"; by-spec."glob"."3" = self.by-version."glob"."3.2.11"; by-version."glob"."3.2.11" = self.buildNodePackage { @@ -16740,7 +18272,7 @@ version = "3.2.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-3.2.11.tgz"; + url = "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz"; name = "glob-3.2.11.tgz"; sha1 = "4a973f635b9190f715d10987d5c00fd2815ebe3d"; }; @@ -16761,15 +18293,15 @@ version = "4.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-4.5.3.tgz"; + url = "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz"; name = "glob-4.5.3.tgz"; sha1 = "c6cb73d3226c1efef04de3c56d012f03377ee15f"; }; deps = { "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -16784,7 +18316,7 @@ version = "3.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-3.2.3.tgz"; + url = "https://registry.npmjs.org/glob/-/glob-3.2.3.tgz"; name = "glob-3.2.3.tgz"; sha1 = "e313eeb249c7affaa5c475286b0e115b59839467"; }; @@ -16801,61 +18333,22 @@ }; by-spec."glob"."3.2.x" = self.by-version."glob"."3.2.11"; - by-spec."glob"."3.x" = - self.by-version."glob"."3.2.11"; - by-spec."glob"."4.0.6" = - self.by-version."glob"."4.0.6"; - by-version."glob"."4.0.6" = self.buildNodePackage { - name = "glob-4.0.6"; - version = "4.0.6"; + by-spec."glob"."5.x" = + self.by-version."glob"."5.0.15"; + by-version."glob"."5.0.15" = self.buildNodePackage { + name = "glob-5.0.15"; + version = "5.0.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-4.0.6.tgz"; - name = "glob-4.0.6.tgz"; - sha1 = "695c50bdd4e2fb5c5d370b091f388d3707e291a7"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."glob"."4.x" = - self.by-version."glob"."4.5.3"; - by-spec."glob".">=3.2.7 <4" = - self.by-version."glob"."3.2.11"; - by-spec."glob"."^4.0.5" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^4.3.1" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^4.3.2" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^4.3.5" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^4.4.2" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^5.0.3" = - self.by-version."glob"."5.0.5"; - by-version."glob"."5.0.5" = self.buildNodePackage { - name = "glob-5.0.5"; - version = "5.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-5.0.5.tgz"; - name = "glob-5.0.5.tgz"; - sha1 = "784431e4e29a900ae0d47fba6aa1c7f16a8e7df7"; + url = "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz"; + name = "glob-5.0.15.tgz"; + sha1 = "1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"; }; deps = { "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; }; optionalDependencies = { @@ -16864,6 +18357,76 @@ os = [ ]; cpu = [ ]; }; + by-spec."glob"."6.0.4" = + self.by-version."glob"."6.0.4"; + by-version."glob"."6.0.4" = self.buildNodePackage { + name = "glob-6.0.4"; + version = "6.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; + name = "glob-6.0.4.tgz"; + sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; + }; + deps = { + "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."glob"."^4.0.5" = + self.by-version."glob"."4.5.3"; + by-spec."glob"."^4.3.1" = + self.by-version."glob"."4.5.3"; + by-spec."glob"."^5.0.0" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^5.0.13" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^5.0.14" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^5.0.15" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^5.0.3" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^5.0.5" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."^6.0.0" = + self.by-version."glob"."6.0.4"; + by-spec."glob"."^6.0.1" = + self.by-version."glob"."6.0.4"; + by-spec."glob"."^7.0.0" = + self.by-version."glob"."7.0.3"; + by-version."glob"."7.0.3" = self.buildNodePackage { + name = "glob-7.0.3"; + version = "7.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/glob/-/glob-7.0.3.tgz"; + name = "glob-7.0.3.tgz"; + sha1 = "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58"; + }; + deps = { + "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."glob"."^7.0.3" = + self.by-version."glob"."7.0.3"; by-spec."glob"."~ 3.2.1" = self.by-version."glob"."3.2.11"; by-spec."glob"."~3.1.21" = @@ -16873,14 +18436,14 @@ version = "3.1.21"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-3.1.21.tgz"; + url = "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz"; name = "glob-3.1.21.tgz"; sha1 = "d29e0a055dea5138f4d07ed40e8982e83c2066cd"; }; deps = { "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; "graceful-fs-1.2.3" = self.by-version."graceful-fs"."1.2.3"; - "inherits-1.0.0" = self.by-version."inherits"."1.0.0"; + "inherits-1.0.2" = self.by-version."inherits"."1.0.2"; }; optionalDependencies = { }; @@ -16888,34 +18451,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."glob"."~3.2.1" = - self.by-version."glob"."3.2.11"; - by-spec."glob"."~3.2.3" = - self.by-version."glob"."3.2.11"; by-spec."glob"."~3.2.6" = self.by-version."glob"."3.2.11"; - by-spec."glob"."~3.2.7" = - self.by-version."glob"."3.2.11"; by-spec."glob"."~3.2.9" = self.by-version."glob"."3.2.11"; by-spec."glob"."~4.0.6" = self.by-version."glob"."4.0.6"; - by-spec."glob"."~4.2.1" = - self.by-version."glob"."4.2.2"; - by-version."glob"."4.2.2" = self.buildNodePackage { - name = "glob-4.2.2"; - version = "4.2.2"; + by-version."glob"."4.0.6" = self.buildNodePackage { + name = "glob-4.0.6"; + version = "4.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-4.2.2.tgz"; - name = "glob-4.2.2.tgz"; - sha1 = "ad2b047653a58c387e15deb43a19497f83fd2a80"; + url = "https://registry.npmjs.org/glob/-/glob-4.0.6.tgz"; + name = "glob-4.0.6.tgz"; + sha1 = "695c50bdd4e2fb5c5d370b091f388d3707e291a7"; }; deps = { - "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -16930,15 +18485,15 @@ version = "4.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-4.3.5.tgz"; + url = "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz"; name = "glob-4.3.5.tgz"; sha1 = "80fbb08ca540f238acce5d11d1e9bc41e75173d3"; }; deps = { "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -16946,21 +18501,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."glob"."~5.0.5" = - self.by-version."glob"."5.0.5"; - by-spec."glob-base"."^0.2.0" = - self.by-version."glob-base"."0.2.0"; - by-version."glob-base"."0.2.0" = self.buildNodePackage { - name = "glob-base-0.2.0"; - version = "0.2.0"; + by-spec."glob"."~5.0.0" = + self.by-version."glob"."5.0.15"; + by-spec."glob"."~7.0.0" = + self.by-version."glob"."7.0.3"; + by-spec."glob"."~7.0.3" = + self.by-version."glob"."7.0.3"; + by-spec."glob-base"."^0.3.0" = + self.by-version."glob-base"."0.3.0"; + by-version."glob-base"."0.3.0" = self.buildNodePackage { + name = "glob-base-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob-base/-/glob-base-0.2.0.tgz"; - name = "glob-base-0.2.0.tgz"; - sha1 = "59d2f38c3ba2860af149b6b174512a169e9f1b3d"; + url = "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz"; + name = "glob-base-0.3.0.tgz"; + sha1 = "dbb164f6221b1c0b1ccf82aea328b497df0ea3c4"; }; deps = { - "glob-parent-1.2.0" = self.by-version."glob-parent"."1.2.0"; + "glob-parent-2.0.0" = self.by-version."glob-parent"."2.0.0"; + "is-glob-2.0.1" = self.by-version."is-glob"."2.0.1"; }; optionalDependencies = { }; @@ -16968,19 +18528,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."glob-parent"."^1.0.0" = - self.by-version."glob-parent"."1.2.0"; - by-version."glob-parent"."1.2.0" = self.buildNodePackage { - name = "glob-parent-1.2.0"; - version = "1.2.0"; + by-spec."glob-parent"."^2.0.0" = + self.by-version."glob-parent"."2.0.0"; + by-version."glob-parent"."2.0.0" = self.buildNodePackage { + name = "glob-parent-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob-parent/-/glob-parent-1.2.0.tgz"; - name = "glob-parent-1.2.0.tgz"; - sha1 = "8deffabf6317db5b0f775f553fac731ecf41ded5"; + url = "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz"; + name = "glob-parent-2.0.0.tgz"; + sha1 = "81383d72db054fcccf5336daa902f182f6edbb28"; }; deps = { - "is-glob-1.1.3" = self.by-version."is-glob"."1.1.3"; + "is-glob-2.0.1" = self.by-version."is-glob"."2.0.1"; }; optionalDependencies = { }; @@ -16988,8 +18548,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."glob-parent"."^1.2.0" = - self.by-version."glob-parent"."1.2.0"; by-spec."glob-stream"."^3.1.5" = self.by-version."glob-stream"."3.1.18"; by-version."glob-stream"."3.1.18" = self.buildNodePackage { @@ -16997,13 +18555,13 @@ version = "3.1.18"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz"; + url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz"; name = "glob-stream-3.1.18.tgz"; sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b"; }; deps = { "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; "ordered-read-streams-0.1.0" = self.by-version."ordered-read-streams"."0.1.0"; "glob2base-0.0.12" = self.by-version."glob2base"."0.0.12"; "unique-stream-1.0.0" = self.by-version."unique-stream"."1.0.0"; @@ -17022,12 +18580,12 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz"; + url = "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz"; name = "glob-watcher-0.0.6.tgz"; sha1 = "b95b4a8df74b39c83298b0c05c978b4d9a3b710b"; }; deps = { - "gaze-0.5.1" = self.by-version."gaze"."0.5.1"; + "gaze-0.5.2" = self.by-version."gaze"."0.5.2"; }; optionalDependencies = { }; @@ -17042,7 +18600,7 @@ version = "0.0.12"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz"; + url = "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz"; name = "glob2base-0.0.12.tgz"; sha1 = "9d419b3e28f12e83a362164a277055922c9c0d56"; }; @@ -17074,6 +18632,50 @@ os = [ ]; cpu = [ ]; }; + by-spec."globals"."^9.2.0" = + self.by-version."globals"."9.4.0"; + by-version."globals"."9.4.0" = self.buildNodePackage { + name = "globals-9.4.0"; + version = "9.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/globals/-/globals-9.4.0.tgz"; + name = "globals-9.4.0.tgz"; + sha1 = "e89906bbd58b40305e5691ef934324e93325b35f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."globby"."^4.0.0" = + self.by-version."globby"."4.0.0"; + by-version."globby"."4.0.0" = self.buildNodePackage { + name = "globby-4.0.0"; + version = "4.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/globby/-/globby-4.0.0.tgz"; + name = "globby-4.0.0.tgz"; + sha1 = "36ff06c5a9dc1dbc201f700074992882857e9817"; + }; + deps = { + "array-union-1.0.1" = self.by-version."array-union"."1.0.1"; + "arrify-1.0.1" = self.by-version."arrify"."1.0.1"; + "glob-6.0.4" = self.by-version."glob"."6.0.4"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."globule"."~0.1.0" = self.by-version."globule"."0.1.0"; by-version."globule"."0.1.0" = self.buildNodePackage { @@ -17081,7 +18683,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/globule/-/globule-0.1.0.tgz"; + url = "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz"; name = "globule-0.1.0.tgz"; sha1 = "d9c8edde1da79d125a151b79533b978676346ae5"; }; @@ -17096,6 +18698,92 @@ os = [ ]; cpu = [ ]; }; + by-spec."glogg"."^1.0.0" = + self.by-version."glogg"."1.0.0"; + by-version."glogg"."1.0.0" = self.buildNodePackage { + name = "glogg-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz"; + name = "glogg-1.0.0.tgz"; + sha1 = "7fe0f199f57ac906cf512feead8f90ee4a284fc5"; + }; + deps = { + "sparkles-1.0.0" = self.by-version."sparkles"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."google-auth-library"."^0.9.6" = + self.by-version."google-auth-library"."0.9.7"; + by-version."google-auth-library"."0.9.7" = self.buildNodePackage { + name = "google-auth-library-0.9.7"; + version = "0.9.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-0.9.7.tgz"; + name = "google-auth-library-0.9.7.tgz"; + sha1 = "f181f276bfe1e2be9ad368a2db2076db3a7e8c88"; + }; + deps = { + "async-1.4.2" = self.by-version."async"."1.4.2"; + "gtoken-1.2.0" = self.by-version."gtoken"."1.2.0"; + "lodash.noop-3.0.1" = self.by-version."lodash.noop"."3.0.1"; + "jws-3.0.0" = self.by-version."jws"."3.0.0"; + "request-2.60.0" = self.by-version."request"."2.60.0"; + "string-template-0.2.1" = self.by-version."string-template"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."google-oauth-jwt"."~0.1.4" = + self.by-version."google-oauth-jwt"."0.1.7"; + by-version."google-oauth-jwt"."0.1.7" = self.buildNodePackage { + name = "google-oauth-jwt-0.1.7"; + version = "0.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/google-oauth-jwt/-/google-oauth-jwt-0.1.7.tgz"; + name = "google-oauth-jwt-0.1.7.tgz"; + sha1 = "3ebb79848aba2602aecc0b482244253df8238033"; + }; + deps = { + "request-2.70.0" = self.by-version."request"."2.70.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."google-p12-pem"."^0.1.0" = + self.by-version."google-p12-pem"."0.1.0"; + by-version."google-p12-pem"."0.1.0" = self.buildNodePackage { + name = "google-p12-pem-0.1.0"; + version = "0.1.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-0.1.0.tgz"; + name = "google-p12-pem-0.1.0.tgz"; + sha1 = "fb2523bf84ff74676e84c72b4def50961e617d1c"; + }; + deps = { + "node-forge-0.6.39" = self.by-version."node-forge"."0.6.39"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."googleapis"."0.8.0" = self.by-version."googleapis"."0.8.0"; by-version."googleapis"."0.8.0" = self.buildNodePackage { @@ -17103,14 +18791,14 @@ version = "0.8.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/googleapis/-/googleapis-0.8.0.tgz"; + url = "https://registry.npmjs.org/googleapis/-/googleapis-0.8.0.tgz"; name = "googleapis-0.8.0.tgz"; sha1 = "b7bdf177ee839f1bab5cf5e65cb4d0d74f27a86b"; }; deps = { "request-2.34.0" = self.by-version."request"."2.34.0"; "async-0.2.10" = self.by-version."async"."0.2.10"; - "gapitoken-0.1.4" = self.by-version."gapitoken"."0.1.4"; + "gapitoken-0.1.5" = self.by-version."gapitoken"."0.1.5"; }; optionalDependencies = { }; @@ -17125,15 +18813,34 @@ version = "1.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/googleapis/-/googleapis-1.1.5.tgz"; + url = "https://registry.npmjs.org/googleapis/-/googleapis-1.1.5.tgz"; name = "googleapis-1.1.5.tgz"; sha1 = "e10150ac9e8b25fb51799f10ed946c5b9f8064aa"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "gapitoken-0.1.4" = self.by-version."gapitoken"."0.1.4"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + "gapitoken-0.1.5" = self.by-version."gapitoken"."0.1.5"; "request-2.51.0" = self.by-version."request"."2.51.0"; - "string-template-0.2.0" = self.by-version."string-template"."0.2.0"; + "string-template-0.2.1" = self.by-version."string-template"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."googleclientlogin"."~0.2.8" = + self.by-version."googleclientlogin"."0.2.8"; + by-version."googleclientlogin"."0.2.8" = self.buildNodePackage { + name = "googleclientlogin-0.2.8"; + version = "0.2.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/googleclientlogin/-/googleclientlogin-0.2.8.tgz"; + name = "googleclientlogin-0.2.8.tgz"; + sha1 = "953ba87bbe8feda8f7e70f9f7721b29a503f8df0"; + }; + deps = { }; optionalDependencies = { }; @@ -17148,7 +18855,7 @@ version = "1.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-1.2.2.tgz"; + url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz"; name = "got-1.2.2.tgz"; sha1 = "d9430ba32f6a30218243884418767340aafc0400"; }; @@ -17161,26 +18868,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."got"."^2.4.0" = - self.by-version."got"."2.7.2"; - by-version."got"."2.7.2" = self.buildNodePackage { - name = "got-2.7.2"; - version = "2.7.2"; + by-spec."got"."^2.7.2" = + self.by-version."got"."2.9.2"; + by-version."got"."2.9.2" = self.buildNodePackage { + name = "got-2.9.2"; + version = "2.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-2.7.2.tgz"; - name = "got-2.7.2.tgz"; - sha1 = "089cfe07c37590d6ab59ced31d5ff5b09f05145d"; + url = "https://registry.npmjs.org/got/-/got-2.9.2.tgz"; + name = "got-2.9.2.tgz"; + sha1 = "2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee"; }; deps = { - "duplexify-3.3.0" = self.by-version."duplexify"."3.3.0"; - "infinity-agent-1.0.2" = self.by-version."infinity-agent"."1.0.2"; + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; - "nested-error-stacks-1.0.0" = self.by-version."nested-error-stacks"."1.0.0"; - "object-assign-2.0.0" = self.by-version."object-assign"."2.0.0"; - "prepend-http-1.0.1" = self.by-version."prepend-http"."1.0.1"; - "read-all-stream-2.1.2" = self.by-version."read-all-stream"."2.1.2"; + "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; + "object-assign-2.1.1" = self.by-version."object-assign"."2.1.1"; + "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; + "read-all-stream-2.2.0" = self.by-version."read-all-stream"."2.2.0"; "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; }; @@ -17190,14 +18897,83 @@ os = [ ]; cpu = [ ]; }; - by-spec."graceful-fs"."1.2" = + by-spec."got"."^3.2.0" = + self.by-version."got"."3.3.1"; + by-version."got"."3.3.1" = self.buildNodePackage { + name = "got-3.3.1"; + version = "3.3.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/got/-/got-3.3.1.tgz"; + name = "got-3.3.1.tgz"; + sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca"; + }; + deps = { + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; + "is-redirect-1.0.0" = self.by-version."is-redirect"."1.0.0"; + "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; + "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; + "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; + "object-assign-3.0.0" = self.by-version."object-assign"."3.0.0"; + "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; + "read-all-stream-3.1.0" = self.by-version."read-all-stream"."3.1.0"; + "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."graceful-fs"."^3.0.0" = + self.by-version."graceful-fs"."3.0.8"; + by-version."graceful-fs"."3.0.8" = self.buildNodePackage { + name = "graceful-fs-3.0.8"; + version = "3.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz"; + name = "graceful-fs-3.0.8.tgz"; + sha1 = "ce813e725fa82f7e6147d51c9a5ca68270551c22"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."graceful-fs"."^3.0.2" = + self.by-version."graceful-fs"."3.0.8"; + by-spec."graceful-fs"."^4.1.2" = + self.by-version."graceful-fs"."4.1.3"; + by-version."graceful-fs"."4.1.3" = self.buildNodePackage { + name = "graceful-fs-4.1.3"; + version = "4.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz"; + name = "graceful-fs-4.1.3.tgz"; + sha1 = "92033ce11113c41e2628d61fdfa40bc10dc0155c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."graceful-fs"."~1" = self.by-version."graceful-fs"."1.2.3"; by-version."graceful-fs"."1.2.3" = self.buildNodePackage { name = "graceful-fs-1.2.3"; version = "1.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz"; name = "graceful-fs-1.2.3.tgz"; sha1 = "15a4806a57547cb2d2dbf27f42e89a8c3451b364"; }; @@ -17209,14 +18985,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."graceful-fs"."2" = + by-spec."graceful-fs"."~1.2.0" = + self.by-version."graceful-fs"."1.2.3"; + by-spec."graceful-fs"."~2.0.0" = self.by-version."graceful-fs"."2.0.3"; by-version."graceful-fs"."2.0.3" = self.buildNodePackage { name = "graceful-fs-2.0.3"; version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz"; name = "graceful-fs-2.0.3.tgz"; sha1 = "7cd2cdb228a4a3f36e95efa6cc142de7d1a136d0"; }; @@ -17228,55 +19006,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."graceful-fs"."2 || 3" = - self.by-version."graceful-fs"."3.0.6"; - by-version."graceful-fs"."3.0.6" = self.buildNodePackage { - name = "graceful-fs-3.0.6"; - version = "3.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.6.tgz"; - name = "graceful-fs-3.0.6.tgz"; - sha1 = "dce3a18351cb94cdc82e688b2e3dd2842d1b09bb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."graceful-fs"."3" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs".">3.0.1 <4.0.0-0" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."^3.0.0" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."^3.0.1" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."^3.0.2" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."^3.0.4" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."^3.0.5" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."~1" = - self.by-version."graceful-fs"."1.2.3"; - by-spec."graceful-fs"."~1.2.0" = - self.by-version."graceful-fs"."1.2.3"; - by-spec."graceful-fs"."~2" = - self.by-version."graceful-fs"."2.0.3"; - by-spec."graceful-fs"."~2.0.0" = - self.by-version."graceful-fs"."2.0.3"; - by-spec."graceful-fs"."~2.0.1" = - self.by-version."graceful-fs"."2.0.3"; by-spec."graceful-fs"."~3.0.2" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."~3.0.4" = - self.by-version."graceful-fs"."3.0.6"; - by-spec."graceful-fs"."~3.0.6" = - self.by-version."graceful-fs"."3.0.6"; + self.by-version."graceful-fs"."3.0.8"; + by-spec."graceful-fs"."~4.1.3" = + self.by-version."graceful-fs"."4.1.3"; by-spec."graceful-readlink".">= 1.0.0" = self.by-version."graceful-readlink"."1.0.1"; by-version."graceful-readlink"."1.0.1" = self.buildNodePackage { @@ -17284,7 +19017,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; + url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; name = "graceful-readlink-1.0.1.tgz"; sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; }; @@ -17303,7 +19036,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gridfs-stream/-/gridfs-stream-1.1.1.tgz"; + url = "https://registry.npmjs.org/gridfs-stream/-/gridfs-stream-1.1.1.tgz"; name = "gridfs-stream-1.1.1.tgz"; sha1 = "3dd3a100ec2021a181282f6eb46709636074df89"; }; @@ -17317,25 +19050,6 @@ cpu = [ ]; }; "gridfs-stream" = self.by-version."gridfs-stream"."1.1.1"; - by-spec."growl"."1.7.x" = - self.by-version."growl"."1.7.0"; - by-version."growl"."1.7.0" = self.buildNodePackage { - name = "growl-1.7.0"; - version = "1.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/growl/-/growl-1.7.0.tgz"; - name = "growl-1.7.0.tgz"; - sha1 = "de2d66136d002e112ba70f3f10c31cf7c350b2da"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."growl"."1.8.1" = self.by-version."growl"."1.8.1"; by-version."growl"."1.8.1" = self.buildNodePackage { @@ -17343,7 +19057,7 @@ version = "1.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/growl/-/growl-1.8.1.tgz"; + url = "https://registry.npmjs.org/growl/-/growl-1.8.1.tgz"; name = "growl-1.8.1.tgz"; sha1 = "4b2dec8d907e93db336624dcec0183502f8c9428"; }; @@ -17355,14 +19069,51 @@ os = [ ]; cpu = [ ]; }; - by-spec."grunt"."0.4.x" = + by-spec."grunt".">=0.4.0" = + self.by-version."grunt"."1.0.1"; + by-version."grunt"."1.0.1" = self.buildNodePackage { + name = "grunt-1.0.1"; + version = "1.0.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/grunt/-/grunt-1.0.1.tgz"; + name = "grunt-1.0.1.tgz"; + sha1 = "e8778764e944b18f32bb0f10b9078475c9dfb56b"; + }; + deps = { + "coffee-script-1.10.0" = self.by-version."coffee-script"."1.10.0"; + "dateformat-1.0.12" = self.by-version."dateformat"."1.0.12"; + "eventemitter2-0.4.14" = self.by-version."eventemitter2"."0.4.14"; + "exit-0.1.2" = self.by-version."exit"."0.1.2"; + "findup-sync-0.3.0" = self.by-version."findup-sync"."0.3.0"; + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + "grunt-cli-1.2.0" = self.by-version."grunt-cli"."1.2.0"; + "grunt-known-options-1.1.0" = self.by-version."grunt-known-options"."1.1.0"; + "grunt-legacy-log-1.0.0" = self.by-version."grunt-legacy-log"."1.0.0"; + "grunt-legacy-util-1.0.0" = self.by-version."grunt-legacy-util"."1.0.0"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."grunt".">=0.4.x" = + self.by-version."grunt"."1.0.1"; + by-spec."grunt"."~0.4" = self.by-version."grunt"."0.4.5"; by-version."grunt"."0.4.5" = self.buildNodePackage { name = "grunt-0.4.5"; version = "0.4.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz"; + url = "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz"; name = "grunt-0.4.5.tgz"; sha1 = "56937cd5194324adff6d207631832a9d6ba4e7f0"; }; @@ -17386,7 +19137,7 @@ "exit-0.1.2" = self.by-version."exit"."0.1.2"; "getobject-0.1.0" = self.by-version."getobject"."0.1.0"; "grunt-legacy-util-0.2.0" = self.by-version."grunt-legacy-util"."0.2.0"; - "grunt-legacy-log-0.1.1" = self.by-version."grunt-legacy-log"."0.1.1"; + "grunt-legacy-log-0.1.3" = self.by-version."grunt-legacy-log"."0.1.3"; }; optionalDependencies = { }; @@ -17394,29 +19145,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."grunt".">=0.4.0" = - self.by-version."grunt"."0.4.5"; - by-spec."grunt"."~0.4" = - self.by-version."grunt"."0.4.5"; - by-spec."grunt"."~0.4.0" = - self.by-version."grunt"."0.4.5"; - by-spec."grunt"."~0.4.5" = - self.by-version."grunt"."0.4.5"; by-spec."grunt-cli"."*" = - self.by-version."grunt-cli"."0.1.13"; - by-version."grunt-cli"."0.1.13" = self.buildNodePackage { - name = "grunt-cli-0.1.13"; - version = "0.1.13"; + self.by-version."grunt-cli"."1.2.0"; + by-version."grunt-cli"."1.2.0" = self.buildNodePackage { + name = "grunt-cli-1.2.0"; + version = "1.2.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/grunt-cli/-/grunt-cli-0.1.13.tgz"; - name = "grunt-cli-0.1.13.tgz"; - sha1 = "e9ebc4047631f5012d922770c39378133cad10f4"; + url = "https://registry.npmjs.org/grunt-cli/-/grunt-cli-1.2.0.tgz"; + name = "grunt-cli-1.2.0.tgz"; + sha1 = "562b119ebb069ddb464ace2845501be97b35b6a8"; }; deps = { - "nopt-1.0.10" = self.by-version."nopt"."1.0.10"; - "findup-sync-0.1.3" = self.by-version."findup-sync"."0.1.3"; - "resolve-0.3.1" = self.by-version."resolve"."0.3.1"; + "findup-sync-0.3.0" = self.by-version."findup-sync"."0.3.0"; + "grunt-known-options-1.1.0" = self.by-version."grunt-known-options"."1.1.0"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; }; optionalDependencies = { }; @@ -17424,164 +19168,251 @@ os = [ ]; cpu = [ ]; }; - "grunt-cli" = self.by-version."grunt-cli"."0.1.13"; + "grunt-cli" = self.by-version."grunt-cli"."1.2.0"; + by-spec."grunt-cli"."~1.2.0" = + self.by-version."grunt-cli"."1.2.0"; by-spec."grunt-contrib-cssmin"."*" = - self.by-version."grunt-contrib-cssmin"."0.12.2"; - by-version."grunt-contrib-cssmin"."0.12.2" = self.buildNodePackage { - name = "grunt-contrib-cssmin-0.12.2"; - version = "0.12.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-0.12.2.tgz"; - name = "grunt-contrib-cssmin-0.12.2.tgz"; - sha1 = "254957427abdf63cd18f0690d34c0083fb544cff"; - }; - deps = { - "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; - "clean-css-3.2.1" = self.by-version."clean-css"."3.2.1"; - "maxmin-1.1.0" = self.by-version."maxmin"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."grunt"."0.4.5"]; - os = [ ]; - cpu = [ ]; - }; - "grunt-contrib-cssmin" = self.by-version."grunt-contrib-cssmin"."0.12.2"; - by-spec."grunt-contrib-jshint"."*" = - self.by-version."grunt-contrib-jshint"."0.11.2"; - by-version."grunt-contrib-jshint"."0.11.2" = self.buildNodePackage { - name = "grunt-contrib-jshint-0.11.2"; - version = "0.11.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-0.11.2.tgz"; - name = "grunt-contrib-jshint-0.11.2.tgz"; - sha1 = "a7e000427bb007848c1099264860c0485b4741d3"; - }; - deps = { - "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; - "jshint-2.7.0" = self.by-version."jshint"."2.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."grunt"."0.4.5"]; - os = [ ]; - cpu = [ ]; - }; - "grunt-contrib-jshint" = self.by-version."grunt-contrib-jshint"."0.11.2"; - by-spec."grunt-contrib-less"."*" = - self.by-version."grunt-contrib-less"."1.0.1"; - by-version."grunt-contrib-less"."1.0.1" = self.buildNodePackage { - name = "grunt-contrib-less-1.0.1"; + self.by-version."grunt-contrib-cssmin"."1.0.1"; + by-version."grunt-contrib-cssmin"."1.0.1" = self.buildNodePackage { + name = "grunt-contrib-cssmin-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.0.1.tgz"; - name = "grunt-contrib-less-1.0.1.tgz"; - sha1 = "87f32a5e474987a405c9c9890d33686a45021d51"; + url = "https://registry.npmjs.org/grunt-contrib-cssmin/-/grunt-contrib-cssmin-1.0.1.tgz"; + name = "grunt-contrib-cssmin-1.0.1.tgz"; + sha1 = "f6d45244cc87efdcc521f6918eafd921efd8c8da"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; - "less-2.4.0" = self.by-version."less"."2.4.0"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."grunt"."0.4.5"]; - os = [ ]; - cpu = [ ]; - }; - "grunt-contrib-less" = self.by-version."grunt-contrib-less"."1.0.1"; - by-spec."grunt-contrib-requirejs"."*" = - self.by-version."grunt-contrib-requirejs"."0.4.4"; - by-version."grunt-contrib-requirejs"."0.4.4" = self.buildNodePackage { - name = "grunt-contrib-requirejs-0.4.4"; - version = "0.4.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/grunt-contrib-requirejs/-/grunt-contrib-requirejs-0.4.4.tgz"; - name = "grunt-contrib-requirejs-0.4.4.tgz"; - sha1 = "87f2165a981e48a45d22f8cc5299d0934031b972"; - }; - deps = { - "requirejs-2.1.17" = self.by-version."requirejs"."2.1.17"; - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."grunt"."0.4.5"]; - os = [ ]; - cpu = [ ]; - }; - "grunt-contrib-requirejs" = self.by-version."grunt-contrib-requirejs"."0.4.4"; - by-spec."grunt-contrib-uglify"."*" = - self.by-version."grunt-contrib-uglify"."0.9.1"; - by-version."grunt-contrib-uglify"."0.9.1" = self.buildNodePackage { - name = "grunt-contrib-uglify-0.9.1"; - version = "0.9.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-0.9.1.tgz"; - name = "grunt-contrib-uglify-0.9.1.tgz"; - sha1 = "1eb8420009f15ed1a97368077479ab25ded28d1b"; - }; - deps = { - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "clean-css-3.4.11" = self.by-version."clean-css"."3.4.11"; "maxmin-1.1.0" = self.by-version."maxmin"."1.1.0"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; - "uri-path-0.0.2" = self.by-version."uri-path"."0.0.2"; }; optionalDependencies = { }; - peerDependencies = [ - self.by-version."grunt"."0.4.5"]; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "grunt-contrib-uglify" = self.by-version."grunt-contrib-uglify"."0.9.1"; - by-spec."grunt-karma"."*" = - self.by-version."grunt-karma"."0.10.1"; - by-version."grunt-karma"."0.10.1" = self.buildNodePackage { - name = "grunt-karma-0.10.1"; - version = "0.10.1"; + "grunt-contrib-cssmin" = self.by-version."grunt-contrib-cssmin"."1.0.1"; + by-spec."grunt-contrib-eslint"."*" = + self.by-version."grunt-contrib-eslint"."0.0.5"; + by-version."grunt-contrib-eslint"."0.0.5" = self.buildNodePackage { + name = "grunt-contrib-eslint-0.0.5"; + version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt-karma/-/grunt-karma-0.10.1.tgz"; - name = "grunt-karma-0.10.1.tgz"; - sha1 = "255fae402bb04409cf95c6ac77e8c1968934924b"; + url = "https://registry.npmjs.org/grunt-contrib-eslint/-/grunt-contrib-eslint-0.0.5.tgz"; + name = "grunt-contrib-eslint-0.0.5.tgz"; + sha1 = "6f2096e43262b49d5eaf13b1532dfca00ac9c9b0"; }; deps = { - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "eslint-2.7.0" = self.by-version."eslint"."2.7.0"; }; optionalDependencies = { }; peerDependencies = [ - self.by-version."grunt"."0.4.5" - self.by-version."karma"."0.12.32"]; + self.by-version."grunt"."1.0.1"]; + os = [ ]; + cpu = [ ]; + }; + "grunt-contrib-eslint" = self.by-version."grunt-contrib-eslint"."0.0.5"; + by-spec."grunt-contrib-jshint"."*" = + self.by-version."grunt-contrib-jshint"."1.0.0"; + by-version."grunt-contrib-jshint"."1.0.0" = self.buildNodePackage { + name = "grunt-contrib-jshint-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-contrib-jshint/-/grunt-contrib-jshint-1.0.0.tgz"; + name = "grunt-contrib-jshint-1.0.0.tgz"; + sha1 = "30f405a51de656bfa6eb029b9a464b9fe02a402a"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; + "jshint-2.9.1" = self.by-version."jshint"."2.9.1"; + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."grunt"."1.0.1"]; + os = [ ]; + cpu = [ ]; + }; + "grunt-contrib-jshint" = self.by-version."grunt-contrib-jshint"."1.0.0"; + by-spec."grunt-contrib-less"."*" = + self.by-version."grunt-contrib-less"."1.2.0"; + by-version."grunt-contrib-less"."1.2.0" = self.buildNodePackage { + name = "grunt-contrib-less-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-contrib-less/-/grunt-contrib-less-1.2.0.tgz"; + name = "grunt-contrib-less-1.2.0.tgz"; + sha1 = "72268e935e8eca73c2dfd515d0bdb97dfbd76295"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "less-2.6.1" = self.by-version."less"."2.6.1"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "grunt-contrib-less" = self.by-version."grunt-contrib-less"."1.2.0"; + by-spec."grunt-contrib-requirejs"."*" = + self.by-version."grunt-contrib-requirejs"."1.0.0"; + by-version."grunt-contrib-requirejs"."1.0.0" = self.buildNodePackage { + name = "grunt-contrib-requirejs-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-contrib-requirejs/-/grunt-contrib-requirejs-1.0.0.tgz"; + name = "grunt-contrib-requirejs-1.0.0.tgz"; + sha1 = "ec1670cafc32713902ee53569454715b2e3cbad5"; + }; + deps = { + "requirejs-2.2.0" = self.by-version."requirejs"."2.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "grunt-contrib-requirejs" = self.by-version."grunt-contrib-requirejs"."1.0.0"; + by-spec."grunt-contrib-uglify"."*" = + self.by-version."grunt-contrib-uglify"."1.0.1"; + by-version."grunt-contrib-uglify"."1.0.1" = self.buildNodePackage { + name = "grunt-contrib-uglify-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-contrib-uglify/-/grunt-contrib-uglify-1.0.1.tgz"; + name = "grunt-contrib-uglify-1.0.1.tgz"; + sha1 = "ad68411b963b99661211f76f466bdeded4fb07ac"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "maxmin-1.1.0" = self.by-version."maxmin"."1.1.0"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; + "uri-path-1.0.0" = self.by-version."uri-path"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "grunt-contrib-uglify" = self.by-version."grunt-contrib-uglify"."1.0.1"; + by-spec."grunt-karma"."*" = + self.by-version."grunt-karma"."0.12.2"; + by-version."grunt-karma"."0.12.2" = self.buildNodePackage { + name = "grunt-karma-0.12.2"; + version = "0.12.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-karma/-/grunt-karma-0.12.2.tgz"; + name = "grunt-karma-0.12.2.tgz"; + sha1 = "d52676ab94779e4b20052b5f3519eb32653dc566"; + }; + deps = { + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."grunt"."1.0.1" + self.by-version."karma"."0.13.22"]; + os = [ ]; + cpu = [ ]; + }; + "grunt-karma" = self.by-version."grunt-karma"."0.12.2"; + by-spec."grunt-known-options"."~1.1.0" = + self.by-version."grunt-known-options"."1.1.0"; + by-version."grunt-known-options"."1.1.0" = self.buildNodePackage { + name = "grunt-known-options-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.0.tgz"; + name = "grunt-known-options-1.1.0.tgz"; + sha1 = "a4274eeb32fa765da5a7a3b1712617ce3b144149"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "grunt-karma" = self.by-version."grunt-karma"."0.10.1"; by-spec."grunt-legacy-log"."~0.1.0" = - self.by-version."grunt-legacy-log"."0.1.1"; - by-version."grunt-legacy-log"."0.1.1" = self.buildNodePackage { - name = "grunt-legacy-log-0.1.1"; + self.by-version."grunt-legacy-log"."0.1.3"; + by-version."grunt-legacy-log"."0.1.3" = self.buildNodePackage { + name = "grunt-legacy-log-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.3.tgz"; + name = "grunt-legacy-log-0.1.3.tgz"; + sha1 = "ec29426e803021af59029f87d2f9cd7335a05531"; + }; + deps = { + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "grunt-legacy-log-utils-0.1.1" = self.by-version."grunt-legacy-log-utils"."0.1.1"; + "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; + "underscore.string-2.3.3" = self.by-version."underscore.string"."2.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."grunt-legacy-log"."~1.0.0" = + self.by-version."grunt-legacy-log"."1.0.0"; + by-version."grunt-legacy-log"."1.0.0" = self.buildNodePackage { + name = "grunt-legacy-log-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-1.0.0.tgz"; + name = "grunt-legacy-log-1.0.0.tgz"; + sha1 = "fb86f1809847bc07dc47843f9ecd6cacb62df2d5"; + }; + deps = { + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "grunt-legacy-log-utils-1.0.0" = self.by-version."grunt-legacy-log-utils"."1.0.0"; + "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "underscore.string-3.2.3" = self.by-version."underscore.string"."3.2.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."grunt-legacy-log-utils"."~0.1.1" = + self.by-version."grunt-legacy-log-utils"."0.1.1"; + by-version."grunt-legacy-log-utils"."0.1.1" = self.buildNodePackage { + name = "grunt-legacy-log-utils-0.1.1"; version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt-legacy-log/-/grunt-legacy-log-0.1.1.tgz"; - name = "grunt-legacy-log-0.1.1.tgz"; - sha1 = "d41f1a6abc9b0b1256a2b5ff02f4c3298dfcd57a"; + url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-0.1.1.tgz"; + name = "grunt-legacy-log-utils-0.1.1.tgz"; + sha1 = "c0706b9dd9064e116f36f23fe4e6b048672c0f7e"; }; deps = { - "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; "underscore.string-2.3.3" = self.by-version."underscore.string"."2.3.3"; "colors-0.6.2" = self.by-version."colors"."0.6.2"; }; @@ -17591,6 +19422,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."grunt-legacy-log-utils"."~1.0.0" = + self.by-version."grunt-legacy-log-utils"."1.0.0"; + by-version."grunt-legacy-log-utils"."1.0.0" = self.buildNodePackage { + name = "grunt-legacy-log-utils-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-legacy-log-utils/-/grunt-legacy-log-utils-1.0.0.tgz"; + name = "grunt-legacy-log-utils-1.0.0.tgz"; + sha1 = "a7b8e2d0fb35b5a50f4af986fc112749ebc96f3d"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "lodash-4.3.0" = self.by-version."lodash"."4.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."grunt-legacy-util"."~0.2.0" = self.by-version."grunt-legacy-util"."0.2.0"; by-version."grunt-legacy-util"."0.2.0" = self.buildNodePackage { @@ -17598,7 +19450,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz"; + url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-0.2.0.tgz"; name = "grunt-legacy-util-0.2.0.tgz"; sha1 = "93324884dbf7e37a9ff7c026dff451d94a9e554b"; }; @@ -17617,6 +19469,32 @@ os = [ ]; cpu = [ ]; }; + by-spec."grunt-legacy-util"."~1.0.0" = + self.by-version."grunt-legacy-util"."1.0.0"; + by-version."grunt-legacy-util"."1.0.0" = self.buildNodePackage { + name = "grunt-legacy-util-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/grunt-legacy-util/-/grunt-legacy-util-1.0.0.tgz"; + name = "grunt-legacy-util-1.0.0.tgz"; + sha1 = "386aa78dc6ed50986c2b18957265b1b48abb9b86"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "exit-0.1.2" = self.by-version."exit"."0.1.2"; + "getobject-0.1.0" = self.by-version."getobject"."0.1.0"; + "hooker-0.2.3" = self.by-version."hooker"."0.2.3"; + "lodash-4.3.0" = self.by-version."lodash"."4.3.0"; + "underscore.string-3.2.3" = self.by-version."underscore.string"."3.2.3"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."grunt-sed"."*" = self.by-version."grunt-sed"."0.1.1"; by-version."grunt-sed"."0.1.1" = self.buildNodePackage { @@ -17624,7 +19502,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/grunt-sed/-/grunt-sed-0.1.1.tgz"; + url = "https://registry.npmjs.org/grunt-sed/-/grunt-sed-0.1.1.tgz"; name = "grunt-sed-0.1.1.tgz"; sha1 = "2613d486909319b3f8f4bd75dafb46a642ec3f82"; }; @@ -17639,6 +19517,29 @@ cpu = [ ]; }; "grunt-sed" = self.by-version."grunt-sed"."0.1.1"; + by-spec."gtoken"."^1.1.0" = + self.by-version."gtoken"."1.2.0"; + by-version."gtoken"."1.2.0" = self.buildNodePackage { + name = "gtoken-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/gtoken/-/gtoken-1.2.0.tgz"; + name = "gtoken-1.2.0.tgz"; + sha1 = "bdab238758c355cecff569375efd76e236331b13"; + }; + deps = { + "google-p12-pem-0.1.0" = self.by-version."google-p12-pem"."0.1.0"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."guifi-earth"."https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " = self.by-version."guifi-earth"."0.2.1"; by-version."guifi-earth"."0.2.1" = self.buildNodePackage { @@ -17651,11 +19552,11 @@ sha256 = "a51a5beef55c14c68630275d51cf66c44a4462d1b20c0f08aef6d88a62ca077c"; }; deps = { - "coffee-script-1.9.2" = self.by-version."coffee-script"."1.9.2"; - "jade-1.9.2" = self.by-version."jade"."1.9.2"; + "coffee-script-1.10.0" = self.by-version."coffee-script"."1.10.0"; + "jade-1.11.0" = self.by-version."jade"."1.11.0"; "q-2.0.3" = self.by-version."q"."2.0.3"; - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; - "msgpack-0.2.6" = self.by-version."msgpack"."0.2.6"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; + "msgpack-1.0.2" = self.by-version."msgpack"."1.0.2"; }; optionalDependencies = { }; @@ -17665,30 +19566,30 @@ }; "guifi-earth" = self.by-version."guifi-earth"."0.2.1"; by-spec."gulp"."*" = - self.by-version."gulp"."3.8.11"; - by-version."gulp"."3.8.11" = self.buildNodePackage { - name = "gulp-3.8.11"; - version = "3.8.11"; + self.by-version."gulp"."3.9.1"; + by-version."gulp"."3.9.1" = self.buildNodePackage { + name = "gulp-3.9.1"; + version = "3.9.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/gulp/-/gulp-3.8.11.tgz"; - name = "gulp-3.8.11.tgz"; - sha1 = "d557e0a7283eb4136491969b0497767972f1d28a"; + url = "https://registry.npmjs.org/gulp/-/gulp-3.9.1.tgz"; + name = "gulp-3.9.1.tgz"; + sha1 = "571ce45928dd40af6514fc4011866016c13845b4"; }; deps = { "archy-1.0.0" = self.by-version."archy"."1.0.0"; - "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; "deprecated-0.0.1" = self.by-version."deprecated"."0.0.1"; - "gulp-util-3.0.4" = self.by-version."gulp-util"."3.0.4"; - "interpret-0.3.10" = self.by-version."interpret"."0.3.10"; - "liftoff-2.0.3" = self.by-version."liftoff"."2.0.3"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; + "gulp-util-3.0.7" = self.by-version."gulp-util"."3.0.7"; + "interpret-1.0.0" = self.by-version."interpret"."1.0.0"; + "liftoff-2.2.1" = self.by-version."liftoff"."2.2.1"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; "orchestrator-0.3.7" = self.by-version."orchestrator"."0.3.7"; - "pretty-hrtime-0.2.2" = self.by-version."pretty-hrtime"."0.2.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "tildify-1.0.0" = self.by-version."tildify"."1.0.0"; - "v8flags-2.0.5" = self.by-version."v8flags"."2.0.5"; - "vinyl-fs-0.3.13" = self.by-version."vinyl-fs"."0.3.13"; + "pretty-hrtime-1.0.2" = self.by-version."pretty-hrtime"."1.0.2"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + "tildify-1.1.2" = self.by-version."tildify"."1.1.2"; + "v8flags-2.0.11" = self.by-version."v8flags"."2.0.11"; + "vinyl-fs-0.3.14" = self.by-version."vinyl-fs"."0.3.14"; }; optionalDependencies = { }; @@ -17696,34 +19597,57 @@ os = [ ]; cpu = [ ]; }; - "gulp" = self.by-version."gulp"."3.8.11"; + "gulp" = self.by-version."gulp"."3.9.1"; by-spec."gulp-util"."^3.0.0" = - self.by-version."gulp-util"."3.0.4"; - by-version."gulp-util"."3.0.4" = self.buildNodePackage { - name = "gulp-util-3.0.4"; - version = "3.0.4"; + self.by-version."gulp-util"."3.0.7"; + by-version."gulp-util"."3.0.7" = self.buildNodePackage { + name = "gulp-util-3.0.7"; + version = "3.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gulp-util/-/gulp-util-3.0.4.tgz"; - name = "gulp-util-3.0.4.tgz"; - sha1 = "ec73553090fdb23d88fa02812ad1b61225854881"; + url = "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.7.tgz"; + name = "gulp-util-3.0.7.tgz"; + sha1 = "78925c4b8f8b49005ac01a011c557e6218941cbb"; }; deps = { "array-differ-1.0.0" = self.by-version."array-differ"."1.0.0"; "array-uniq-1.0.2" = self.by-version."array-uniq"."1.0.2"; - "beeper-1.0.0" = self.by-version."beeper"."1.0.0"; - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "dateformat-1.0.11" = self.by-version."dateformat"."1.0.11"; + "beeper-1.1.0" = self.by-version."beeper"."1.1.0"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "dateformat-1.0.12" = self.by-version."dateformat"."1.0.12"; + "fancy-log-1.2.0" = self.by-version."fancy-log"."1.2.0"; + "gulplog-1.0.0" = self.by-version."gulplog"."1.0.0"; + "has-gulplog-0.1.0" = self.by-version."has-gulplog"."0.1.0"; "lodash._reescape-3.0.0" = self.by-version."lodash._reescape"."3.0.0"; "lodash._reevaluate-3.0.0" = self.by-version."lodash._reevaluate"."3.0.0"; "lodash._reinterpolate-3.0.0" = self.by-version."lodash._reinterpolate"."3.0.0"; - "lodash.template-3.5.0" = self.by-version."lodash.template"."3.5.0"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; + "lodash.template-3.6.2" = self.by-version."lodash.template"."3.6.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; "multipipe-0.1.2" = self.by-version."multipipe"."0.1.2"; - "object-assign-2.0.0" = self.by-version."object-assign"."2.0.0"; + "object-assign-3.0.0" = self.by-version."object-assign"."3.0.0"; "replace-ext-0.0.1" = self.by-version."replace-ext"."0.0.1"; - "through2-0.6.5" = self.by-version."through2"."0.6.5"; - "vinyl-0.4.6" = self.by-version."vinyl"."0.4.6"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "vinyl-0.5.3" = self.by-version."vinyl"."0.5.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."gulplog"."^1.0.0" = + self.by-version."gulplog"."1.0.0"; + by-version."gulplog"."1.0.0" = self.buildNodePackage { + name = "gulplog-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz"; + name = "gulplog-1.0.0.tgz"; + sha1 = "e28c4d45d05ecbbed818363ce8f9c5926229ffe5"; + }; + deps = { + "glogg-1.0.0" = self.by-version."glogg"."1.0.0"; }; optionalDependencies = { }; @@ -17738,12 +19662,12 @@ version = "1.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/gzip-size/-/gzip-size-1.0.0.tgz"; + url = "https://registry.npmjs.org/gzip-size/-/gzip-size-1.0.0.tgz"; name = "gzip-size-1.0.0.tgz"; sha1 = "66cf8b101047227b95bace6ea1da0c177ed5c22f"; }; deps = { - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; "browserify-zlib-0.1.4" = self.by-version."browserify-zlib"."0.1.4"; }; optionalDependencies = { @@ -17759,12 +19683,12 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/gzippo/-/gzippo-0.2.0.tgz"; + url = "https://registry.npmjs.org/gzippo/-/gzippo-0.2.0.tgz"; name = "gzippo-0.2.0.tgz"; sha1 = "ffc594c482190c56531ed2d4a5864d0b0b7d2733"; }; deps = { - "send-0.12.2" = self.by-version."send"."0.12.2"; + "send-0.13.2" = self.by-version."send"."0.13.2"; }; optionalDependencies = { }; @@ -17780,7 +19704,7 @@ version = "2.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/handlebars/-/handlebars-2.0.0.tgz"; + url = "https://registry.npmjs.org/handlebars/-/handlebars-2.0.0.tgz"; name = "handlebars-2.0.0.tgz"; sha1 = "6e9d7f8514a3467fa5e9f82cc158ecfc1d5ac76f"; }; @@ -17794,16 +19718,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."handlebars"."3.0.0" = - self.by-version."handlebars"."3.0.0"; - by-version."handlebars"."3.0.0" = self.buildNodePackage { - name = "handlebars-3.0.0"; - version = "3.0.0"; + by-spec."handlebars"."^3.0.0" = + self.by-version."handlebars"."3.0.3"; + by-version."handlebars"."3.0.3" = self.buildNodePackage { + name = "handlebars-3.0.3"; + version = "3.0.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/handlebars/-/handlebars-3.0.0.tgz"; - name = "handlebars-3.0.0.tgz"; - sha1 = "7f4e537f4dd6992869d66c01b7505eba3561a5d5"; + url = "https://registry.npmjs.org/handlebars/-/handlebars-3.0.3.tgz"; + name = "handlebars-3.0.3.tgz"; + sha1 = "0e09651a2f0fb3c949160583710d551f92e6d2ad"; }; deps = { "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; @@ -17816,45 +19740,93 @@ os = [ ]; cpu = [ ]; }; - by-spec."handlebars"."^2.0.0" = - self.by-version."handlebars"."2.0.0"; - by-spec."handlebars"."~1.3.0" = - self.by-version."handlebars"."1.3.0"; - by-version."handlebars"."1.3.0" = self.buildNodePackage { - name = "handlebars-1.3.0"; - version = "1.3.0"; + by-spec."handlebars"."^4.0.1" = + self.by-version."handlebars"."4.0.5"; + by-version."handlebars"."4.0.5" = self.buildNodePackage { + name = "handlebars-4.0.5"; + version = "4.0.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/handlebars/-/handlebars-1.3.0.tgz"; - name = "handlebars-1.3.0.tgz"; - sha1 = "9e9b130a93e389491322d975cf3ec1818c37ce34"; + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.0.5.tgz"; + name = "handlebars-4.0.5.tgz"; + sha1 = "92c6ed6bb164110c50d4d8d0fbddc70806c6f8e7"; }; deps = { - "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; }; optionalDependencies = { - "uglify-js-2.3.6" = self.by-version."uglify-js"."2.3.6"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; + by-spec."handlebars"."^4.0.3" = + self.by-version."handlebars"."4.0.5"; by-spec."har-validator"."^1.4.0" = - self.by-version."har-validator"."1.6.1"; - by-version."har-validator"."1.6.1" = self.buildNodePackage { - name = "har-validator-1.6.1"; - version = "1.6.1"; + self.by-version."har-validator"."1.8.0"; + by-version."har-validator"."1.8.0" = self.buildNodePackage { + name = "har-validator-1.8.0"; + version = "1.8.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/har-validator/-/har-validator-1.6.1.tgz"; - name = "har-validator-1.6.1.tgz"; - sha1 = "baef452cde645eff7d26562e8e749d7fd000b7fd"; + url = "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz"; + name = "har-validator-1.8.0.tgz"; + sha1 = "d83842b0eb4c435960aeb108a067a3aa94c0eeb2"; + }; + deps = { + "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."har-validator"."^1.6.1" = + self.by-version."har-validator"."1.8.0"; + by-spec."har-validator"."~2.0.2" = + self.by-version."har-validator"."2.0.6"; + by-version."har-validator"."2.0.6" = self.buildNodePackage { + name = "har-validator-2.0.6"; + version = "2.0.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; + name = "har-validator-2.0.6.tgz"; + sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."har-validator"."~2.0.6" = + self.by-version."har-validator"."2.0.6"; + by-spec."harmony-reflect"."^1.4.2" = + self.by-version."harmony-reflect"."1.4.5"; + by-version."harmony-reflect"."1.4.5" = self.buildNodePackage { + name = "harmony-reflect-1.4.5"; + version = "1.4.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.4.5.tgz"; + name = "harmony-reflect-1.4.5.tgz"; + sha1 = "a762be580997f2958e8dc61169a056b269e53bdc"; }; deps = { - "bluebird-2.9.24" = self.by-version."bluebird"."2.9.24"; - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "commander-2.8.0" = self.by-version."commander"."2.8.0"; - "is-my-json-valid-2.10.1" = self.by-version."is-my-json-valid"."2.10.1"; }; optionalDependencies = { }; @@ -17863,17 +19835,18 @@ cpu = [ ]; }; by-spec."has"."^1.0.0" = - self.by-version."has"."1.0.0"; - by-version."has"."1.0.0" = self.buildNodePackage { - name = "has-1.0.0"; - version = "1.0.0"; + self.by-version."has"."1.0.1"; + by-version."has"."1.0.1" = self.buildNodePackage { + name = "has-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has/-/has-1.0.0.tgz"; - name = "has-1.0.0.tgz"; - sha1 = "56c6582d23b40f3a5458f68ba79bc6c4bef203b3"; + url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz"; + name = "has-1.0.1.tgz"; + sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28"; }; deps = { + "function-bind-1.1.0" = self.by-version."function-bind"."1.1.0"; }; optionalDependencies = { }; @@ -17888,7 +19861,7 @@ version = "0.1.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz"; + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-0.1.0.tgz"; name = "has-ansi-0.1.0.tgz"; sha1 = "84f265aae8c0e6a88a12d7022894b7568894c62e"; }; @@ -17908,7 +19881,7 @@ version = "1.0.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz"; + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-1.0.3.tgz"; name = "has-ansi-1.0.3.tgz"; sha1 = "c0b5b1615d9e382b0ff67169d967b425e48ca538"; }; @@ -17922,19 +19895,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."has-binary"."0.1.5" = - self.by-version."has-binary"."0.1.5"; - by-version."has-binary"."0.1.5" = self.buildNodePackage { - name = "has-binary-0.1.5"; - version = "0.1.5"; + by-spec."has-ansi"."^2.0.0" = + self.by-version."has-ansi"."2.0.0"; + by-version."has-ansi"."2.0.0" = self.buildNodePackage { + name = "has-ansi-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has-binary/-/has-binary-0.1.5.tgz"; - name = "has-binary-0.1.5.tgz"; - sha1 = "95e75720ff31b72a3ba89a5b6dce082e4bc6467f"; + url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; + name = "has-ansi-2.0.0.tgz"; + sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; }; deps = { - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; }; optionalDependencies = { }; @@ -17949,7 +19922,7 @@ version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz"; + url = "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz"; name = "has-binary-0.1.6.tgz"; sha1 = "25326f39cfa4f616ad8787894e3af2cfbc7b6e10"; }; @@ -17962,6 +19935,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."has-binary"."0.1.7" = + self.by-version."has-binary"."0.1.7"; + by-version."has-binary"."0.1.7" = self.buildNodePackage { + name = "has-binary-0.1.7"; + version = "0.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz"; + name = "has-binary-0.1.7.tgz"; + sha1 = "68e61eb16210c9545a0a5cce06a873912fe1e68c"; + }; + deps = { + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."has-binary-data"."0.1.1" = self.by-version."has-binary-data"."0.1.1"; by-version."has-binary-data"."0.1.1" = self.buildNodePackage { @@ -17969,7 +19962,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has-binary-data/-/has-binary-data-0.1.1.tgz"; + url = "https://registry.npmjs.org/has-binary-data/-/has-binary-data-0.1.1.tgz"; name = "has-binary-data-0.1.1.tgz"; sha1 = "e10749fb87828a52df96f4086587eb4a03966439"; }; @@ -17982,26 +19975,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."has-binary-data"."0.1.3" = - self.by-version."has-binary-data"."0.1.3"; - by-version."has-binary-data"."0.1.3" = self.buildNodePackage { - name = "has-binary-data-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/has-binary-data/-/has-binary-data-0.1.3.tgz"; - name = "has-binary-data-0.1.3.tgz"; - sha1 = "8ebb18388b57f19a5231275a16fc18d51f379aae"; - }; - deps = { - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."has-cors"."1.0.3" = self.by-version."has-cors"."1.0.3"; by-version."has-cors"."1.0.3" = self.buildNodePackage { @@ -18009,7 +19982,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz"; + url = "https://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz"; name = "has-cors-1.0.3.tgz"; sha1 = "502acb9b3104dac33dd2630eaf2f888b0baf4cb3"; }; @@ -18022,16 +19995,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."has-unicode"."^1.0.0" = - self.by-version."has-unicode"."1.0.0"; - by-version."has-unicode"."1.0.0" = self.buildNodePackage { - name = "has-unicode-1.0.0"; - version = "1.0.0"; + by-spec."has-cors"."1.1.0" = + self.by-version."has-cors"."1.1.0"; + by-version."has-cors"."1.1.0" = self.buildNodePackage { + name = "has-cors-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/has-unicode/-/has-unicode-1.0.0.tgz"; - name = "has-unicode-1.0.0.tgz"; - sha1 = "bac5c44e064c2ffc3b8fcbd8c71afe08f9afc8cc"; + url = "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz"; + name = "has-cors-1.1.0.tgz"; + sha1 = "5e474793f7ea9843d1bb99c23eef49ff126fff39"; }; deps = { }; @@ -18041,16 +20014,76 @@ os = [ ]; cpu = [ ]; }; - by-spec."hash.js"."^1.0.0" = - self.by-version."hash.js"."1.0.2"; - by-version."hash.js"."1.0.2" = self.buildNodePackage { - name = "hash.js-1.0.2"; - version = "1.0.2"; + by-spec."has-flag"."^1.0.0" = + self.by-version."has-flag"."1.0.0"; + by-version."has-flag"."1.0.0" = self.buildNodePackage { + name = "has-flag-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hash.js/-/hash.js-1.0.2.tgz"; - name = "hash.js-1.0.2.tgz"; - sha1 = "bc7d601f4e0d05a32f3526d11fe39f7a5eb8c187"; + url = "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz"; + name = "has-flag-1.0.0.tgz"; + sha1 = "9d9e793165ce017a00f00418c43f942a7b1d11fa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."has-gulplog"."^0.1.0" = + self.by-version."has-gulplog"."0.1.0"; + by-version."has-gulplog"."0.1.0" = self.buildNodePackage { + name = "has-gulplog-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz"; + name = "has-gulplog-0.1.0.tgz"; + sha1 = "6414c82913697da51590397dafb12f22967811ce"; + }; + deps = { + "sparkles-1.0.0" = self.by-version."sparkles"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."has-unicode"."^2.0.0" = + self.by-version."has-unicode"."2.0.0"; + by-version."has-unicode"."2.0.0" = self.buildNodePackage { + name = "has-unicode-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.0.tgz"; + name = "has-unicode-2.0.0.tgz"; + sha1 = "a3cd96c307ba41d559c5a2ee408c12a11c4c2ec3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."has-unicode"."~2.0.0" = + self.by-version."has-unicode"."2.0.0"; + by-spec."hash.js"."^1.0.0" = + self.by-version."hash.js"."1.0.3"; + by-version."hash.js"."1.0.3" = self.buildNodePackage { + name = "hash.js-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/hash.js/-/hash.js-1.0.3.tgz"; + name = "hash.js-1.0.3.tgz"; + sha1 = "1332ff00156c0a0ffdd8236013d07b77a0451573"; }; deps = { "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -18061,6 +20094,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."hasha"."^2.2.0" = + self.by-version."hasha"."2.2.0"; + by-version."hasha"."2.2.0" = self.buildNodePackage { + name = "hasha-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/hasha/-/hasha-2.2.0.tgz"; + name = "hasha-2.2.0.tgz"; + sha1 = "78d7cbfc1e6d66303fe79837365984517b2f6ee1"; + }; + deps = { + "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."hasher"."~1.2.0" = self.by-version."hasher"."1.2.0"; by-version."hasher"."1.2.0" = self.buildNodePackage { @@ -18068,7 +20122,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hasher/-/hasher-1.2.0.tgz"; + url = "https://registry.npmjs.org/hasher/-/hasher-1.2.0.tgz"; name = "hasher-1.2.0.tgz"; sha1 = "8b5341c3496124b0724ac8555fbb8ca363ebbb73"; }; @@ -18088,7 +20142,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz"; + url = "https://registry.npmjs.org/hashish/-/hashish-0.0.4.tgz"; name = "hashish-0.0.4.tgz"; sha1 = "6d60bc6ffaf711b6afd60e426d077988014e6554"; }; @@ -18103,31 +20157,6 @@ }; by-spec."hashish"."0.0.4" = self.by-version."hashish"."0.0.4"; - by-spec."hashish"."0.0.x" = - self.by-version."hashish"."0.0.4"; - by-spec."hashring"."3.1.0" = - self.by-version."hashring"."3.1.0"; - by-version."hashring"."3.1.0" = self.buildNodePackage { - name = "hashring-3.1.0"; - version = "3.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hashring/-/hashring-3.1.0.tgz"; - name = "hashring-3.1.0.tgz"; - sha1 = "f315f99f281d9ef0292ca7abe50aa8f4ef7f8aad"; - }; - deps = { - "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "connection-parse-0.0.7" = self.by-version."connection-parse"."0.0.7"; - "nan-1.5.3" = self.by-version."nan"."1.5.3"; - "simple-lru-cache-0.0.2" = self.by-version."simple-lru-cache"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."hat"."*" = self.by-version."hat"."0.0.3"; by-version."hat"."0.0.3" = self.buildNodePackage { @@ -18135,7 +20164,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hat/-/hat-0.0.3.tgz"; + url = "https://registry.npmjs.org/hat/-/hat-0.0.3.tgz"; name = "hat-0.0.3.tgz"; sha1 = "bb014a9e64b3788aed8005917413d4ff3d502d8a"; }; @@ -18151,8 +20180,6 @@ self.by-version."hat"."0.0.3"; by-spec."hat"."^0.0.3" = self.by-version."hat"."0.0.3"; - by-spec."hat"."~0.0.3" = - self.by-version."hat"."0.0.3"; by-spec."hawk"."1.1.1" = self.by-version."hawk"."1.1.1"; by-version."hawk"."1.1.1" = self.buildNodePackage { @@ -18160,7 +20187,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-1.1.1.tgz"; + url = "https://registry.npmjs.org/hawk/-/hawk-1.1.1.tgz"; name = "hawk-1.1.1.tgz"; sha1 = "87cd491f9b46e4e2aeaca335416766885d2d1ed9"; }; @@ -18183,7 +20210,7 @@ version = "0.10.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz"; + url = "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz"; name = "hawk-0.10.2.tgz"; sha1 = "9b361dee95a931640e6d504e05609a8fc3ac45d2"; }; @@ -18199,29 +20226,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."hawk"."~0.13.0" = - self.by-version."hawk"."0.13.1"; - by-version."hawk"."0.13.1" = self.buildNodePackage { - name = "hawk-0.13.1"; - version = "0.13.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-0.13.1.tgz"; - name = "hawk-0.13.1.tgz"; - sha1 = "3617958821f58311e4d7f6de291fca662b412ef4"; - }; - deps = { - "hoek-0.8.5" = self.by-version."hoek"."0.8.5"; - "boom-0.4.2" = self.by-version."boom"."0.4.2"; - "cryptiles-0.2.2" = self.by-version."cryptiles"."0.2.2"; - "sntp-0.2.4" = self.by-version."sntp"."0.2.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."hawk"."~1.0.0" = self.by-version."hawk"."1.0.0"; by-version."hawk"."1.0.0" = self.buildNodePackage { @@ -18229,7 +20233,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz"; + url = "https://registry.npmjs.org/hawk/-/hawk-1.0.0.tgz"; name = "hawk-1.0.0.tgz"; sha1 = "b90bb169807285411da7ffcb8dd2598502d3b52d"; }; @@ -18252,14 +20256,14 @@ version = "2.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-2.3.1.tgz"; + url = "https://registry.npmjs.org/hawk/-/hawk-2.3.1.tgz"; name = "hawk-2.3.1.tgz"; sha1 = "1e731ce39447fa1d0f6d707f7bceebec0fd1ec1f"; }; deps = { - "hoek-2.12.0" = self.by-version."hoek"."2.12.0"; - "boom-2.7.1" = self.by-version."boom"."2.7.1"; - "cryptiles-2.0.4" = self.by-version."cryptiles"."2.0.4"; + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "boom-2.10.1" = self.by-version."boom"."2.10.1"; + "cryptiles-2.0.5" = self.by-version."cryptiles"."2.0.5"; "sntp-1.0.9" = self.by-version."sntp"."1.0.9"; }; optionalDependencies = { @@ -18268,6 +20272,31 @@ os = [ ]; cpu = [ ]; }; + by-spec."hawk"."~3.1.0" = + self.by-version."hawk"."3.1.3"; + by-version."hawk"."3.1.3" = self.buildNodePackage { + name = "hawk-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; + name = "hawk-3.1.3.tgz"; + sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "boom-2.10.1" = self.by-version."boom"."2.10.1"; + "cryptiles-2.0.5" = self.by-version."cryptiles"."2.0.5"; + "sntp-1.0.9" = self.by-version."sntp"."1.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."hawk"."~3.1.3" = + self.by-version."hawk"."3.1.3"; by-spec."hbo-dnsd"."0.9.8" = self.by-version."hbo-dnsd"."0.9.8"; by-version."hbo-dnsd"."0.9.8" = self.buildNodePackage { @@ -18275,7 +20304,7 @@ version = "0.9.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hbo-dnsd/-/hbo-dnsd-0.9.8.tgz"; + url = "https://registry.npmjs.org/hbo-dnsd/-/hbo-dnsd-0.9.8.tgz"; name = "hbo-dnsd-0.9.8.tgz"; sha1 = "ab964f34cf13b40ea7d412f125d576716c551ef2"; }; @@ -18296,7 +20325,7 @@ version = "0.3.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/he/-/he-0.3.6.tgz"; + url = "https://registry.npmjs.org/he/-/he-0.3.6.tgz"; name = "he-0.3.6.tgz"; sha1 = "9d7bc446e77963933301dd602d5731cb861135e0"; }; @@ -18315,7 +20344,7 @@ version = "0.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/headless/-/headless-0.1.7.tgz"; + url = "https://registry.npmjs.org/headless/-/headless-0.1.7.tgz"; name = "headless-0.1.7.tgz"; sha1 = "6e62fae668947f88184d5c156ede7c5695a7e9c8"; }; @@ -18327,18 +20356,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."heapdump"."^0.2.9" = - self.by-version."heapdump"."0.2.10"; - by-version."heapdump"."0.2.10" = self.buildNodePackage { - name = "heapdump-0.2.10"; - version = "0.2.10"; + by-spec."help-me"."^0.1.0" = + self.by-version."help-me"."0.1.0"; + by-version."help-me"."0.1.0" = self.buildNodePackage { + name = "help-me-0.1.0"; + version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/heapdump/-/heapdump-0.2.10.tgz"; - name = "heapdump-0.2.10.tgz"; - sha1 = "e4fc818f5a33f361238e6dfd59c650ba2da74624"; + url = "https://registry.npmjs.org/help-me/-/help-me-0.1.0.tgz"; + name = "help-me-0.1.0.tgz"; + sha1 = "0fb3a40537ad5265b6b49413022c60d35b49539a"; }; deps = { + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "pump-1.0.1" = self.by-version."pump"."1.0.1"; + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -18347,15 +20380,15 @@ cpu = [ ]; }; by-spec."highlight.js"."8.x" = - self.by-version."highlight.js"."8.5.0"; - by-version."highlight.js"."8.5.0" = self.buildNodePackage { - name = "highlight.js-8.5.0"; - version = "8.5.0"; + self.by-version."highlight.js"."8.9.1"; + by-version."highlight.js"."8.9.1" = self.buildNodePackage { + name = "highlight.js-8.9.1"; + version = "8.9.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/highlight.js/-/highlight.js-8.5.0.tgz"; - name = "highlight.js-8.5.0.tgz"; - sha1 = "6473d5099edb9f82fa50286b9178c8583ad7d652"; + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-8.9.1.tgz"; + name = "highlight.js-8.9.1.tgz"; + sha1 = "b8a9c5493212a9392f0222b649c9611497ebfb88"; }; deps = { }; @@ -18372,7 +20405,7 @@ version = "0.3.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/hipache/-/hipache-0.3.1.tgz"; + url = "https://registry.npmjs.org/hipache/-/hipache-0.3.1.tgz"; name = "hipache-0.3.1.tgz"; sha1 = "e21764eafe6429ec8dc9377b55e1ca86799704d5"; }; @@ -18390,19 +20423,19 @@ }; "hipache" = self.by-version."hipache"."0.3.1"; by-spec."hiredis"."*" = - self.by-version."hiredis"."0.3.0"; - by-version."hiredis"."0.3.0" = self.buildNodePackage { - name = "hiredis-0.3.0"; - version = "0.3.0"; + self.by-version."hiredis"."0.4.1"; + by-version."hiredis"."0.4.1" = self.buildNodePackage { + name = "hiredis-0.4.1"; + version = "0.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hiredis/-/hiredis-0.3.0.tgz"; - name = "hiredis-0.3.0.tgz"; - sha1 = "8981aa09d0f9d7e00c88ceec72ece68444f412d9"; + url = "https://registry.npmjs.org/hiredis/-/hiredis-0.4.1.tgz"; + name = "hiredis-0.4.1.tgz"; + sha1 = "aab4dcfd0fc4cbdb219d268005f2335a3c639e8f"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.5.3" = self.by-version."nan"."1.5.3"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -18417,7 +20450,7 @@ version = "0.7.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz"; + url = "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz"; name = "hoek-0.7.6.tgz"; sha1 = "60fbd904557541cd2b8795abf308a1b3770e155a"; }; @@ -18429,25 +20462,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."hoek"."0.8.x" = - self.by-version."hoek"."0.8.5"; - by-version."hoek"."0.8.5" = self.buildNodePackage { - name = "hoek-0.8.5"; - version = "0.8.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-0.8.5.tgz"; - name = "hoek-0.8.5.tgz"; - sha1 = "1e9fd770ef7ebe0274adfcb5b0806a025a5e4e9f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."hoek"."0.9.x" = self.by-version."hoek"."0.9.1"; by-version."hoek"."0.9.1" = self.buildNodePackage { @@ -18455,7 +20469,7 @@ version = "0.9.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz"; + url = "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz"; name = "hoek-0.9.1.tgz"; sha1 = "3d322462badf07716ea7eb85baf88079cddce505"; }; @@ -18468,15 +20482,15 @@ cpu = [ ]; }; by-spec."hoek"."2.x.x" = - self.by-version."hoek"."2.12.0"; - by-version."hoek"."2.12.0" = self.buildNodePackage { - name = "hoek-2.12.0"; - version = "2.12.0"; + self.by-version."hoek"."2.16.3"; + by-version."hoek"."2.16.3" = self.buildNodePackage { + name = "hoek-2.16.3"; + version = "2.16.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-2.12.0.tgz"; - name = "hoek-2.12.0.tgz"; - sha1 = "5d1196e0bf20c5cec957e8927101164effdaf1c9"; + url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; + name = "hoek-2.16.3.tgz"; + sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; }; deps = { }; @@ -18486,6 +20500,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."hoek"."^2.14.0" = + self.by-version."hoek"."2.16.3"; by-spec."hooker"."^0.2.3" = self.by-version."hooker"."0.2.3"; by-version."hooker"."0.2.3" = self.buildNodePackage { @@ -18493,7 +20509,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"; + url = "https://registry.npmjs.org/hooker/-/hooker-0.2.3.tgz"; name = "hooker-0.2.3.tgz"; sha1 = "b834f723cc4a242aa65963459df6d984c5d3d959"; }; @@ -18514,7 +20530,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hooks/-/hooks-0.2.1.tgz"; + url = "https://registry.npmjs.org/hooks/-/hooks-0.2.1.tgz"; name = "hooks-0.2.1.tgz"; sha1 = "0f591b1b344bdcb3df59773f62fbbaf85bf4028b"; }; @@ -18526,16 +20542,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."hooks"."0.3.2" = - self.by-version."hooks"."0.3.2"; - by-version."hooks"."0.3.2" = self.buildNodePackage { - name = "hooks-0.3.2"; - version = "0.3.2"; + by-spec."hooks-fixed"."1.1.0" = + self.by-version."hooks-fixed"."1.1.0"; + by-version."hooks-fixed"."1.1.0" = self.buildNodePackage { + name = "hooks-fixed-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hooks/-/hooks-0.3.2.tgz"; - name = "hooks-0.3.2.tgz"; - sha1 = "a31f060c2026cea6cf1ca3eb178430e718e1c4a3"; + url = "https://registry.npmjs.org/hooks-fixed/-/hooks-fixed-1.1.0.tgz"; + name = "hooks-fixed-1.1.0.tgz"; + sha1 = "0e8c15336708e6611185fe390b44687dd5230dbb"; }; deps = { }; @@ -18545,16 +20561,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."hosted-git-info"."^1.5.3" = - self.by-version."hosted-git-info"."1.6.0"; - by-version."hosted-git-info"."1.6.0" = self.buildNodePackage { - name = "hosted-git-info-1.6.0"; - version = "1.6.0"; + by-spec."hosted-git-info"."^2.1.4" = + self.by-version."hosted-git-info"."2.1.4"; + by-version."hosted-git-info"."2.1.4" = self.buildNodePackage { + name = "hosted-git-info-2.1.4"; + version = "2.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hosted-git-info/-/hosted-git-info-1.6.0.tgz"; - name = "hosted-git-info-1.6.0.tgz"; - sha1 = "dbc718bed09c2f30abe6bdc68d46b9c5317282db"; + url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz"; + name = "hosted-git-info-2.1.4.tgz"; + sha1 = "d9e953b26988be88096c46e926494d9604c300f8"; }; deps = { }; @@ -18564,27 +20580,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."hosted-git-info"."^2.0.2" = - self.by-version."hosted-git-info"."2.1.2"; - by-version."hosted-git-info"."2.1.2" = self.buildNodePackage { - name = "hosted-git-info-2.1.2"; - version = "2.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.2.tgz"; - name = "hosted-git-info-2.1.2.tgz"; - sha1 = "f947976852931851c33644bbce80d1e499795246"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."hosted-git-info"."~2.1.2" = - self.by-version."hosted-git-info"."2.1.2"; + by-spec."hosted-git-info"."~2.1.4" = + self.by-version."hosted-git-info"."2.1.4"; by-spec."html-md"."^3.0.2" = self.by-version."html-md"."3.0.2"; by-version."html-md"."3.0.2" = self.buildNodePackage { @@ -18592,7 +20589,7 @@ version = "3.0.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/html-md/-/html-md-3.0.2.tgz"; + url = "https://registry.npmjs.org/html-md/-/html-md-3.0.2.tgz"; name = "html-md-3.0.2.tgz"; sha1 = "becac66f3c7d27aa99409d0a17f1131f16fe510f"; }; @@ -18614,7 +20611,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/html5/-/html5-1.0.5.tgz"; + url = "https://registry.npmjs.org/html5/-/html5-1.0.5.tgz"; name = "html5-1.0.5.tgz"; sha1 = "c9e6ce4e07a70521904bee1b318a4c48feab5848"; }; @@ -18636,7 +20633,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/html5-entities/-/html5-entities-1.0.0.tgz"; + url = "https://registry.npmjs.org/html5-entities/-/html5-entities-1.0.0.tgz"; name = "html5-entities-1.0.0.tgz"; sha1 = "e568fd84d8efb52c806b16c98b92dad548ebe370"; }; @@ -18648,18 +20645,54 @@ os = [ ]; cpu = [ ]; }; - by-spec."html5-entities"."~1.0.0" = - self.by-version."html5-entities"."1.0.0"; - by-spec."htmlparser2"."3.8.x" = - self.by-version."htmlparser2"."3.8.2"; - by-version."htmlparser2"."3.8.2" = self.buildNodePackage { - name = "htmlparser2-3.8.2"; - version = "3.8.2"; + by-spec."htmlencode".">=0.0.1" = + self.by-version."htmlencode"."0.0.4"; + by-version."htmlencode"."0.0.4" = self.buildNodePackage { + name = "htmlencode-0.0.4"; + version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.2.tgz"; - name = "htmlparser2-3.8.2.tgz"; - sha1 = "0d6bc3471d01e9766fc2c274cbac1d55b36c009c"; + url = "https://registry.npmjs.org/htmlencode/-/htmlencode-0.0.4.tgz"; + name = "htmlencode-0.0.4.tgz"; + sha1 = "f7e2d6afbe18a87a78e63ba3308e753766740e3f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."htmlescape"."^1.1.0" = + self.by-version."htmlescape"."1.1.1"; + by-version."htmlescape"."1.1.1" = self.buildNodePackage { + name = "htmlescape-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/htmlescape/-/htmlescape-1.1.1.tgz"; + name = "htmlescape-1.1.1.tgz"; + sha1 = "3a03edc2214bca3b66424a3e7959349509cb0351"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."htmlparser2"."3.8.x" = + self.by-version."htmlparser2"."3.8.3"; + by-version."htmlparser2"."3.8.3" = self.buildNodePackage { + name = "htmlparser2-3.8.3"; + version = "3.8.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz"; + name = "htmlparser2-3.8.3.tgz"; + sha1 = "996c28b191516a8be86501a7d79757e5c70c1068"; }; deps = { "domhandler-2.3.0" = self.by-version."domhandler"."2.3.0"; @@ -18675,11 +20708,37 @@ cpu = [ ]; }; by-spec."htmlparser2".">= 3.1.5 <4" = - self.by-version."htmlparser2"."3.8.2"; + self.by-version."htmlparser2"."3.9.0"; + by-version."htmlparser2"."3.9.0" = self.buildNodePackage { + name = "htmlparser2-3.9.0"; + version = "3.9.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.9.0.tgz"; + name = "htmlparser2-3.9.0.tgz"; + sha1 = "1bd6ba4d3358bbd31f93e13fb952961cf4d31b3f"; + }; + deps = { + "domelementtype-1.3.0" = self.by-version."domelementtype"."1.3.0"; + "domhandler-2.3.0" = self.by-version."domhandler"."2.3.0"; + "domutils-1.5.1" = self.by-version."domutils"."1.5.1"; + "entities-1.1.1" = self.by-version."entities"."1.1.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."htmlparser2".">= 3.7.3 < 4.0.0" = + self.by-version."htmlparser2"."3.9.0"; by-spec."htmlparser2".">=3.4.0" = - self.by-version."htmlparser2"."3.8.2"; + self.by-version."htmlparser2"."3.9.0"; by-spec."htmlparser2"."^3.8.2" = - self.by-version."htmlparser2"."3.8.2"; + self.by-version."htmlparser2"."3.9.0"; + by-spec."htmlparser2"."^3.9.0" = + self.by-version."htmlparser2"."3.9.0"; by-spec."htmlparser2"."~3.7.2" = self.by-version."htmlparser2"."3.7.3"; by-version."htmlparser2"."3.7.3" = self.buildNodePackage { @@ -18687,7 +20746,7 @@ version = "3.7.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz"; + url = "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.7.3.tgz"; name = "htmlparser2-3.7.3.tgz"; sha1 = "6a64c77637c08c6f30ec2a8157a53333be7cb05e"; }; @@ -18705,7 +20764,7 @@ cpu = [ ]; }; by-spec."htmlparser2"."~3.8.1" = - self.by-version."htmlparser2"."3.8.2"; + self.by-version."htmlparser2"."3.8.3"; by-spec."http-auth"."2.0.7" = self.by-version."http-auth"."2.0.7"; by-version."http-auth"."2.0.7" = self.buildNodePackage { @@ -18713,7 +20772,7 @@ version = "2.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-auth/-/http-auth-2.0.7.tgz"; + url = "https://registry.npmjs.org/http-auth/-/http-auth-2.0.7.tgz"; name = "http-auth-2.0.7.tgz"; sha1 = "aa1a61a4d6baae9d64436c6f0ef0f4de85c430e3"; }; @@ -18734,7 +20793,7 @@ version = "1.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-browserify/-/http-browserify-1.7.0.tgz"; + url = "https://registry.npmjs.org/http-browserify/-/http-browserify-1.7.0.tgz"; name = "http-browserify-1.7.0.tgz"; sha1 = "33795ade72df88acfbfd36773cefeda764735b20"; }; @@ -18750,58 +20809,16 @@ }; by-spec."http-browserify"."^1.4.0" = self.by-version."http-browserify"."1.7.0"; - by-spec."http-browserify"."~1.1.0" = - self.by-version."http-browserify"."1.1.0"; - by-version."http-browserify"."1.1.0" = self.buildNodePackage { - name = "http-browserify-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/http-browserify/-/http-browserify-1.1.0.tgz"; - name = "http-browserify-1.1.0.tgz"; - sha1 = "20d0f6fdab370d1fe778d44a7bc48ddb7260206d"; - }; - deps = { - "Base64-0.2.1" = self.by-version."Base64"."0.2.1"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."http-errors".">=1.2.0" = - self.by-version."http-errors"."1.3.1"; - by-version."http-errors"."1.3.1" = self.buildNodePackage { - name = "http-errors-1.3.1"; - version = "1.3.1"; + self.by-version."http-errors"."1.4.0"; + by-version."http-errors"."1.4.0" = self.buildNodePackage { + name = "http-errors-1.4.0"; + version = "1.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz"; - name = "http-errors-1.3.1.tgz"; - sha1 = "197e22cdebd4198585e8694ef6786197b91ed942"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."http-errors"."~1.2.8" = - self.by-version."http-errors"."1.2.8"; - by-version."http-errors"."1.2.8" = self.buildNodePackage { - name = "http-errors-1.2.8"; - version = "1.2.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/http-errors/-/http-errors-1.2.8.tgz"; - name = "http-errors-1.2.8.tgz"; - sha1 = "8ee5fe0b51982221d796c0c4712d76f72097a4d0"; + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.4.0.tgz"; + name = "http-errors-1.4.0.tgz"; + sha1 = "6c0242dea6b3df7afda153c71089b31c6e82aabf"; }; deps = { "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -18815,19 +20832,18 @@ }; by-spec."http-errors"."~1.3.1" = self.by-version."http-errors"."1.3.1"; - by-spec."http-proxy"."1.0.2" = - self.by-version."http-proxy"."1.0.2"; - by-version."http-proxy"."1.0.2" = self.buildNodePackage { - name = "http-proxy-1.0.2"; - version = "1.0.2"; + by-version."http-errors"."1.3.1" = self.buildNodePackage { + name = "http-errors-1.3.1"; + version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-proxy/-/http-proxy-1.0.2.tgz"; - name = "http-proxy-1.0.2.tgz"; - sha1 = "08060ff2edb2189e57aa3a152d3ac63ed1af7254"; + url = "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz"; + name = "http-errors-1.3.1.tgz"; + sha1 = "197e22cdebd4198585e8694ef6786197b91ed942"; }; deps = { - "eventemitter3-0.1.6" = self.by-version."eventemitter3"."0.1.6"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; }; optionalDependencies = { }; @@ -18835,22 +20851,42 @@ os = [ ]; cpu = [ ]; }; - by-spec."http-proxy"."~0.10" = - self.by-version."http-proxy"."0.10.4"; - by-version."http-proxy"."0.10.4" = self.buildNodePackage { - name = "http-proxy-0.10.4"; - version = "0.10.4"; - bin = true; + by-spec."http-errors"."~1.4.0" = + self.by-version."http-errors"."1.4.0"; + by-spec."http-proxy"."1.0.2" = + self.by-version."http-proxy"."1.0.2"; + by-version."http-proxy"."1.0.2" = self.buildNodePackage { + name = "http-proxy-1.0.2"; + version = "1.0.2"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-proxy/-/http-proxy-0.10.4.tgz"; - name = "http-proxy-0.10.4.tgz"; - sha1 = "14ba0ceaa2197f89fa30dea9e7b09e19cd93c22f"; + url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.0.2.tgz"; + name = "http-proxy-1.0.2.tgz"; + sha1 = "08060ff2edb2189e57aa3a152d3ac63ed1af7254"; }; deps = { - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "utile-0.2.1" = self.by-version."utile"."0.2.1"; + "eventemitter3-1.2.0" = self.by-version."eventemitter3"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."http-proxy"."^1.13.0" = + self.by-version."http-proxy"."1.13.2"; + by-version."http-proxy"."1.13.2" = self.buildNodePackage { + name = "http-proxy-1.13.2"; + version = "1.13.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/http-proxy/-/http-proxy-1.13.2.tgz"; + name = "http-proxy-1.13.2.tgz"; + sha1 = "636bcd09f3e7045377a5e919e92d16d29fdbff09"; + }; + deps = { + "eventemitter3-1.2.0" = self.by-version."eventemitter3"."1.2.0"; + "requires-port-1.0.0" = self.by-version."requires-port"."1.0.0"; }; optionalDependencies = { }; @@ -18859,20 +20895,20 @@ cpu = [ ]; }; by-spec."http-proxy-agent"."0" = - self.by-version."http-proxy-agent"."0.2.6"; - by-version."http-proxy-agent"."0.2.6" = self.buildNodePackage { - name = "http-proxy-agent-0.2.6"; - version = "0.2.6"; + self.by-version."http-proxy-agent"."0.2.7"; + by-version."http-proxy-agent"."0.2.7" = self.buildNodePackage { + name = "http-proxy-agent-0.2.7"; + version = "0.2.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-0.2.6.tgz"; - name = "http-proxy-agent-0.2.6.tgz"; - sha1 = "d4a0a2350a75d4fb5102299e8f8c41f625873caa"; + url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-0.2.7.tgz"; + name = "http-proxy-agent-0.2.7.tgz"; + sha1 = "e17fda65f0902d952ce7921e62c7ff8862655a5e"; }; deps = { - "agent-base-1.0.1" = self.by-version."agent-base"."1.0.1"; - "extend-1.2.1" = self.by-version."extend"."1.2.1"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; + "agent-base-1.0.2" = self.by-version."agent-base"."1.0.2"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -18880,16 +20916,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."http-signature"."^0.10.0" = - self.by-version."http-signature"."0.10.1"; - by-version."http-signature"."0.10.1" = self.buildNodePackage { - name = "http-signature-0.10.1"; - version = "0.10.1"; + by-spec."http-signature".">=1.0.2 <2.0.0" = + self.by-version."http-signature"."1.1.1"; + by-version."http-signature"."1.1.1" = self.buildNodePackage { + name = "http-signature-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz"; - name = "http-signature-0.10.1.tgz"; - sha1 = "4fbdac132559aa8323121e540779c0a012b27e66"; + url = "https://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; + name = "http-signature-1.1.1.tgz"; + sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; + }; + deps = { + "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "jsprim-1.2.2" = self.by-version."jsprim"."1.2.2"; + "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."http-signature"."^0.11.0" = + self.by-version."http-signature"."0.11.0"; + by-version."http-signature"."0.11.0" = self.buildNodePackage { + name = "http-signature-0.11.0"; + version = "0.11.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz"; + name = "http-signature-0.11.0.tgz"; + sha1 = "1796cf67a001ad5cd6849dca0991485f09089fe6"; }; deps = { "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; @@ -18904,21 +20962,19 @@ }; by-spec."http-signature"."~0.10.0" = self.by-version."http-signature"."0.10.1"; - by-spec."http-signature"."~0.9.11" = - self.by-version."http-signature"."0.9.11"; - by-version."http-signature"."0.9.11" = self.buildNodePackage { - name = "http-signature-0.9.11"; - version = "0.9.11"; + by-version."http-signature"."0.10.1" = self.buildNodePackage { + name = "http-signature-0.10.1"; + version = "0.10.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/http-signature/-/http-signature-0.9.11.tgz"; - name = "http-signature-0.9.11.tgz"; - sha1 = "9e882714572315e6790a5d0a7955efff1f19e653"; + url = "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz"; + name = "http-signature-0.10.1.tgz"; + sha1 = "4fbdac132559aa8323121e540779c0a012b27e66"; }; deps = { - "assert-plus-0.1.2" = self.by-version."assert-plus"."0.1.2"; + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; "asn1-0.1.11" = self.by-version."asn1"."0.1.11"; - "ctype-0.5.2" = self.by-version."ctype"."0.5.2"; + "ctype-0.5.3" = self.by-version."ctype"."0.5.3"; }; optionalDependencies = { }; @@ -18926,6 +20982,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."http-signature"."~0.11.0" = + self.by-version."http-signature"."0.11.0"; + by-spec."http-signature"."~1.1.0" = + self.by-version."http-signature"."1.1.1"; by-spec."https-browserify"."0.0.0" = self.by-version."https-browserify"."0.0.0"; by-version."https-browserify"."0.0.0" = self.buildNodePackage { @@ -18933,7 +20993,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/https-browserify/-/https-browserify-0.0.0.tgz"; + url = "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.0.tgz"; name = "https-browserify-0.0.0.tgz"; sha1 = "b3ffdfe734b2a3d4a9efd58e8654c91fce86eafd"; }; @@ -18945,23 +21005,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."https-browserify"."~0.0.0" = - self.by-version."https-browserify"."0.0.0"; - by-spec."https-proxy-agent"."0" = - self.by-version."https-proxy-agent"."0.3.5"; - by-version."https-proxy-agent"."0.3.5" = self.buildNodePackage { - name = "https-proxy-agent-0.3.5"; - version = "0.3.5"; + by-spec."https-browserify"."0.0.1" = + self.by-version."https-browserify"."0.0.1"; + by-version."https-browserify"."0.0.1" = self.buildNodePackage { + name = "https-browserify-0.0.1"; + version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.5.tgz"; - name = "https-proxy-agent-0.3.5.tgz"; - sha1 = "d41d43a912c0592f17552fc1a29cd484a2145648"; + url = "https://registry.npmjs.org/https-browserify/-/https-browserify-0.0.1.tgz"; + name = "https-browserify-0.0.1.tgz"; + sha1 = "3f91365cabe60b77ed0ebba24b454e3e09d95a82"; }; deps = { - "agent-base-1.0.1" = self.by-version."agent-base"."1.0.1"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; - "extend-1.2.1" = self.by-version."extend"."1.2.1"; }; optionalDependencies = { }; @@ -18969,14 +21024,60 @@ os = [ ]; cpu = [ ]; }; - by-spec."humanize"."~0.0.9" = + by-spec."https-browserify"."~0.0.0" = + self.by-version."https-browserify"."0.0.1"; + by-spec."https-proxy-agent"."0" = + self.by-version."https-proxy-agent"."0.3.6"; + by-version."https-proxy-agent"."0.3.6" = self.buildNodePackage { + name = "https-proxy-agent-0.3.6"; + version = "0.3.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-0.3.6.tgz"; + name = "https-proxy-agent-0.3.6.tgz"; + sha1 = "713fa38e5d353f50eb14a342febe29033ed1619b"; + }; + deps = { + "agent-base-1.0.2" = self.by-version."agent-base"."1.0.2"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."https-proxy-agent"."^1.0.0" = + self.by-version."https-proxy-agent"."1.0.0"; + by-version."https-proxy-agent"."1.0.0" = self.buildNodePackage { + name = "https-proxy-agent-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz"; + name = "https-proxy-agent-1.0.0.tgz"; + sha1 = "35f7da6c48ce4ddbfa264891ac593ee5ff8671e6"; + }; + deps = { + "agent-base-2.0.1" = self.by-version."agent-base"."2.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."humanize"."0.0.9" = self.by-version."humanize"."0.0.9"; by-version."humanize"."0.0.9" = self.buildNodePackage { name = "humanize-0.0.9"; version = "0.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/humanize/-/humanize-0.0.9.tgz"; + url = "https://registry.npmjs.org/humanize/-/humanize-0.0.9.tgz"; name = "humanize-0.0.9.tgz"; sha1 = "1994ffaecdfe9c441ed2bdac7452b7bb4c9e41a4"; }; @@ -18988,37 +21089,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."hyperquest"."^0.3.0" = - self.by-version."hyperquest"."0.3.0"; - by-version."hyperquest"."0.3.0" = self.buildNodePackage { - name = "hyperquest-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hyperquest/-/hyperquest-0.3.0.tgz"; - name = "hyperquest-0.3.0.tgz"; - sha1 = "4c3c06c074755e921f09a2db51aea5e6e7ee155f"; - }; - deps = { - "through-2.2.7" = self.by-version."through"."2.2.7"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."hyperquest"."^1.2.0" = - self.by-version."hyperquest"."1.2.0"; - by-version."hyperquest"."1.2.0" = self.buildNodePackage { - name = "hyperquest-1.2.0"; - version = "1.2.0"; + self.by-version."hyperquest"."1.3.0"; + by-version."hyperquest"."1.3.0" = self.buildNodePackage { + name = "hyperquest-1.3.0"; + version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/hyperquest/-/hyperquest-1.2.0.tgz"; - name = "hyperquest-1.2.0.tgz"; - sha1 = "39e1fef66888dc7ce0dec6c0dd814f6fc8944ad5"; + url = "https://registry.npmjs.org/hyperquest/-/hyperquest-1.3.0.tgz"; + name = "hyperquest-1.3.0.tgz"; + sha1 = "e7d598030a3fc0229b61725783b641b2c6f1782a"; }; deps = { "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; @@ -19031,15 +21111,15 @@ cpu = [ ]; }; by-spec."i"."0.3.x" = - self.by-version."i"."0.3.3"; - by-version."i"."0.3.3" = self.buildNodePackage { - name = "i-0.3.3"; - version = "0.3.3"; + self.by-version."i"."0.3.4"; + by-version."i"."0.3.4" = self.buildNodePackage { + name = "i-0.3.4"; + version = "0.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/i/-/i-0.3.3.tgz"; - name = "i-0.3.3.tgz"; - sha1 = "0ff9a5eb743504aa8ac26a84f84c641287ff24cd"; + url = "https://registry.npmjs.org/i/-/i-0.3.4.tgz"; + name = "i-0.3.4.tgz"; + sha1 = "e1918d417b363a544e0e4a9b83c36dce1f85c91d"; }; deps = { }; @@ -19050,18 +21130,39 @@ cpu = [ ]; }; by-spec."i18next"."*" = - self.by-version."i18next"."1.7.10"; - by-version."i18next"."1.7.10" = self.buildNodePackage { - name = "i18next-1.7.10"; - version = "1.7.10"; + self.by-version."i18next"."2.4.1"; + by-version."i18next"."2.4.1" = self.buildNodePackage { + name = "i18next-2.4.1"; + version = "2.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/i18next/-/i18next-1.7.10.tgz"; - name = "i18next-1.7.10.tgz"; - sha1 = "2bc1ce2cc1bc2e93fa73b588359da02197336875"; + url = "https://registry.npmjs.org/i18next/-/i18next-2.4.1.tgz"; + name = "i18next-2.4.1.tgz"; + sha1 = "5981828838b8413070115c89b416696fee134f9f"; }; deps = { - "cookies-0.5.0" = self.by-version."cookies"."0.5.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "i18next" = self.by-version."i18next"."2.4.1"; + by-spec."i18next"."1.10.6" = + self.by-version."i18next"."1.10.6"; + by-version."i18next"."1.10.6" = self.buildNodePackage { + name = "i18next-1.10.6"; + version = "1.10.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/i18next/-/i18next-1.10.6.tgz"; + name = "i18next-1.10.6.tgz"; + sha1 = "fddd8b491502c48967a62963bc722ff897cddea0"; + }; + deps = { + "cookies-0.6.1" = self.by-version."cookies"."0.6.1"; + "i18next-client-1.10.3" = self.by-version."i18next-client"."1.10.3"; "json5-0.2.0" = self.by-version."json5"."0.2.0"; }; optionalDependencies = { @@ -19070,20 +21171,56 @@ os = [ ]; cpu = [ ]; }; - "i18next" = self.by-version."i18next"."1.7.10"; - by-spec."iconv"."~2.1.4" = - self.by-version."iconv"."2.1.6"; - by-version."iconv"."2.1.6" = self.buildNodePackage { - name = "iconv-2.1.6"; - version = "2.1.6"; + by-spec."i18next-client"."1.10.3" = + self.by-version."i18next-client"."1.10.3"; + by-version."i18next-client"."1.10.3" = self.buildNodePackage { + name = "i18next-client-1.10.3"; + version = "1.10.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/iconv/-/iconv-2.1.6.tgz"; - name = "iconv-2.1.6.tgz"; - sha1 = "cae89175793276e9fe5ffae58abf8c38f2941c42"; + url = "https://registry.npmjs.org/i18next-client/-/i18next-client-1.10.3.tgz"; + name = "i18next-client-1.10.3.tgz"; + sha1 = "76d0353557ed90d1e7a87754d5004d3f7801fde9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."iconv-lite"."0.4.11" = + self.by-version."iconv-lite"."0.4.11"; + by-version."iconv-lite"."0.4.11" = self.buildNodePackage { + name = "iconv-lite-0.4.11"; + version = "0.4.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.11.tgz"; + name = "iconv-lite-0.4.11.tgz"; + sha1 = "2ecb42fd294744922209a2e7c404dac8793d8ade"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."iconv-lite"."0.4.13" = + self.by-version."iconv-lite"."0.4.13"; + by-version."iconv-lite"."0.4.13" = self.buildNodePackage { + name = "iconv-lite-0.4.13"; + version = "0.4.13"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz"; + name = "iconv-lite-0.4.13.tgz"; + sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2"; }; deps = { - "nan-1.6.2" = self.by-version."nan"."1.6.2"; }; optionalDependencies = { }; @@ -19091,8 +21228,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."iconv"."~2.1.5" = - self.by-version."iconv"."2.1.6"; by-spec."iconv-lite"."0.4.4" = self.by-version."iconv-lite"."0.4.4"; by-version."iconv-lite"."0.4.4" = self.buildNodePackage { @@ -19100,7 +21235,7 @@ version = "0.4.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.4.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.4.tgz"; name = "iconv-lite-0.4.4.tgz"; sha1 = "e95f2e41db0735fc21652f7827a5ee32e63c83a8"; }; @@ -19112,25 +21247,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."iconv-lite"."0.4.6" = - self.by-version."iconv-lite"."0.4.6"; - by-version."iconv-lite"."0.4.6" = self.buildNodePackage { - name = "iconv-lite-0.4.6"; - version = "0.4.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.6.tgz"; - name = "iconv-lite-0.4.6.tgz"; - sha1 = "e39c682610a791f3eedc27382ff49e263f91fa09"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."iconv-lite"."0.4.8" = self.by-version."iconv-lite"."0.4.8"; by-version."iconv-lite"."0.4.8" = self.buildNodePackage { @@ -19138,7 +21254,7 @@ version = "0.4.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.8.tgz"; name = "iconv-lite-0.4.8.tgz"; sha1 = "c6019a7595f2cefca702eab694a010bcd9298d20"; }; @@ -19150,10 +21266,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."iconv-lite"."^0.4.4" = - self.by-version."iconv-lite"."0.4.8"; - by-spec."iconv-lite"."^0.4.8" = - self.by-version."iconv-lite"."0.4.8"; + by-spec."iconv-lite"."^0.4.13" = + self.by-version."iconv-lite"."0.4.13"; + by-spec."iconv-lite"."^0.4.5" = + self.by-version."iconv-lite"."0.4.13"; by-spec."iconv-lite"."~0.2.11" = self.by-version."iconv-lite"."0.2.11"; by-version."iconv-lite"."0.2.11" = self.buildNodePackage { @@ -19161,7 +21277,7 @@ version = "0.2.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz"; + url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.2.11.tgz"; name = "iconv-lite-0.2.11.tgz"; sha1 = "1ce60a3a57864a292d1321ff4609ca4bb965adc8"; }; @@ -19173,20 +21289,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."iconv-lite"."~0.4.4" = - self.by-version."iconv-lite"."0.4.8"; - by-spec."iconv-lite"."~0.4.5" = - self.by-version."iconv-lite"."0.4.8"; + by-spec."iconv-lite"."~0.4.13" = + self.by-version."iconv-lite"."0.4.13"; by-spec."ieee754"."^1.1.4" = - self.by-version."ieee754"."1.1.4"; - by-version."ieee754"."1.1.4" = self.buildNodePackage { - name = "ieee754-1.1.4"; - version = "1.1.4"; + self.by-version."ieee754"."1.1.6"; + by-version."ieee754"."1.1.6" = self.buildNodePackage { + name = "ieee754-1.1.6"; + version = "1.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ieee754/-/ieee754-1.1.4.tgz"; - name = "ieee754-1.1.4.tgz"; - sha1 = "e3ec65200d4ad531d359aabdb6d3ec812699a30b"; + url = "https://registry.npmjs.org/ieee754/-/ieee754-1.1.6.tgz"; + name = "ieee754-1.1.6.tgz"; + sha1 = "2e1013219c6d6712973ec54d981ec19e5579de97"; }; deps = { }; @@ -19196,18 +21310,75 @@ os = [ ]; cpu = [ ]; }; - by-spec."ieee754"."~1.1.1" = - self.by-version."ieee754"."1.1.4"; - by-spec."image-size"."~0.3.5" = - self.by-version."image-size"."0.3.5"; - by-version."image-size"."0.3.5" = self.buildNodePackage { - name = "image-size-0.3.5"; - version = "0.3.5"; + by-spec."iferr"."^0.1.5" = + self.by-version."iferr"."0.1.5"; + by-version."iferr"."0.1.5" = self.buildNodePackage { + name = "iferr-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz"; + name = "iferr-0.1.5.tgz"; + sha1 = "c60eed69e6d8fdb6b3104a1fcbca1c192dc5b501"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."iferr"."~0.1.5" = + self.by-version."iferr"."0.1.5"; + by-spec."ignore"."^3.0.10" = + self.by-version."ignore"."3.0.14"; + by-version."ignore"."3.0.14" = self.buildNodePackage { + name = "ignore-3.0.14"; + version = "3.0.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ignore/-/ignore-3.0.14.tgz"; + name = "ignore-3.0.14.tgz"; + sha1 = "1b07d5d0810ac2571aab1a8b33485f2c48fb130e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ignore-by-default"."^1.0.0" = + self.by-version."ignore-by-default"."1.0.1"; + by-version."ignore-by-default"."1.0.1" = self.buildNodePackage { + name = "ignore-by-default-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz"; + name = "ignore-by-default-1.0.1.tgz"; + sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."image-size"."~0.4.0" = + self.by-version."image-size"."0.4.0"; + by-version."image-size"."0.4.0" = self.buildNodePackage { + name = "image-size-0.4.0"; + version = "0.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/image-size/-/image-size-0.3.5.tgz"; - name = "image-size-0.3.5.tgz"; - sha1 = "83240eab2fb5b00b04aab8c74b0471e9cba7ad8c"; + url = "https://registry.npmjs.org/image-size/-/image-size-0.4.0.tgz"; + name = "image-size-0.4.0.tgz"; + sha1 = "d4b4e1f61952e4cbc1cea9a6b0c915fecb707510"; }; deps = { }; @@ -19224,7 +21395,7 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/imagemagick/-/imagemagick-0.1.3.tgz"; + url = "https://registry.npmjs.org/imagemagick/-/imagemagick-0.1.3.tgz"; name = "imagemagick-0.1.3.tgz"; sha1 = "7483cea093b4d9f2e2f396857adc8821b537c56a"; }; @@ -19236,16 +21407,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."imap"."0.8.14" = - self.by-version."imap"."0.8.14"; - by-version."imap"."0.8.14" = self.buildNodePackage { - name = "imap-0.8.14"; - version = "0.8.14"; + by-spec."imap"."0.8.16" = + self.by-version."imap"."0.8.16"; + by-version."imap"."0.8.16" = self.buildNodePackage { + name = "imap-0.8.16"; + version = "0.8.16"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/imap/-/imap-0.8.14.tgz"; - name = "imap-0.8.14.tgz"; - sha1 = "d4e6b333163ba0bb5be33cab98e5b19db3e9aa54"; + url = "https://registry.npmjs.org/imap/-/imap-0.8.16.tgz"; + name = "imap-0.8.16.tgz"; + sha1 = "e6010866462f77301a119be28bf175f2dec055b0"; }; deps = { "utf7-1.0.0" = self.by-version."utf7"."1.0.0"; @@ -19257,21 +21428,81 @@ os = [ ]; cpu = [ ]; }; + by-spec."immediate-chunk-store"."^1.0.5" = + self.by-version."immediate-chunk-store"."1.0.8"; + by-version."immediate-chunk-store"."1.0.8" = self.buildNodePackage { + name = "immediate-chunk-store-1.0.8"; + version = "1.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/immediate-chunk-store/-/immediate-chunk-store-1.0.8.tgz"; + name = "immediate-chunk-store-1.0.8.tgz"; + sha1 = "0ecdad0c546332672d7b5b511b26bb18ce56e73f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."imurmurhash"."*" = + self.by-version."imurmurhash"."0.1.4"; + by-version."imurmurhash"."0.1.4" = self.buildNodePackage { + name = "imurmurhash-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; + name = "imurmurhash-0.1.4.tgz"; + sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."imurmurhash"."^0.1.4" = + self.by-version."imurmurhash"."0.1.4"; by-spec."indent-string"."^1.1.0" = - self.by-version."indent-string"."1.2.1"; - by-version."indent-string"."1.2.1" = self.buildNodePackage { - name = "indent-string-1.2.1"; - version = "1.2.1"; + self.by-version."indent-string"."1.2.2"; + by-version."indent-string"."1.2.2" = self.buildNodePackage { + name = "indent-string-1.2.2"; + version = "1.2.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/indent-string/-/indent-string-1.2.1.tgz"; - name = "indent-string-1.2.1.tgz"; - sha1 = "294c5930792f8bb5b14462a4aa425b94f07d3a56"; + url = "https://registry.npmjs.org/indent-string/-/indent-string-1.2.2.tgz"; + name = "indent-string-1.2.2.tgz"; + sha1 = "db99bcc583eb6abbb1e48dcbb1999a986041cb6b"; }; deps = { "get-stdin-4.0.1" = self.by-version."get-stdin"."4.0.1"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - "repeating-1.1.2" = self.by-version."repeating"."1.1.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "repeating-1.1.3" = self.by-version."repeating"."1.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."indent-string"."^2.1.0" = + self.by-version."indent-string"."2.1.0"; + by-version."indent-string"."2.1.0" = self.buildNodePackage { + name = "indent-string-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"; + name = "indent-string-2.1.0.tgz"; + sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; + }; + deps = { + "repeating-2.0.0" = self.by-version."repeating"."2.0.0"; }; optionalDependencies = { }; @@ -19286,7 +21517,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; + url = "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz"; name = "indexof-0.0.1.tgz"; sha1 = "82dc336d232b9062179d05ab3293a66059fd435d"; }; @@ -19298,16 +21529,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."infinity-agent"."^1.0.0" = - self.by-version."infinity-agent"."1.0.2"; - by-version."infinity-agent"."1.0.2" = self.buildNodePackage { - name = "infinity-agent-1.0.2"; - version = "1.0.2"; + by-spec."infinity-agent"."^2.0.0" = + self.by-version."infinity-agent"."2.0.3"; + by-version."infinity-agent"."2.0.3" = self.buildNodePackage { + name = "infinity-agent-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/infinity-agent/-/infinity-agent-1.0.2.tgz"; - name = "infinity-agent-1.0.2.tgz"; - sha1 = "2e9da2c070b9864a8bc66c0194e1791ed8058025"; + url = "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz"; + name = "infinity-agent-2.0.3.tgz"; + sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216"; }; deps = { }; @@ -19324,7 +21555,7 @@ version = "1.3.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz"; + url = "https://registry.npmjs.org/inflection/-/inflection-1.3.8.tgz"; name = "inflection-1.3.8.tgz"; sha1 = "cbd160da9f75b14c3cc63578d4f396784bf3014e"; }; @@ -19343,7 +21574,7 @@ version = "1.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inflection/-/inflection-1.5.3.tgz"; + url = "https://registry.npmjs.org/inflection/-/inflection-1.5.3.tgz"; name = "inflection-1.5.3.tgz"; sha1 = "192a6d80f666d11b10012311d7f330ee40dbc01e"; }; @@ -19362,12 +21593,12 @@ version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz"; + url = "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz"; name = "inflight-1.0.4.tgz"; sha1 = "6cbb4521ebd51ce0ec0a936bfd7657ef7e9b172a"; }; deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; }; optionalDependencies = { @@ -19378,14 +21609,35 @@ }; by-spec."inflight"."~1.0.4" = self.by-version."inflight"."1.0.4"; - by-spec."inherits"."*" = + by-spec."inherits"."1" = + self.by-version."inherits"."1.0.2"; + by-version."inherits"."1.0.2" = self.buildNodePackage { + name = "inherits-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz"; + name = "inherits-1.0.2.tgz"; + sha1 = "ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."inherits"."1.x" = + self.by-version."inherits"."1.0.2"; + by-spec."inherits"."2" = self.by-version."inherits"."2.0.1"; by-version."inherits"."2.0.1" = self.buildNodePackage { name = "inherits-2.0.1"; version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; + url = "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz"; name = "inherits-2.0.1.tgz"; sha1 = "b17d08d326b4423e568eff719f91b0b1cbdf69f1"; }; @@ -19397,49 +21649,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."inherits"."1" = - self.by-version."inherits"."1.0.0"; - by-version."inherits"."1.0.0" = self.buildNodePackage { - name = "inherits-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/inherits/-/inherits-1.0.0.tgz"; - name = "inherits-1.0.0.tgz"; - sha1 = "38e1975285bf1f7ba9c84da102bb12771322ac48"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."inherits"."1.x" = - self.by-version."inherits"."1.0.0"; - by-spec."inherits"."2" = - self.by-version."inherits"."2.0.1"; by-spec."inherits"."2.0.1" = self.by-version."inherits"."2.0.1"; by-spec."inherits"."^2.0.1" = self.by-version."inherits"."2.0.1"; by-spec."inherits"."~1.0.0" = - self.by-version."inherits"."1.0.0"; + self.by-version."inherits"."1.0.2"; by-spec."inherits"."~2.0.0" = self.by-version."inherits"."2.0.1"; by-spec."inherits"."~2.0.1" = self.by-version."inherits"."2.0.1"; - by-spec."ini"."1" = - self.by-version."ini"."1.3.3"; - by-version."ini"."1.3.3" = self.buildNodePackage { - name = "ini-1.3.3"; - version = "1.3.3"; + by-spec."ini"."1.x.x" = + self.by-version."ini"."1.3.4"; + by-version."ini"."1.3.4" = self.buildNodePackage { + name = "ini-1.3.4"; + version = "1.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ini/-/ini-1.3.3.tgz"; - name = "ini-1.3.3.tgz"; - sha1 = "c07e34aef1de06aff21d413b458e52b21533a11e"; + url = "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz"; + name = "ini-1.3.4.tgz"; + sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e"; }; deps = { }; @@ -19449,10 +21678,12 @@ os = [ ]; cpu = [ ]; }; - by-spec."ini"."1.x.x" = - self.by-version."ini"."1.3.3"; by-spec."ini"."^1.2.0" = - self.by-version."ini"."1.3.3"; + self.by-version."ini"."1.3.4"; + by-spec."ini"."^1.3.0" = + self.by-version."ini"."1.3.4"; + by-spec."ini"."^1.3.4" = + self.by-version."ini"."1.3.4"; by-spec."ini"."~1.1.0" = self.by-version."ini"."1.1.0"; by-version."ini"."1.1.0" = self.buildNodePackage { @@ -19460,7 +21691,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ini/-/ini-1.1.0.tgz"; + url = "https://registry.npmjs.org/ini/-/ini-1.1.0.tgz"; name = "ini-1.1.0.tgz"; sha1 = "4e808c2ce144c6c1788918e034d6797bc6cf6281"; }; @@ -19473,51 +21704,29 @@ cpu = [ ]; }; by-spec."ini"."~1.3.0" = - self.by-version."ini"."1.3.3"; - by-spec."ini"."~1.3.3" = - self.by-version."ini"."1.3.3"; - by-spec."init-package-json"."0.0.10" = - self.by-version."init-package-json"."0.0.10"; - by-version."init-package-json"."0.0.10" = self.buildNodePackage { - name = "init-package-json-0.0.10"; - version = "0.0.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/init-package-json/-/init-package-json-0.0.10.tgz"; - name = "init-package-json-0.0.10.tgz"; - sha1 = "7baf10535227e0878105a04e44b78f132475da6a"; - }; - deps = { - "promzard-0.2.2" = self.by-version."promzard"."0.2.2"; - "read-1.0.5" = self.by-version."read"."1.0.5"; - "read-package-json-1.3.3" = self.by-version."read-package-json"."1.3.3"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."ini"."1.3.4"; + by-spec."ini"."~1.3.4" = + self.by-version."ini"."1.3.4"; by-spec."init-package-json"."^1.2.0" = - self.by-version."init-package-json"."1.4.1"; - by-version."init-package-json"."1.4.1" = self.buildNodePackage { - name = "init-package-json-1.4.1"; - version = "1.4.1"; + self.by-version."init-package-json"."1.9.3"; + by-version."init-package-json"."1.9.3" = self.buildNodePackage { + name = "init-package-json-1.9.3"; + version = "1.9.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/init-package-json/-/init-package-json-1.4.1.tgz"; - name = "init-package-json-1.4.1.tgz"; - sha1 = "6f68a14e181941849d84f6861f946e0028716cee"; + url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.3.tgz"; + name = "init-package-json-1.9.3.tgz"; + sha1 = "ca2ff94709b6d9aaad66533c11a0aff645f15c7d"; }; deps = { - "glob-5.0.5" = self.by-version."glob"."5.0.5"; - "npm-package-arg-4.0.0" = self.by-version."npm-package-arg"."4.0.0"; + "glob-6.0.4" = self.by-version."glob"."6.0.4"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; "promzard-0.3.0" = self.by-version."promzard"."0.3.0"; - "read-1.0.5" = self.by-version."read"."1.0.5"; - "read-package-json-2.0.0" = self.by-version."read-package-json"."2.0.0"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "validate-npm-package-name-2.0.1" = self.by-version."validate-npm-package-name"."2.0.1"; + "read-1.0.7" = self.by-version."read"."1.0.7"; + "read-package-json-2.0.3" = self.by-version."read-package-json"."2.0.3"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; + "validate-npm-package-name-2.2.2" = self.by-version."validate-npm-package-name"."2.2.2"; }; optionalDependencies = { }; @@ -19525,8 +21734,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."init-package-json"."~1.4.1" = - self.by-version."init-package-json"."1.4.1"; + by-spec."init-package-json"."~1.9.3" = + self.by-version."init-package-json"."1.9.3"; by-spec."inline-source-map"."~0.3.0" = self.by-version."inline-source-map"."0.3.1"; by-version."inline-source-map"."0.3.1" = self.buildNodePackage { @@ -19534,7 +21743,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inline-source-map/-/inline-source-map-0.3.1.tgz"; + url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.3.1.tgz"; name = "inline-source-map-0.3.1.tgz"; sha1 = "a528b514e689fce90db3089e870d92f527acb5eb"; }; @@ -19547,27 +21756,39 @@ os = [ ]; cpu = [ ]; }; - by-spec."inquirer"."0.8.0" = - self.by-version."inquirer"."0.8.0"; - by-version."inquirer"."0.8.0" = self.buildNodePackage { - name = "inquirer-0.8.0"; - version = "0.8.0"; + by-spec."inline-source-map"."~0.5.0" = + self.by-version."inline-source-map"."0.5.0"; + by-version."inline-source-map"."0.5.0" = self.buildNodePackage { + name = "inline-source-map-0.5.0"; + version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-0.8.0.tgz"; - name = "inquirer-0.8.0.tgz"; - sha1 = "525d4dd827d4f3d506b453726068f90deb99b443"; + url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.5.0.tgz"; + name = "inline-source-map-0.5.0.tgz"; + sha1 = "4a4c5dd8e4fb5e9b3cda60c822dfadcaee66e0af"; }; deps = { - "ansi-regex-1.1.1" = self.by-version."ansi-regex"."1.1.1"; - "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; - "cli-color-0.3.3" = self.by-version."cli-color"."0.3.3"; - "figures-1.3.5" = self.by-version."figures"."1.3.5"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "mute-stream-0.0.4" = self.by-version."mute-stream"."0.0.4"; - "readline2-0.1.1" = self.by-version."readline2"."0.1.1"; - "rx-2.5.2" = self.by-version."rx"."2.5.2"; - "through-2.3.7" = self.by-version."through"."2.3.7"; + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."inline-source-map"."~0.6.0" = + self.by-version."inline-source-map"."0.6.1"; + by-version."inline-source-map"."0.6.1" = self.buildNodePackage { + name = "inline-source-map-0.6.1"; + version = "0.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/inline-source-map/-/inline-source-map-0.6.1.tgz"; + name = "inline-source-map-0.6.1.tgz"; + sha1 = "f9d1f19690674d51539cdfd44efd713dac2cfe04"; + }; + deps = { + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; }; optionalDependencies = { }; @@ -19576,25 +21797,59 @@ cpu = [ ]; }; by-spec."inquirer".">=0.2.4" = - self.by-version."inquirer"."0.8.2"; - by-version."inquirer"."0.8.2" = self.buildNodePackage { - name = "inquirer-0.8.2"; - version = "0.8.2"; + self.by-version."inquirer"."0.12.0"; + by-version."inquirer"."0.12.0" = self.buildNodePackage { + name = "inquirer-0.12.0"; + version = "0.12.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/inquirer/-/inquirer-0.8.2.tgz"; - name = "inquirer-0.8.2.tgz"; - sha1 = "41586548e1c5d9b3f81df7325034baacab6f58ab"; + url = "https://registry.npmjs.org/inquirer/-/inquirer-0.12.0.tgz"; + name = "inquirer-0.12.0.tgz"; + sha1 = "1ef2bfd63504df0bc75785fff8c2c41df12f077e"; + }; + deps = { + "ansi-escapes-1.3.0" = self.by-version."ansi-escapes"."1.3.0"; + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "cli-cursor-1.0.2" = self.by-version."cli-cursor"."1.0.2"; + "cli-width-2.1.0" = self.by-version."cli-width"."2.1.0"; + "figures-1.5.0" = self.by-version."figures"."1.5.0"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "readline2-1.0.1" = self.by-version."readline2"."1.0.1"; + "run-async-0.1.0" = self.by-version."run-async"."0.1.0"; + "rx-lite-3.1.2" = self.by-version."rx-lite"."3.1.2"; + "string-width-1.0.1" = self.by-version."string-width"."1.0.1"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."inquirer"."^0.12.0" = + self.by-version."inquirer"."0.12.0"; + by-spec."inquirer"."^0.8.0" = + self.by-version."inquirer"."0.8.5"; + by-version."inquirer"."0.8.5" = self.buildNodePackage { + name = "inquirer-0.8.5"; + version = "0.8.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/inquirer/-/inquirer-0.8.5.tgz"; + name = "inquirer-0.8.5.tgz"; + sha1 = "dbd740cf6ca3b731296a63ce6f6d961851f336df"; }; deps = { "ansi-regex-1.1.1" = self.by-version."ansi-regex"."1.1.1"; - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "cli-width-1.0.1" = self.by-version."cli-width"."1.0.1"; - "figures-1.3.5" = self.by-version."figures"."1.3.5"; - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "cli-width-1.1.1" = self.by-version."cli-width"."1.1.1"; + "figures-1.5.0" = self.by-version."figures"."1.5.0"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; "readline2-0.1.1" = self.by-version."readline2"."0.1.1"; - "rx-2.5.2" = self.by-version."rx"."2.5.2"; - "through-2.3.7" = self.by-version."through"."2.3.7"; + "rx-2.5.3" = self.by-version."rx"."2.5.3"; + "through-2.3.8" = self.by-version."through"."2.3.8"; }; optionalDependencies = { }; @@ -19602,27 +21857,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."inquirer"."^0.8.0" = - self.by-version."inquirer"."0.8.2"; - by-spec."insert-module-globals"."^6.1.0" = - self.by-version."insert-module-globals"."6.2.1"; - by-version."insert-module-globals"."6.2.1" = self.buildNodePackage { - name = "insert-module-globals-6.2.1"; - version = "6.2.1"; + by-spec."insert-module-globals"."^6.4.1" = + self.by-version."insert-module-globals"."6.6.3"; + by-version."insert-module-globals"."6.6.3" = self.buildNodePackage { + name = "insert-module-globals-6.6.3"; + version = "6.6.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/insert-module-globals/-/insert-module-globals-6.2.1.tgz"; - name = "insert-module-globals-6.2.1.tgz"; - sha1 = "95b8ec9ef8da579ceee827255a6a00e5b5cabaea"; + url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-6.6.3.tgz"; + name = "insert-module-globals-6.6.3.tgz"; + sha1 = "20638e29a30f9ed1ca2e3a825fbc2cba5246ddfc"; }; deps = { - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "combine-source-map-0.3.0" = self.by-version."combine-source-map"."0.3.0"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "lexical-scope-1.1.0" = self.by-version."lexical-scope"."1.1.0"; - "process-0.6.0" = self.by-version."process"."0.6.0"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "combine-source-map-0.6.1" = self.by-version."combine-source-map"."0.6.1"; + "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; + "is-buffer-1.1.3" = self.by-version."is-buffer"."1.1.3"; + "lexical-scope-1.2.0" = self.by-version."lexical-scope"."1.2.0"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "through2-1.1.1" = self.by-version."through2"."1.1.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -19630,100 +21884,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."insert-module-globals"."^6.2.0" = - self.by-version."insert-module-globals"."6.2.1"; - by-spec."insert-module-globals"."~2.3.0" = - self.by-version."insert-module-globals"."2.3.4"; - by-version."insert-module-globals"."2.3.4" = self.buildNodePackage { - name = "insert-module-globals-2.3.4"; - version = "2.3.4"; + by-spec."insert-module-globals"."^7.0.0" = + self.by-version."insert-module-globals"."7.0.1"; + by-version."insert-module-globals"."7.0.1" = self.buildNodePackage { + name = "insert-module-globals-7.0.1"; + version = "7.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/insert-module-globals/-/insert-module-globals-2.3.4.tgz"; - name = "insert-module-globals-2.3.4.tgz"; - sha1 = "e920cd470bcf1f47713eac6cc5cc13437e1a9e7e"; - }; - deps = { - "commondir-0.0.2" = self.by-version."commondir"."0.0.2"; - "lexical-scope-0.0.15" = self.by-version."lexical-scope"."0.0.15"; - "process-0.5.2" = self.by-version."process"."0.5.2"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "native-buffer-browserify-2.0.17" = self.by-version."native-buffer-browserify"."2.0.17"; - "browserify-3.24.13" = self.by-version."browserify"."3.24.13"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."insert-module-globals"."~3.1.2" = - self.by-version."insert-module-globals"."3.1.3"; - by-version."insert-module-globals"."3.1.3" = self.buildNodePackage { - name = "insert-module-globals-3.1.3"; - version = "3.1.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/insert-module-globals/-/insert-module-globals-3.1.3.tgz"; - name = "insert-module-globals-3.1.3.tgz"; - sha1 = "d5b80e3a9c86d2bf9a522baee3c14f00d931038a"; - }; - deps = { - "lexical-scope-0.1.0" = self.by-version."lexical-scope"."0.1.0"; - "process-0.5.2" = self.by-version."process"."0.5.2"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."insight"."^0.5.0" = - self.by-version."insight"."0.5.3"; - by-version."insight"."0.5.3" = self.buildNodePackage { - name = "insight-0.5.3"; - version = "0.5.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/insight/-/insight-0.5.3.tgz"; - name = "insight-0.5.3.tgz"; - sha1 = "353626c1b86b12c7bdfecb0a54ef80cd7e6f89e0"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "configstore-0.3.2" = self.by-version."configstore"."0.3.2"; - "inquirer-0.8.2" = self.by-version."inquirer"."0.8.2"; - "lodash.debounce-3.0.3" = self.by-version."lodash.debounce"."3.0.3"; - "object-assign-2.0.0" = self.by-version."object-assign"."2.0.0"; - "os-name-1.0.3" = self.by-version."os-name"."1.0.3"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."install"."~0.1.7" = - self.by-version."install"."0.1.8"; - by-version."install"."0.1.8" = self.buildNodePackage { - name = "install-0.1.8"; - version = "0.1.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/install/-/install-0.1.8.tgz"; - name = "install-0.1.8.tgz"; - sha1 = "9980ef93e30dfb534778d163bc86ddd472ad5fe8"; + url = "https://registry.npmjs.org/insert-module-globals/-/insert-module-globals-7.0.1.tgz"; + name = "insert-module-globals-7.0.1.tgz"; + sha1 = "c03bf4e01cb086d5b5e5ace8ad0afe7889d638c3"; }; deps = { + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "combine-source-map-0.7.1" = self.by-version."combine-source-map"."0.7.1"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "is-buffer-1.1.3" = self.by-version."is-buffer"."1.1.3"; + "lexical-scope-1.2.0" = self.by-version."lexical-scope"."1.2.0"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -19732,15 +21912,35 @@ cpu = [ ]; }; by-spec."internal-ip"."^1.0.0" = - self.by-version."internal-ip"."1.0.0"; - by-version."internal-ip"."1.0.0" = self.buildNodePackage { - name = "internal-ip-1.0.0"; - version = "1.0.0"; + self.by-version."internal-ip"."1.2.0"; + by-version."internal-ip"."1.2.0" = self.buildNodePackage { + name = "internal-ip-1.2.0"; + version = "1.2.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/internal-ip/-/internal-ip-1.0.0.tgz"; - name = "internal-ip-1.0.0.tgz"; - sha1 = "b484048e9051d07251bcc7e4396df547f4e3497e"; + url = "https://registry.npmjs.org/internal-ip/-/internal-ip-1.2.0.tgz"; + name = "internal-ip-1.2.0.tgz"; + sha1 = "ae9fbf93b984878785d50a8de1b356956058cf5c"; + }; + deps = { + "meow-3.7.0" = self.by-version."meow"."3.7.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."interpret"."^0.6.4" = + self.by-version."interpret"."0.6.6"; + by-version."interpret"."0.6.6" = self.buildNodePackage { + name = "interpret-0.6.6"; + version = "0.6.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz"; + name = "interpret-0.6.6.tgz"; + sha1 = "fecd7a18e7ce5ca6abfb953e1f86213a49f1625b"; }; deps = { }; @@ -19750,16 +21950,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."interpret"."^0.3.2" = - self.by-version."interpret"."0.3.10"; - by-version."interpret"."0.3.10" = self.buildNodePackage { - name = "interpret-0.3.10"; - version = "0.3.10"; + by-spec."interpret"."^1.0.0" = + self.by-version."interpret"."1.0.0"; + by-version."interpret"."1.0.0" = self.buildNodePackage { + name = "interpret-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/interpret/-/interpret-0.3.10.tgz"; - name = "interpret-0.3.10.tgz"; - sha1 = "088c25de731c6c5b112a90f0071cfaf459e5a7bb"; + url = "https://registry.npmjs.org/interpret/-/interpret-1.0.0.tgz"; + name = "interpret-1.0.0.tgz"; + sha1 = "2a3338fa1c2bdbe58cdbfffabcbd0eb52b05241f"; }; deps = { }; @@ -19769,16 +21969,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."interpret"."^0.5.2" = - self.by-version."interpret"."0.5.2"; - by-version."interpret"."0.5.2" = self.buildNodePackage { - name = "interpret-0.5.2"; - version = "0.5.2"; + by-spec."intersect"."^1.0.1" = + self.by-version."intersect"."1.0.1"; + by-version."intersect"."1.0.1" = self.buildNodePackage { + name = "intersect-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/interpret/-/interpret-0.5.2.tgz"; - name = "interpret-0.5.2.tgz"; - sha1 = "377833b04b5ea693ff0d533380e3dda0c0381be0"; + url = "https://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz"; + name = "intersect-1.0.1.tgz"; + sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c"; }; deps = { }; @@ -19788,16 +21988,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."intersect"."~0.0.3" = - self.by-version."intersect"."0.0.3"; - by-version."intersect"."0.0.3" = self.buildNodePackage { - name = "intersect-0.0.3"; - version = "0.0.3"; + by-spec."invert-kv"."^1.0.0" = + self.by-version."invert-kv"."1.0.0"; + by-version."invert-kv"."1.0.0" = self.buildNodePackage { + name = "invert-kv-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/intersect/-/intersect-0.0.3.tgz"; - name = "intersect-0.0.3.tgz"; - sha1 = "c1a4a5e5eac6ede4af7504cc07e0ada7bc9f4920"; + url = "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz"; + name = "invert-kv-1.0.0.tgz"; + sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; }; deps = { }; @@ -19808,15 +22008,15 @@ cpu = [ ]; }; by-spec."ip"."0.3.x" = - self.by-version."ip"."0.3.2"; - by-version."ip"."0.3.2" = self.buildNodePackage { - name = "ip-0.3.2"; - version = "0.3.2"; + self.by-version."ip"."0.3.3"; + by-version."ip"."0.3.3" = self.buildNodePackage { + name = "ip-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ip/-/ip-0.3.2.tgz"; - name = "ip-0.3.2.tgz"; - sha1 = "7d5ed34326688b36b6ab81f1865ea8266c28f0db"; + url = "https://registry.npmjs.org/ip/-/ip-0.3.3.tgz"; + name = "ip-0.3.3.tgz"; + sha1 = "8ee8309e92f0b040d287f72efaca1a21702d3fb4"; }; deps = { }; @@ -19827,7 +22027,28 @@ cpu = [ ]; }; by-spec."ip"."^0.3.0" = - self.by-version."ip"."0.3.2"; + self.by-version."ip"."0.3.3"; + by-spec."ip"."^1.0.1" = + self.by-version."ip"."1.1.2"; + by-version."ip"."1.1.2" = self.buildNodePackage { + name = "ip-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ip/-/ip-1.1.2.tgz"; + name = "ip-1.1.2.tgz"; + sha1 = "a05ba664479611d0229fd21d2572fec4505f778e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ip"."^1.1.2" = + self.by-version."ip"."1.1.2"; by-spec."ip-regex"."^1.0.0" = self.by-version."ip-regex"."1.0.3"; by-version."ip-regex"."1.0.3" = self.buildNodePackage { @@ -19835,7 +22056,7 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz"; + url = "https://registry.npmjs.org/ip-regex/-/ip-regex-1.0.3.tgz"; name = "ip-regex-1.0.3.tgz"; sha1 = "dc589076f659f419c222039a33316f1c7387effd"; }; @@ -19854,12 +22075,12 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ip-set/-/ip-set-1.0.0.tgz"; + url = "https://registry.npmjs.org/ip-set/-/ip-set-1.0.0.tgz"; name = "ip-set-1.0.0.tgz"; sha1 = "54782fb5ae37ab6e697a2b49e07748d9e069dda6"; }; deps = { - "ip-0.3.2" = self.by-version."ip"."0.3.2"; + "ip-0.3.3" = self.by-version."ip"."0.3.3"; }; optionalDependencies = { }; @@ -19874,7 +22095,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.2.tgz"; + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.2.tgz"; name = "ipaddr.js-0.1.2.tgz"; sha1 = "6a1fd3d854f5002965c34d7bbcd9b4a8d4b0467e"; }; @@ -19886,14 +22107,56 @@ os = [ ]; cpu = [ ]; }; - by-spec."ipaddr.js"."0.1.9" = + by-spec."ipaddr.js"."1.0.5" = + self.by-version."ipaddr.js"."1.0.5"; + by-version."ipaddr.js"."1.0.5" = self.buildNodePackage { + name = "ipaddr.js-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.0.5.tgz"; + name = "ipaddr.js-1.0.5.tgz"; + sha1 = "5fa78cf301b825c78abc3042d812723049ea23c7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ipaddr.js".">= 0.1.1" = + self.by-version."ipaddr.js"."1.1.0"; + by-version."ipaddr.js"."1.1.0" = self.buildNodePackage { + name = "ipaddr.js-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.1.0.tgz"; + name = "ipaddr.js-1.1.0.tgz"; + sha1 = "5fd380584eb3e2d55904dbe3047a2627d4199a14"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ipaddr.js".">= 0.1.5" = + self.by-version."ipaddr.js"."1.1.0"; + by-spec."ipaddr.js".">=0.1.2" = + self.by-version."ipaddr.js"."1.1.0"; + by-spec."ipaddr.js"."^0.1.5" = self.by-version."ipaddr.js"."0.1.9"; by-version."ipaddr.js"."0.1.9" = self.buildNodePackage { name = "ipaddr.js-0.1.9"; version = "0.1.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.9.tgz"; + url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-0.1.9.tgz"; name = "ipaddr.js-0.1.9.tgz"; sha1 = "a9c78ccc12dc9010f296ab9aef2f61f432d69efa"; }; @@ -19905,102 +22168,36 @@ os = [ ]; cpu = [ ]; }; - by-spec."ipaddr.js".">= 0.1.1" = - self.by-version."ipaddr.js"."1.0.1"; - by-version."ipaddr.js"."1.0.1" = self.buildNodePackage { - name = "ipaddr.js-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.0.1.tgz"; - name = "ipaddr.js-1.0.1.tgz"; - sha1 = "5f38801dc73e0400fc7076386f6ed5215fbd8f95"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ipaddr.js".">= 0.1.5" = - self.by-version."ipaddr.js"."1.0.1"; - by-spec."ipaddr.js".">=0.1.2" = - self.by-version."ipaddr.js"."1.0.1"; - by-spec."ipaddr.js"."^0.1.5" = - self.by-version."ipaddr.js"."0.1.9"; - by-spec."irc"."0.3.9" = - self.by-version."irc"."0.3.9"; - by-version."irc"."0.3.9" = self.buildNodePackage { - name = "irc-0.3.9"; - version = "0.3.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/irc/-/irc-0.3.9.tgz"; - name = "irc-0.3.9.tgz"; - sha1 = "9c0d846379dbc306b38de5d08cf354f4fc6c83d9"; - }; - deps = { - "ansi-color-0.2.1" = self.by-version."ansi-color"."0.2.1"; - "irc-colors-1.1.0" = self.by-version."irc-colors"."1.1.0"; - }; - optionalDependencies = { - "iconv-2.1.6" = self.by-version."iconv"."2.1.6"; - "node-icu-charset-detector-0.0.7" = self.by-version."node-icu-charset-detector"."0.0.7"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."irc-colors"."^1.1.0" = - self.by-version."irc-colors"."1.1.0"; - by-version."irc-colors"."1.1.0" = self.buildNodePackage { - name = "irc-colors-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/irc-colors/-/irc-colors-1.1.0.tgz"; - name = "irc-colors-1.1.0.tgz"; - sha1 = "f92f184c136e8893ad3fe55d130ed409b0dc0745"; - }; - deps = { - "hashish-0.0.4" = self.by-version."hashish"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + by-spec."ipaddr.js"."^1.0.1" = + self.by-version."ipaddr.js"."1.1.0"; by-spec."ironhorse"."*" = - self.by-version."ironhorse"."0.0.10"; - by-version."ironhorse"."0.0.10" = self.buildNodePackage { - name = "ironhorse-0.0.10"; - version = "0.0.10"; + self.by-version."ironhorse"."0.0.11"; + by-version."ironhorse"."0.0.11" = self.buildNodePackage { + name = "ironhorse-0.0.11"; + version = "0.0.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ironhorse/-/ironhorse-0.0.10.tgz"; - name = "ironhorse-0.0.10.tgz"; - sha1 = "98c1c9e29889fabbaaea0ce558501c47f9319856"; + url = "https://registry.npmjs.org/ironhorse/-/ironhorse-0.0.11.tgz"; + name = "ironhorse-0.0.11.tgz"; + sha1 = "e28ea9c4f23d1fd17008f97df5f2a24f7bb928d2"; }; deps = { "underscore-1.5.2" = self.by-version."underscore"."1.5.2"; - "winston-1.0.0" = self.by-version."winston"."1.0.0"; - "nconf-0.7.1" = self.by-version."nconf"."0.7.1"; + "winston-2.2.0" = self.by-version."winston"."2.2.0"; + "nconf-0.8.4" = self.by-version."nconf"."0.8.4"; "fs-walk-0.0.1" = self.by-version."fs-walk"."0.0.1"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "express-5.0.0-alpha.1" = self.by-version."express"."5.0.0-alpha.1"; - "jade-1.9.2" = self.by-version."jade"."1.9.2"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; - "passport-http-0.2.2" = self.by-version."passport-http"."0.2.2"; - "js-yaml-3.2.7" = self.by-version."js-yaml"."3.2.7"; - "mongoose-3.8.26" = self.by-version."mongoose"."3.8.26"; + "async-2.0.0-rc.3" = self.by-version."async"."2.0.0-rc.3"; + "express-5.0.0-alpha.2" = self.by-version."express"."5.0.0-alpha.2"; + "jade-1.11.0" = self.by-version."jade"."1.11.0"; + "passport-0.3.2" = self.by-version."passport"."0.3.2"; + "passport-http-0.3.0" = self.by-version."passport-http"."0.3.0"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "mongoose-4.4.11" = self.by-version."mongoose"."4.4.11"; "gridfs-stream-1.1.1" = self.by-version."gridfs-stream"."1.1.1"; - "temp-0.8.1" = self.by-version."temp"."0.8.1"; - "kue-0.8.12" = self.by-version."kue"."0.8.12"; - "redis-0.12.1" = self.by-version."redis"."0.12.1"; - "hiredis-0.3.0" = self.by-version."hiredis"."0.3.0"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "kue-0.10.5" = self.by-version."kue"."0.10.5"; + "redis-2.6.0-1" = self.by-version."redis"."2.6.0-1"; + "hiredis-0.4.1" = self.by-version."hiredis"."0.4.1"; }; optionalDependencies = { }; @@ -20008,17 +22205,37 @@ os = [ ]; cpu = [ ]; }; - "ironhorse" = self.by-version."ironhorse"."0.0.10"; - by-spec."is-array"."^1.0.1" = - self.by-version."is-array"."1.0.1"; - by-version."is-array"."1.0.1" = self.buildNodePackage { - name = "is-array-1.0.1"; - version = "1.0.1"; + "ironhorse" = self.by-version."ironhorse"."0.0.11"; + by-spec."is-absolute"."^0.1.7" = + self.by-version."is-absolute"."0.1.7"; + by-version."is-absolute"."0.1.7" = self.buildNodePackage { + name = "is-absolute-0.1.7"; + version = "0.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-array/-/is-array-1.0.1.tgz"; - name = "is-array-1.0.1.tgz"; - sha1 = "e9850cc2cc860c3bc0977e84ccf0dd464584279a"; + url = "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz"; + name = "is-absolute-0.1.7.tgz"; + sha1 = "847491119fccb5fb436217cc737f7faad50f603f"; + }; + deps = { + "is-relative-0.1.3" = self.by-version."is-relative"."0.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-arrayish"."^0.2.1" = + self.by-version."is-arrayish"."0.2.1"; + by-version."is-arrayish"."0.2.1" = self.buildNodePackage { + name = "is-arrayish-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; + name = "is-arrayish-0.2.1.tgz"; + sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; }; deps = { }; @@ -20029,18 +22246,59 @@ cpu = [ ]; }; by-spec."is-binary-path"."^1.0.0" = - self.by-version."is-binary-path"."1.0.0"; - by-version."is-binary-path"."1.0.0" = self.buildNodePackage { - name = "is-binary-path-1.0.0"; + self.by-version."is-binary-path"."1.0.1"; + by-version."is-binary-path"."1.0.1" = self.buildNodePackage { + name = "is-binary-path-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"; + name = "is-binary-path-1.0.1.tgz"; + sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; + }; + deps = { + "binary-extensions-1.4.0" = self.by-version."binary-extensions"."1.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-buffer"."^1.0.2" = + self.by-version."is-buffer"."1.1.3"; + by-version."is-buffer"."1.1.3" = self.buildNodePackage { + name = "is-buffer-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.3.tgz"; + name = "is-buffer-1.1.3.tgz"; + sha1 = "db897fc3f7aca2d50de94b6c8c2896a4771627af"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-buffer"."^1.1.0" = + self.by-version."is-buffer"."1.1.3"; + by-spec."is-builtin-module"."^1.0.0" = + self.by-version."is-builtin-module"."1.0.0"; + by-version."is-builtin-module"."1.0.0" = self.buildNodePackage { + name = "is-builtin-module-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.0.tgz"; - name = "is-binary-path-1.0.0.tgz"; - sha1 = "51a9ab34cc239e8e97d1cb1c874faf25d79d54e5"; + url = "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; + name = "is-builtin-module-1.0.0.tgz"; + sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; }; deps = { - "binary-extensions-1.3.0" = self.by-version."binary-extensions"."1.3.0"; + "builtin-modules-1.1.1" = self.by-version."builtin-modules"."1.1.1"; }; optionalDependencies = { }; @@ -20049,15 +22307,15 @@ cpu = [ ]; }; by-spec."is-dotfile"."^1.0.0" = - self.by-version."is-dotfile"."1.0.0"; - by-version."is-dotfile"."1.0.0" = self.buildNodePackage { - name = "is-dotfile-1.0.0"; - version = "1.0.0"; + self.by-version."is-dotfile"."1.0.2"; + by-version."is-dotfile"."1.0.2" = self.buildNodePackage { + name = "is-dotfile-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.0.tgz"; - name = "is-dotfile-1.0.0.tgz"; - sha1 = "cfb6c7d7ebcb99e97ea8a353230dd4eea3e72825"; + url = "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz"; + name = "is-dotfile-1.0.2.tgz"; + sha1 = "2c132383f39199f8edc268ca01b9b007d205cc4d"; }; deps = { }; @@ -20067,19 +22325,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-equal-shallow"."^0.1.1" = - self.by-version."is-equal-shallow"."0.1.2"; - by-version."is-equal-shallow"."0.1.2" = self.buildNodePackage { - name = "is-equal-shallow-0.1.2"; - version = "0.1.2"; + by-spec."is-equal-shallow"."^0.1.3" = + self.by-version."is-equal-shallow"."0.1.3"; + by-version."is-equal-shallow"."0.1.3" = self.buildNodePackage { + name = "is-equal-shallow-0.1.3"; + version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.2.tgz"; - name = "is-equal-shallow-0.1.2.tgz"; - sha1 = "89e619a1f9f1b37019a821c5fe23f93ad874f371"; + url = "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz"; + name = "is-equal-shallow-0.1.3.tgz"; + sha1 = "2238098fc221de0bcfa5d9eac4c45d638aa1c534"; + }; + deps = { + "is-primitive-2.0.0" = self.by-version."is-primitive"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-extendable"."^0.1.1" = + self.by-version."is-extendable"."0.1.1"; + by-version."is-extendable"."0.1.1" = self.buildNodePackage { + name = "is-extendable-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; + name = "is-extendable-0.1.1.tgz"; + sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; }; deps = { - "is-primitive-1.0.0" = self.by-version."is-primitive"."1.0.0"; }; optionalDependencies = { }; @@ -20094,7 +22371,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; + url = "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz"; name = "is-extglob-1.0.0.tgz"; sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0"; }; @@ -20107,17 +22384,38 @@ cpu = [ ]; }; by-spec."is-finite"."^1.0.0" = - self.by-version."is-finite"."1.0.0"; - by-version."is-finite"."1.0.0" = self.buildNodePackage { - name = "is-finite-1.0.0"; + self.by-version."is-finite"."1.0.1"; + by-version."is-finite"."1.0.1" = self.buildNodePackage { + name = "is-finite-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz"; + name = "is-finite-1.0.1.tgz"; + sha1 = "6438603eaebe2793948ff4a4262ec8db3d62597b"; + }; + deps = { + "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-fullwidth-code-point"."^1.0.0" = + self.by-version."is-fullwidth-code-point"."1.0.0"; + by-version."is-fullwidth-code-point"."1.0.0" = self.buildNodePackage { + name = "is-fullwidth-code-point-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-finite/-/is-finite-1.0.0.tgz"; - name = "is-finite-1.0.0.tgz"; - sha1 = "2b1dbad1162cdca6a4dc89f12b2f3dae12393282"; + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; + name = "is-fullwidth-code-point-1.0.0.tgz"; + sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; }; deps = { + "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; }; optionalDependencies = { }; @@ -20125,18 +22423,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-glob"."^1.1.1" = - self.by-version."is-glob"."1.1.3"; - by-version."is-glob"."1.1.3" = self.buildNodePackage { - name = "is-glob-1.1.3"; - version = "1.1.3"; + by-spec."is-glob"."^2.0.0" = + self.by-version."is-glob"."2.0.1"; + by-version."is-glob"."2.0.1" = self.buildNodePackage { + name = "is-glob-2.0.1"; + version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-glob/-/is-glob-1.1.3.tgz"; - name = "is-glob-1.1.3.tgz"; - sha1 = "b4c64b8303d39114492a460d364ccfb0d3c0a045"; + url = "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz"; + name = "is-glob-2.0.1.tgz"; + sha1 = "d096f926a3ded5600f3fdfd91198cb0888c2d863"; }; deps = { + "is-extglob-1.0.0" = self.by-version."is-extglob"."1.0.0"; }; optionalDependencies = { }; @@ -20144,8 +22443,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-glob"."^1.1.3" = - self.by-version."is-glob"."1.1.3"; + by-spec."is-glob"."^2.0.1" = + self.by-version."is-glob"."2.0.1"; by-spec."is-ip"."^1.0.0" = self.by-version."is-ip"."1.0.0"; by-version."is-ip"."1.0.0" = self.buildNodePackage { @@ -20153,7 +22452,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-ip/-/is-ip-1.0.0.tgz"; + url = "https://registry.npmjs.org/is-ip/-/is-ip-1.0.0.tgz"; name = "is-ip-1.0.0.tgz"; sha1 = "2bb6959f797ccd6f9fdc812758bcbc87c4c59074"; }; @@ -20167,21 +22466,21 @@ cpu = [ ]; }; by-spec."is-my-json-valid"."^2.10.0" = - self.by-version."is-my-json-valid"."2.10.1"; - by-version."is-my-json-valid"."2.10.1" = self.buildNodePackage { - name = "is-my-json-valid-2.10.1"; - version = "2.10.1"; + self.by-version."is-my-json-valid"."2.13.1"; + by-version."is-my-json-valid"."2.13.1" = self.buildNodePackage { + name = "is-my-json-valid-2.13.1"; + version = "2.13.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.10.1.tgz"; - name = "is-my-json-valid-2.10.1.tgz"; - sha1 = "bf20ca7e71116302f8660ac812659f71e22ea2d0"; + url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz"; + name = "is-my-json-valid-2.13.1.tgz"; + sha1 = "d55778a82feb6b0963ff4be111d5d1684e890707"; }; deps = { "generate-function-2.0.0" = self.by-version."generate-function"."2.0.0"; - "generate-object-property-1.1.1" = self.by-version."generate-object-property"."1.1.1"; - "jsonpointer-1.1.0" = self.by-version."jsonpointer"."1.1.0"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "generate-object-property-1.2.0" = self.by-version."generate-object-property"."1.2.0"; + "jsonpointer-2.0.0" = self.by-version."jsonpointer"."2.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -20189,6 +22488,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."is-my-json-valid"."^2.12.0" = + self.by-version."is-my-json-valid"."2.13.1"; + by-spec."is-my-json-valid"."^2.12.4" = + self.by-version."is-my-json-valid"."2.13.1"; by-spec."is-npm"."^1.0.0" = self.by-version."is-npm"."1.0.0"; by-version."is-npm"."1.0.0" = self.buildNodePackage { @@ -20196,7 +22499,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; + url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; name = "is-npm-1.0.0.tgz"; sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; }; @@ -20215,7 +22518,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz"; + url = "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz"; name = "is-number-0.1.1.tgz"; sha1 = "69a7af116963d47206ec9bd9b48a14216f1e3806"; }; @@ -20227,16 +22530,38 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-number"."^1.1.0" = - self.by-version."is-number"."1.1.2"; - by-version."is-number"."1.1.2" = self.buildNodePackage { - name = "is-number-1.1.2"; - version = "1.1.2"; + by-spec."is-number"."^2.0.2" = + self.by-version."is-number"."2.1.0"; + by-version."is-number"."2.1.0" = self.buildNodePackage { + name = "is-number-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-number/-/is-number-1.1.2.tgz"; - name = "is-number-1.1.2.tgz"; - sha1 = "9d82409f3a8a8beecf249b1bc7dada49829966e4"; + url = "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz"; + name = "is-number-2.1.0.tgz"; + sha1 = "01fcbbb393463a548f2f466cce16dece49db908f"; + }; + deps = { + "kind-of-3.0.2" = self.by-version."kind-of"."3.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-number"."^2.1.0" = + self.by-version."is-number"."2.1.0"; + by-spec."is-path-cwd"."^1.0.0" = + self.by-version."is-path-cwd"."1.0.0"; + by-version."is-path-cwd"."1.0.0" = self.buildNodePackage { + name = "is-path-cwd-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-1.0.0.tgz"; + name = "is-path-cwd-1.0.0.tgz"; + sha1 = "d225ec23132e89edd38fda767472e62e65f1106d"; }; deps = { }; @@ -20246,18 +22571,75 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-number"."^1.1.2" = - self.by-version."is-number"."1.1.2"; - by-spec."is-primitive"."^1.0.0" = - self.by-version."is-primitive"."1.0.0"; - by-version."is-primitive"."1.0.0" = self.buildNodePackage { - name = "is-primitive-1.0.0"; + by-spec."is-path-in-cwd"."^1.0.0" = + self.by-version."is-path-in-cwd"."1.0.0"; + by-version."is-path-in-cwd"."1.0.0" = self.buildNodePackage { + name = "is-path-in-cwd-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-primitive/-/is-primitive-1.0.0.tgz"; - name = "is-primitive-1.0.0.tgz"; - sha1 = "c3677046fe11225017222204dd602503f7e5eb74"; + url = "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-1.0.0.tgz"; + name = "is-path-in-cwd-1.0.0.tgz"; + sha1 = "6477582b8214d602346094567003be8a9eac04dc"; + }; + deps = { + "is-path-inside-1.0.0" = self.by-version."is-path-inside"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-path-inside"."^1.0.0" = + self.by-version."is-path-inside"."1.0.0"; + by-version."is-path-inside"."1.0.0" = self.buildNodePackage { + name = "is-path-inside-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.0.tgz"; + name = "is-path-inside-1.0.0.tgz"; + sha1 = "fc06e5a1683fbda13de667aff717bbc10a48f37f"; + }; + deps = { + "path-is-inside-1.0.1" = self.by-version."path-is-inside"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-plain-obj"."^1.0.0" = + self.by-version."is-plain-obj"."1.1.0"; + by-version."is-plain-obj"."1.1.0" = self.buildNodePackage { + name = "is-plain-obj-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; + name = "is-plain-obj-1.1.0.tgz"; + sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-posix-bracket"."^0.1.0" = + self.by-version."is-posix-bracket"."0.1.1"; + by-version."is-posix-bracket"."0.1.1" = self.buildNodePackage { + name = "is-posix-bracket-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz"; + name = "is-posix-bracket-0.1.1.tgz"; + sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4"; }; deps = { }; @@ -20274,7 +22656,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"; + url = "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz"; name = "is-primitive-2.0.0.tgz"; sha1 = "207bab91638499c07b2adf240a41a87210034575"; }; @@ -20286,6 +22668,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."is-promise"."^2.0.0" = + self.by-version."is-promise"."2.1.0"; + by-version."is-promise"."2.1.0" = self.buildNodePackage { + name = "is-promise-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz"; + name = "is-promise-2.1.0.tgz"; + sha1 = "79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."is-promise"."~1" = self.by-version."is-promise"."1.0.1"; by-version."is-promise"."1.0.1" = self.buildNodePackage { @@ -20293,7 +22694,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz"; + url = "https://registry.npmjs.org/is-promise/-/is-promise-1.0.1.tgz"; name = "is-promise-1.0.1.tgz"; sha1 = "31573761c057e33c2e91aab9e96da08cefbe76e5"; }; @@ -20312,7 +22713,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; + url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz"; name = "is-property-1.0.2.tgz"; sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84"; }; @@ -20324,16 +22725,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-root"."^1.0.0" = - self.by-version."is-root"."1.0.0"; - by-version."is-root"."1.0.0" = self.buildNodePackage { - name = "is-root-1.0.0"; + by-spec."is-redirect"."^1.0.0" = + self.by-version."is-redirect"."1.0.0"; + by-version."is-redirect"."1.0.0" = self.buildNodePackage { + name = "is-redirect-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-root/-/is-root-1.0.0.tgz"; - name = "is-root-1.0.0.tgz"; - sha1 = "07b6c233bc394cd9d02ba15c966bd6660d6342d5"; + url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; + name = "is-redirect-1.0.0.tgz"; + sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; }; deps = { }; @@ -20343,6 +22744,45 @@ os = [ ]; cpu = [ ]; }; + by-spec."is-relative"."^0.1.0" = + self.by-version."is-relative"."0.1.3"; + by-version."is-relative"."0.1.3" = self.buildNodePackage { + name = "is-relative-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz"; + name = "is-relative-0.1.3.tgz"; + sha1 = "905fee8ae86f45b3ec614bc3c15c869df0876e82"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-resolvable"."^1.0.0" = + self.by-version."is-resolvable"."1.0.0"; + by-version."is-resolvable"."1.0.0" = self.buildNodePackage { + name = "is-resolvable-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.0.0.tgz"; + name = "is-resolvable-1.0.0.tgz"; + sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62"; + }; + deps = { + "tryit-1.0.2" = self.by-version."tryit"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."is-stream"."^1.0.0" = self.by-version."is-stream"."1.0.1"; by-version."is-stream"."1.0.1" = self.buildNodePackage { @@ -20350,7 +22790,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-stream/-/is-stream-1.0.1.tgz"; + url = "https://registry.npmjs.org/is-stream/-/is-stream-1.0.1.tgz"; name = "is-stream-1.0.1.tgz"; sha1 = "b44ce45b1f0c3df583f6b5debf84dcf9743ac8b5"; }; @@ -20362,16 +22802,37 @@ os = [ ]; cpu = [ ]; }; - by-spec."is-utf8"."0.2.0" = - self.by-version."is-utf8"."0.2.0"; - by-version."is-utf8"."0.2.0" = self.buildNodePackage { - name = "is-utf8-0.2.0"; - version = "0.2.0"; + by-spec."is-stream"."^1.0.1" = + self.by-version."is-stream"."1.0.1"; + by-spec."is-typedarray"."~1.0.0" = + self.by-version."is-typedarray"."1.0.0"; + by-version."is-typedarray"."1.0.0" = self.buildNodePackage { + name = "is-typedarray-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz"; - name = "is-utf8-0.2.0.tgz"; - sha1 = "b8aa54125ae626bfe4e3beb965f16a89c58a1137"; + url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; + name = "is-typedarray-1.0.0.tgz"; + sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."is-utf8"."0.2.1" = + self.by-version."is-utf8"."0.2.1"; + by-version."is-utf8"."0.2.1" = self.buildNodePackage { + name = "is-utf8-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; + name = "is-utf8-0.2.1.tgz"; + sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; }; deps = { }; @@ -20382,7 +22843,7 @@ cpu = [ ]; }; by-spec."is-utf8"."^0.2.0" = - self.by-version."is-utf8"."0.2.0"; + self.by-version."is-utf8"."0.2.1"; by-spec."isarray"."0.0.1" = self.by-version."isarray"."0.0.1"; by-version."isarray"."0.0.1" = self.buildNodePackage { @@ -20390,7 +22851,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; + url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; name = "isarray-0.0.1.tgz"; sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; }; @@ -20402,18 +22863,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."isarray"."~0.0.1" = - self.by-version."isarray"."0.0.1"; - by-spec."isobject"."^0.2.0" = - self.by-version."isobject"."0.2.0"; - by-version."isobject"."0.2.0" = self.buildNodePackage { - name = "isobject-0.2.0"; - version = "0.2.0"; + by-spec."isarray"."^1.0.0" = + self.by-version."isarray"."1.0.0"; + by-version."isarray"."1.0.0" = self.buildNodePackage { + name = "isarray-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/isobject/-/isobject-0.2.0.tgz"; - name = "isobject-0.2.0.tgz"; - sha1 = "a3432192f39b910b5f02cc989487836ec70aa85e"; + url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; + name = "isarray-1.0.0.tgz"; + sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; }; deps = { }; @@ -20423,16 +22882,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."isobject"."^1.0.0" = - self.by-version."isobject"."1.0.0"; - by-version."isobject"."1.0.0" = self.buildNodePackage { - name = "isobject-1.0.0"; - version = "1.0.0"; + by-spec."isarray"."~0.0.1" = + self.by-version."isarray"."0.0.1"; + by-spec."isarray"."~1.0.0" = + self.by-version."isarray"."1.0.0"; + by-spec."isbinaryfile"."^3.0.0" = + self.by-version."isbinaryfile"."3.0.0"; + by-version."isbinaryfile"."3.0.0" = self.buildNodePackage { + name = "isbinaryfile-3.0.0"; + version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/isobject/-/isobject-1.0.0.tgz"; - name = "isobject-1.0.0.tgz"; - sha1 = "97fa6e8007c8e1251276be7565ce34ae69c90083"; + url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.0.tgz"; + name = "isbinaryfile-3.0.0.tgz"; + sha1 = "e9382ebe16aa0f7c874848008d928020e42175f7"; }; deps = { }; @@ -20442,6 +22905,85 @@ os = [ ]; cpu = [ ]; }; + by-spec."isemail"."1.x.x" = + self.by-version."isemail"."1.2.0"; + by-version."isemail"."1.2.0" = self.buildNodePackage { + name = "isemail-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"; + name = "isemail-1.2.0.tgz"; + sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isexe"."^1.1.1" = + self.by-version."isexe"."1.1.2"; + by-version."isexe"."1.1.2" = self.buildNodePackage { + name = "isexe-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz"; + name = "isexe-1.1.2.tgz"; + sha1 = "36f3e22e60750920f5e7241a476a8c6a42275ad0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isobject"."^2.0.0" = + self.by-version."isobject"."2.0.0"; + by-version."isobject"."2.0.0" = self.buildNodePackage { + name = "isobject-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/isobject/-/isobject-2.0.0.tgz"; + name = "isobject-2.0.0.tgz"; + sha1 = "208de872bd7378c2a92af9428a3f56eb91a122c4"; + }; + deps = { + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."isomorphic-fetch"."^2.1.1" = + self.by-version."isomorphic-fetch"."2.2.1"; + by-version."isomorphic-fetch"."2.2.1" = self.buildNodePackage { + name = "isomorphic-fetch-2.2.1"; + version = "2.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; + name = "isomorphic-fetch-2.2.1.tgz"; + sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; + }; + deps = { + "node-fetch-1.5.0" = self.by-version."node-fetch"."1.5.0"; + "whatwg-fetch-0.11.0" = self.by-version."whatwg-fetch"."0.11.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."isstream"."0.1.x" = self.by-version."isstream"."0.1.2"; by-version."isstream"."0.1.2" = self.buildNodePackage { @@ -20449,7 +22991,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; + url = "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz"; name = "isstream-0.1.2.tgz"; sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; }; @@ -20463,32 +23005,28 @@ }; by-spec."isstream"."~0.1.1" = self.by-version."isstream"."0.1.2"; + by-spec."isstream"."~0.1.2" = + self.by-version."isstream"."0.1.2"; by-spec."istanbul"."*" = - self.by-version."istanbul"."0.3.13"; - by-version."istanbul"."0.3.13" = self.buildNodePackage { - name = "istanbul-0.3.13"; - version = "0.3.13"; + self.by-version."istanbul"."1.0.0-alpha.2"; + by-version."istanbul"."1.0.0-alpha.2" = self.buildNodePackage { + name = "istanbul-1.0.0-alpha.2"; + version = "1.0.0-alpha.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/istanbul/-/istanbul-0.3.13.tgz"; - name = "istanbul-0.3.13.tgz"; - sha1 = "152dbcc195f01e9102fea48fe71084f583f6299c"; + url = "https://registry.npmjs.org/istanbul/-/istanbul-1.0.0-alpha.2.tgz"; + name = "istanbul-1.0.0-alpha.2.tgz"; + sha1 = "06096bc08e98baad744aae46962d8df9fac63d08"; }; deps = { - "esprima-2.1.0" = self.by-version."esprima"."2.1.0"; - "escodegen-1.6.1" = self.by-version."escodegen"."1.6.1"; - "handlebars-3.0.0" = self.by-version."handlebars"."3.0.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "fileset-0.1.5" = self.by-version."fileset"."0.1.5"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "supports-color-1.3.1" = self.by-version."supports-color"."1.3.1"; - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; - "resolve-1.1.6" = self.by-version."resolve"."1.1.6"; - "js-yaml-3.2.7" = self.by-version."js-yaml"."3.2.7"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "istanbul-api-1.0.0-aplha.1" = self.by-version."istanbul-api"."1.0.0-aplha.1"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + "wordwrap-1.0.0" = self.by-version."wordwrap"."1.0.0"; }; optionalDependencies = { }; @@ -20496,26 +23034,195 @@ os = [ ]; cpu = [ ]; }; - "istanbul" = self.by-version."istanbul"."0.3.13"; - by-spec."istanbul"."~0.3.0" = - self.by-version."istanbul"."0.3.13"; - by-spec."jade"."*" = - self.by-version."jade"."1.9.2"; - by-version."jade"."1.9.2" = self.buildNodePackage { - name = "jade-1.9.2"; - version = "1.9.2"; + "istanbul" = self.by-version."istanbul"."1.0.0-alpha.2"; + by-spec."istanbul"."^0.4.0" = + self.by-version."istanbul"."0.4.3"; + by-version."istanbul"."0.4.3" = self.buildNodePackage { + name = "istanbul-0.4.3"; + version = "0.4.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jade/-/jade-1.9.2.tgz"; - name = "jade-1.9.2.tgz"; - sha1 = "0b89f9c60d4ead2738e826ba7b2ccac9a5702abe"; + url = "https://registry.npmjs.org/istanbul/-/istanbul-0.4.3.tgz"; + name = "istanbul-0.4.3.tgz"; + sha1 = "5b714ee0ae493ac5ef204b99f3872bceef73d53a"; + }; + deps = { + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "escodegen-1.8.0" = self.by-version."escodegen"."1.8.0"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; + "fileset-0.2.1" = self.by-version."fileset"."0.2.1"; + "handlebars-4.0.5" = self.by-version."handlebars"."4.0.5"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; + "supports-color-3.1.2" = self.by-version."supports-color"."3.1.2"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + "wordwrap-1.0.0" = self.by-version."wordwrap"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-api"."^1.0.0-alpha" = + self.by-version."istanbul-api"."1.0.0-aplha.1"; + by-version."istanbul-api"."1.0.0-aplha.1" = self.buildNodePackage { + name = "istanbul-api-1.0.0-aplha.1"; + version = "1.0.0-aplha.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-api/-/istanbul-api-1.0.0-aplha.1.tgz"; + name = "istanbul-api-1.0.0-aplha.1.tgz"; + sha1 = "3fa47f44acd58d52c6764218f5f7ef453fc50f5c"; + }; + deps = { + "istanbul-lib-coverage-1.0.0-alpha.4" = self.by-version."istanbul-lib-coverage"."1.0.0-alpha.4"; + "istanbul-lib-instrument-1.0.0-alpha.6" = self.by-version."istanbul-lib-instrument"."1.0.0-alpha.6"; + "istanbul-lib-report-1.0.0-alpha.3" = self.by-version."istanbul-lib-report"."1.0.0-alpha.3"; + "istanbul-lib-hook-1.0.0-alpha.4" = self.by-version."istanbul-lib-hook"."1.0.0-alpha.4"; + "istanbul-reports-1.0.0-alpha.4" = self.by-version."istanbul-reports"."1.0.0-alpha.4"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "fileset-0.2.1" = self.by-version."fileset"."0.2.1"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-lib-coverage"."^1.0.0-alpha" = + self.by-version."istanbul-lib-coverage"."1.0.0-alpha.4"; + by-version."istanbul-lib-coverage"."1.0.0-alpha.4" = self.buildNodePackage { + name = "istanbul-lib-coverage-1.0.0-alpha.4"; + version = "1.0.0-alpha.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-1.0.0-alpha.4.tgz"; + name = "istanbul-lib-coverage-1.0.0-alpha.4.tgz"; + sha1 = "626f7fd9cf809b6e3bf7ed42a809f8e0b64ae976"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-lib-hook"."^1.0.0-alpha" = + self.by-version."istanbul-lib-hook"."1.0.0-alpha.4"; + by-version."istanbul-lib-hook"."1.0.0-alpha.4" = self.buildNodePackage { + name = "istanbul-lib-hook-1.0.0-alpha.4"; + version = "1.0.0-alpha.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-1.0.0-alpha.4.tgz"; + name = "istanbul-lib-hook-1.0.0-alpha.4.tgz"; + sha1 = "8c5bb9f6fbd8526e0ae6cf639af28266906b938f"; + }; + deps = { + "append-transform-0.3.0" = self.by-version."append-transform"."0.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-lib-instrument"."^1.0.0-alpha" = + self.by-version."istanbul-lib-instrument"."1.0.0-alpha.6"; + by-version."istanbul-lib-instrument"."1.0.0-alpha.6" = self.buildNodePackage { + name = "istanbul-lib-instrument-1.0.0-alpha.6"; + version = "1.0.0-alpha.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-1.0.0-alpha.6.tgz"; + name = "istanbul-lib-instrument-1.0.0-alpha.6.tgz"; + sha1 = "5529ca5534d6a98fe038c3c3de7a97ed130df385"; + }; + deps = { + "escodegen-1.8.0" = self.by-version."escodegen"."1.8.0"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; + "istanbul-lib-coverage-1.0.0-alpha.4" = self.by-version."istanbul-lib-coverage"."1.0.0-alpha.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-lib-report"."^1.0.0-alpha" = + self.by-version."istanbul-lib-report"."1.0.0-alpha.3"; + by-version."istanbul-lib-report"."1.0.0-alpha.3" = self.buildNodePackage { + name = "istanbul-lib-report-1.0.0-alpha.3"; + version = "1.0.0-alpha.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-1.0.0-alpha.3.tgz"; + name = "istanbul-lib-report-1.0.0-alpha.3.tgz"; + sha1 = "32d5f6ec7f33ca3a602209e278b2e6ff143498af"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "istanbul-lib-coverage-1.0.0-alpha.4" = self.by-version."istanbul-lib-coverage"."1.0.0-alpha.4"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "path-parse-1.0.5" = self.by-version."path-parse"."1.0.5"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "supports-color-3.1.2" = self.by-version."supports-color"."3.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."istanbul-reports"."^1.0.0-alpha" = + self.by-version."istanbul-reports"."1.0.0-alpha.4"; + by-version."istanbul-reports"."1.0.0-alpha.4" = self.buildNodePackage { + name = "istanbul-reports-1.0.0-alpha.4"; + version = "1.0.0-alpha.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-1.0.0-alpha.4.tgz"; + name = "istanbul-reports-1.0.0-alpha.4.tgz"; + sha1 = "5086d417b4bb97bf6870f3fb5cb55b7e703361b8"; + }; + deps = { + "handlebars-4.0.5" = self.by-version."handlebars"."4.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jade"."*" = + self.by-version."jade"."1.11.0"; + by-version."jade"."1.11.0" = self.buildNodePackage { + name = "jade-1.11.0"; + version = "1.11.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/jade/-/jade-1.11.0.tgz"; + name = "jade-1.11.0.tgz"; + sha1 = "9c80e538c12d3fb95c8d9bb9559fa0cc040405fd"; }; deps = { "character-parser-1.2.1" = self.by-version."character-parser"."1.2.1"; + "clean-css-3.4.11" = self.by-version."clean-css"."3.4.11"; "commander-2.6.0" = self.by-version."commander"."2.6.0"; - "constantinople-3.0.1" = self.by-version."constantinople"."3.0.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; + "constantinople-3.0.2" = self.by-version."constantinople"."3.0.2"; + "jstransformer-0.0.2" = self.by-version."jstransformer"."0.0.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; "transformers-2.1.0" = self.by-version."transformers"."2.1.0"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; "void-elements-2.0.1" = self.by-version."void-elements"."2.0.1"; "with-4.0.3" = self.by-version."with"."4.0.3"; }; @@ -20525,7 +23232,7 @@ os = [ ]; cpu = [ ]; }; - "jade" = self.by-version."jade"."1.9.2"; + "jade" = self.by-version."jade"."1.11.0"; by-spec."jade"."0.26.3" = self.by-version."jade"."0.26.3"; by-version."jade"."0.26.3" = self.buildNodePackage { @@ -20533,7 +23240,7 @@ version = "0.26.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jade/-/jade-0.26.3.tgz"; + url = "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz"; name = "jade-0.26.3.tgz"; sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c"; }; @@ -20554,7 +23261,7 @@ version = "0.27.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jade/-/jade-0.27.0.tgz"; + url = "https://registry.npmjs.org/jade/-/jade-0.27.0.tgz"; name = "jade-0.27.0.tgz"; sha1 = "dc5ebed10d04a5e0eaf49ef0009bec473d1a6b31"; }; @@ -20568,60 +23275,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."jade"."1.1.5" = - self.by-version."jade"."1.1.5"; - by-version."jade"."1.1.5" = self.buildNodePackage { - name = "jade-1.1.5"; - version = "1.1.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/jade/-/jade-1.1.5.tgz"; - name = "jade-1.1.5.tgz"; - sha1 = "e884d3d3565807e280f5ba760f68addb176627a3"; - }; - deps = { - "commander-2.1.0" = self.by-version."commander"."2.1.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "transformers-2.1.0" = self.by-version."transformers"."2.1.0"; - "character-parser-1.2.0" = self.by-version."character-parser"."1.2.0"; - "monocle-1.1.51" = self.by-version."monocle"."1.1.51"; - "with-2.0.0" = self.by-version."with"."2.0.0"; - "constantinople-1.0.2" = self.by-version."constantinople"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."jade".">= 0.0.1" = - self.by-version."jade"."1.9.2"; - by-spec."jade"."~0.35.0" = - self.by-version."jade"."0.35.0"; - by-version."jade"."0.35.0" = self.buildNodePackage { - name = "jade-0.35.0"; - version = "0.35.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/jade/-/jade-0.35.0.tgz"; - name = "jade-0.35.0.tgz"; - sha1 = "75ec1d966a1203733613e8c180e2aa8685c16da9"; - }; - deps = { - "commander-2.0.0" = self.by-version."commander"."2.0.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "transformers-2.1.0" = self.by-version."transformers"."2.1.0"; - "character-parser-1.2.0" = self.by-version."character-parser"."1.2.0"; - "monocle-1.1.50" = self.by-version."monocle"."1.1.50"; - "with-1.1.1" = self.by-version."with"."1.1.1"; - "constantinople-1.0.2" = self.by-version."constantinople"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."jade"."1.11.0"; + by-spec."jade"."^1.11.0" = + self.by-version."jade"."1.11.0"; by-spec."jayschema"."*" = self.by-version."jayschema"."0.3.1"; by-version."jayschema"."0.3.1" = self.buildNodePackage { @@ -20629,7 +23286,7 @@ version = "0.3.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jayschema/-/jayschema-0.3.1.tgz"; + url = "https://registry.npmjs.org/jayschema/-/jayschema-0.3.1.tgz"; name = "jayschema-0.3.1.tgz"; sha1 = "76f4769f9b172ef7d5dcde4875b49cb736179b58"; }; @@ -20644,21 +23301,21 @@ }; "jayschema" = self.by-version."jayschema"."0.3.1"; by-spec."jfs"."*" = - self.by-version."jfs"."0.2.5"; - by-version."jfs"."0.2.5" = self.buildNodePackage { - name = "jfs-0.2.5"; - version = "0.2.5"; + self.by-version."jfs"."0.2.6"; + by-version."jfs"."0.2.6" = self.buildNodePackage { + name = "jfs-0.2.6"; + version = "0.2.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jfs/-/jfs-0.2.5.tgz"; - name = "jfs-0.2.5.tgz"; - sha1 = "c1ae4c89905724ae8caf79859783c0613254249f"; + url = "https://registry.npmjs.org/jfs/-/jfs-0.2.6.tgz"; + name = "jfs-0.2.6.tgz"; + sha1 = "851b728ee5cff449855cf9ad554f4a5e14ab6912"; }; deps = { - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "clone-0.2.0" = self.by-version."clone"."0.2.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "async-1.2.1" = self.by-version."async"."1.2.1"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; }; optionalDependencies = { }; @@ -20666,17 +23323,17 @@ os = [ ]; cpu = [ ]; }; - "jfs" = self.by-version."jfs"."0.2.5"; + "jfs" = self.by-version."jfs"."0.2.6"; by-spec."jju"."1.x" = - self.by-version."jju"."1.2.0"; - by-version."jju"."1.2.0" = self.buildNodePackage { - name = "jju-1.2.0"; - version = "1.2.0"; + self.by-version."jju"."1.3.0"; + by-version."jju"."1.3.0" = self.buildNodePackage { + name = "jju-1.3.0"; + version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jju/-/jju-1.2.0.tgz"; - name = "jju-1.2.0.tgz"; - sha1 = "add5b586fec853b44929d78bf94864ab577c02e9"; + url = "https://registry.npmjs.org/jju/-/jju-1.3.0.tgz"; + name = "jju-1.3.0.tgz"; + sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa"; }; deps = { }; @@ -20687,17 +23344,79 @@ cpu = [ ]; }; by-spec."jju"."^1.1.0" = - self.by-version."jju"."1.2.0"; - by-spec."js-string-escape"."^1.0.0" = - self.by-version."js-string-escape"."1.0.0"; - by-version."js-string-escape"."1.0.0" = self.buildNodePackage { - name = "js-string-escape-1.0.0"; - version = "1.0.0"; + self.by-version."jju"."1.3.0"; + by-spec."jmespath"."0.15.0" = + self.by-version."jmespath"."0.15.0"; + by-version."jmespath"."0.15.0" = self.buildNodePackage { + name = "jmespath-0.15.0"; + version = "0.15.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/js-string-escape/-/js-string-escape-1.0.0.tgz"; - name = "js-string-escape-1.0.0.tgz"; - sha1 = "d2d2365fd2e6b3948b8374ac7628ac0e84d00002"; + url = "https://registry.npmjs.org/jmespath/-/jmespath-0.15.0.tgz"; + name = "jmespath-0.15.0.tgz"; + sha1 = "a3f222a9aae9f966f5d27c796510e28091764217"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jodid25519".">=1.0.0 <2.0.0" = + self.by-version."jodid25519"."1.0.2"; + by-version."jodid25519"."1.0.2" = self.buildNodePackage { + name = "jodid25519-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz"; + name = "jodid25519-1.0.2.tgz"; + sha1 = "06d4912255093419477d425633606e0e90782967"; + }; + deps = { + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."joi"."^6.4.3" = + self.by-version."joi"."6.10.1"; + by-version."joi"."6.10.1" = self.buildNodePackage { + name = "joi-6.10.1"; + version = "6.10.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz"; + name = "joi-6.10.1.tgz"; + sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "topo-1.1.0" = self.by-version."topo"."1.1.0"; + "isemail-1.2.0" = self.by-version."isemail"."1.2.0"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."js-tokens"."^1.0.1" = + self.by-version."js-tokens"."1.0.3"; + by-version."js-tokens"."1.0.3" = self.buildNodePackage { + name = "js-tokens-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.3.tgz"; + name = "js-tokens-1.0.3.tgz"; + sha1 = "14e56eb68c8f1a92c43d59f5014ec29dc20f2ae1"; }; deps = { }; @@ -20708,19 +23427,19 @@ cpu = [ ]; }; by-spec."js-yaml"."*" = - self.by-version."js-yaml"."3.2.7"; - by-version."js-yaml"."3.2.7" = self.buildNodePackage { - name = "js-yaml-3.2.7"; - version = "3.2.7"; + self.by-version."js-yaml"."3.5.5"; + by-version."js-yaml"."3.5.5" = self.buildNodePackage { + name = "js-yaml-3.5.5"; + version = "3.5.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-3.2.7.tgz"; - name = "js-yaml-3.2.7.tgz"; - sha1 = "102790f265d986fe95a4d0f2a792e7a7bd886eec"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"; + name = "js-yaml-3.5.5.tgz"; + sha1 = "0377c38017cabc7322b0d1fbcd25a491641f2fbe"; }; deps = { - "argparse-1.0.2" = self.by-version."argparse"."1.0.2"; - "esprima-2.0.0" = self.by-version."esprima"."2.0.0"; + "argparse-1.0.7" = self.by-version."argparse"."1.0.7"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; }; optionalDependencies = { }; @@ -20728,7 +23447,7 @@ os = [ ]; cpu = [ ]; }; - "js-yaml" = self.by-version."js-yaml"."3.2.7"; + "js-yaml" = self.by-version."js-yaml"."3.5.5"; by-spec."js-yaml"."0.3.x" = self.by-version."js-yaml"."0.3.7"; by-version."js-yaml"."0.3.7" = self.buildNodePackage { @@ -20736,7 +23455,7 @@ version = "0.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-0.3.7.tgz"; name = "js-yaml-0.3.7.tgz"; sha1 = "d739d8ee86461e54b354d6a7d7d1f2ad9a167f62"; }; @@ -20755,7 +23474,7 @@ version = "2.1.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-2.1.0.tgz"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.1.0.tgz"; name = "js-yaml-2.1.0.tgz"; sha1 = "a55a6e4706b01d06326259a6f4bfc42e6ae38b1f"; }; @@ -20776,7 +23495,7 @@ version = "3.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-3.0.1.tgz"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.0.1.tgz"; name = "js-yaml-3.0.1.tgz"; sha1 = "76405fea5bce30fc8f405d48c6dca7f0a32c6afe"; }; @@ -20791,13 +23510,13 @@ cpu = [ ]; }; by-spec."js-yaml"."3.x" = - self.by-version."js-yaml"."3.2.7"; + self.by-version."js-yaml"."3.5.5"; by-spec."js-yaml"."3.x >=3.2" = - self.by-version."js-yaml"."3.2.7"; + self.by-version."js-yaml"."3.5.5"; by-spec."js-yaml".">=3.0.1 <4.0.0-0" = - self.by-version."js-yaml"."3.2.7"; - by-spec."js-yaml"."^3.1.0" = - self.by-version."js-yaml"."3.2.7"; + self.by-version."js-yaml"."3.5.5"; + by-spec."js-yaml"."^3.5.1" = + self.by-version."js-yaml"."3.5.5"; by-spec."js-yaml"."~2.0.5" = self.by-version."js-yaml"."2.0.5"; by-version."js-yaml"."2.0.5" = self.buildNodePackage { @@ -20805,7 +23524,7 @@ version = "2.0.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz"; + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-2.0.5.tgz"; name = "js-yaml-2.0.5.tgz"; sha1 = "a25ae6509999e97df278c6719da11bd0687743a8"; }; @@ -20819,25 +23538,54 @@ os = [ ]; cpu = [ ]; }; - by-spec."jsdom"."^0.10.5" = - self.by-version."jsdom"."0.10.6"; - by-version."jsdom"."0.10.6" = self.buildNodePackage { - name = "jsdom-0.10.6"; - version = "0.10.6"; + by-spec."js-yaml"."~3.5.2" = + self.by-version."js-yaml"."3.5.5"; + by-spec."jsbn".">=0.1.0 <0.2.0" = + self.by-version."jsbn"."0.1.0"; + by-version."jsbn"."0.1.0" = self.buildNodePackage { + name = "jsbn-0.1.0"; + version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsdom/-/jsdom-0.10.6.tgz"; - name = "jsdom-0.10.6.tgz"; - sha1 = "a3b1d875454ba0165575829679939ec006bf5ab8"; + url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz"; + name = "jsbn-0.1.0.tgz"; + sha1 = "650987da0dd74f4ebf5a11377a2aa2d273e97dfd"; }; deps = { - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "nwmatcher-1.3.4" = self.by-version."nwmatcher"."1.3.4"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "xmlhttprequest-1.7.0" = self.by-version."xmlhttprequest"."1.7.0"; - "cssom-0.3.0" = self.by-version."cssom"."0.3.0"; - "cssstyle-0.2.23" = self.by-version."cssstyle"."0.2.23"; - "contextify-0.1.13" = self.by-version."contextify"."0.1.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsbn"."~0.1.0" = + self.by-version."jsbn"."0.1.0"; + by-spec."jsdom"."3.1.2" = + self.by-version."jsdom"."3.1.2"; + by-version."jsdom"."3.1.2" = self.buildNodePackage { + name = "jsdom-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jsdom/-/jsdom-3.1.2.tgz"; + name = "jsdom-3.1.2.tgz"; + sha1 = "88e5fe2d3b45b628a153011e2aa0ead7f395b19c"; + }; + deps = { + "browser-request-0.3.3" = self.by-version."browser-request"."0.3.3"; + "contextify-0.1.15" = self.by-version."contextify"."0.1.15"; + "cssom-0.3.1" = self.by-version."cssom"."0.3.1"; + "cssstyle-0.2.34" = self.by-version."cssstyle"."0.2.34"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; + "nwmatcher-1.3.7" = self.by-version."nwmatcher"."1.3.7"; + "parse5-1.5.1" = self.by-version."parse5"."1.5.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "xml-name-validator-1.0.0" = self.by-version."xml-name-validator"."1.0.0"; + "xmlhttprequest-1.8.0" = self.by-version."xmlhttprequest"."1.8.0"; + "acorn-globals-1.0.9" = self.by-version."acorn-globals"."1.0.9"; + "acorn-0.11.0" = self.by-version."acorn"."0.11.0"; + "escodegen-1.8.0" = self.by-version."escodegen"."1.8.0"; }; optionalDependencies = { }; @@ -20852,18 +23600,18 @@ version = "0.11.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsdom/-/jsdom-0.11.1.tgz"; + url = "https://registry.npmjs.org/jsdom/-/jsdom-0.11.1.tgz"; name = "jsdom-0.11.1.tgz"; sha1 = "f1a79756ebc2116932caef8c6bfde7022dacdbfb"; }; deps = { - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "nwmatcher-1.3.4" = self.by-version."nwmatcher"."1.3.4"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "xmlhttprequest-1.7.0" = self.by-version."xmlhttprequest"."1.7.0"; - "cssom-0.3.0" = self.by-version."cssom"."0.3.0"; - "cssstyle-0.2.23" = self.by-version."cssstyle"."0.2.23"; - "contextify-0.1.13" = self.by-version."contextify"."0.1.13"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; + "nwmatcher-1.3.7" = self.by-version."nwmatcher"."1.3.7"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "xmlhttprequest-1.8.0" = self.by-version."xmlhttprequest"."1.8.0"; + "cssom-0.3.1" = self.by-version."cssom"."0.3.1"; + "cssstyle-0.2.34" = self.by-version."cssstyle"."0.2.34"; + "contextify-0.1.15" = self.by-version."contextify"."0.1.15"; }; optionalDependencies = { }; @@ -20878,18 +23626,18 @@ version = "0.8.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsdom/-/jsdom-0.8.11.tgz"; + url = "https://registry.npmjs.org/jsdom/-/jsdom-0.8.11.tgz"; name = "jsdom-0.8.11.tgz"; sha1 = "2a065f72863ac491137d19bd762ce9be1955527b"; }; deps = { - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "nwmatcher-1.3.4" = self.by-version."nwmatcher"."1.3.4"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "xmlhttprequest-1.7.0" = self.by-version."xmlhttprequest"."1.7.0"; - "cssom-0.3.0" = self.by-version."cssom"."0.3.0"; - "cssstyle-0.2.23" = self.by-version."cssstyle"."0.2.23"; - "contextify-0.1.13" = self.by-version."contextify"."0.1.13"; + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; + "nwmatcher-1.3.7" = self.by-version."nwmatcher"."1.3.7"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "xmlhttprequest-1.8.0" = self.by-version."xmlhttprequest"."1.8.0"; + "cssom-0.3.1" = self.by-version."cssom"."0.3.1"; + "cssstyle-0.2.34" = self.by-version."cssstyle"."0.2.34"; + "contextify-0.1.15" = self.by-version."contextify"."0.1.15"; }; optionalDependencies = { }; @@ -20904,7 +23652,7 @@ version = "0.4.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jsesc/-/jsesc-0.4.3.tgz"; + url = "https://registry.npmjs.org/jsesc/-/jsesc-0.4.3.tgz"; name = "jsesc-0.4.3.tgz"; sha1 = "a9c7f90afd5a1bf2ee64df6c416dab61672d2ae9"; }; @@ -20919,25 +23667,25 @@ by-spec."jsesc"."~0.4.3" = self.by-version."jsesc"."0.4.3"; by-spec."jshint"."*" = - self.by-version."jshint"."2.7.0"; - by-version."jshint"."2.7.0" = self.buildNodePackage { - name = "jshint-2.7.0"; - version = "2.7.0"; + self.by-version."jshint"."2.9.1"; + by-version."jshint"."2.9.1" = self.buildNodePackage { + name = "jshint-2.9.1"; + version = "2.9.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jshint/-/jshint-2.7.0.tgz"; - name = "jshint-2.7.0.tgz"; - sha1 = "d512bb14731dac09e49f212e6b2f1b0fdbabbc4f"; + url = "https://registry.npmjs.org/jshint/-/jshint-2.9.1.tgz"; + name = "jshint-2.9.1.tgz"; + sha1 = "3136b68f8b6fa37423aacb8ec5e18a1ada7a2638"; }; deps = { "cli-0.6.6" = self.by-version."cli"."0.6.6"; "console-browserify-1.1.0" = self.by-version."console-browserify"."1.1.0"; "exit-0.1.2" = self.by-version."exit"."0.1.2"; - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; + "htmlparser2-3.8.3" = self.by-version."htmlparser2"."3.8.3"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; "shelljs-0.3.0" = self.by-version."shelljs"."0.3.0"; - "strip-json-comments-1.0.2" = self.by-version."strip-json-comments"."1.0.2"; - "lodash-3.6.0" = self.by-version."lodash"."3.6.0"; + "strip-json-comments-1.0.4" = self.by-version."strip-json-comments"."1.0.4"; + "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; }; optionalDependencies = { }; @@ -20945,9 +23693,9 @@ os = [ ]; cpu = [ ]; }; - "jshint" = self.by-version."jshint"."2.7.0"; - by-spec."jshint"."^2.6.0" = - self.by-version."jshint"."2.7.0"; + "jshint" = self.by-version."jshint"."2.9.1"; + by-spec."jshint"."~2.9.1" = + self.by-version."jshint"."2.9.1"; by-spec."json"."*" = self.by-version."json"."9.0.3"; by-version."json"."9.0.3" = self.buildNodePackage { @@ -20955,7 +23703,7 @@ version = "9.0.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/json/-/json-9.0.3.tgz"; + url = "https://registry.npmjs.org/json/-/json-9.0.3.tgz"; name = "json-9.0.3.tgz"; sha1 = "08dd0eda9dda30a40d978cc8823c2ce72df5d4f1"; }; @@ -20975,7 +23723,7 @@ version = "1.0.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/json-middleware/-/json-middleware-1.0.2.tgz"; + url = "https://registry.npmjs.org/json-middleware/-/json-middleware-1.0.2.tgz"; name = "json-middleware-1.0.2.tgz"; sha1 = "bc55c6d43231df6846df6ba880f72454e2a32596"; }; @@ -20994,12 +23742,12 @@ version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz"; + url = "https://registry.npmjs.org/json-parse-helpfulerror/-/json-parse-helpfulerror-1.0.3.tgz"; name = "json-parse-helpfulerror-1.0.3.tgz"; sha1 = "13f14ce02eed4e981297b64eb9e3b932e2dd13dc"; }; deps = { - "jju-1.2.0" = self.by-version."jju"."1.2.0"; + "jju-1.3.0" = self.by-version."jju"."1.3.0"; }; optionalDependencies = { }; @@ -21007,6 +23755,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."json-parse-helpfulerror"."^1.0.3" = + self.by-version."json-parse-helpfulerror"."1.0.3"; by-spec."json-schema"."0.2.2" = self.by-version."json-schema"."0.2.2"; by-version."json-schema"."0.2.2" = self.buildNodePackage { @@ -21014,7 +23764,7 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz"; + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.2.tgz"; name = "json-schema-0.2.2.tgz"; sha1 = "50354f19f603917c695f70b85afa77c3b0f23506"; }; @@ -21026,6 +23776,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."json-stable-stringify"."^1.0.0" = + self.by-version."json-stable-stringify"."1.0.1"; + by-version."json-stable-stringify"."1.0.1" = self.buildNodePackage { + name = "json-stable-stringify-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz"; + name = "json-stable-stringify-1.0.1.tgz"; + sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af"; + }; + deps = { + "jsonify-0.0.0" = self.by-version."jsonify"."0.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."json-stable-stringify"."~0.0.0" = self.by-version."json-stable-stringify"."0.0.1"; by-version."json-stable-stringify"."0.0.1" = self.buildNodePackage { @@ -21033,7 +23803,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz"; + url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-0.0.1.tgz"; name = "json-stable-stringify-0.0.1.tgz"; sha1 = "611c23e814db375527df851193db59dd2af27f45"; }; @@ -21053,7 +23823,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz"; + url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz"; name = "json-stringify-safe-3.0.0.tgz"; sha1 = "9db7b0e530c7f289c5e8c8432af191c2ff75a5b3"; }; @@ -21065,35 +23835,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."json-stringify-safe"."~4.0.0" = - self.by-version."json-stringify-safe"."4.0.0"; - by-version."json-stringify-safe"."4.0.0" = self.buildNodePackage { - name = "json-stringify-safe-4.0.0"; - version = "4.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-4.0.0.tgz"; - name = "json-stringify-safe-4.0.0.tgz"; - sha1 = "77c271aaea54302e68efeaccb56abbf06a9b1a54"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."json-stringify-safe"."~5.0.0" = - self.by-version."json-stringify-safe"."5.0.0"; - by-version."json-stringify-safe"."5.0.0" = self.buildNodePackage { - name = "json-stringify-safe-5.0.0"; - version = "5.0.0"; + self.by-version."json-stringify-safe"."5.0.1"; + by-version."json-stringify-safe"."5.0.1" = self.buildNodePackage { + name = "json-stringify-safe-5.0.1"; + version = "5.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.0.tgz"; - name = "json-stringify-safe-5.0.0.tgz"; - sha1 = "4c1f228b5050837eba9d21f50c2e6e320624566e"; + url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; + name = "json-stringify-safe-5.0.1.tgz"; + sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; }; deps = { }; @@ -21103,6 +23854,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."json-stringify-safe"."~5.0.1" = + self.by-version."json-stringify-safe"."5.0.1"; by-spec."json3"."3.2.6" = self.by-version."json3"."3.2.6"; by-version."json3"."3.2.6" = self.buildNodePackage { @@ -21110,7 +23863,7 @@ version = "3.2.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/json3/-/json3-3.2.6.tgz"; + url = "https://registry.npmjs.org/json3/-/json3-3.2.6.tgz"; name = "json3-3.2.6.tgz"; sha1 = "f6efc93c06a04de9aec53053df2559bb19e2038b"; }; @@ -21122,6 +23875,27 @@ os = [ ]; cpu = [ ]; }; + by-spec."json3"."3.3.2" = + self.by-version."json3"."3.3.2"; + by-version."json3"."3.3.2" = self.buildNodePackage { + name = "json3-3.3.2"; + version = "3.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz"; + name = "json3-3.3.2.tgz"; + sha1 = "3c0434743df93e2f5c42aee7b19bcb483575f4e1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."json3"."^3.3.2" = + self.by-version."json3"."3.3.2"; by-spec."json5"."^0.2.0" = self.by-version."json5"."0.2.0"; by-version."json5"."0.2.0" = self.buildNodePackage { @@ -21129,7 +23903,7 @@ version = "0.2.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/json5/-/json5-0.2.0.tgz"; + url = "https://registry.npmjs.org/json5/-/json5-0.2.0.tgz"; name = "json5-0.2.0.tgz"; sha1 = "b6d7035c70c4570f883c7edc759de3ae03db3343"; }; @@ -21141,16 +23915,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."jsonfile"."^2.0.0" = - self.by-version."jsonfile"."2.0.0"; - by-version."jsonfile"."2.0.0" = self.buildNodePackage { - name = "jsonfile-2.0.0"; - version = "2.0.0"; + by-spec."json5"."^0.4.0" = + self.by-version."json5"."0.4.0"; + by-version."json5"."0.4.0" = self.buildNodePackage { + name = "json5-0.4.0"; + version = "0.4.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz"; + name = "json5-0.4.0.tgz"; + sha1 = "054352e4c4c80c86c0923877d449de176a732c8d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsonfile"."^2.1.0" = + self.by-version."jsonfile"."2.2.3"; + by-version."jsonfile"."2.2.3" = self.buildNodePackage { + name = "jsonfile-2.2.3"; + version = "2.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-2.0.0.tgz"; - name = "jsonfile-2.0.0.tgz"; - sha1 = "c3944f350bd3c078b392e0aa1633b44662fcf06b"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-2.2.3.tgz"; + name = "jsonfile-2.2.3.tgz"; + sha1 = "e252b99a6af901d3ec41f332589c90509a7bc605"; }; deps = { }; @@ -21167,7 +23960,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.0.1.tgz"; name = "jsonfile-1.0.1.tgz"; sha1 = "ea5efe40b83690b98667614a7392fc60e842c0dd"; }; @@ -21186,7 +23979,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-1.1.1.tgz"; + url = "https://registry.npmjs.org/jsonfile/-/jsonfile-1.1.1.tgz"; name = "jsonfile-1.1.1.tgz"; sha1 = "da4fd6ad77f1a255203ea63c7bc32dc31ef64433"; }; @@ -21205,7 +23998,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; + url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; name = "jsonify-0.0.0.tgz"; sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; }; @@ -21224,7 +24017,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz"; + url = "https://registry.npmjs.org/jsonparse/-/jsonparse-0.0.5.tgz"; name = "jsonparse-0.0.5.tgz"; sha1 = "330542ad3f0a654665b778f3eb2d9a9fa507ac64"; }; @@ -21236,16 +24029,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."jsonpointer"."^1.1.0" = - self.by-version."jsonpointer"."1.1.0"; - by-version."jsonpointer"."1.1.0" = self.buildNodePackage { - name = "jsonpointer-1.1.0"; - version = "1.1.0"; + by-spec."jsonparse"."^1.1.0" = + self.by-version."jsonparse"."1.2.0"; + by-version."jsonparse"."1.2.0" = self.buildNodePackage { + name = "jsonparse-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonpointer/-/jsonpointer-1.1.0.tgz"; - name = "jsonpointer-1.1.0.tgz"; - sha1 = "c3c72efaed3b97154163dc01dd349e1cfe0f80fc"; + url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.2.0.tgz"; + name = "jsonparse-1.2.0.tgz"; + sha1 = "5c0c5685107160e72fe7489bddea0b44c2bc67bd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsonpointer"."2.0.0" = + self.by-version."jsonpointer"."2.0.0"; + by-version."jsonpointer"."2.0.0" = self.buildNodePackage { + name = "jsonpointer-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz"; + name = "jsonpointer-2.0.0.tgz"; + sha1 = "3af1dd20fe85463910d469a385e33017d2a030d9"; }; deps = { }; @@ -21262,7 +24074,7 @@ version = "7.0.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/jsontool/-/jsontool-7.0.2.tgz"; + url = "https://registry.npmjs.org/jsontool/-/jsontool-7.0.2.tgz"; name = "jsontool-7.0.2.tgz"; sha1 = "e29d3d1b0766ba4e179a18a96578b904dca43207"; }; @@ -21275,19 +24087,42 @@ cpu = [ ]; }; "jsontool" = self.by-version."jsontool"."7.0.2"; - by-spec."jsonwebtoken"."^1.1.1" = - self.by-version."jsonwebtoken"."1.3.0"; - by-version."jsonwebtoken"."1.3.0" = self.buildNodePackage { - name = "jsonwebtoken-1.3.0"; - version = "1.3.0"; + by-spec."jsonwebtoken"."5.4.x" = + self.by-version."jsonwebtoken"."5.4.1"; + by-version."jsonwebtoken"."5.4.1" = self.buildNodePackage { + name = "jsonwebtoken-5.4.1"; + version = "5.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-1.3.0.tgz"; - name = "jsonwebtoken-1.3.0.tgz"; - sha1 = "683ceee1bbe09a92d9e026ab25e67f97bcf3c3e2"; + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-5.4.1.tgz"; + name = "jsonwebtoken-5.4.1.tgz"; + sha1 = "2055c639195ffe56314fa6a51df02468186a9695"; }; deps = { - "jws-0.2.6" = self.by-version."jws"."0.2.6"; + "jws-3.1.3" = self.by-version."jws"."3.1.3"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jsonwebtoken".">=1.0.0" = + self.by-version."jsonwebtoken"."5.7.0"; + by-version."jsonwebtoken"."5.7.0" = self.buildNodePackage { + name = "jsonwebtoken-5.7.0"; + version = "5.7.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-5.7.0.tgz"; + name = "jsonwebtoken-5.7.0.tgz"; + sha1 = "1c90f9a86ce5b748f5f979c12b70402b4afcddb4"; + }; + deps = { + "jws-3.1.3" = self.by-version."jws"."3.1.3"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -21302,7 +24137,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jsprim/-/jsprim-0.3.0.tgz"; + url = "https://registry.npmjs.org/jsprim/-/jsprim-0.3.0.tgz"; name = "jsprim-0.3.0.tgz"; sha1 = "cd13466ea2480dbd8396a570d47d31dda476f8b1"; }; @@ -21317,21 +24152,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."jstransform"."^10.0.1" = - self.by-version."jstransform"."10.1.0"; - by-version."jstransform"."10.1.0" = self.buildNodePackage { - name = "jstransform-10.1.0"; - version = "10.1.0"; + by-spec."jsprim"."^1.2.2" = + self.by-version."jsprim"."1.2.2"; + by-version."jsprim"."1.2.2" = self.buildNodePackage { + name = "jsprim-1.2.2"; + version = "1.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jstransform/-/jstransform-10.1.0.tgz"; - name = "jstransform-10.1.0.tgz"; - sha1 = "b4c49bf63f162c108b0348399a8737c713b0a83a"; + url = "https://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz"; + name = "jsprim-1.2.2.tgz"; + sha1 = "f20c906ac92abd58e3b79ac8bc70a48832512da1"; }; deps = { - "base62-0.1.1" = self.by-version."base62"."0.1.1"; - "esprima-fb-13001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."13001.1001.0-dev-harmony-fb"; - "source-map-0.1.31" = self.by-version."source-map"."0.1.31"; + "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; + "json-schema-0.2.2" = self.by-version."json-schema"."0.2.2"; + "verror-1.3.6" = self.by-version."verror"."1.3.6"; }; optionalDependencies = { }; @@ -21339,20 +24174,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."jstransform"."^10.1.0" = - self.by-version."jstransform"."10.1.0"; - by-spec."junk"."^1.0.0" = - self.by-version."junk"."1.0.1"; - by-version."junk"."1.0.1" = self.buildNodePackage { - name = "junk-1.0.1"; - version = "1.0.1"; - bin = false; + by-spec."jstransform"."^11.0.0" = + self.by-version."jstransform"."11.0.3"; + by-version."jstransform"."11.0.3" = self.buildNodePackage { + name = "jstransform-11.0.3"; + version = "11.0.3"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/junk/-/junk-1.0.1.tgz"; - name = "junk-1.0.1.tgz"; - sha1 = "824ef8925f02026f61bc6e6fa346b25fa8f3938b"; + url = "https://registry.npmjs.org/jstransform/-/jstransform-11.0.3.tgz"; + name = "jstransform-11.0.3.tgz"; + sha1 = "09a78993e0ae4d4ef4487f6155a91f6190cb4223"; }; deps = { + "base62-1.1.0" = self.by-version."base62"."1.1.0"; + "commoner-0.10.4" = self.by-version."commoner"."0.10.4"; + "esprima-fb-15001.1.0-dev-harmony-fb" = self.by-version."esprima-fb"."15001.1.0-dev-harmony-fb"; + "object-assign-2.1.1" = self.by-version."object-assign"."2.1.1"; + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; }; optionalDependencies = { }; @@ -21360,40 +24198,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."jwa"."0.0.1" = - self.by-version."jwa"."0.0.1"; - by-version."jwa"."0.0.1" = self.buildNodePackage { - name = "jwa-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jwa/-/jwa-0.0.1.tgz"; - name = "jwa-0.0.1.tgz"; - sha1 = "2d05f54d68f170648c30fe45944731a388cd07cc"; - }; - deps = { - "base64url-0.0.6" = self.by-version."base64url"."0.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jws"."0.0.2" = - self.by-version."jws"."0.0.2"; - by-version."jws"."0.0.2" = self.buildNodePackage { - name = "jws-0.0.2"; + by-spec."jstransformer"."0.0.2" = + self.by-version."jstransformer"."0.0.2"; + by-version."jstransformer"."0.0.2" = self.buildNodePackage { + name = "jstransformer-0.0.2"; version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jws/-/jws-0.0.2.tgz"; - name = "jws-0.0.2.tgz"; - sha1 = "8c6916977183cce3361da48c8c2e0c606e7a95c6"; + url = "https://registry.npmjs.org/jstransformer/-/jstransformer-0.0.2.tgz"; + name = "jstransformer-0.0.2.tgz"; + sha1 = "7aae29a903d196cfa0973d885d3e47947ecd76ab"; }; deps = { - "tap-0.3.3" = self.by-version."tap"."0.3.3"; - "base64url-0.0.3" = self.by-version."base64url"."0.0.3"; + "is-promise-2.1.0" = self.by-version."is-promise"."2.1.0"; + "promise-6.1.0" = self.by-version."promise"."6.1.0"; }; optionalDependencies = { }; @@ -21401,20 +24219,85 @@ os = [ ]; cpu = [ ]; }; - by-spec."jws"."~0.2.6" = - self.by-version."jws"."0.2.6"; - by-version."jws"."0.2.6" = self.buildNodePackage { - name = "jws-0.2.6"; - version = "0.2.6"; + by-spec."jwa"."^1.1.2" = + self.by-version."jwa"."1.1.3"; + by-version."jwa"."1.1.3" = self.buildNodePackage { + name = "jwa-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jws/-/jws-0.2.6.tgz"; - name = "jws-0.2.6.tgz"; - sha1 = "e9b7e9ac8d2ac1067413233bc6c20fbd8868e9ba"; + url = "https://registry.npmjs.org/jwa/-/jwa-1.1.3.tgz"; + name = "jwa-1.1.3.tgz"; + sha1 = "fa9f2f005ff0c630e7c41526a31f37f79733cd6d"; + }; + deps = { + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; + "buffer-equal-constant-time-1.0.1" = self.by-version."buffer-equal-constant-time"."1.0.1"; + "ecdsa-sig-formatter-1.0.5" = self.by-version."ecdsa-sig-formatter"."1.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jwa"."~1.0.0" = + self.by-version."jwa"."1.0.2"; + by-version."jwa"."1.0.2" = self.buildNodePackage { + name = "jwa-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jwa/-/jwa-1.0.2.tgz"; + name = "jwa-1.0.2.tgz"; + sha1 = "fd79609f1e772e299dce8ddb76d00659dd83511f"; }; deps = { "base64url-0.0.6" = self.by-version."base64url"."0.0.6"; - "jwa-0.0.1" = self.by-version."jwa"."0.0.1"; + "buffer-equal-constant-time-1.0.1" = self.by-version."buffer-equal-constant-time"."1.0.1"; + "ecdsa-sig-formatter-1.0.5" = self.by-version."ecdsa-sig-formatter"."1.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jws"."^3.0.0" = + self.by-version."jws"."3.1.3"; + by-version."jws"."3.1.3" = self.buildNodePackage { + name = "jws-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jws/-/jws-3.1.3.tgz"; + name = "jws-3.1.3.tgz"; + sha1 = "b88f1b4581a2c5ee8813c06b3fdf90ea9b5c7e6c"; + }; + deps = { + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; + "jwa-1.1.3" = self.by-version."jwa"."1.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."jws"."~3.0.0" = + self.by-version."jws"."3.0.0"; + by-version."jws"."3.0.0" = self.buildNodePackage { + name = "jws-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/jws/-/jws-3.0.0.tgz"; + name = "jws-3.0.0.tgz"; + sha1 = "da5f267897dd4e9cf8137979db33fc54a3c05418"; + }; + deps = { + "jwa-1.0.2" = self.by-version."jwa"."1.0.2"; + "base64url-1.0.6" = self.by-version."base64url"."1.0.6"; }; optionalDependencies = { }; @@ -21429,7 +24312,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/jwt-simple/-/jwt-simple-0.1.0.tgz"; + url = "https://registry.npmjs.org/jwt-simple/-/jwt-simple-0.1.0.tgz"; name = "jwt-simple-0.1.0.tgz"; sha1 = "546b34aab02e3cd49c43a4279498b34d940041e3"; }; @@ -21441,16 +24324,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."k-bucket"."^0.4.2" = - self.by-version."k-bucket"."0.4.2"; - by-version."k-bucket"."0.4.2" = self.buildNodePackage { - name = "k-bucket-0.4.2"; - version = "0.4.2"; + by-spec."k-bucket"."^0.5.0" = + self.by-version."k-bucket"."0.5.0"; + by-version."k-bucket"."0.5.0" = self.buildNodePackage { + name = "k-bucket-0.5.0"; + version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/k-bucket/-/k-bucket-0.4.2.tgz"; - name = "k-bucket-0.4.2.tgz"; - sha1 = "150ab92307e9ec818a9c4e39a5f930eb3aaaa23a"; + url = "https://registry.npmjs.org/k-bucket/-/k-bucket-0.5.0.tgz"; + name = "k-bucket-0.5.0.tgz"; + sha1 = "31d462d86cdb2e8d245528acfe5e71382f552e1d"; }; deps = { "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; @@ -21461,16 +24344,79 @@ os = [ ]; cpu = [ ]; }; - by-spec."kareem"."0.0.4" = - self.by-version."kareem"."0.0.4"; - by-version."kareem"."0.0.4" = self.buildNodePackage { - name = "kareem-0.0.4"; - version = "0.0.4"; + by-spec."k-bucket"."^0.6.0" = + self.by-version."k-bucket"."0.6.0"; + by-version."k-bucket"."0.6.0" = self.buildNodePackage { + name = "k-bucket-0.6.0"; + version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kareem/-/kareem-0.0.4.tgz"; - name = "kareem-0.0.4.tgz"; - sha1 = "a8475defd74cf829b0071d20e6971bf15d911d2b"; + url = "https://registry.npmjs.org/k-bucket/-/k-bucket-0.6.0.tgz"; + name = "k-bucket-0.6.0.tgz"; + sha1 = "afc532545f69d466293e887b00d5fc73377c3abb"; + }; + deps = { + "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."k-rpc"."^3.6.0" = + self.by-version."k-rpc"."3.6.1"; + by-version."k-rpc"."3.6.1" = self.buildNodePackage { + name = "k-rpc-3.6.1"; + version = "3.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/k-rpc/-/k-rpc-3.6.1.tgz"; + name = "k-rpc-3.6.1.tgz"; + sha1 = "b26ff19be82abc4d3c0cc34de4cd5282f4ed5450"; + }; + deps = { + "buffer-equals-1.0.3" = self.by-version."buffer-equals"."1.0.3"; + "k-bucket-0.6.0" = self.by-version."k-bucket"."0.6.0"; + "k-rpc-socket-1.5.1" = self.by-version."k-rpc-socket"."1.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."k-rpc-socket"."^1.5.0" = + self.by-version."k-rpc-socket"."1.5.1"; + by-version."k-rpc-socket"."1.5.1" = self.buildNodePackage { + name = "k-rpc-socket-1.5.1"; + version = "1.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/k-rpc-socket/-/k-rpc-socket-1.5.1.tgz"; + name = "k-rpc-socket-1.5.1.tgz"; + sha1 = "0349823046a395bbb3d4d03c74f6a024fcb14ce4"; + }; + deps = { + "bencode-0.9.0" = self.by-version."bencode"."0.9.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."kareem"."1.0.1" = + self.by-version."kareem"."1.0.1"; + by-version."kareem"."1.0.1" = self.buildNodePackage { + name = "kareem-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/kareem/-/kareem-1.0.1.tgz"; + name = "kareem-1.0.1.tgz"; + sha1 = "7805d215bb53214ec3af969a1d0b1f17e3e7b95c"; }; deps = { }; @@ -21481,36 +24427,40 @@ cpu = [ ]; }; by-spec."karma"."*" = - self.by-version."karma"."0.12.32"; - by-version."karma"."0.12.32" = self.buildNodePackage { - name = "karma-0.12.32"; - version = "0.12.32"; + self.by-version."karma"."0.13.22"; + by-version."karma"."0.13.22" = self.buildNodePackage { + name = "karma-0.13.22"; + version = "0.13.22"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/karma/-/karma-0.12.32.tgz"; - name = "karma-0.12.32.tgz"; - sha1 = "8d8277482bf6b29b13cf2d024ad9bbae18742a9a"; + url = "https://registry.npmjs.org/karma/-/karma-0.13.22.tgz"; + name = "karma-0.13.22.tgz"; + sha1 = "07750b1bd063d7e7e7b91bcd2e6354d8f2aa8744"; }; deps = { + "batch-0.5.3" = self.by-version."batch"."0.5.3"; + "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; + "body-parser-1.15.0" = self.by-version."body-parser"."1.15.0"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "connect-3.4.1" = self.by-version."connect"."3.4.1"; + "core-js-2.2.2" = self.by-version."core-js"."2.2.2"; "di-0.0.1" = self.by-version."di"."0.0.1"; - "socket.io-1.3.5" = self.by-version."socket.io"."1.3.5"; - "chokidar-1.0.1" = self.by-version."chokidar"."1.0.1"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; - "expand-braces-0.1.1" = self.by-version."expand-braces"."0.1.1"; - "http-proxy-0.10.4" = self.by-version."http-proxy"."0.10.4"; + "dom-serialize-2.2.1" = self.by-version."dom-serialize"."2.2.1"; + "expand-braces-0.1.2" = self.by-version."expand-braces"."0.1.2"; + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "http-proxy-1.13.2" = self.by-version."http-proxy"."1.13.2"; + "isbinaryfile-3.0.0" = self.by-version."isbinaryfile"."3.0.0"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "log4js-0.6.33" = self.by-version."log4js"."0.6.33"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - "q-0.9.7" = self.by-version."q"."0.9.7"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "log4js-0.6.24" = self.by-version."log4js"."0.6.24"; - "useragent-2.0.10" = self.by-version."useragent"."2.0.10"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "connect-2.26.6" = self.by-version."connect"."2.26.6"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - "memoizee-0.3.8" = self.by-version."memoizee"."0.3.8"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "socket.io-1.4.5" = self.by-version."socket.io"."1.4.5"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + "useragent-2.1.9" = self.by-version."useragent"."2.1.9"; }; optionalDependencies = { }; @@ -21518,162 +24468,181 @@ os = [ ]; cpu = [ ]; }; - "karma" = self.by-version."karma"."0.12.32"; - by-spec."karma".">=0.11.11" = - self.by-version."karma"."0.12.32"; - by-spec."karma".">=0.12.8" = - self.by-version."karma"."0.12.32"; + "karma" = self.by-version."karma"."0.13.22"; by-spec."karma".">=0.9" = - self.by-version."karma"."0.12.32"; - by-spec."karma".">=0.9.3" = - self.by-version."karma"."0.12.32"; - by-spec."karma"."~0.12.0" = - self.by-version."karma"."0.12.32"; + self.by-version."karma"."0.13.22"; + by-spec."karma"."^0.13.0 || >= 0.14.0-rc.0" = + self.by-version."karma"."0.13.22"; by-spec."karma-chrome-launcher"."*" = - self.by-version."karma-chrome-launcher"."0.1.8"; - by-version."karma-chrome-launcher"."0.1.8" = self.buildNodePackage { - name = "karma-chrome-launcher-0.1.8"; - version = "0.1.8"; + self.by-version."karma-chrome-launcher"."0.2.3"; + by-version."karma-chrome-launcher"."0.2.3" = self.buildNodePackage { + name = "karma-chrome-launcher-0.2.3"; + version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.1.8.tgz"; - name = "karma-chrome-launcher-0.1.8.tgz"; - sha1 = "5ba43f821f64f531e4ff1e7d86caf95df9ac9142"; + url = "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.2.3.tgz"; + name = "karma-chrome-launcher-0.2.3.tgz"; + sha1 = "4c6d700d163a9d34c618efd87918be49e7a4a8c9"; }; deps = { - "which-1.0.9" = self.by-version."which"."1.0.9"; + "fs-access-1.0.0" = self.by-version."fs-access"."1.0.0"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "karma-chrome-launcher" = self.by-version."karma-chrome-launcher"."0.2.3"; + by-spec."karma-coverage"."*" = + self.by-version."karma-coverage"."0.5.5"; + by-version."karma-coverage"."0.5.5" = self.buildNodePackage { + name = "karma-coverage-0.5.5"; + version = "0.5.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/karma-coverage/-/karma-coverage-0.5.5.tgz"; + name = "karma-coverage-0.5.5.tgz"; + sha1 = "b0d58b1025d59d5c6620263186f1d58f5d5348c5"; + }; + deps = { + "istanbul-0.4.3" = self.by-version."istanbul"."0.4.3"; + "dateformat-1.0.12" = self.by-version."dateformat"."1.0.12"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "karma-coverage" = self.by-version."karma-coverage"."0.5.5"; + by-spec."karma-junit-reporter"."*" = + self.by-version."karma-junit-reporter"."0.4.1"; + by-version."karma-junit-reporter"."0.4.1" = self.buildNodePackage { + name = "karma-junit-reporter-0.4.1"; + version = "0.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.4.1.tgz"; + name = "karma-junit-reporter-0.4.1.tgz"; + sha1 = "d69477bc044e04f093fb1d61b2e4e694fb03c2d9"; + }; + deps = { + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "xmlbuilder-3.1.0" = self.by-version."xmlbuilder"."3.1.0"; }; optionalDependencies = { }; peerDependencies = [ - self.by-version."karma"."0.12.32"]; + self.by-version."karma"."0.13.22"]; os = [ ]; cpu = [ ]; }; - "karma-chrome-launcher" = self.by-version."karma-chrome-launcher"."0.1.8"; - by-spec."karma-coverage"."*" = - self.by-version."karma-coverage"."0.3.1"; - by-version."karma-coverage"."0.3.1" = self.buildNodePackage { - name = "karma-coverage-0.3.1"; + "karma-junit-reporter" = self.by-version."karma-junit-reporter"."0.4.1"; + by-spec."karma-mocha"."*" = + self.by-version."karma-mocha"."0.2.2"; + by-version."karma-mocha"."0.2.2" = self.buildNodePackage { + name = "karma-mocha-0.2.2"; + version = "0.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/karma-mocha/-/karma-mocha-0.2.2.tgz"; + name = "karma-mocha-0.2.2.tgz"; + sha1 = "388ed917da15dcb196d1b915c1934ef803193f8e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."mocha"."2.4.5"]; + os = [ ]; + cpu = [ ]; + }; + "karma-mocha" = self.by-version."karma-mocha"."0.2.2"; + by-spec."karma-requirejs"."*" = + self.by-version."karma-requirejs"."0.2.6"; + by-version."karma-requirejs"."0.2.6" = self.buildNodePackage { + name = "karma-requirejs-0.2.6"; + version = "0.2.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/karma-requirejs/-/karma-requirejs-0.2.6.tgz"; + name = "karma-requirejs-0.2.6.tgz"; + sha1 = "1a770c64f901320a389c65b4944746326372def8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."karma"."0.13.22" + self.by-version."requirejs"."2.2.0"]; + os = [ ]; + cpu = [ ]; + }; + "karma-requirejs" = self.by-version."karma-requirejs"."0.2.6"; + by-spec."karma-sauce-launcher"."*" = + self.by-version."karma-sauce-launcher"."0.3.1"; + by-version."karma-sauce-launcher"."0.3.1" = self.buildNodePackage { + name = "karma-sauce-launcher-0.3.1"; version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/karma-coverage/-/karma-coverage-0.3.1.tgz"; - name = "karma-coverage-0.3.1.tgz"; - sha1 = "05c8861aec457b4857b827a10f5fec32cc11a4ae"; + url = "https://registry.npmjs.org/karma-sauce-launcher/-/karma-sauce-launcher-0.3.1.tgz"; + name = "karma-sauce-launcher-0.3.1.tgz"; + sha1 = "fa41f6afd1ad6cb7610885da83cbc9921a4d334c"; }; deps = { - "istanbul-0.3.13" = self.by-version."istanbul"."0.3.13"; - "dateformat-1.0.11" = self.by-version."dateformat"."1.0.11"; - "minimatch-0.3.0" = self.by-version."minimatch"."0.3.0"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "sauce-connect-launcher-0.13.0" = self.by-version."sauce-connect-launcher"."0.13.0"; + "saucelabs-1.2.0" = self.by-version."saucelabs"."1.2.0"; + "wd-0.3.12" = self.by-version."wd"."0.3.12"; }; optionalDependencies = { }; - peerDependencies = [ - self.by-version."karma"."0.12.32"]; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "karma-coverage" = self.by-version."karma-coverage"."0.3.1"; - by-spec."karma-junit-reporter"."*" = - self.by-version."karma-junit-reporter"."0.2.2"; - by-version."karma-junit-reporter"."0.2.2" = self.buildNodePackage { - name = "karma-junit-reporter-0.2.2"; - version = "0.2.2"; + "karma-sauce-launcher" = self.by-version."karma-sauce-launcher"."0.3.1"; + by-spec."keen-js"."^3.2.4" = + self.by-version."keen-js"."3.4.0"; + by-version."keen-js"."3.4.0" = self.buildNodePackage { + name = "keen-js-3.4.0"; + version = "3.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.2.2.tgz"; - name = "karma-junit-reporter-0.2.2.tgz"; - sha1 = "4cdd4e21affd3e090e7ba73e3c766ea9e13c45ba"; + url = "https://registry.npmjs.org/keen-js/-/keen-js-3.4.0.tgz"; + name = "keen-js-3.4.0.tgz"; + sha1 = "e3a8b10d4c98858793b78d77898cc5bccc8a014b"; }; deps = { - "xmlbuilder-0.4.2" = self.by-version."xmlbuilder"."0.4.2"; + "JSON2-0.1.0" = self.by-version."JSON2"."0.1.0"; + "browserify-versionify-1.0.3" = self.by-version."browserify-versionify"."1.0.3"; + "component-emitter-1.2.0" = self.by-version."component-emitter"."1.2.0"; + "domready-0.3.0" = self.by-version."domready"."0.3.0"; + "json3-3.3.2" = self.by-version."json3"."3.3.2"; + "spin.js-2.3.2" = self.by-version."spin.js"."2.3.2"; + "superagent-0.21.0" = self.by-version."superagent"."0.21.0"; }; optionalDependencies = { }; - peerDependencies = [ - self.by-version."karma"."0.12.32"]; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "karma-junit-reporter" = self.by-version."karma-junit-reporter"."0.2.2"; - by-spec."karma-mocha"."*" = - self.by-version."karma-mocha"."0.1.10"; - by-version."karma-mocha"."0.1.10" = self.buildNodePackage { - name = "karma-mocha-0.1.10"; - version = "0.1.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/karma-mocha/-/karma-mocha-0.1.10.tgz"; - name = "karma-mocha-0.1.10.tgz"; - sha1 = "29ed51d4b121af1373444ec555b20a905bf42b92"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."karma"."0.12.32" - self.by-version."mocha"."2.2.4"]; - os = [ ]; - cpu = [ ]; - }; - "karma-mocha" = self.by-version."karma-mocha"."0.1.10"; - by-spec."karma-requirejs"."*" = - self.by-version."karma-requirejs"."0.2.2"; - by-version."karma-requirejs"."0.2.2" = self.buildNodePackage { - name = "karma-requirejs-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/karma-requirejs/-/karma-requirejs-0.2.2.tgz"; - name = "karma-requirejs-0.2.2.tgz"; - sha1 = "e497ca0868e2e09a9b8e3f646745c31a935fe8b6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."karma"."0.12.32" - self.by-version."requirejs"."2.1.17"]; - os = [ ]; - cpu = [ ]; - }; - "karma-requirejs" = self.by-version."karma-requirejs"."0.2.2"; - by-spec."karma-sauce-launcher"."*" = - self.by-version."karma-sauce-launcher"."0.2.10"; - by-version."karma-sauce-launcher"."0.2.10" = self.buildNodePackage { - name = "karma-sauce-launcher-0.2.10"; - version = "0.2.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/karma-sauce-launcher/-/karma-sauce-launcher-0.2.10.tgz"; - name = "karma-sauce-launcher-0.2.10.tgz"; - sha1 = "9aed0df47934c630d2ceb7faa954f5c454deddb0"; - }; - deps = { - "wd-0.3.11" = self.by-version."wd"."0.3.11"; - "sauce-connect-launcher-0.6.1" = self.by-version."sauce-connect-launcher"."0.6.1"; - "q-0.9.7" = self.by-version."q"."0.9.7"; - "saucelabs-0.1.1" = self.by-version."saucelabs"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."karma"."0.12.32"]; - os = [ ]; - cpu = [ ]; - }; - "karma-sauce-launcher" = self.by-version."karma-sauce-launcher"."0.2.10"; - by-spec."keen.io"."^0.1.2" = + by-spec."keen.io"."~0.1.3" = self.by-version."keen.io"."0.1.3"; by-version."keen.io"."0.1.3" = self.buildNodePackage { name = "keen.io-0.1.3"; version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keen.io/-/keen.io-0.1.3.tgz"; + url = "https://registry.npmjs.org/keen.io/-/keen.io-0.1.3.tgz"; name = "keen.io-0.1.3.tgz"; sha1 = "5056f5c989ab14ccf62fc20ed7598115ae7d09e3"; }; @@ -21687,8 +24656,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."keen.io"."~0.1.3" = - self.by-version."keen.io"."0.1.3"; by-spec."keep-alive-agent"."^0.0.1" = self.by-version."keep-alive-agent"."0.0.1"; by-version."keep-alive-agent"."0.0.1" = self.buildNodePackage { @@ -21696,7 +24663,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz"; + url = "https://registry.npmjs.org/keep-alive-agent/-/keep-alive-agent-0.0.1.tgz"; name = "keep-alive-agent-0.0.1.tgz"; sha1 = "44847ca394ce8d6b521ae85816bd64509942b385"; }; @@ -21715,7 +24682,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kerberos/-/kerberos-0.0.3.tgz"; + url = "https://registry.npmjs.org/kerberos/-/kerberos-0.0.3.tgz"; name = "kerberos-0.0.3.tgz"; sha1 = "4285d92a0748db2784062f5adcec9f5956cb818a"; }; @@ -21727,77 +24694,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."kerberos"."0.0.4" = - self.by-version."kerberos"."0.0.4"; - by-version."kerberos"."0.0.4" = self.buildNodePackage { - name = "kerberos-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/kerberos/-/kerberos-0.0.4.tgz"; - name = "kerberos-0.0.4.tgz"; - sha1 = "11836638f729a2f6c5bae056a7d7a15898c9ba7c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."kerberos"."0.0.9" = - self.by-version."kerberos"."0.0.9"; - by-version."kerberos"."0.0.9" = self.buildNodePackage { - name = "kerberos-0.0.9"; - version = "0.0.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/kerberos/-/kerberos-0.0.9.tgz"; - name = "kerberos-0.0.9.tgz"; - sha1 = "595bf97e7e8aae5401ae313aea57bbf402e799c5"; - }; - deps = { - "nan-1.6.2" = self.by-version."nan"."1.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."kerberos"."~0.0" = - self.by-version."kerberos"."0.0.10"; - by-version."kerberos"."0.0.10" = self.buildNodePackage { - name = "kerberos-0.0.10"; - version = "0.0.10"; + self.by-version."kerberos"."0.0.19"; + by-version."kerberos"."0.0.19" = self.buildNodePackage { + name = "kerberos-0.0.19"; + version = "0.0.19"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kerberos/-/kerberos-0.0.10.tgz"; - name = "kerberos-0.0.10.tgz"; - sha1 = "bd4a9daa5f7b19dcd30038101d121e92bb8d3934"; - }; - deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."kew"."0.4.0" = - self.by-version."kew"."0.4.0"; - by-version."kew"."0.4.0" = self.buildNodePackage { - name = "kew-0.4.0"; - version = "0.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/kew/-/kew-0.4.0.tgz"; - name = "kew-0.4.0.tgz"; - sha1 = "da97484f1b06502146f3c60cec05ac6012cd993f"; + url = "https://registry.npmjs.org/kerberos/-/kerberos-0.0.19.tgz"; + name = "kerberos-0.0.19.tgz"; + sha1 = "49cf60bf49f60bdbf23f0e54b359ce45293a1302"; }; deps = { + "nan-2.0.9" = self.by-version."nan"."2.0.9"; }; optionalDependencies = { }; @@ -21812,7 +24721,7 @@ version = "0.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kew/-/kew-0.1.7.tgz"; + url = "https://registry.npmjs.org/kew/-/kew-0.1.7.tgz"; name = "kew-0.1.7.tgz"; sha1 = "0a32a817ff1a9b3b12b8c9bacf4bc4d679af8e72"; }; @@ -21824,6 +24733,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."kew"."~0.7.0" = + self.by-version."kew"."0.7.0"; + by-version."kew"."0.7.0" = self.buildNodePackage { + name = "kew-0.7.0"; + version = "0.7.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/kew/-/kew-0.7.0.tgz"; + name = "kew-0.7.0.tgz"; + sha1 = "79d93d2d33363d6fdd2970b335d9141ad591d79b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."keygrip"."0.2.x" = self.by-version."keygrip"."0.2.4"; by-version."keygrip"."0.2.4" = self.buildNodePackage { @@ -21831,7 +24759,7 @@ version = "0.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keygrip/-/keygrip-0.2.4.tgz"; + url = "https://registry.npmjs.org/keygrip/-/keygrip-0.2.4.tgz"; name = "keygrip-0.2.4.tgz"; sha1 = "9dd1b2e485a1162c9d4e6f787de87fc50f87bc58"; }; @@ -21850,7 +24778,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keygrip/-/keygrip-1.0.1.tgz"; + url = "https://registry.npmjs.org/keygrip/-/keygrip-1.0.1.tgz"; name = "keygrip-1.0.1.tgz"; sha1 = "b02fa4816eef21a8c4b35ca9e52921ffc89a30e9"; }; @@ -21869,7 +24797,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz"; + url = "https://registry.npmjs.org/keypress/-/keypress-0.1.0.tgz"; name = "keypress-0.1.0.tgz"; sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a"; }; @@ -21888,7 +24816,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz"; + url = "https://registry.npmjs.org/keypress/-/keypress-0.2.1.tgz"; name = "keypress-0.2.1.tgz"; sha1 = "1e80454250018dbad4c3fe94497d6e67b6269c77"; }; @@ -21902,23 +24830,19 @@ }; by-spec."keypress"."~0.2.1" = self.by-version."keypress"."0.2.1"; - by-spec."kibana-authentication-proxy"."git://github.com/fangli/kibana-authentication-proxy.git" = - self.by-version."kibana-authentication-proxy"."1.1.0"; - by-version."kibana-authentication-proxy"."1.1.0" = self.buildNodePackage { - name = "kibana-authentication-proxy-1.1.0"; - version = "1.1.0"; + by-spec."kind-of"."^3.0.2" = + self.by-version."kind-of"."3.0.2"; + by-version."kind-of"."3.0.2" = self.buildNodePackage { + name = "kind-of-3.0.2"; + version = "3.0.2"; bin = false; - src = fetchgit { - url = "git://github.com/fangli/kibana-authentication-proxy.git"; - rev = "0c0173b0cb51b392b7fc04d0cc728ffb64671ef3"; - sha256 = "dd2e42da959c359bf48d16993c6caf1d810241f7f37dfa4da911dd284571236f"; + src = fetchurl { + url = "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz"; + name = "kind-of-3.0.2.tgz"; + sha1 = "187db427046e7e90945692e6768668bd6900dea0"; }; deps = { - "express-3.20.2" = self.by-version."express"."3.20.2"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; - "passport-google-oauth-0.2.0" = self.by-version."passport-google-oauth"."0.2.0"; - "connect-restreamer-1.0.2" = self.by-version."connect-restreamer"."1.0.2"; - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; + "is-buffer-1.1.3" = self.by-version."is-buffer"."1.1.3"; }; optionalDependencies = { }; @@ -21926,17 +24850,16 @@ os = [ ]; cpu = [ ]; }; - "kibana-authentication-proxy" = self.by-version."kibana-authentication-proxy"."1.1.0"; - by-spec."kind-of"."^1.0.0" = - self.by-version."kind-of"."1.1.0"; - by-version."kind-of"."1.1.0" = self.buildNodePackage { - name = "kind-of-1.1.0"; - version = "1.1.0"; + by-spec."klaw"."^1.0.0" = + self.by-version."klaw"."1.1.3"; + by-version."klaw"."1.1.3" = self.buildNodePackage { + name = "klaw-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz"; - name = "kind-of-1.1.0.tgz"; - sha1 = "140a3d2d41a36d2efcfa9377b62c24f8495a5c44"; + url = "https://registry.npmjs.org/klaw/-/klaw-1.1.3.tgz"; + name = "klaw-1.1.3.tgz"; + sha1 = "7da33c6b42f9b3dc9cec00d17f13af017fcc2721"; }; deps = { }; @@ -21946,18 +24869,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."kind-of"."^1.1.0" = - self.by-version."kind-of"."1.1.0"; - by-spec."knockout"."~3.3.0" = - self.by-version."knockout"."3.3.0"; - by-version."knockout"."3.3.0" = self.buildNodePackage { - name = "knockout-3.3.0"; - version = "3.3.0"; + by-spec."knockout"."~3.4.0" = + self.by-version."knockout"."3.4.0"; + by-version."knockout"."3.4.0" = self.buildNodePackage { + name = "knockout-3.4.0"; + version = "3.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/knockout/-/knockout-3.3.0.tgz"; - name = "knockout-3.3.0.tgz"; - sha1 = "50502a4e2f1fe2bdfa0e52843cdfcbbd43bc374c"; + url = "https://registry.npmjs.org/knockout/-/knockout-3.4.0.tgz"; + name = "knockout-3.4.0.tgz"; + sha1 = "59d7261815a11eb7c1a3f3c7077ca898a44caadb"; }; deps = { }; @@ -21974,16 +24895,16 @@ version = "0.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/knox/-/knox-0.9.2.tgz"; + url = "https://registry.npmjs.org/knox/-/knox-0.9.2.tgz"; name = "knox-0.9.2.tgz"; sha1 = "3736593669e24f024fdaf723b6a1dc4afd839a71"; }; deps = { "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; "debug-1.0.4" = self.by-version."debug"."1.0.4"; "stream-counter-1.0.0" = self.by-version."stream-counter"."1.0.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -21993,27 +24914,27 @@ }; "knox" = self.by-version."knox"."0.9.2"; by-spec."kue"."*" = - self.by-version."kue"."0.8.12"; - by-version."kue"."0.8.12" = self.buildNodePackage { - name = "kue-0.8.12"; - version = "0.8.12"; + self.by-version."kue"."0.10.5"; + by-version."kue"."0.10.5" = self.buildNodePackage { + name = "kue-0.10.5"; + version = "0.10.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/kue/-/kue-0.8.12.tgz"; - name = "kue-0.8.12.tgz"; - sha1 = "93cd035487289640b8f1e77e09dc62d2c6658918"; + url = "https://registry.npmjs.org/kue/-/kue-0.10.5.tgz"; + name = "kue-0.10.5.tgz"; + sha1 = "5473efb83c55a08d5149cd24ba11d6135fe7468e"; }; deps = { - "body-parser-1.12.3" = self.by-version."body-parser"."1.12.3"; - "express-3.1.2" = self.by-version."express"."3.1.2"; - "jade-1.1.5" = self.by-version."jade"."1.1.5"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; + "body-parser-1.15.0" = self.by-version."body-parser"."1.15.0"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "jade-1.11.0" = self.by-version."jade"."1.11.0"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; "lodash-deep-1.6.0" = self.by-version."lodash-deep"."1.6.0"; - "nib-0.5.0" = self.by-version."nib"."0.5.0"; - "redis-0.12.1" = self.by-version."redis"."0.12.1"; + "nib-1.1.0" = self.by-version."nib"."1.1.0"; + "node-redis-warlock-0.1.4" = self.by-version."node-redis-warlock"."0.1.4"; + "redis-2.5.3" = self.by-version."redis"."2.5.3"; "reds-0.2.5" = self.by-version."reds"."0.2.5"; - "serve-favicon-2.2.0" = self.by-version."serve-favicon"."2.2.0"; - "stylus-0.42.2" = self.by-version."stylus"."0.42.2"; + "stylus-0.52.4" = self.by-version."stylus"."0.52.4"; }; optionalDependencies = { }; @@ -22021,7 +24942,7 @@ os = [ ]; cpu = [ ]; }; - "kue" = self.by-version."kue"."0.8.12"; + "kue" = self.by-version."kue"."0.10.5"; by-spec."labeled-stream-splicer"."^1.0.0" = self.by-version."labeled-stream-splicer"."1.0.2"; by-version."labeled-stream-splicer"."1.0.2" = self.buildNodePackage { @@ -22029,14 +24950,36 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-1.0.2.tgz"; + url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-1.0.2.tgz"; name = "labeled-stream-splicer-1.0.2.tgz"; sha1 = "4615331537784981e8fd264e1f3a434c4e0ddd65"; }; deps = { "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "stream-splicer-1.3.1" = self.by-version."stream-splicer"."1.3.1"; + "stream-splicer-1.3.2" = self.by-version."stream-splicer"."1.3.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."labeled-stream-splicer"."^2.0.0" = + self.by-version."labeled-stream-splicer"."2.0.0"; + by-version."labeled-stream-splicer"."2.0.0" = self.buildNodePackage { + name = "labeled-stream-splicer-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/labeled-stream-splicer/-/labeled-stream-splicer-2.0.0.tgz"; + name = "labeled-stream-splicer-2.0.0.tgz"; + sha1 = "a52e1d138024c00b86b1c0c91f677918b8ae0a59"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "stream-splicer-2.0.0" = self.by-version."stream-splicer"."2.0.0"; }; optionalDependencies = { }; @@ -22045,18 +24988,18 @@ cpu = [ ]; }; by-spec."latest-version"."^1.0.0" = - self.by-version."latest-version"."1.0.0"; - by-version."latest-version"."1.0.0" = self.buildNodePackage { - name = "latest-version-1.0.0"; - version = "1.0.0"; + self.by-version."latest-version"."1.0.1"; + by-version."latest-version"."1.0.1" = self.buildNodePackage { + name = "latest-version-1.0.1"; + version = "1.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/latest-version/-/latest-version-1.0.0.tgz"; - name = "latest-version-1.0.0.tgz"; - sha1 = "84f40e5c90745c7e4f7811624d6152c381d931d9"; + url = "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz"; + name = "latest-version-1.0.1.tgz"; + sha1 = "72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb"; }; deps = { - "package-json-1.1.0" = self.by-version."package-json"."1.1.0"; + "package-json-1.2.0" = self.by-version."package-json"."1.2.0"; }; optionalDependencies = { }; @@ -22071,7 +25014,7 @@ version = "1.0.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz"; + url = "https://registry.npmjs.org/lazy/-/lazy-1.0.11.tgz"; name = "lazy-1.0.11.tgz"; sha1 = "daa068206282542c088288e975c297c1ae77b690"; }; @@ -22083,6 +25026,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."lazy-cache"."^1.0.3" = + self.by-version."lazy-cache"."1.0.3"; + by-version."lazy-cache"."1.0.3" = self.buildNodePackage { + name = "lazy-cache-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.3.tgz"; + name = "lazy-cache-1.0.3.tgz"; + sha1 = "e97754618f9c886bb999b2ff69c78b82453d6674"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."lazystream"."~0.1.0" = self.by-version."lazystream"."0.1.0"; by-version."lazystream"."0.1.0" = self.buildNodePackage { @@ -22090,7 +25052,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lazystream/-/lazystream-0.1.0.tgz"; + url = "https://registry.npmjs.org/lazystream/-/lazystream-0.1.0.tgz"; name = "lazystream-0.1.0.tgz"; sha1 = "1b25d63c772a4c20f0a5ed0a9d77f484b6e16920"; }; @@ -22103,6 +25065,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."lcid"."^1.0.0" = + self.by-version."lcid"."1.0.0"; + by-version."lcid"."1.0.0" = self.buildNodePackage { + name = "lcid-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz"; + name = "lcid-1.0.0.tgz"; + sha1 = "308accafa0bc483a3867b4b6f2b9506251d1b835"; + }; + deps = { + "invert-kv-1.0.0" = self.by-version."invert-kv"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."lcov-parse"."0.0.6" = self.by-version."lcov-parse"."0.0.6"; by-version."lcov-parse"."0.0.6" = self.buildNodePackage { @@ -22110,7 +25092,7 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.6.tgz"; + url = "https://registry.npmjs.org/lcov-parse/-/lcov-parse-0.0.6.tgz"; name = "lcov-parse-0.0.6.tgz"; sha1 = "819e5da8bf0791f9d3f39eea5ed1868187f11175"; }; @@ -22129,14 +25111,14 @@ version = "1.0.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-1.0.2.tgz"; + url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-1.0.2.tgz"; name = "lcov-result-merger-1.0.2.tgz"; sha1 = "a7a1cf861daf32deb39949c2eee8c9a9ed475c18"; }; deps = { "through2-0.6.5" = self.by-version."through2"."0.6.5"; "vinyl-0.4.6" = self.by-version."vinyl"."0.4.6"; - "vinyl-fs-0.3.13" = self.by-version."vinyl-fs"."0.3.13"; + "vinyl-fs-0.3.14" = self.by-version."vinyl-fs"."0.3.14"; }; optionalDependencies = { }; @@ -22152,7 +25134,7 @@ version = "0.7.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/ldapjs/-/ldapjs-0.7.1.tgz"; + url = "https://registry.npmjs.org/ldapjs/-/ldapjs-0.7.1.tgz"; name = "ldapjs-0.7.1.tgz"; sha1 = "684798a687640bab1afbd802cf532f30492dfb56"; }; @@ -22171,60 +25153,35 @@ cpu = [ ]; }; by-spec."less"."*" = - self.by-version."less"."2.5.0"; - by-version."less"."2.5.0" = self.buildNodePackage { - name = "less-2.5.0"; - version = "2.5.0"; + self.by-version."less"."2.6.1"; + by-version."less"."2.6.1" = self.buildNodePackage { + name = "less-2.6.1"; + version = "2.6.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/less/-/less-2.5.0.tgz"; - name = "less-2.5.0.tgz"; - sha1 = "11d6d611586de6d5f808220649bc9bbfe7ad5e17"; + url = "https://registry.npmjs.org/less/-/less-2.6.1.tgz"; + name = "less-2.6.1.tgz"; + sha1 = "658e01ec9ac3149959c6b6dfbcfbc0a170afda7a"; }; deps = { }; optionalDependencies = { - "errno-0.1.2" = self.by-version."errno"."0.1.2"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "image-size-0.3.5" = self.by-version."image-size"."0.3.5"; + "errno-0.1.4" = self.by-version."errno"."0.1.4"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "image-size-0.4.0" = self.by-version."image-size"."0.4.0"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "promise-6.1.0" = self.by-version."promise"."6.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "less" = self.by-version."less"."2.5.0"; - by-spec."less"."~2.4.0" = - self.by-version."less"."2.4.0"; - by-version."less"."2.4.0" = self.buildNodePackage { - name = "less-2.4.0"; - version = "2.4.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/less/-/less-2.4.0.tgz"; - name = "less-2.4.0.tgz"; - sha1 = "ce51b38f1c05a0cdd47982fac40dd0a39cec2031"; - }; - deps = { - }; - optionalDependencies = { - "errno-0.1.2" = self.by-version."errno"."0.1.2"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "image-size-0.3.5" = self.by-version."image-size"."0.3.5"; - "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "promise-6.1.0" = self.by-version."promise"."6.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "source-map-0.2.0" = self.by-version."source-map"."0.2.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "promise-7.1.1" = self.by-version."promise"."7.1.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; + "less" = self.by-version."less"."2.6.1"; + by-spec."less"."~2.6.0" = + self.by-version."less"."2.6.1"; by-spec."level"."^0.18.0" = self.by-version."level"."0.18.0"; by-version."level"."0.18.0" = self.buildNodePackage { @@ -22232,12 +25189,12 @@ version = "0.18.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/level/-/level-0.18.0.tgz"; + url = "https://registry.npmjs.org/level/-/level-0.18.0.tgz"; name = "level-0.18.0.tgz"; sha1 = "e1a3f4cad65fc02e25070a47d63d7b527361c1cf"; }; deps = { - "leveldown-0.10.4" = self.by-version."leveldown"."0.10.4"; + "leveldown-0.10.6" = self.by-version."leveldown"."0.10.6"; "level-packager-0.18.0" = self.by-version."level-packager"."0.18.0"; }; optionalDependencies = { @@ -22253,7 +25210,7 @@ version = "0.18.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/level-packager/-/level-packager-0.18.0.tgz"; + url = "https://registry.npmjs.org/level-packager/-/level-packager-0.18.0.tgz"; name = "level-packager-0.18.0.tgz"; sha1 = "c076b087646f1d7dedcc3442f58800dd0a0b45f5"; }; @@ -22267,22 +25224,22 @@ cpu = [ ]; }; by-spec."level-sublevel"."^6.3.15" = - self.by-version."level-sublevel"."6.4.6"; - by-version."level-sublevel"."6.4.6" = self.buildNodePackage { - name = "level-sublevel-6.4.6"; - version = "6.4.6"; + self.by-version."level-sublevel"."6.5.4"; + by-version."level-sublevel"."6.5.4" = self.buildNodePackage { + name = "level-sublevel-6.5.4"; + version = "6.5.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/level-sublevel/-/level-sublevel-6.4.6.tgz"; - name = "level-sublevel-6.4.6.tgz"; - sha1 = "fdf5f65d1355b8a92a6792ede3a4f214b2594e9e"; + url = "https://registry.npmjs.org/level-sublevel/-/level-sublevel-6.5.4.tgz"; + name = "level-sublevel-6.5.4.tgz"; + sha1 = "92e6534e7ac3fa35c8bdb121b8a8094a8d1c0826"; }; deps = { "pull-stream-2.21.0" = self.by-version."pull-stream"."2.21.0"; - "ltgt-2.0.0" = self.by-version."ltgt"."2.0.0"; - "levelup-0.19.0" = self.by-version."levelup"."0.19.0"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - "bytewise-0.7.1" = self.by-version."bytewise"."0.7.1"; + "ltgt-2.1.2" = self.by-version."ltgt"."2.1.2"; + "levelup-0.19.1" = self.by-version."levelup"."0.19.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + "bytewise-1.1.0" = self.by-version."bytewise"."1.1.0"; "typewiselite-1.0.0" = self.by-version."typewiselite"."1.0.0"; }; optionalDependencies = { @@ -22292,19 +25249,19 @@ cpu = [ ]; }; by-spec."leveldown"."^0.10.2" = - self.by-version."leveldown"."0.10.4"; - by-version."leveldown"."0.10.4" = self.buildNodePackage { - name = "leveldown-0.10.4"; - version = "0.10.4"; + self.by-version."leveldown"."0.10.6"; + by-version."leveldown"."0.10.6" = self.buildNodePackage { + name = "leveldown-0.10.6"; + version = "0.10.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/leveldown/-/leveldown-0.10.4.tgz"; - name = "leveldown-0.10.4.tgz"; - sha1 = "a35a18e20dd9754a53683d1a4851ff1b46bd2de7"; + url = "https://registry.npmjs.org/leveldown/-/leveldown-0.10.6.tgz"; + name = "leveldown-0.10.6.tgz"; + sha1 = "a1bb751c95263ff60f41bde0f973ff8c1e98bbe9"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.6.2" = self.by-version."nan"."1.6.2"; + "nan-2.1.0" = self.by-version."nan"."2.1.0"; }; optionalDependencies = { }; @@ -22313,7 +25270,7 @@ cpu = [ ]; }; by-spec."leveldown"."~0.10.0" = - self.by-version."leveldown"."0.10.4"; + self.by-version."leveldown"."0.10.6"; by-spec."levelup"."^0.18.5" = self.by-version."levelup"."0.18.6"; by-version."levelup"."0.18.6" = self.buildNodePackage { @@ -22321,14 +25278,14 @@ version = "0.18.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz"; + url = "https://registry.npmjs.org/levelup/-/levelup-0.18.6.tgz"; name = "levelup-0.18.6.tgz"; sha1 = "e6a01cb089616c8ecc0291c2a9bd3f0c44e3e5eb"; }; deps = { "bl-0.8.2" = self.by-version."bl"."0.8.2"; "deferred-leveldown-0.2.0" = self.by-version."deferred-leveldown"."0.2.0"; - "errno-0.1.2" = self.by-version."errno"."0.1.2"; + "errno-0.1.4" = self.by-version."errno"."0.1.4"; "prr-0.0.0" = self.by-version."prr"."0.0.0"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; "semver-2.3.2" = self.by-version."semver"."2.3.2"; @@ -22343,23 +25300,23 @@ by-spec."levelup"."~0.18.0" = self.by-version."levelup"."0.18.6"; by-spec."levelup"."~0.19.0" = - self.by-version."levelup"."0.19.0"; - by-version."levelup"."0.19.0" = self.buildNodePackage { - name = "levelup-0.19.0"; - version = "0.19.0"; + self.by-version."levelup"."0.19.1"; + by-version."levelup"."0.19.1" = self.buildNodePackage { + name = "levelup-0.19.1"; + version = "0.19.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/levelup/-/levelup-0.19.0.tgz"; - name = "levelup-0.19.0.tgz"; - sha1 = "f6b60a168c86c2fe5d5953476cbe9786ccf0a3f7"; + url = "https://registry.npmjs.org/levelup/-/levelup-0.19.1.tgz"; + name = "levelup-0.19.1.tgz"; + sha1 = "f3a6a7205272c4b5f35e412ff004a03a0aedf50b"; }; deps = { "bl-0.8.2" = self.by-version."bl"."0.8.2"; "deferred-leveldown-0.2.0" = self.by-version."deferred-leveldown"."0.2.0"; - "errno-0.1.2" = self.by-version."errno"."0.1.2"; + "errno-0.1.4" = self.by-version."errno"."0.1.4"; "prr-0.0.0" = self.by-version."prr"."0.0.0"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; }; optionalDependencies = { @@ -22368,20 +25325,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."levn"."~0.2.5" = - self.by-version."levn"."0.2.5"; - by-version."levn"."0.2.5" = self.buildNodePackage { - name = "levn-0.2.5"; - version = "0.2.5"; - bin = false; + by-spec."leven"."^1.0.0" = + self.by-version."leven"."1.0.2"; + by-version."leven"."1.0.2" = self.buildNodePackage { + name = "leven-1.0.2"; + version = "1.0.2"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/levn/-/levn-0.2.5.tgz"; - name = "levn-0.2.5.tgz"; - sha1 = "ba8d339d0ca4a610e3a3f145b9caf48807155054"; + url = "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz"; + name = "leven-1.0.2.tgz"; + sha1 = "9144b6eebca5f1d0680169f1a6770dcea60b75c3"; }; deps = { - "prelude-ls-1.1.1" = self.by-version."prelude-ls"."1.1.1"; - "type-check-0.3.1" = self.by-version."type-check"."0.3.1"; }; optionalDependencies = { }; @@ -22389,19 +25344,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."lexical-scope"."~0.0.14" = - self.by-version."lexical-scope"."0.0.15"; - by-version."lexical-scope"."0.0.15" = self.buildNodePackage { - name = "lexical-scope-0.0.15"; - version = "0.0.15"; + by-spec."levn"."~0.3.0" = + self.by-version."levn"."0.3.0"; + by-version."levn"."0.3.0" = self.buildNodePackage { + name = "levn-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lexical-scope/-/lexical-scope-0.0.15.tgz"; - name = "lexical-scope-0.0.15.tgz"; - sha1 = "ca595997aaed87b155cb041f48dc0438f48a04dc"; + url = "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz"; + name = "levn-0.3.0.tgz"; + sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; }; deps = { - "astw-0.0.0" = self.by-version."astw"."0.0.0"; + "prelude-ls-1.1.2" = self.by-version."prelude-ls"."1.1.2"; + "type-check-0.3.2" = self.by-version."type-check"."0.3.2"; }; optionalDependencies = { }; @@ -22409,39 +25365,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."lexical-scope"."~0.1.0" = - self.by-version."lexical-scope"."0.1.0"; - by-version."lexical-scope"."0.1.0" = self.buildNodePackage { - name = "lexical-scope-0.1.0"; - version = "0.1.0"; + by-spec."lexical-scope"."^1.2.0" = + self.by-version."lexical-scope"."1.2.0"; + by-version."lexical-scope"."1.2.0" = self.buildNodePackage { + name = "lexical-scope-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lexical-scope/-/lexical-scope-0.1.0.tgz"; - name = "lexical-scope-0.1.0.tgz"; - sha1 = "8f30004c80234ffac083b990079d7b267e18441b"; + url = "https://registry.npmjs.org/lexical-scope/-/lexical-scope-1.2.0.tgz"; + name = "lexical-scope-1.2.0.tgz"; + sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4"; }; deps = { - "astw-0.1.0" = self.by-version."astw"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lexical-scope"."~1.1.0" = - self.by-version."lexical-scope"."1.1.0"; - by-version."lexical-scope"."1.1.0" = self.buildNodePackage { - name = "lexical-scope-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lexical-scope/-/lexical-scope-1.1.0.tgz"; - name = "lexical-scope-1.1.0.tgz"; - sha1 = "899f36c4ec9c5af19736361aae290a6ef2af0800"; - }; - deps = { - "astw-1.1.0" = self.by-version."astw"."1.1.0"; + "astw-2.0.0" = self.by-version."astw"."2.0.0"; }; optionalDependencies = { }; @@ -22456,7 +25392,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lexicographic-integer/-/lexicographic-integer-1.1.0.tgz"; + url = "https://registry.npmjs.org/lexicographic-integer/-/lexicographic-integer-1.1.0.tgz"; name = "lexicographic-integer-1.1.0.tgz"; sha1 = "52ca6d998a572e6322b515f5b80e396c6043e9b8"; }; @@ -22468,14 +25404,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."libbase64"."^0.1.0" = + by-spec."libbase64"."0.1.0" = self.by-version."libbase64"."0.1.0"; by-version."libbase64"."0.1.0" = self.buildNodePackage { name = "libbase64-0.1.0"; version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz"; + url = "https://registry.npmjs.org/libbase64/-/libbase64-0.1.0.tgz"; name = "libbase64-0.1.0.tgz"; sha1 = "62351a839563ac5ff5bd26f12f60e9830bb751e6"; }; @@ -22487,21 +25423,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."libmime"."^0.1.5" = - self.by-version."libmime"."0.1.7"; - by-version."libmime"."0.1.7" = self.buildNodePackage { - name = "libmime-0.1.7"; - version = "0.1.7"; + by-spec."libbase64"."^0.1.0" = + self.by-version."libbase64"."0.1.0"; + by-spec."libmime"."2.0.3" = + self.by-version."libmime"."2.0.3"; + by-version."libmime"."2.0.3" = self.buildNodePackage { + name = "libmime-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libmime/-/libmime-0.1.7.tgz"; - name = "libmime-0.1.7.tgz"; - sha1 = "827b8d4df349e08c6cff1bc6d6b51ec57d349cb2"; + url = "https://registry.npmjs.org/libmime/-/libmime-2.0.3.tgz"; + name = "libmime-2.0.3.tgz"; + sha1 = "55751aa832d31492363df3dd810580dfd59d080c"; }; deps = { - "iconv-lite-0.4.8" = self.by-version."iconv-lite"."0.4.8"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; "libbase64-0.1.0" = self.by-version."libbase64"."0.1.0"; - "libqp-0.1.1" = self.by-version."libqp"."0.1.1"; + "libqp-1.1.0" = self.by-version."libqp"."1.1.0"; }; optionalDependencies = { }; @@ -22510,20 +25448,20 @@ cpu = [ ]; }; by-spec."libmime"."^1.0.0" = - self.by-version."libmime"."1.0.0"; - by-version."libmime"."1.0.0" = self.buildNodePackage { - name = "libmime-1.0.0"; - version = "1.0.0"; + self.by-version."libmime"."1.2.0"; + by-version."libmime"."1.2.0" = self.buildNodePackage { + name = "libmime-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libmime/-/libmime-1.0.0.tgz"; - name = "libmime-1.0.0.tgz"; - sha1 = "d3351e4a7e402f34804eaf1a6558a8c985dabd31"; + url = "https://registry.npmjs.org/libmime/-/libmime-1.2.0.tgz"; + name = "libmime-1.2.0.tgz"; + sha1 = "8d84b4f3b225b3704410236ef494906436ba742b"; }; deps = { - "iconv-lite-0.4.8" = self.by-version."iconv-lite"."0.4.8"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; "libbase64-0.1.0" = self.by-version."libbase64"."0.1.0"; - "libqp-1.0.0" = self.by-version."libqp"."1.0.0"; + "libqp-1.1.0" = self.by-version."libqp"."1.1.0"; }; optionalDependencies = { }; @@ -22531,16 +25469,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."libqp"."^0.1.1" = - self.by-version."libqp"."0.1.1"; - by-version."libqp"."0.1.1" = self.buildNodePackage { - name = "libqp-0.1.1"; - version = "0.1.1"; + by-spec."libmime"."^1.2.0" = + self.by-version."libmime"."1.2.0"; + by-spec."libqp"."1.1.0" = + self.by-version."libqp"."1.1.0"; + by-version."libqp"."1.1.0" = self.buildNodePackage { + name = "libqp-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libqp/-/libqp-0.1.1.tgz"; - name = "libqp-0.1.1.tgz"; - sha1 = "2d10cabb96b14fe9649f4ae353a39baa90063b01"; + url = "https://registry.npmjs.org/libqp/-/libqp-1.1.0.tgz"; + name = "libqp-1.1.0.tgz"; + sha1 = "f5e6e06ad74b794fb5b5b66988bf728ef1dedbe8"; }; deps = { }; @@ -22550,18 +25490,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."libqp"."^1.0.0" = - self.by-version."libqp"."1.0.0"; - by-version."libqp"."1.0.0" = self.buildNodePackage { - name = "libqp-1.0.0"; - version = "1.0.0"; + by-spec."libqp"."^1.1.0" = + self.by-version."libqp"."1.1.0"; + by-spec."libxmljs"."^0.17.1" = + self.by-version."libxmljs"."0.17.1"; + by-version."libxmljs"."0.17.1" = self.buildNodePackage { + name = "libxmljs-0.17.1"; + version = "0.17.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libqp/-/libqp-1.0.0.tgz"; - name = "libqp-1.0.0.tgz"; - sha1 = "aded044d83970c152de5b983d39c3b2d291f9a74"; + url = "https://registry.npmjs.org/libxmljs/-/libxmljs-0.17.1.tgz"; + name = "libxmljs-0.17.1.tgz"; + sha1 = "1f77e529b5bd1c0e49936726daed95577092ee8a"; }; deps = { + "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; + "nan-2.0.7" = self.by-version."nan"."2.0.7"; }; optionalDependencies = { }; @@ -22569,20 +25513,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."libxmljs"."^0.13.0" = - self.by-version."libxmljs"."0.13.0"; - by-version."libxmljs"."0.13.0" = self.buildNodePackage { - name = "libxmljs-0.13.0"; - version = "0.13.0"; + by-spec."liftoff"."^2.1.0" = + self.by-version."liftoff"."2.2.1"; + by-version."liftoff"."2.2.1" = self.buildNodePackage { + name = "liftoff-2.2.1"; + version = "2.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/libxmljs/-/libxmljs-0.13.0.tgz"; - name = "libxmljs-0.13.0.tgz"; - sha1 = "04df28df57a0927452f860148e5f462cbaed08ff"; + url = "https://registry.npmjs.org/liftoff/-/liftoff-2.2.1.tgz"; + name = "liftoff-2.2.1.tgz"; + sha1 = "8dfef848d3f441921c4a311fc3203ae9c34c41a7"; }; deps = { - "bindings-1.1.1" = self.by-version."bindings"."1.1.1"; - "nan-1.5.1" = self.by-version."nan"."1.5.1"; + "extend-2.0.1" = self.by-version."extend"."2.0.1"; + "findup-sync-0.3.0" = self.by-version."findup-sync"."0.3.0"; + "flagged-respawn-0.3.2" = self.by-version."flagged-respawn"."0.3.2"; + "rechoir-0.6.2" = self.by-version."rechoir"."0.6.2"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; }; optionalDependencies = { }; @@ -22590,40 +25537,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."liftoff"."^2.0.1" = - self.by-version."liftoff"."2.0.3"; - by-version."liftoff"."2.0.3" = self.buildNodePackage { - name = "liftoff-2.0.3"; - version = "2.0.3"; + by-spec."linkify-it"."~1.2.0" = + self.by-version."linkify-it"."1.2.0"; + by-version."linkify-it"."1.2.0" = self.buildNodePackage { + name = "linkify-it-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/liftoff/-/liftoff-2.0.3.tgz"; - name = "liftoff-2.0.3.tgz"; - sha1 = "fbab25362a506ac28a3db0c55cde9562fbd70456"; - }; - deps = { - "extend-2.0.0" = self.by-version."extend"."2.0.0"; - "findup-sync-0.2.1" = self.by-version."findup-sync"."0.2.1"; - "flagged-respawn-0.3.1" = self.by-version."flagged-respawn"."0.3.1"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - "resolve-1.1.6" = self.by-version."resolve"."1.1.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."linkify-it"."~1.0.1" = - self.by-version."linkify-it"."1.0.1"; - by-version."linkify-it"."1.0.1" = self.buildNodePackage { - name = "linkify-it-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/linkify-it/-/linkify-it-1.0.1.tgz"; - name = "linkify-it-1.0.1.tgz"; - sha1 = "73b32a4854d52438f59c6e09b6ded5be0abdd94a"; + url = "https://registry.npmjs.org/linkify-it/-/linkify-it-1.2.0.tgz"; + name = "linkify-it-1.2.0.tgz"; + sha1 = "fd71021cfb3dca1c28fe09385ef5c10bbead8206"; }; deps = { "uc.micro-1.0.0" = self.by-version."uc.micro"."1.0.0"; @@ -22634,16 +25557,40 @@ os = [ ]; cpu = [ ]; }; - by-spec."lockfile"."^1.0.0" = - self.by-version."lockfile"."1.0.0"; - by-version."lockfile"."1.0.0" = self.buildNodePackage { - name = "lockfile-1.0.0"; - version = "1.0.0"; + by-spec."load-json-file"."^1.0.0" = + self.by-version."load-json-file"."1.1.0"; + by-version."load-json-file"."1.1.0" = self.buildNodePackage { + name = "load-json-file-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lockfile/-/lockfile-1.0.0.tgz"; - name = "lockfile-1.0.0.tgz"; - sha1 = "b3a7609dda6012060083bacb0ab0ecbca58e9203"; + url = "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; + name = "load-json-file-1.1.0.tgz"; + sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "parse-json-2.2.0" = self.by-version."parse-json"."2.2.0"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + "strip-bom-2.0.0" = self.by-version."strip-bom"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."loader-runner"."^2.1.0" = + self.by-version."loader-runner"."2.1.1"; + by-version."loader-runner"."2.1.1" = self.buildNodePackage { + name = "loader-runner-2.1.1"; + version = "2.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/loader-runner/-/loader-runner-2.1.1.tgz"; + name = "loader-runner-2.1.1.tgz"; + sha1 = "60a30f2a7c8eae79f0805b5848fee134f8ade519"; }; deps = { }; @@ -22653,16 +25600,37 @@ os = [ ]; cpu = [ ]; }; - by-spec."lockfile"."~0.4.0" = - self.by-version."lockfile"."0.4.3"; - by-version."lockfile"."0.4.3" = self.buildNodePackage { - name = "lockfile-0.4.3"; - version = "0.4.3"; + by-spec."loader-utils"."^0.2.11" = + self.by-version."loader-utils"."0.2.13"; + by-version."loader-utils"."0.2.13" = self.buildNodePackage { + name = "loader-utils-0.2.13"; + version = "0.2.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lockfile/-/lockfile-0.4.3.tgz"; - name = "lockfile-0.4.3.tgz"; - sha1 = "79b965ee9b32d9dd24b59cf81205e6dcb6d3b224"; + url = "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.13.tgz"; + name = "loader-utils-0.2.13.tgz"; + sha1 = "ea0de320be919056362c9972d5072b4596ae9eec"; + }; + deps = { + "big.js-3.1.3" = self.by-version."big.js"."3.1.3"; + "json5-0.4.0" = self.by-version."json5"."0.4.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lockfile"."~1.0.1" = + self.by-version."lockfile"."1.0.1"; + by-version."lockfile"."1.0.1" = self.buildNodePackage { + name = "lockfile-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lockfile/-/lockfile-1.0.1.tgz"; + name = "lockfile-1.0.1.tgz"; + sha1 = "9d353ecfe3f54d150bb57f89d51746935a39c4f5"; }; deps = { }; @@ -22672,16 +25640,52 @@ os = [ ]; cpu = [ ]; }; - by-spec."lockfile"."~1.0.0" = - self.by-version."lockfile"."1.0.0"; by-spec."lodash"."*" = + self.by-version."lodash"."4.8.2"; + by-version."lodash"."4.8.2" = self.buildNodePackage { + name = "lodash-4.8.2"; + version = "4.8.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-4.8.2.tgz"; + name = "lodash-4.8.2.tgz"; + sha1 = "478ad7ff648c3c71a2f6108e032c5c0cc40747df"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash"."3.10.1" = + self.by-version."lodash"."3.10.1"; + by-version."lodash"."3.10.1" = self.buildNodePackage { + name = "lodash-3.10.1"; + version = "3.10.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz"; + name = "lodash-3.10.1.tgz"; + sha1 = "5bf45e8e49ba4189e17d482789dfd15bd140b7b6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash"."3.7.x" = self.by-version."lodash"."3.7.0"; by-version."lodash"."3.7.0" = self.buildNodePackage { name = "lodash-3.7.0"; version = "3.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-3.7.0.tgz"; name = "lodash-3.7.0.tgz"; sha1 = "3678bd8ab995057c07ade836ed2ef087da811d45"; }; @@ -22693,56 +25697,47 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash"."2.4.1" = - self.by-version."lodash"."2.4.1"; - by-version."lodash"."2.4.1" = self.buildNodePackage { - name = "lodash-2.4.1"; - version = "2.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-2.4.1.tgz"; - name = "lodash-2.4.1.tgz"; - sha1 = "5b7723034dda4d262e5a46fb2c58d7cc22f71420"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lodash"."2.4.x" = - self.by-version."lodash"."2.4.1"; - by-spec."lodash"."3.6.x" = - self.by-version."lodash"."3.6.0"; - by-version."lodash"."3.6.0" = self.buildNodePackage { - name = "lodash-3.6.0"; - version = "3.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-3.6.0.tgz"; - name = "lodash-3.6.0.tgz"; - sha1 = "5266a8f49dd989be4f9f681b6f2a0c55285d0d9a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lodash".">= 3.2.0 < 4.0.0" = - self.by-version."lodash"."3.7.0"; + by-spec."lodash".">= 4.0.0 < 5.0.0" = + self.by-version."lodash"."4.8.2"; by-spec."lodash".">=2.4.1" = - self.by-version."lodash"."3.7.0"; + self.by-version."lodash"."4.8.2"; by-spec."lodash"."^2.4.1" = - self.by-version."lodash"."2.4.1"; + self.by-version."lodash"."2.4.2"; + by-version."lodash"."2.4.2" = self.buildNodePackage { + name = "lodash-2.4.2"; + version = "2.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz"; + name = "lodash-2.4.2.tgz"; + sha1 = "fadd834b9683073da179b3eae6d9c0d15053f73e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash"."^3.10.1" = + self.by-version."lodash"."3.10.1"; by-spec."lodash"."^3.2.0" = - self.by-version."lodash"."3.7.0"; + self.by-version."lodash"."3.10.1"; by-spec."lodash"."^3.3.1" = - self.by-version."lodash"."3.7.0"; + self.by-version."lodash"."3.10.1"; + by-spec."lodash"."^3.5.0" = + self.by-version."lodash"."3.10.1"; + by-spec."lodash"."^3.8.0" = + self.by-version."lodash"."3.10.1"; + by-spec."lodash"."^4.0.0" = + self.by-version."lodash"."4.8.2"; + by-spec."lodash"."^4.0.1" = + self.by-version."lodash"."4.8.2"; + by-spec."lodash"."^4.2.0" = + self.by-version."lodash"."4.8.2"; + by-spec."lodash"."^4.3.0" = + self.by-version."lodash"."4.8.2"; by-spec."lodash"."~0.9.2" = self.by-version."lodash"."0.9.2"; by-version."lodash"."0.9.2" = self.buildNodePackage { @@ -22750,7 +25745,7 @@ version = "0.9.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-0.9.2.tgz"; name = "lodash-0.9.2.tgz"; sha1 = "8f3499c5245d346d682e5b0d3b40767e09f1a92c"; }; @@ -22769,7 +25764,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz"; name = "lodash-1.0.2.tgz"; sha1 = "8f57560c83b59fc270bd3d561b690043430e2551"; }; @@ -22788,7 +25783,7 @@ version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-1.3.1.tgz"; name = "lodash-1.3.1.tgz"; sha1 = "a4663b53686b895ff074e2ba504dfb76a8e2b770"; }; @@ -22801,7 +25796,28 @@ cpu = [ ]; }; by-spec."lodash"."~2.4.1" = - self.by-version."lodash"."2.4.1"; + self.by-version."lodash"."2.4.2"; + by-spec."lodash"."~3.10.1" = + self.by-version."lodash"."3.10.1"; + by-spec."lodash"."~3.2.0" = + self.by-version."lodash"."3.2.0"; + by-version."lodash"."3.2.0" = self.buildNodePackage { + name = "lodash-3.2.0"; + version = "3.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz"; + name = "lodash-3.2.0.tgz"; + sha1 = "4bf50a3243f9aeb0bac41a55d3d5990675a462fb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."lodash"."~3.5.0" = self.by-version."lodash"."3.5.0"; by-version."lodash"."3.5.0" = self.buildNodePackage { @@ -22809,7 +25825,7 @@ version = "3.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-3.5.0.tgz"; + url = "https://registry.npmjs.org/lodash/-/lodash-3.5.0.tgz"; name = "lodash-3.5.0.tgz"; sha1 = "19bb3f4d51278f0b8c818ed145c74ecf9fe40e6d"; }; @@ -22821,21 +25837,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash"."~3.6.0" = - self.by-version."lodash"."3.6.0"; - by-spec."lodash-deep"."^1.1.0" = - self.by-version."lodash-deep"."1.6.0"; - by-version."lodash-deep"."1.6.0" = self.buildNodePackage { - name = "lodash-deep-1.6.0"; - version = "1.6.0"; + by-spec."lodash"."~3.9.3" = + self.by-version."lodash"."3.9.3"; + by-version."lodash"."3.9.3" = self.buildNodePackage { + name = "lodash-3.9.3"; + version = "3.9.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash-deep/-/lodash-deep-1.6.0.tgz"; - name = "lodash-deep-1.6.0.tgz"; - sha1 = "a7ce672759472b91d12b193c69d8a24a02d8428d"; + url = "https://registry.npmjs.org/lodash/-/lodash-3.9.3.tgz"; + name = "lodash-3.9.3.tgz"; + sha1 = "0159e86832feffc6d61d852b12a953b99496bd32"; }; deps = { - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; }; optionalDependencies = { }; @@ -22843,16 +25856,95 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash-node"."~2.4.1" = - self.by-version."lodash-node"."2.4.1"; - by-version."lodash-node"."2.4.1" = self.buildNodePackage { - name = "lodash-node-2.4.1"; - version = "2.4.1"; + by-spec."lodash"."~4.2.1" = + self.by-version."lodash"."4.2.1"; + by-version."lodash"."4.2.1" = self.buildNodePackage { + name = "lodash-4.2.1"; + version = "4.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash-node/-/lodash-node-2.4.1.tgz"; - name = "lodash-node-2.4.1.tgz"; - sha1 = "ea82f7b100c733d1a42af76801e506105e2a80ec"; + url = "https://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"; + name = "lodash-4.2.1.tgz"; + sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash"."~4.3.0" = + self.by-version."lodash"."4.3.0"; + by-version."lodash"."4.3.0" = self.buildNodePackage { + name = "lodash-4.3.0"; + version = "4.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash/-/lodash-4.3.0.tgz"; + name = "lodash-4.3.0.tgz"; + sha1 = "efd9c4a6ec53f3b05412429915c3e4824e4d25a4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash-deep"."^1.1.0" = + self.by-version."lodash-deep"."1.6.0"; + by-version."lodash-deep"."1.6.0" = self.buildNodePackage { + name = "lodash-deep-1.6.0"; + version = "1.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash-deep/-/lodash-deep-1.6.0.tgz"; + name = "lodash-deep-1.6.0.tgz"; + sha1 = "a7ce672759472b91d12b193c69d8a24a02d8428d"; + }; + deps = { + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._baseassign"."^3.0.0" = + self.by-version."lodash._baseassign"."3.2.0"; + by-version."lodash._baseassign"."3.2.0" = self.buildNodePackage { + name = "lodash._baseassign-3.2.0"; + version = "3.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz"; + name = "lodash._baseassign-3.2.0.tgz"; + sha1 = "8c38a099500f215ad09e59f1722fd0c52bfe0a4e"; + }; + deps = { + "lodash._basecopy-3.0.1" = self.by-version."lodash._basecopy"."3.0.1"; + "lodash.keys-3.1.2" = self.by-version."lodash.keys"."3.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._baseclone"."~4.5.0" = + self.by-version."lodash._baseclone"."4.5.4"; + by-version."lodash._baseclone"."4.5.4" = self.buildNodePackage { + name = "lodash._baseclone-4.5.4"; + version = "4.5.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.4.tgz"; + name = "lodash._baseclone-4.5.4.tgz"; + sha1 = "71ebdc3f5483eb5fd21b11738e583f9017a3882e"; }; deps = { }; @@ -22869,7 +25961,7 @@ version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; + url = "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz"; name = "lodash._basecopy-3.0.1.tgz"; sha1 = "8da0e6a876cf344c0ad8a54882111dd3c5c7ca36"; }; @@ -22881,16 +25973,36 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash._basetostring"."^3.0.0" = - self.by-version."lodash._basetostring"."3.0.0"; - by-version."lodash._basetostring"."3.0.0" = self.buildNodePackage { - name = "lodash._basetostring-3.0.0"; - version = "3.0.0"; + by-spec."lodash._basedifference"."~4.4.0" = + self.by-version."lodash._basedifference"."4.4.1"; + by-version."lodash._basedifference"."4.4.1" = self.buildNodePackage { + name = "lodash._basedifference-4.4.1"; + version = "4.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.0.tgz"; - name = "lodash._basetostring-3.0.0.tgz"; - sha1 = "75a9a4aaaa2b2a8761111ff5431e7d83c1daf0e2"; + url = "https://registry.npmjs.org/lodash._basedifference/-/lodash._basedifference-4.4.1.tgz"; + name = "lodash._basedifference-4.4.1.tgz"; + sha1 = "537bde6fd0f3eeec28e37288dd51459765181b4d"; + }; + deps = { + "lodash._setcache-4.1.2" = self.by-version."lodash._setcache"."4.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._baseflatten"."~4.1.0" = + self.by-version."lodash._baseflatten"."4.1.1"; + by-version."lodash._baseflatten"."4.1.1" = self.buildNodePackage { + name = "lodash._baseflatten-4.1.1"; + version = "4.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-4.1.1.tgz"; + name = "lodash._baseflatten-4.1.1.tgz"; + sha1 = "5c87403b88f3687a88d26424faadf3aa054aab0d"; }; deps = { }; @@ -22900,6 +26012,67 @@ os = [ ]; cpu = [ ]; }; + by-spec."lodash._baseindexof"."*" = + self.by-version."lodash._baseindexof"."3.1.0"; + by-version."lodash._baseindexof"."3.1.0" = self.buildNodePackage { + name = "lodash._baseindexof-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._baseindexof/-/lodash._baseindexof-3.1.0.tgz"; + name = "lodash._baseindexof-3.1.0.tgz"; + sha1 = "fe52b53a1c6761e42618d654e4a25789ed61822c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._basetostring"."^3.0.0" = + self.by-version."lodash._basetostring"."3.0.1"; + by-version."lodash._basetostring"."3.0.1" = self.buildNodePackage { + name = "lodash._basetostring-3.0.1"; + version = "3.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz"; + name = "lodash._basetostring-3.0.1.tgz"; + sha1 = "d1861d877f824a52f669832dcaf3ee15566a07d5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._baseuniq"."~4.5.0" = + self.by-version."lodash._baseuniq"."4.5.1"; + by-version."lodash._baseuniq"."4.5.1" = self.buildNodePackage { + name = "lodash._baseuniq-4.5.1"; + version = "4.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._baseuniq/-/lodash._baseuniq-4.5.1.tgz"; + name = "lodash._baseuniq-4.5.1.tgz"; + sha1 = "1980430c2e64ee86df6dd35794e1a301b2ab74de"; + }; + deps = { + "lodash._createset-4.0.1" = self.by-version."lodash._createset"."4.0.1"; + "lodash._setcache-4.1.2" = self.by-version."lodash._setcache"."4.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._baseuniq"."~4.5.1" = + self.by-version."lodash._baseuniq"."4.5.1"; by-spec."lodash._basevalues"."^3.0.0" = self.by-version."lodash._basevalues"."3.0.0"; by-version."lodash._basevalues"."3.0.0" = self.buildNodePackage { @@ -22907,7 +26080,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; + url = "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz"; name = "lodash._basevalues-3.0.0.tgz"; sha1 = "5b775762802bde3d3297503e26300820fdf661b7"; }; @@ -22919,19 +26092,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash._createpadding"."^3.0.0" = - self.by-version."lodash._createpadding"."3.6.0"; - by-version."lodash._createpadding"."3.6.0" = self.buildNodePackage { - name = "lodash._createpadding-3.6.0"; - version = "3.6.0"; + by-spec."lodash._bindcallback"."*" = + self.by-version."lodash._bindcallback"."3.0.1"; + by-version."lodash._bindcallback"."3.0.1" = self.buildNodePackage { + name = "lodash._bindcallback-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.0.tgz"; - name = "lodash._createpadding-3.6.0.tgz"; - sha1 = "c466850dd1a05e6bfec54fd0cf0db28b68332d5e"; + url = "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz"; + name = "lodash._bindcallback-3.0.1.tgz"; + sha1 = "e531c27644cf8b57a99e17ed95b35c748789392e"; }; deps = { - "lodash.repeat-3.0.0" = self.by-version."lodash.repeat"."3.0.0"; }; optionalDependencies = { }; @@ -22939,16 +26111,119 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash._isiterateecall"."^3.0.0" = - self.by-version."lodash._isiterateecall"."3.0.6"; - by-version."lodash._isiterateecall"."3.0.6" = self.buildNodePackage { - name = "lodash._isiterateecall-3.0.6"; - version = "3.0.6"; + by-spec."lodash._bindcallback"."^3.0.0" = + self.by-version."lodash._bindcallback"."3.0.1"; + by-spec."lodash._cacheindexof"."*" = + self.by-version."lodash._cacheindexof"."3.0.2"; + by-version."lodash._cacheindexof"."3.0.2" = self.buildNodePackage { + name = "lodash._cacheindexof-3.0.2"; + version = "3.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.6.tgz"; - name = "lodash._isiterateecall-3.0.6.tgz"; - sha1 = "1dd246f647750123cba90f6826acf3eeb673ad41"; + url = "https://registry.npmjs.org/lodash._cacheindexof/-/lodash._cacheindexof-3.0.2.tgz"; + name = "lodash._cacheindexof-3.0.2.tgz"; + sha1 = "3dc69ac82498d2ee5e3ce56091bafd2adc7bde92"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._createassigner"."^3.0.0" = + self.by-version."lodash._createassigner"."3.1.1"; + by-version."lodash._createassigner"."3.1.1" = self.buildNodePackage { + name = "lodash._createassigner-3.1.1"; + version = "3.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz"; + name = "lodash._createassigner-3.1.1.tgz"; + sha1 = "838a5bae2fdaca63ac22dee8e19fa4e6d6970b11"; + }; + deps = { + "lodash._bindcallback-3.0.1" = self.by-version."lodash._bindcallback"."3.0.1"; + "lodash._isiterateecall-3.0.9" = self.by-version."lodash._isiterateecall"."3.0.9"; + "lodash.restparam-3.6.1" = self.by-version."lodash.restparam"."3.6.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._createcache"."*" = + self.by-version."lodash._createcache"."3.1.2"; + by-version."lodash._createcache"."3.1.2" = self.buildNodePackage { + name = "lodash._createcache-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._createcache/-/lodash._createcache-3.1.2.tgz"; + name = "lodash._createcache-3.1.2.tgz"; + sha1 = "56d6a064017625e79ebca6b8018e17440bdcf093"; + }; + deps = { + "lodash._getnative-3.9.1" = self.by-version."lodash._getnative"."3.9.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._createset"."~4.0.0" = + self.by-version."lodash._createset"."4.0.1"; + by-version."lodash._createset"."4.0.1" = self.buildNodePackage { + name = "lodash._createset-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._createset/-/lodash._createset-4.0.1.tgz"; + name = "lodash._createset-4.0.1.tgz"; + sha1 = "00e891e3dd386c4512fcb1f49060dfa4d02a9819"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._getnative"."*" = + self.by-version."lodash._getnative"."3.9.1"; + by-version."lodash._getnative"."3.9.1" = self.buildNodePackage { + name = "lodash._getnative-3.9.1"; + version = "3.9.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz"; + name = "lodash._getnative-3.9.1.tgz"; + sha1 = "570bc7dede46d61cdcde687d65d3eecbaa3aaff5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._getnative"."^3.0.0" = + self.by-version."lodash._getnative"."3.9.1"; + by-spec."lodash._isiterateecall"."^3.0.0" = + self.by-version."lodash._isiterateecall"."3.0.9"; + by-version."lodash._isiterateecall"."3.0.9" = self.buildNodePackage { + name = "lodash._isiterateecall-3.0.9"; + version = "3.0.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz"; + name = "lodash._isiterateecall-3.0.9.tgz"; + sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; }; deps = { }; @@ -22965,7 +26240,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; + url = "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz"; name = "lodash._reescape-3.0.0.tgz"; sha1 = "2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a"; }; @@ -22984,7 +26259,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; + url = "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz"; name = "lodash._reevaluate-3.0.0.tgz"; sha1 = "58bc74c40664953ae0b124d806996daca431e2ed"; }; @@ -23003,7 +26278,7 @@ version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; + url = "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz"; name = "lodash._reinterpolate-3.0.0.tgz"; sha1 = "0ccf2d89166af03b3663c796538b75ac6e114d9d"; }; @@ -23015,19 +26290,123 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.debounce"."^3.0.1" = - self.by-version."lodash.debounce"."3.0.3"; - by-version."lodash.debounce"."3.0.3" = self.buildNodePackage { - name = "lodash.debounce-3.0.3"; - version = "3.0.3"; + by-spec."lodash._root"."^3.0.0" = + self.by-version."lodash._root"."3.0.1"; + by-version."lodash._root"."3.0.1" = self.buildNodePackage { + name = "lodash._root-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.debounce/-/lodash.debounce-3.0.3.tgz"; - name = "lodash.debounce-3.0.3.tgz"; - sha1 = "f696762aedfa649c937c05a64e8a013ffd219c67"; + url = "https://registry.npmjs.org/lodash._root/-/lodash._root-3.0.1.tgz"; + name = "lodash._root-3.0.1.tgz"; + sha1 = "fba1c4524c19ee9a5f8136b4609f017cf4ded692"; }; deps = { - "lodash.isnative-3.0.2" = self.by-version."lodash.isnative"."3.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash._setcache"."~4.1.0" = + self.by-version."lodash._setcache"."4.1.2"; + by-version."lodash._setcache"."4.1.2" = self.buildNodePackage { + name = "lodash._setcache-4.1.2"; + version = "4.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash._setcache/-/lodash._setcache-4.1.2.tgz"; + name = "lodash._setcache-4.1.2.tgz"; + sha1 = "90941f81b2ef907e3f8c63bfd22ba3b7b70d88aa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.assign"."4.0.1" = + self.by-version."lodash.assign"."4.0.1"; + by-version."lodash.assign"."4.0.1" = self.buildNodePackage { + name = "lodash.assign-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.0.1.tgz"; + name = "lodash.assign-4.0.1.tgz"; + sha1 = "8e7ff0206897a99dca32fc8123309f5c4c2c731e"; + }; + deps = { + "lodash.keys-4.0.6" = self.by-version."lodash.keys"."4.0.6"; + "lodash.rest-4.0.2" = self.by-version."lodash.rest"."4.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.assign"."^3.0.0" = + self.by-version."lodash.assign"."3.2.0"; + by-version."lodash.assign"."3.2.0" = self.buildNodePackage { + name = "lodash.assign-3.2.0"; + version = "3.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz"; + name = "lodash.assign-3.2.0.tgz"; + sha1 = "3ce9f0234b4b2223e296b8fa0ac1fee8ebca64fa"; + }; + deps = { + "lodash._baseassign-3.2.0" = self.by-version."lodash._baseassign"."3.2.0"; + "lodash._createassigner-3.1.1" = self.by-version."lodash._createassigner"."3.1.1"; + "lodash.keys-3.1.2" = self.by-version."lodash.keys"."3.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.assign"."^3.2.0" = + self.by-version."lodash.assign"."3.2.0"; + by-spec."lodash.clonedeep"."~4.3.2" = + self.by-version."lodash.clonedeep"."4.3.2"; + by-version."lodash.clonedeep"."4.3.2" = self.buildNodePackage { + name = "lodash.clonedeep-4.3.2"; + version = "4.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.clonedeep/-/lodash.clonedeep-4.3.2.tgz"; + name = "lodash.clonedeep-4.3.2.tgz"; + sha1 = "d0112c02c76b5223833aebc6a4b6e334f0d057de"; + }; + deps = { + "lodash._baseclone-4.5.4" = self.by-version."lodash._baseclone"."4.5.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.defaults"."^3.1.2" = + self.by-version."lodash.defaults"."3.1.2"; + by-version."lodash.defaults"."3.1.2" = self.buildNodePackage { + name = "lodash.defaults-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz"; + name = "lodash.defaults-3.1.2.tgz"; + sha1 = "c7308b18dbf8bc9372d701a73493c61192bd2e2c"; + }; + deps = { + "lodash.assign-3.2.0" = self.by-version."lodash.assign"."3.2.0"; + "lodash.restparam-3.6.1" = self.by-version."lodash.restparam"."3.6.1"; }; optionalDependencies = { }; @@ -23036,18 +26415,18 @@ cpu = [ ]; }; by-spec."lodash.escape"."^3.0.0" = - self.by-version."lodash.escape"."3.0.0"; - by-version."lodash.escape"."3.0.0" = self.buildNodePackage { - name = "lodash.escape-3.0.0"; - version = "3.0.0"; + self.by-version."lodash.escape"."3.2.0"; + by-version."lodash.escape"."3.2.0" = self.buildNodePackage { + name = "lodash.escape-3.2.0"; + version = "3.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.escape/-/lodash.escape-3.0.0.tgz"; - name = "lodash.escape-3.0.0.tgz"; - sha1 = "fb294c99a7bfb586039f66d6b9c27ed874cb7b51"; + url = "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.2.0.tgz"; + name = "lodash.escape-3.2.0.tgz"; + sha1 = "995ee0dc18c1b48cc92effae71a10aab5b487698"; }; deps = { - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; + "lodash._root-3.0.1" = self.by-version."lodash._root"."3.0.1"; }; optionalDependencies = { }; @@ -23056,15 +26435,15 @@ cpu = [ ]; }; by-spec."lodash.isarguments"."^3.0.0" = - self.by-version."lodash.isarguments"."3.0.1"; - by-version."lodash.isarguments"."3.0.1" = self.buildNodePackage { - name = "lodash.isarguments-3.0.1"; - version = "3.0.1"; + self.by-version."lodash.isarguments"."3.0.8"; + by-version."lodash.isarguments"."3.0.8" = self.buildNodePackage { + name = "lodash.isarguments-3.0.8"; + version = "3.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.1.tgz"; - name = "lodash.isarguments-3.0.1.tgz"; - sha1 = "06fbbff019b5627837af7212f17f58c9f4f90e20"; + url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.8.tgz"; + name = "lodash.isarguments-3.0.8.tgz"; + sha1 = "5bf8da887f01f2a9e49c0a175cdaeb318a0e43dc"; }; deps = { }; @@ -23075,15 +26454,15 @@ cpu = [ ]; }; by-spec."lodash.isarray"."^3.0.0" = - self.by-version."lodash.isarray"."3.0.2"; - by-version."lodash.isarray"."3.0.2" = self.buildNodePackage { - name = "lodash.isarray-3.0.2"; - version = "3.0.2"; + self.by-version."lodash.isarray"."3.0.4"; + by-version."lodash.isarray"."3.0.4" = self.buildNodePackage { + name = "lodash.isarray-3.0.4"; + version = "3.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.2.tgz"; - name = "lodash.isarray-3.0.2.tgz"; - sha1 = "e12e08059abd32a640e024d2c8a0f673264326a8"; + url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz"; + name = "lodash.isarray-3.0.4.tgz"; + sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55"; }; deps = { }; @@ -23093,16 +26472,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.isnative"."^3.0.0" = - self.by-version."lodash.isnative"."3.0.2"; - by-version."lodash.isnative"."3.0.2" = self.buildNodePackage { - name = "lodash.isnative-3.0.2"; - version = "3.0.2"; + by-spec."lodash.isarray"."~4.0.0" = + self.by-version."lodash.isarray"."4.0.0"; + by-version."lodash.isarray"."4.0.0" = self.buildNodePackage { + name = "lodash.isarray-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.isnative/-/lodash.isnative-3.0.2.tgz"; - name = "lodash.isnative-3.0.2.tgz"; - sha1 = "7fefcd1af13f1bd2bcb6b45a4597337a22b32ce1"; + url = "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-4.0.0.tgz"; + name = "lodash.isarray-4.0.0.tgz"; + sha1 = "2aca496b28c4ca6d726715313590c02e6ea34403"; }; deps = { }; @@ -23113,20 +26492,20 @@ cpu = [ ]; }; by-spec."lodash.keys"."^3.0.0" = - self.by-version."lodash.keys"."3.0.6"; - by-version."lodash.keys"."3.0.6" = self.buildNodePackage { - name = "lodash.keys-3.0.6"; - version = "3.0.6"; + self.by-version."lodash.keys"."3.1.2"; + by-version."lodash.keys"."3.1.2" = self.buildNodePackage { + name = "lodash.keys-3.1.2"; + version = "3.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.keys/-/lodash.keys-3.0.6.tgz"; - name = "lodash.keys-3.0.6.tgz"; - sha1 = "8865dd881571c08484f4b6e0e8dede1bd2daf81e"; + url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz"; + name = "lodash.keys-3.1.2.tgz"; + sha1 = "4dbc0472b156be50a0b286855d1bd0b0c656098a"; }; deps = { - "lodash.isarguments-3.0.1" = self.by-version."lodash.isarguments"."3.0.1"; - "lodash.isarray-3.0.2" = self.by-version."lodash.isarray"."3.0.2"; - "lodash.isnative-3.0.2" = self.by-version."lodash.isnative"."3.0.2"; + "lodash._getnative-3.9.1" = self.by-version."lodash._getnative"."3.9.1"; + "lodash.isarguments-3.0.8" = self.by-version."lodash.isarguments"."3.0.8"; + "lodash.isarray-3.0.4" = self.by-version."lodash.isarray"."3.0.4"; }; optionalDependencies = { }; @@ -23134,20 +26513,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.pad"."^3.0.0" = - self.by-version."lodash.pad"."3.1.0"; - by-version."lodash.pad"."3.1.0" = self.buildNodePackage { - name = "lodash.pad-3.1.0"; - version = "3.1.0"; + by-spec."lodash.keys"."^4.0.0" = + self.by-version."lodash.keys"."4.0.6"; + by-version."lodash.keys"."4.0.6" = self.buildNodePackage { + name = "lodash.keys-4.0.6"; + version = "4.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.pad/-/lodash.pad-3.1.0.tgz"; - name = "lodash.pad-3.1.0.tgz"; - sha1 = "9f18b1f3749a95e197b5ff2ae752ea9851ada965"; + url = "https://registry.npmjs.org/lodash.keys/-/lodash.keys-4.0.6.tgz"; + name = "lodash.keys-4.0.6.tgz"; + sha1 = "2087692c58b0e44e88658108da8ad66f417867ac"; }; deps = { - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; - "lodash._createpadding-3.6.0" = self.by-version."lodash._createpadding"."3.6.0"; }; optionalDependencies = { }; @@ -23155,20 +26532,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.padleft"."^3.0.0" = - self.by-version."lodash.padleft"."3.1.0"; - by-version."lodash.padleft"."3.1.0" = self.buildNodePackage { - name = "lodash.padleft-3.1.0"; - version = "3.1.0"; + by-spec."lodash.keys"."~4.0.6" = + self.by-version."lodash.keys"."4.0.6"; + by-spec."lodash.memoize"."~3.0.3" = + self.by-version."lodash.memoize"."3.0.4"; + by-version."lodash.memoize"."3.0.4" = self.buildNodePackage { + name = "lodash.memoize-3.0.4"; + version = "3.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.padleft/-/lodash.padleft-3.1.0.tgz"; - name = "lodash.padleft-3.1.0.tgz"; - sha1 = "ac94eeeb3ec4df6394b893c6f4f7faa5cb96a5c1"; + url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-3.0.4.tgz"; + name = "lodash.memoize-3.0.4.tgz"; + sha1 = "2dcbd2c287cbc0a55cc42328bd0c736150d53e3f"; }; deps = { - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; - "lodash._createpadding-3.6.0" = self.by-version."lodash._createpadding"."3.6.0"; }; optionalDependencies = { }; @@ -23176,20 +26553,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.padright"."^3.0.0" = - self.by-version."lodash.padright"."3.1.0"; - by-version."lodash.padright"."3.1.0" = self.buildNodePackage { - name = "lodash.padright-3.1.0"; - version = "3.1.0"; + by-spec."lodash.noop"."~3.0.0" = + self.by-version."lodash.noop"."3.0.1"; + by-version."lodash.noop"."3.0.1" = self.buildNodePackage { + name = "lodash.noop-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.0.tgz"; - name = "lodash.padright-3.1.0.tgz"; - sha1 = "155aa4ed10f4103829031a14516dcb5f3f6c777f"; + url = "https://registry.npmjs.org/lodash.noop/-/lodash.noop-3.0.1.tgz"; + name = "lodash.noop-3.0.1.tgz"; + sha1 = "38188f4d650a3a474258439b96ec45b32617133c"; }; deps = { - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; - "lodash._createpadding-3.6.0" = self.by-version."lodash._createpadding"."3.6.0"; }; optionalDependencies = { }; @@ -23197,19 +26572,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.repeat"."^3.0.0" = - self.by-version."lodash.repeat"."3.0.0"; - by-version."lodash.repeat"."3.0.0" = self.buildNodePackage { - name = "lodash.repeat-3.0.0"; - version = "3.0.0"; + by-spec."lodash.pad"."^4.1.0" = + self.by-version."lodash.pad"."4.2.0"; + by-version."lodash.pad"."4.2.0" = self.buildNodePackage { + name = "lodash.pad-4.2.0"; + version = "4.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.0.tgz"; - name = "lodash.repeat-3.0.0.tgz"; - sha1 = "c340f4136c99dc5b2e397b3fd50cffbd172a94b0"; + url = "https://registry.npmjs.org/lodash.pad/-/lodash.pad-4.2.0.tgz"; + name = "lodash.pad-4.2.0.tgz"; + sha1 = "743e1adf26534d3e8cf3fba52a68aa4f48c38cd6"; }; deps = { - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; + "lodash.tostring-4.1.2" = self.by-version."lodash.tostring"."4.1.2"; }; optionalDependencies = { }; @@ -23217,14 +26592,73 @@ os = [ ]; cpu = [ ]; }; - by-spec."lodash.restparam"."^3.0.0" = + by-spec."lodash.padend"."^4.1.0" = + self.by-version."lodash.padend"."4.3.0"; + by-version."lodash.padend"."4.3.0" = self.buildNodePackage { + name = "lodash.padend-4.3.0"; + version = "4.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.padend/-/lodash.padend-4.3.0.tgz"; + name = "lodash.padend-4.3.0.tgz"; + sha1 = "5333dccbcd88cdd651a05ba6e05f483ae287119f"; + }; + deps = { + "lodash.tostring-4.1.2" = self.by-version."lodash.tostring"."4.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.padstart"."^4.1.0" = + self.by-version."lodash.padstart"."4.3.0"; + by-version."lodash.padstart"."4.3.0" = self.buildNodePackage { + name = "lodash.padstart-4.3.0"; + version = "4.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.padstart/-/lodash.padstart-4.3.0.tgz"; + name = "lodash.padstart-4.3.0.tgz"; + sha1 = "7044f6c4a3544165d2b5b3c2203834809fac692e"; + }; + deps = { + "lodash.tostring-4.1.2" = self.by-version."lodash.tostring"."4.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.rest"."^4.0.0" = + self.by-version."lodash.rest"."4.0.2"; + by-version."lodash.rest"."4.0.2" = self.buildNodePackage { + name = "lodash.rest-4.0.2"; + version = "4.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.rest/-/lodash.rest-4.0.2.tgz"; + name = "lodash.rest-4.0.2.tgz"; + sha1 = "a15a7daa9cbd45e223ef5ba5d38e87dd02eac6bd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.restparam"."*" = self.by-version."lodash.restparam"."3.6.1"; by-version."lodash.restparam"."3.6.1" = self.buildNodePackage { name = "lodash.restparam-3.6.1"; version = "3.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz"; + url = "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz"; name = "lodash.restparam-3.6.1.tgz"; sha1 = "936a4e309ef330a7645ed4145986c85ae5b20805"; }; @@ -23236,28 +26670,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."lodash.restparam"."^3.0.0" = + self.by-version."lodash.restparam"."3.6.1"; by-spec."lodash.template"."^3.0.0" = - self.by-version."lodash.template"."3.5.0"; - by-version."lodash.template"."3.5.0" = self.buildNodePackage { - name = "lodash.template-3.5.0"; - version = "3.5.0"; + self.by-version."lodash.template"."3.6.2"; + by-version."lodash.template"."3.6.2" = self.buildNodePackage { + name = "lodash.template-3.6.2"; + version = "3.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.template/-/lodash.template-3.5.0.tgz"; - name = "lodash.template-3.5.0.tgz"; - sha1 = "79a4fa335599e7ab649db8d1637b3ecaeed07aef"; + url = "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz"; + name = "lodash.template-3.6.2.tgz"; + sha1 = "f8cdecc6169a255be9098ae8b0c53d378931d14f"; }; deps = { "lodash._basecopy-3.0.1" = self.by-version."lodash._basecopy"."3.0.1"; - "lodash._basetostring-3.0.0" = self.by-version."lodash._basetostring"."3.0.0"; + "lodash._basetostring-3.0.1" = self.by-version."lodash._basetostring"."3.0.1"; "lodash._basevalues-3.0.0" = self.by-version."lodash._basevalues"."3.0.0"; - "lodash._isiterateecall-3.0.6" = self.by-version."lodash._isiterateecall"."3.0.6"; + "lodash._isiterateecall-3.0.9" = self.by-version."lodash._isiterateecall"."3.0.9"; "lodash._reinterpolate-3.0.0" = self.by-version."lodash._reinterpolate"."3.0.0"; - "lodash.escape-3.0.0" = self.by-version."lodash.escape"."3.0.0"; - "lodash.isnative-3.0.2" = self.by-version."lodash.isnative"."3.0.2"; - "lodash.keys-3.0.6" = self.by-version."lodash.keys"."3.0.6"; + "lodash.escape-3.2.0" = self.by-version."lodash.escape"."3.2.0"; + "lodash.keys-3.1.2" = self.by-version."lodash.keys"."3.1.2"; "lodash.restparam-3.6.1" = self.by-version."lodash.restparam"."3.6.1"; - "lodash.templatesettings-3.1.0" = self.by-version."lodash.templatesettings"."3.1.0"; + "lodash.templatesettings-3.1.1" = self.by-version."lodash.templatesettings"."3.1.1"; }; optionalDependencies = { }; @@ -23266,19 +26701,101 @@ cpu = [ ]; }; by-spec."lodash.templatesettings"."^3.0.0" = - self.by-version."lodash.templatesettings"."3.1.0"; - by-version."lodash.templatesettings"."3.1.0" = self.buildNodePackage { - name = "lodash.templatesettings-3.1.0"; - version = "3.1.0"; + self.by-version."lodash.templatesettings"."3.1.1"; + by-version."lodash.templatesettings"."3.1.1" = self.buildNodePackage { + name = "lodash.templatesettings-3.1.1"; + version = "3.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.0.tgz"; - name = "lodash.templatesettings-3.1.0.tgz"; - sha1 = "53852fd832b920605a2eb61919bcbbfb8f385bb6"; + url = "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz"; + name = "lodash.templatesettings-3.1.1.tgz"; + sha1 = "fb307844753b66b9f1afa54e262c745307dba8e5"; }; deps = { "lodash._reinterpolate-3.0.0" = self.by-version."lodash._reinterpolate"."3.0.0"; - "lodash.escape-3.0.0" = self.by-version."lodash.escape"."3.0.0"; + "lodash.escape-3.2.0" = self.by-version."lodash.escape"."3.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.tostring"."^4.0.0" = + self.by-version."lodash.tostring"."4.1.2"; + by-version."lodash.tostring"."4.1.2" = self.buildNodePackage { + name = "lodash.tostring-4.1.2"; + version = "4.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.2.tgz"; + name = "lodash.tostring-4.1.2.tgz"; + sha1 = "7d326a5cf64da4298f2fd35b688d848267535288"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.union"."~4.2.1" = + self.by-version."lodash.union"."4.2.1"; + by-version."lodash.union"."4.2.1" = self.buildNodePackage { + name = "lodash.union-4.2.1"; + version = "4.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.union/-/lodash.union-4.2.1.tgz"; + name = "lodash.union-4.2.1.tgz"; + sha1 = "6871017b9b1ff71952c1e2bb2e25b1046a7e2842"; + }; + deps = { + "lodash._baseflatten-4.1.1" = self.by-version."lodash._baseflatten"."4.1.1"; + "lodash._baseuniq-4.5.1" = self.by-version."lodash._baseuniq"."4.5.1"; + "lodash.rest-4.0.2" = self.by-version."lodash.rest"."4.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.uniq"."~4.2.1" = + self.by-version."lodash.uniq"."4.2.1"; + by-version."lodash.uniq"."4.2.1" = self.buildNodePackage { + name = "lodash.uniq-4.2.1"; + version = "4.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.2.1.tgz"; + name = "lodash.uniq-4.2.1.tgz"; + sha1 = "4210d4b90647ee24211b469aed0ef84902069743"; + }; + deps = { + "lodash._baseuniq-4.5.1" = self.by-version."lodash._baseuniq"."4.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lodash.without"."~4.1.2" = + self.by-version."lodash.without"."4.1.2"; + by-version."lodash.without"."4.1.2" = self.buildNodePackage { + name = "lodash.without-4.1.2"; + version = "4.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lodash.without/-/lodash.without-4.1.2.tgz"; + name = "lodash.without-4.1.2.tgz"; + sha1 = "c68b1981e1b001bd87eef7487dba0af267846229"; + }; + deps = { + "lodash._basedifference-4.4.1" = self.by-version."lodash._basedifference"."4.4.1"; + "lodash.rest-4.0.2" = self.by-version."lodash.rest"."4.0.2"; }; optionalDependencies = { }; @@ -23293,7 +26810,7 @@ version = "1.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/log-driver/-/log-driver-1.2.4.tgz"; + url = "https://registry.npmjs.org/log-driver/-/log-driver-1.2.4.tgz"; name = "log-driver-1.2.4.tgz"; sha1 = "2d62d7faef45d8a71341961a04b0761eca99cfa3"; }; @@ -23305,22 +26822,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."log4js"."~0.6.3" = - self.by-version."log4js"."0.6.24"; - by-version."log4js"."0.6.24" = self.buildNodePackage { - name = "log4js-0.6.24"; - version = "0.6.24"; + by-spec."log4js"."^0.6.31" = + self.by-version."log4js"."0.6.33"; + by-version."log4js"."0.6.33" = self.buildNodePackage { + name = "log4js-0.6.33"; + version = "0.6.33"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/log4js/-/log4js-0.6.24.tgz"; - name = "log4js-0.6.24.tgz"; - sha1 = "33cb11f14d3a48834867037aff292a046f6aae50"; + url = "https://registry.npmjs.org/log4js/-/log4js-0.6.33.tgz"; + name = "log4js-0.6.33.tgz"; + sha1 = "53f1bf825dac7cdfeadca6787624fa824ccf5b7e"; }; deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "underscore-1.8.2" = self.by-version."underscore"."1.8.2"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; }; optionalDependencies = { }; @@ -23328,37 +26843,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."loggly"."0.3.x >=0.3.7" = - self.by-version."loggly"."0.3.11"; - by-version."loggly"."0.3.11" = self.buildNodePackage { - name = "loggly-0.3.11"; - version = "0.3.11"; + by-spec."lolex"."1.3.2" = + self.by-version."lolex"."1.3.2"; + by-version."lolex"."1.3.2" = self.buildNodePackage { + name = "lolex-1.3.2"; + version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/loggly/-/loggly-0.3.11.tgz"; - name = "loggly-0.3.11.tgz"; - sha1 = "62c1ec3436772f0954598f26b957d2ad2986b611"; - }; - deps = { - "request-2.9.203" = self.by-version."request"."2.9.203"; - "timespan-2.3.0" = self.by-version."timespan"."2.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lolex"."1.1.0" = - self.by-version."lolex"."1.1.0"; - by-version."lolex"."1.1.0" = self.buildNodePackage { - name = "lolex-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lolex/-/lolex-1.1.0.tgz"; - name = "lolex-1.1.0.tgz"; - sha1 = "5dbbbc850395e7523c74b3586f7fbd2626d25b1b"; + url = "https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz"; + name = "lolex-1.3.2.tgz"; + sha1 = "7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31"; }; deps = { }; @@ -23369,15 +26863,15 @@ cpu = [ ]; }; by-spec."long"."~2 >=2.2.3" = - self.by-version."long"."2.2.3"; - by-version."long"."2.2.3" = self.buildNodePackage { - name = "long-2.2.3"; - version = "2.2.3"; + self.by-version."long"."2.4.0"; + by-version."long"."2.4.0" = self.buildNodePackage { + name = "long-2.4.0"; + version = "2.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/long/-/long-2.2.3.tgz"; - name = "long-2.2.3.tgz"; - sha1 = "635f5b530b3bd3ecb000a2ffb11281583c7f1e07"; + url = "https://registry.npmjs.org/long/-/long-2.4.0.tgz"; + name = "long-2.4.0.tgz"; + sha1 = "9fa180bb1d9500cdc29c4156766a1995e1f4524f"; }; deps = { }; @@ -23387,16 +26881,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."longjohn"."~0.2.2" = - self.by-version."longjohn"."0.2.4"; - by-version."longjohn"."0.2.4" = self.buildNodePackage { - name = "longjohn-0.2.4"; - version = "0.2.4"; + by-spec."longest"."^1.0.1" = + self.by-version."longest"."1.0.1"; + by-version."longest"."1.0.1" = self.buildNodePackage { + name = "longest-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/longjohn/-/longjohn-0.2.4.tgz"; - name = "longjohn-0.2.4.tgz"; - sha1 = "48436a1f359e7666f678e2170ee1f43bba8f8b4c"; + url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; + name = "longest-1.0.1.tgz"; + sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; }; deps = { }; @@ -23406,6 +26900,69 @@ os = [ ]; cpu = [ ]; }; + by-spec."longjohn"."0.2.9" = + self.by-version."longjohn"."0.2.9"; + by-version."longjohn"."0.2.9" = self.buildNodePackage { + name = "longjohn-0.2.9"; + version = "0.2.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/longjohn/-/longjohn-0.2.9.tgz"; + name = "longjohn-0.2.9.tgz"; + sha1 = "db1bf175fcfffcfce099132d1470f52f41a31519"; + }; + deps = { + "source-map-support-0.3.2" = self.by-version."source-map-support"."0.3.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."loose-envify"."^1.0.0" = + self.by-version."loose-envify"."1.1.0"; + by-version."loose-envify"."1.1.0" = self.buildNodePackage { + name = "loose-envify-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.1.0.tgz"; + name = "loose-envify-1.1.0.tgz"; + sha1 = "527582d62cff4e04da3f9976c7110d3392ec7e0c"; + }; + deps = { + "js-tokens-1.0.3" = self.by-version."js-tokens"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."loose-envify"."^1.1.0" = + self.by-version."loose-envify"."1.1.0"; + by-spec."loud-rejection"."^1.0.0" = + self.by-version."loud-rejection"."1.3.0"; + by-version."loud-rejection"."1.3.0" = self.buildNodePackage { + name = "loud-rejection-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.3.0.tgz"; + name = "loud-rejection-1.3.0.tgz"; + sha1 = "f289a392f17d2baacf194d0a673004394433b115"; + }; + deps = { + "array-find-index-1.0.1" = self.by-version."array-find-index"."1.0.1"; + "signal-exit-2.1.2" = self.by-version."signal-exit"."2.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."lowercase-keys"."^1.0.0" = self.by-version."lowercase-keys"."1.0.0"; by-version."lowercase-keys"."1.0.0" = self.buildNodePackage { @@ -23413,7 +26970,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; + url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz"; name = "lowercase-keys-1.0.0.tgz"; sha1 = "4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"; }; @@ -23425,16 +26982,36 @@ os = [ ]; cpu = [ ]; }; - by-spec."lru-cache"."2" = - self.by-version."lru-cache"."2.6.1"; - by-version."lru-cache"."2.6.1" = self.buildNodePackage { - name = "lru-cache-2.6.1"; - version = "2.6.1"; + by-spec."lru"."^2.0.0" = + self.by-version."lru"."2.0.1"; + by-version."lru"."2.0.1" = self.buildNodePackage { + name = "lru-2.0.1"; + version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.6.1.tgz"; - name = "lru-cache-2.6.1.tgz"; - sha1 = "9933eff15453fae1d27096365143c724e85c6cbd"; + url = "https://registry.npmjs.org/lru/-/lru-2.0.1.tgz"; + name = "lru-2.0.1.tgz"; + sha1 = "f979871e162e3f5ca254be46844c53d4c5364544"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lru-cache"."2" = + self.by-version."lru-cache"."2.7.3"; + by-version."lru-cache"."2.7.3" = self.buildNodePackage { + name = "lru-cache-2.7.3"; + version = "2.7.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; + name = "lru-cache-2.7.3.tgz"; + sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; }; deps = { }; @@ -23451,7 +27028,7 @@ version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.0.tgz"; name = "lru-cache-2.2.0.tgz"; sha1 = "ec2bba603f4c5bb3e7a1bf62ce1c1dbc1d474e08"; }; @@ -23470,7 +27047,7 @@ version = "2.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz"; name = "lru-cache-2.2.4.tgz"; sha1 = "6c658619becf14031d0d0b594b16042ce4dc063d"; }; @@ -23489,7 +27066,7 @@ version = "2.5.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.5.2.tgz"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.2.tgz"; name = "lru-cache-2.5.2.tgz"; sha1 = "1fddad938aae1263ce138680be1b3f591c0ab41c"; }; @@ -23502,17 +27079,38 @@ cpu = [ ]; }; by-spec."lru-cache"."^2.5.0" = - self.by-version."lru-cache"."2.6.1"; - by-spec."lru-cache"."~2.3.0" = - self.by-version."lru-cache"."2.3.1"; - by-version."lru-cache"."2.3.1" = self.buildNodePackage { - name = "lru-cache-2.3.1"; - version = "2.3.1"; + self.by-version."lru-cache"."2.7.3"; + by-spec."lru-cache"."^4.0.0" = + self.by-version."lru-cache"."4.0.1"; + by-version."lru-cache"."4.0.1" = self.buildNodePackage { + name = "lru-cache-4.0.1"; + version = "4.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.3.1.tgz"; - name = "lru-cache-2.3.1.tgz"; - sha1 = "b3adf6b3d856e954e2c390e6cef22081245a53d6"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz"; + name = "lru-cache-4.0.1.tgz"; + sha1 = "1343955edaf2e37d9b9e7ee7241e27c4b9fb72be"; + }; + deps = { + "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; + "yallist-2.0.0" = self.by-version."yallist"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."lru-cache"."~1.0.2" = + self.by-version."lru-cache"."1.0.6"; + by-version."lru-cache"."1.0.6" = self.buildNodePackage { + name = "lru-cache-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-1.0.6.tgz"; + name = "lru-cache-1.0.6.tgz"; + sha1 = "aa50f97047422ac72543bda177a9c9d018d98452"; }; deps = { }; @@ -23524,21 +27122,19 @@ }; by-spec."lru-cache"."~2.5.0" = self.by-version."lru-cache"."2.5.2"; - by-spec."lru-cache"."~2.6.1" = - self.by-version."lru-cache"."2.6.1"; - by-spec."lru-queue"."0.1" = - self.by-version."lru-queue"."0.1.0"; - by-version."lru-queue"."0.1.0" = self.buildNodePackage { - name = "lru-queue-0.1.0"; - version = "0.1.0"; + by-spec."lru-cache"."~3.2.0" = + self.by-version."lru-cache"."3.2.0"; + by-version."lru-cache"."3.2.0" = self.buildNodePackage { + name = "lru-cache-3.2.0"; + version = "3.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz"; - name = "lru-queue-0.1.0.tgz"; - sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3"; + url = "https://registry.npmjs.org/lru-cache/-/lru-cache-3.2.0.tgz"; + name = "lru-cache-3.2.0.tgz"; + sha1 = "71789b3b7f5399bec8565dda38aa30d2a097efee"; }; deps = { - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; + "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; }; optionalDependencies = { }; @@ -23553,7 +27149,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lsmod/-/lsmod-0.0.3.tgz"; + url = "https://registry.npmjs.org/lsmod/-/lsmod-0.0.3.tgz"; name = "lsmod-0.0.3.tgz"; sha1 = "17e13d4e1ae91750ea5653548cd89e7147ad0244"; }; @@ -23572,7 +27168,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ltgt/-/ltgt-1.0.2.tgz"; + url = "https://registry.npmjs.org/ltgt/-/ltgt-1.0.2.tgz"; name = "ltgt-1.0.2.tgz"; sha1 = "e6817eb29ad204fc0c9e96ef8b0fee98ef6b9aa3"; }; @@ -23584,16 +27180,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."ltgt"."~2.0.0" = - self.by-version."ltgt"."2.0.0"; - by-version."ltgt"."2.0.0" = self.buildNodePackage { - name = "ltgt-2.0.0"; - version = "2.0.0"; + by-spec."ltgt"."~2.1.1" = + self.by-version."ltgt"."2.1.2"; + by-version."ltgt"."2.1.2" = self.buildNodePackage { + name = "ltgt-2.1.2"; + version = "2.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ltgt/-/ltgt-2.0.0.tgz"; - name = "ltgt-2.0.0.tgz"; - sha1 = "b40ed1e337caf577c0a963f9cffbc680318009c2"; + url = "https://registry.npmjs.org/ltgt/-/ltgt-2.1.2.tgz"; + name = "ltgt-2.1.2.tgz"; + sha1 = "e7472324fee690afc0d5ecf900403ce5788a311d"; }; deps = { }; @@ -23604,43 +27200,18 @@ cpu = [ ]; }; by-spec."ltx"."*" = - self.by-version."ltx"."0.9.0"; - by-version."ltx"."0.9.0" = self.buildNodePackage { - name = "ltx-0.9.0"; - version = "0.9.0"; + self.by-version."ltx"."2.3.0"; + by-version."ltx"."2.3.0" = self.buildNodePackage { + name = "ltx-2.3.0"; + version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ltx/-/ltx-0.9.0.tgz"; - name = "ltx-0.9.0.tgz"; - sha1 = "09055d4791b074d58c7d81d7ef0d91a71ef3c8a3"; + url = "https://registry.npmjs.org/ltx/-/ltx-2.3.0.tgz"; + name = "ltx-2.3.0.tgz"; + sha1 = "0d86d7366b866ad718b1c545f71c137884db2186"; }; deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "ltx" = self.by-version."ltx"."0.9.0"; - by-spec."ltx"."0.x" = - self.by-version."ltx"."0.9.0"; - by-spec."ltx"."^0.5.2" = - self.by-version."ltx"."0.5.2"; - by-version."ltx"."0.5.2" = self.buildNodePackage { - name = "ltx-0.5.2"; - version = "0.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ltx/-/ltx-0.5.2.tgz"; - name = "ltx-0.5.2.tgz"; - sha1 = "3a049fc30ab8982c227803a74b26c02fe225cef8"; - }; - deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; }; optionalDependencies = { }; @@ -23648,24 +27219,21 @@ os = [ ]; cpu = [ ]; }; + "ltx" = self.by-version."ltx"."2.3.0"; by-spec."ltx"."^0.9.0" = - self.by-version."ltx"."0.9.0"; - by-spec."ltx"."~0.9.0" = - self.by-version."ltx"."0.9.0"; - by-spec."ltx"."~0.x" = - self.by-version."ltx"."0.9.0"; - by-spec."lunr".">=0.5.2 <1.0.0-0" = - self.by-version."lunr"."0.5.8"; - by-version."lunr"."0.5.8" = self.buildNodePackage { - name = "lunr-0.5.8"; - version = "0.5.8"; + self.by-version."ltx"."0.9.1"; + by-version."ltx"."0.9.1" = self.buildNodePackage { + name = "ltx-0.9.1"; + version = "0.9.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/lunr/-/lunr-0.5.8.tgz"; - name = "lunr-0.5.8.tgz"; - sha1 = "1e491cdce223fcea988ea117acdf3f6bd628f9ec"; + url = "https://registry.npmjs.org/ltx/-/ltx-0.9.1.tgz"; + name = "ltx-0.9.1.tgz"; + sha1 = "56393ba7798c2cd18fce781a4ed7d83deb6daae6"; }; deps = { + "sax-0.6.1" = self.by-version."sax"."0.6.1"; + "node-expat-2.3.13" = self.by-version."node-expat"."2.3.13"; }; optionalDependencies = { }; @@ -23673,16 +27241,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."m8".">= 0.4.3" = - self.by-version."m8"."0.4.4"; - by-version."m8"."0.4.4" = self.buildNodePackage { - name = "m8-0.4.4"; - version = "0.4.4"; + by-spec."ltx"."^2.0.1" = + self.by-version."ltx"."2.3.0"; + by-spec."ltx"."^2.2.0" = + self.by-version."ltx"."2.3.0"; + by-spec."ltx"."~0.9.0" = + self.by-version."ltx"."0.9.1"; + by-spec."lunr".">=0.5.2 <1.0.0-0" = + self.by-version."lunr"."0.7.0"; + by-version."lunr"."0.7.0" = self.buildNodePackage { + name = "lunr-0.7.0"; + version = "0.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/m8/-/m8-0.4.4.tgz"; - name = "m8-0.4.4.tgz"; - sha1 = "59df914d9bee2829ceac4346026abe945abed5b8"; + url = "https://registry.npmjs.org/lunr/-/lunr-0.7.0.tgz"; + name = "lunr-0.7.0.tgz"; + sha1 = "e7d279a273c4ab42ff584b61ce32a3513a2d3859"; }; deps = { }; @@ -23699,7 +27273,7 @@ version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz"; + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-2.0.1.tgz"; name = "magnet-uri-2.0.1.tgz"; sha1 = "d331d3dfcd3836565ade0fc3ca315e39217bb209"; }; @@ -23713,20 +27287,42 @@ cpu = [ ]; }; by-spec."magnet-uri"."^4.0.0" = - self.by-version."magnet-uri"."4.2.2"; - by-version."magnet-uri"."4.2.2" = self.buildNodePackage { - name = "magnet-uri-4.2.2"; - version = "4.2.2"; + self.by-version."magnet-uri"."4.2.3"; + by-version."magnet-uri"."4.2.3" = self.buildNodePackage { + name = "magnet-uri-4.2.3"; + version = "4.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.2.tgz"; - name = "magnet-uri-4.2.2.tgz"; - sha1 = "26a445b7d9acb3da29ba8cda85cf0fc0dbf07d24"; + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-4.2.3.tgz"; + name = "magnet-uri-4.2.3.tgz"; + sha1 = "79cc6d65a00bb5b7ef5c25ae60ebbb5d9a7681a8"; }; deps = { "flatten-0.0.1" = self.by-version."flatten"."0.0.1"; "thirty-two-0.0.2" = self.by-version."thirty-two"."0.0.2"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."magnet-uri"."^5.1.3" = + self.by-version."magnet-uri"."5.1.3"; + by-version."magnet-uri"."5.1.3" = self.buildNodePackage { + name = "magnet-uri-5.1.3"; + version = "5.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/magnet-uri/-/magnet-uri-5.1.3.tgz"; + name = "magnet-uri-5.1.3.tgz"; + sha1 = "02dee3b07b639363afa991f44a3fe2bb06d6342d"; + }; + deps = { + "thirty-two-1.0.1" = self.by-version."thirty-two"."1.0.1"; + "uniq-1.0.1" = self.by-version."uniq"."1.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -23737,19 +27333,19 @@ by-spec."magnet-uri"."~2.0.0" = self.by-version."magnet-uri"."2.0.1"; by-spec."mailchimp".">=1.1.0" = - self.by-version."mailchimp"."1.1.0"; - by-version."mailchimp"."1.1.0" = self.buildNodePackage { - name = "mailchimp-1.1.0"; - version = "1.1.0"; + self.by-version."mailchimp"."1.1.6"; + by-version."mailchimp"."1.1.6" = self.buildNodePackage { + name = "mailchimp-1.1.6"; + version = "1.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mailchimp/-/mailchimp-1.1.0.tgz"; - name = "mailchimp-1.1.0.tgz"; - sha1 = "253220f0091724b1033fadcf9f8aaad68dcad309"; + url = "https://registry.npmjs.org/mailchimp/-/mailchimp-1.1.6.tgz"; + name = "mailchimp-1.1.6.tgz"; + sha1 = "5aa72867e3043f173de6d1ff6965e6ed3ea55b61"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; - "qs-0.5.6" = self.by-version."qs"."0.5.6"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "qs-1.2.2" = self.by-version."qs"."1.2.2"; }; optionalDependencies = { }; @@ -23758,13 +27354,34 @@ cpu = [ ]; }; by-spec."mailcomposer".">= 0.1.27" = + self.by-version."mailcomposer"."3.7.0"; + by-version."mailcomposer"."3.7.0" = self.buildNodePackage { + name = "mailcomposer-3.7.0"; + version = "3.7.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-3.7.0.tgz"; + name = "mailcomposer-3.7.0.tgz"; + sha1 = "6f328613e972df8b5035c0834c65ea992d81433c"; + }; + deps = { + "buildmail-3.6.0" = self.by-version."buildmail"."3.6.0"; + "libmime-2.0.3" = self.by-version."libmime"."2.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mailcomposer"."~0.2.10" = self.by-version."mailcomposer"."0.2.12"; by-version."mailcomposer"."0.2.12" = self.buildNodePackage { name = "mailcomposer-0.2.12"; version = "0.2.12"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mailcomposer/-/mailcomposer-0.2.12.tgz"; + url = "https://registry.npmjs.org/mailcomposer/-/mailcomposer-0.2.12.tgz"; name = "mailcomposer-0.2.12.tgz"; sha1 = "4d02a604616adcb45fb36d37513f4c1bd0b75681"; }; @@ -23781,8 +27398,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."mailcomposer"."~0.2.10" = - self.by-version."mailcomposer"."0.2.12"; by-spec."mailgun-js"."^0.6.7" = self.by-version."mailgun-js"."0.6.9"; by-version."mailgun-js"."0.6.9" = self.buildNodePackage { @@ -23790,7 +27405,7 @@ version = "0.6.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mailgun-js/-/mailgun-js-0.6.9.tgz"; + url = "https://registry.npmjs.org/mailgun-js/-/mailgun-js-0.6.9.tgz"; name = "mailgun-js-0.6.9.tgz"; sha1 = "1bdc22b636a249b6870e920695b8338370b2cf98"; }; @@ -23798,7 +27413,7 @@ "form-data-0.2.0" = self.by-version."form-data"."0.2.0"; "inflection-1.5.3" = self.by-version."inflection"."1.5.3"; "path-proxy-1.0.0" = self.by-version."path-proxy"."1.0.0"; - "proxy-agent-1.1.0" = self.by-version."proxy-agent"."1.1.0"; + "proxy-agent-1.1.1" = self.by-version."proxy-agent"."1.1.1"; "q-1.1.2" = self.by-version."q"."1.1.2"; "scmp-1.0.0" = self.by-version."scmp"."1.0.0"; "debug-2.1.3" = self.by-version."debug"."2.1.3"; @@ -23810,15 +27425,36 @@ cpu = [ ]; }; by-spec."map-obj"."^1.0.0" = - self.by-version."map-obj"."1.0.0"; - by-version."map-obj"."1.0.0" = self.buildNodePackage { - name = "map-obj-1.0.0"; - version = "1.0.0"; + self.by-version."map-obj"."1.0.1"; + by-version."map-obj"."1.0.1" = self.buildNodePackage { + name = "map-obj-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/map-obj/-/map-obj-1.0.0.tgz"; - name = "map-obj-1.0.0.tgz"; - sha1 = "bcbdf6756758763c182daf79e18094a2f1c85766"; + url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; + name = "map-obj-1.0.1.tgz"; + sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."map-obj"."^1.0.1" = + self.by-version."map-obj"."1.0.1"; + by-spec."map-stream"."~0.1.0" = + self.by-version."map-stream"."0.1.0"; + by-version."map-stream"."0.1.0" = self.buildNodePackage { + name = "map-stream-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; + name = "map-stream-0.1.0.tgz"; + sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194"; }; deps = { }; @@ -23829,21 +27465,21 @@ cpu = [ ]; }; by-spec."markdown-it"."4.x" = - self.by-version."markdown-it"."4.1.2"; - by-version."markdown-it"."4.1.2" = self.buildNodePackage { - name = "markdown-it-4.1.2"; - version = "4.1.2"; + self.by-version."markdown-it"."4.4.0"; + by-version."markdown-it"."4.4.0" = self.buildNodePackage { + name = "markdown-it-4.4.0"; + version = "4.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/markdown-it/-/markdown-it-4.1.2.tgz"; - name = "markdown-it-4.1.2.tgz"; - sha1 = "f6fe57e03618f36f49bc6312928c83cedf77c6ac"; + url = "https://registry.npmjs.org/markdown-it/-/markdown-it-4.4.0.tgz"; + name = "markdown-it-4.4.0.tgz"; + sha1 = "3df373dbea587a9a7fef3e56311b68908f75c414"; }; deps = { - "argparse-1.0.2" = self.by-version."argparse"."1.0.2"; + "argparse-1.0.7" = self.by-version."argparse"."1.0.7"; "entities-1.1.1" = self.by-version."entities"."1.1.1"; - "linkify-it-1.0.1" = self.by-version."linkify-it"."1.0.1"; - "mdurl-1.0.0" = self.by-version."mdurl"."1.0.0"; + "linkify-it-1.2.0" = self.by-version."linkify-it"."1.2.0"; + "mdurl-1.0.1" = self.by-version."mdurl"."1.0.1"; "uc.micro-1.0.0" = self.by-version."uc.micro"."1.0.0"; }; optionalDependencies = { @@ -23853,15 +27489,15 @@ cpu = [ ]; }; by-spec."marked"."*" = - self.by-version."marked"."0.3.3"; - by-version."marked"."0.3.3" = self.buildNodePackage { - name = "marked-0.3.3"; - version = "0.3.3"; + self.by-version."marked"."0.3.5"; + by-version."marked"."0.3.5" = self.buildNodePackage { + name = "marked-0.3.5"; + version = "0.3.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/marked/-/marked-0.3.3.tgz"; - name = "marked-0.3.3.tgz"; - sha1 = "08bad9cac13736f6cceddc202344f1b0bf255390"; + url = "https://registry.npmjs.org/marked/-/marked-0.3.5.tgz"; + name = "marked-0.3.5.tgz"; + sha1 = "4113a15ac5d7bca158a5aae07224587b9fa15b94"; }; deps = { }; @@ -23871,11 +27507,11 @@ os = [ ]; cpu = [ ]; }; - "marked" = self.by-version."marked"."0.3.3"; + "marked" = self.by-version."marked"."0.3.5"; by-spec."marked".">=0.2.9" = - self.by-version."marked"."0.3.3"; + self.by-version."marked"."0.3.5"; by-spec."marked"."^0.3.2" = - self.by-version."marked"."0.3.3"; + self.by-version."marked"."0.3.5"; by-spec."mathjs"."~0.19.0" = self.by-version."mathjs"."0.19.0"; by-version."mathjs"."0.19.0" = self.buildNodePackage { @@ -23883,7 +27519,7 @@ version = "0.19.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mathjs/-/mathjs-0.19.0.tgz"; + url = "https://registry.npmjs.org/mathjs/-/mathjs-0.19.0.tgz"; name = "mathjs-0.19.0.tgz"; sha1 = "35f7bdfcca1431dac5438cbf095eefce4e1aae78"; }; @@ -23896,20 +27532,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."maxmin"."^1.0.0" = + by-spec."maxmin"."^1.1.0" = self.by-version."maxmin"."1.1.0"; by-version."maxmin"."1.1.0" = self.buildNodePackage { name = "maxmin-1.1.0"; version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/maxmin/-/maxmin-1.1.0.tgz"; + url = "https://registry.npmjs.org/maxmin/-/maxmin-1.1.0.tgz"; name = "maxmin-1.1.0.tgz"; sha1 = "71365e84a99dd8f8b3f7d5fde2f00d1e7f73be61"; }; deps = { - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "figures-1.3.5" = self.by-version."figures"."1.3.5"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "figures-1.5.0" = self.by-version."figures"."1.5.0"; "gzip-size-1.0.0" = self.by-version."gzip-size"."1.0.0"; "pretty-bytes-1.0.4" = self.by-version."pretty-bytes"."1.0.4"; }; @@ -23920,20 +27556,20 @@ cpu = [ ]; }; by-spec."mdns-js"."*" = - self.by-version."mdns-js"."0.3.1"; - by-version."mdns-js"."0.3.1" = self.buildNodePackage { - name = "mdns-js-0.3.1"; - version = "0.3.1"; + self.by-version."mdns-js"."0.5.0"; + by-version."mdns-js"."0.5.0" = self.buildNodePackage { + name = "mdns-js-0.5.0"; + version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mdns-js/-/mdns-js-0.3.1.tgz"; - name = "mdns-js-0.3.1.tgz"; - sha1 = "a2bcf301d23f271a9432505fff22103352510ae3"; + url = "https://registry.npmjs.org/mdns-js/-/mdns-js-0.5.0.tgz"; + name = "mdns-js-0.5.0.tgz"; + sha1 = "4c8abb6ba7cabdc892d39228c3faa2556e09cf87"; }; deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "mdns-js-packet-0.1.8" = self.by-version."mdns-js-packet"."0.1.8"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mdns-js-packet-0.2.0" = self.by-version."mdns-js-packet"."0.2.0"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; }; optionalDependencies = { }; @@ -23941,19 +27577,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."mdns-js-packet"."0.1.x" = - self.by-version."mdns-js-packet"."0.1.8"; - by-version."mdns-js-packet"."0.1.8" = self.buildNodePackage { - name = "mdns-js-packet-0.1.8"; - version = "0.1.8"; + by-spec."mdns-js-packet"."~0.2.0" = + self.by-version."mdns-js-packet"."0.2.0"; + by-version."mdns-js-packet"."0.2.0" = self.buildNodePackage { + name = "mdns-js-packet-0.2.0"; + version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mdns-js-packet/-/mdns-js-packet-0.1.8.tgz"; - name = "mdns-js-packet-0.1.8.tgz"; - sha1 = "e5a205c6e26e22a1df58e5f38057e80a6f84ee26"; + url = "https://registry.npmjs.org/mdns-js-packet/-/mdns-js-packet-0.2.0.tgz"; + name = "mdns-js-packet-0.2.0.tgz"; + sha1 = "642409e8183c7561cc60615bbd1420ec2fad7616"; }; deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "qap-3.1.3" = self.by-version."qap"."3.1.3"; }; optionalDependencies = { @@ -23963,15 +27599,15 @@ cpu = [ ]; }; by-spec."mdurl"."~1.0.0" = - self.by-version."mdurl"."1.0.0"; - by-version."mdurl"."1.0.0" = self.buildNodePackage { - name = "mdurl-1.0.0"; - version = "1.0.0"; + self.by-version."mdurl"."1.0.1"; + by-version."mdurl"."1.0.1" = self.buildNodePackage { + name = "mdurl-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mdurl/-/mdurl-1.0.0.tgz"; - name = "mdurl-1.0.0.tgz"; - sha1 = "307f6d36dbf2777bf0c6278a7101e6f5b05cb2b3"; + url = "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz"; + name = "mdurl-1.0.1.tgz"; + sha1 = "fe85b2ec75a59037f2adfec100fd6c601761152e"; }; deps = { }; @@ -23982,15 +27618,15 @@ cpu = [ ]; }; by-spec."meat"."*" = - self.by-version."meat"."0.3.3"; - by-version."meat"."0.3.3" = self.buildNodePackage { - name = "meat-0.3.3"; - version = "0.3.3"; + self.by-version."meat"."0.3.4"; + by-version."meat"."0.3.4" = self.buildNodePackage { + name = "meat-0.3.4"; + version = "0.3.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/meat/-/meat-0.3.3.tgz"; - name = "meat-0.3.3.tgz"; - sha1 = "45e670184553efe7dda25ce6446f1e6a0fca7571"; + url = "https://registry.npmjs.org/meat/-/meat-0.3.4.tgz"; + name = "meat-0.3.4.tgz"; + sha1 = "e2b6b721014096e30de9c97114e1dd6696135d13"; }; deps = { "express-2.5.11" = self.by-version."express"."2.5.11"; @@ -24006,7 +27642,7 @@ os = [ ]; cpu = [ ]; }; - "meat" = self.by-version."meat"."0.3.3"; + "meat" = self.by-version."meat"."0.3.4"; by-spec."media-typer"."0.2.0" = self.by-version."media-typer"."0.2.0"; by-version."media-typer"."0.2.0" = self.buildNodePackage { @@ -24014,7 +27650,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/media-typer/-/media-typer-0.2.0.tgz"; + url = "https://registry.npmjs.org/media-typer/-/media-typer-0.2.0.tgz"; name = "media-typer-0.2.0.tgz"; sha1 = "d8a065213adfeaa2e76321a2b6dda36ff6335984"; }; @@ -24033,7 +27669,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; + url = "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz"; name = "media-typer-0.3.0.tgz"; sha1 = "8710d7af0aa626f8fffa1ce00168545263255748"; }; @@ -24052,7 +27688,7 @@ version = "0.10.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/memdown/-/memdown-0.10.2.tgz"; + url = "https://registry.npmjs.org/memdown/-/memdown-0.10.2.tgz"; name = "memdown-0.10.2.tgz"; sha1 = "a15ed0b6a8f216848d80a75c0fe8dd0bad89b608"; }; @@ -24067,32 +27703,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."memoizee"."~0.3.8" = - self.by-version."memoizee"."0.3.8"; - by-version."memoizee"."0.3.8" = self.buildNodePackage { - name = "memoizee-0.3.8"; - version = "0.3.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/memoizee/-/memoizee-0.3.8.tgz"; - name = "memoizee-0.3.8.tgz"; - sha1 = "b5faf419f02fafe3c2cc1cf5d3907c210fc7efdc"; - }; - deps = { - "d-0.1.1" = self.by-version."d"."0.1.1"; - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - "es6-weak-map-0.1.4" = self.by-version."es6-weak-map"."0.1.4"; - "event-emitter-0.3.3" = self.by-version."event-emitter"."0.3.3"; - "lru-queue-0.1.0" = self.by-version."lru-queue"."0.1.0"; - "next-tick-0.2.2" = self.by-version."next-tick"."0.2.2"; - "timers-ext-0.1.0" = self.by-version."timers-ext"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."memory-fs"."^0.2.0" = self.by-version."memory-fs"."0.2.0"; by-version."memory-fs"."0.2.0" = self.buildNodePackage { @@ -24100,7 +27710,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz"; + url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.2.0.tgz"; name = "memory-fs-0.2.0.tgz"; sha1 = "f2bb25368bc121e391c2520de92969caee0a0290"; }; @@ -24112,20 +27722,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."memory-fs"."~0.2.0" = - self.by-version."memory-fs"."0.2.0"; - by-spec."memwatch"."^0.2.2" = - self.by-version."memwatch"."0.2.2"; - by-version."memwatch"."0.2.2" = self.buildNodePackage { - name = "memwatch-0.2.2"; - version = "0.2.2"; + by-spec."memory-fs"."^0.3.0" = + self.by-version."memory-fs"."0.3.0"; + by-version."memory-fs"."0.3.0" = self.buildNodePackage { + name = "memory-fs-0.3.0"; + version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/memwatch/-/memwatch-0.2.2.tgz"; - name = "memwatch-0.2.2.tgz"; - sha1 = "779e8cd982532b6221b6ed1c1269098bee16f92c"; + url = "https://registry.npmjs.org/memory-fs/-/memory-fs-0.3.0.tgz"; + name = "memory-fs-0.3.0.tgz"; + sha1 = "7bcc6b629e3a43e871d7e29aca6ae8a7f15cbb20"; }; deps = { + "errno-0.1.4" = self.by-version."errno"."0.1.4"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -24133,22 +27743,55 @@ os = [ ]; cpu = [ ]; }; - by-spec."meow"."*" = - self.by-version."meow"."3.1.0"; - by-version."meow"."3.1.0" = self.buildNodePackage { - name = "meow-3.1.0"; - version = "3.1.0"; + by-spec."memory-fs"."~0.3.0" = + self.by-version."memory-fs"."0.3.0"; + by-spec."meow"."^3.1.0" = + self.by-version."meow"."3.7.0"; + by-version."meow"."3.7.0" = self.buildNodePackage { + name = "meow-3.7.0"; + version = "3.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/meow/-/meow-3.1.0.tgz"; - name = "meow-3.1.0.tgz"; - sha1 = "5974708a0fe0dcbf27e0e6a49120b4c5e82c3cea"; + url = "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; + name = "meow-3.7.0.tgz"; + sha1 = "72cb668b425228290abbfa856892587308a801fb"; + }; + deps = { + "camelcase-keys-2.1.0" = self.by-version."camelcase-keys"."2.1.0"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "loud-rejection-1.3.0" = self.by-version."loud-rejection"."1.3.0"; + "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "read-pkg-up-1.0.1" = self.by-version."read-pkg-up"."1.0.1"; + "redent-1.0.0" = self.by-version."redent"."1.0.0"; + "trim-newlines-1.0.0" = self.by-version."trim-newlines"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."meow"."^3.3.0" = + self.by-version."meow"."3.7.0"; + by-spec."meow"."~2.0.0" = + self.by-version."meow"."2.0.0"; + by-version."meow"."2.0.0" = self.buildNodePackage { + name = "meow-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/meow/-/meow-2.0.0.tgz"; + name = "meow-2.0.0.tgz"; + sha1 = "8f530a8ecf5d40d3f4b4df93c3472900fba2a8f1"; }; deps = { "camelcase-keys-1.0.0" = self.by-version."camelcase-keys"."1.0.0"; - "indent-string-1.2.1" = self.by-version."indent-string"."1.2.1"; - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - "object-assign-2.0.0" = self.by-version."object-assign"."2.0.0"; + "indent-string-1.2.2" = self.by-version."indent-string"."1.2.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "object-assign-1.0.0" = self.by-version."object-assign"."1.0.0"; }; optionalDependencies = { }; @@ -24156,10 +27799,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."meow"."^3.0.0" = - self.by-version."meow"."3.1.0"; - by-spec."meow"."^3.1.0" = - self.by-version."meow"."3.1.0"; by-spec."merge-descriptors"."0.0.2" = self.by-version."merge-descriptors"."0.0.2"; by-version."merge-descriptors"."0.0.2" = self.buildNodePackage { @@ -24167,7 +27806,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.2.tgz"; + url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-0.0.2.tgz"; name = "merge-descriptors-0.0.2.tgz"; sha1 = "c36a52a781437513c57275f39dd9d317514ac8c7"; }; @@ -24186,7 +27825,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.0.tgz"; + url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.0.tgz"; name = "merge-descriptors-1.0.0.tgz"; sha1 = "2169cf7538e1b0cc87fb88e1502d8474bbf79864"; }; @@ -24198,6 +27837,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."merge-descriptors"."1.0.1" = + self.by-version."merge-descriptors"."1.0.1"; + by-version."merge-descriptors"."1.0.1" = self.buildNodePackage { + name = "merge-descriptors-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; + name = "merge-descriptors-1.0.1.tgz"; + sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."method-override"."1.0.0" = self.by-version."method-override"."1.0.0"; by-version."method-override"."1.0.0" = self.buildNodePackage { @@ -24205,12 +27863,12 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/method-override/-/method-override-1.0.0.tgz"; + url = "https://registry.npmjs.org/method-override/-/method-override-1.0.0.tgz"; name = "method-override-1.0.0.tgz"; sha1 = "9e5bfbd80f3b9e043801dd3fe60bbab0f15b5f61"; }; deps = { - "methods-1.1.1" = self.by-version."methods"."1.1.1"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; }; optionalDependencies = { }; @@ -24225,7 +27883,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/method-override/-/method-override-1.0.2.tgz"; + url = "https://registry.npmjs.org/method-override/-/method-override-1.0.2.tgz"; name = "method-override-1.0.2.tgz"; sha1 = "d6f80275db23a23380028c9215b97470be01d689"; }; @@ -24238,45 +27896,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."method-override"."~2.2.0" = - self.by-version."method-override"."2.2.0"; - by-version."method-override"."2.2.0" = self.buildNodePackage { - name = "method-override-2.2.0"; - version = "2.2.0"; + by-spec."method-override"."~2.3.5" = + self.by-version."method-override"."2.3.5"; + by-version."method-override"."2.3.5" = self.buildNodePackage { + name = "method-override-2.3.5"; + version = "2.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/method-override/-/method-override-2.2.0.tgz"; - name = "method-override-2.2.0.tgz"; - sha1 = "177e852b6add3b4f9177033a9446b01e7801a0c0"; + url = "https://registry.npmjs.org/method-override/-/method-override-2.3.5.tgz"; + name = "method-override-2.3.5.tgz"; + sha1 = "2cd5cdbff00c3673d7ae345119a812a5d95b8c8e"; }; deps = { - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "methods-1.1.0" = self.by-version."methods"."1.1.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."method-override"."~2.3.2" = - self.by-version."method-override"."2.3.2"; - by-version."method-override"."2.3.2" = self.buildNodePackage { - name = "method-override-2.3.2"; - version = "2.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/method-override/-/method-override-2.3.2.tgz"; - name = "method-override-2.3.2.tgz"; - sha1 = "f2433fb27b6c087efb8812628727fb8cfd93a793"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "methods-1.1.1" = self.by-version."methods"."1.1.1"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "vary-1.0.0" = self.by-version."vary"."1.0.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "vary-1.0.1" = self.by-version."vary"."1.0.1"; }; optionalDependencies = { }; @@ -24285,15 +27920,15 @@ cpu = [ ]; }; by-spec."methods"."*" = - self.by-version."methods"."1.1.1"; - by-version."methods"."1.1.1" = self.buildNodePackage { - name = "methods-1.1.1"; - version = "1.1.1"; + self.by-version."methods"."1.1.2"; + by-version."methods"."1.1.2" = self.buildNodePackage { + name = "methods-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-1.1.1.tgz"; - name = "methods-1.1.1.tgz"; - sha1 = "17ea6366066d00c58e375b8ec7dfd0453c89822a"; + url = "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz"; + name = "methods-1.1.2.tgz"; + sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; }; deps = { }; @@ -24310,7 +27945,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-0.0.1.tgz"; + url = "https://registry.npmjs.org/methods/-/methods-0.0.1.tgz"; name = "methods-0.0.1.tgz"; sha1 = "277c90f8bef39709645a8371c51c3b6c648e068c"; }; @@ -24329,7 +27964,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-0.1.0.tgz"; + url = "https://registry.npmjs.org/methods/-/methods-0.1.0.tgz"; name = "methods-0.1.0.tgz"; sha1 = "335d429eefd21b7bacf2e9c922a8d2bd14a30e4f"; }; @@ -24348,7 +27983,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-1.0.0.tgz"; + url = "https://registry.npmjs.org/methods/-/methods-1.0.0.tgz"; name = "methods-1.0.0.tgz"; sha1 = "9a73d86375dfcef26ef61ca3e4b8a2e2538a80e3"; }; @@ -24367,7 +28002,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-1.0.1.tgz"; + url = "https://registry.npmjs.org/methods/-/methods-1.0.1.tgz"; name = "methods-1.0.1.tgz"; sha1 = "75bc91943dffd7da037cf3eeb0ed73a0037cd14b"; }; @@ -24386,7 +28021,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/methods/-/methods-1.1.0.tgz"; + url = "https://registry.npmjs.org/methods/-/methods-1.1.0.tgz"; name = "methods-1.1.0.tgz"; sha1 = "5dca4ee12df52ff3b056145986a8f01cbc86436f"; }; @@ -24398,10 +28033,10 @@ os = [ ]; cpu = [ ]; }; - by-spec."methods"."1.x" = - self.by-version."methods"."1.1.1"; by-spec."methods"."~1.1.1" = - self.by-version."methods"."1.1.1"; + self.by-version."methods"."1.1.2"; + by-spec."methods"."~1.1.2" = + self.by-version."methods"."1.1.2"; by-spec."microee"."0.0.2" = self.by-version."microee"."0.0.2"; by-version."microee"."0.0.2" = self.buildNodePackage { @@ -24409,7 +28044,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/microee/-/microee-0.0.2.tgz"; + url = "https://registry.npmjs.org/microee/-/microee-0.0.2.tgz"; name = "microee-0.0.2.tgz"; sha1 = "72e80d477075e5e799470f5defea96d1dd121587"; }; @@ -24421,28 +28056,31 @@ os = [ ]; cpu = [ ]; }; - by-spec."micromatch"."^2.1.0" = - self.by-version."micromatch"."2.1.6"; - by-version."micromatch"."2.1.6" = self.buildNodePackage { - name = "micromatch-2.1.6"; - version = "2.1.6"; + by-spec."micromatch"."^2.1.5" = + self.by-version."micromatch"."2.3.7"; + by-version."micromatch"."2.3.7" = self.buildNodePackage { + name = "micromatch-2.3.7"; + version = "2.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/micromatch/-/micromatch-2.1.6.tgz"; - name = "micromatch-2.1.6.tgz"; - sha1 = "51a65a9dcbfb92113292a071e04da35a81e9050e"; + url = "https://registry.npmjs.org/micromatch/-/micromatch-2.3.7.tgz"; + name = "micromatch-2.3.7.tgz"; + sha1 = "2f2e85ef46140dbea6cb55e739b6b11b30eaa509"; }; deps = { - "arr-diff-1.0.1" = self.by-version."arr-diff"."1.0.1"; - "braces-1.8.0" = self.by-version."braces"."1.8.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "expand-brackets-0.1.1" = self.by-version."expand-brackets"."0.1.1"; + "arr-diff-2.0.0" = self.by-version."arr-diff"."2.0.0"; + "array-unique-0.2.1" = self.by-version."array-unique"."0.2.1"; + "braces-1.8.3" = self.by-version."braces"."1.8.3"; + "expand-brackets-0.1.5" = self.by-version."expand-brackets"."0.1.5"; + "extglob-0.3.2" = self.by-version."extglob"."0.3.2"; "filename-regex-2.0.0" = self.by-version."filename-regex"."2.0.0"; - "is-glob-1.1.3" = self.by-version."is-glob"."1.1.3"; - "kind-of-1.1.0" = self.by-version."kind-of"."1.1.0"; - "object.omit-0.2.1" = self.by-version."object.omit"."0.2.1"; - "parse-glob-3.0.1" = self.by-version."parse-glob"."3.0.1"; - "regex-cache-0.4.2" = self.by-version."regex-cache"."0.4.2"; + "is-extglob-1.0.0" = self.by-version."is-extglob"."1.0.0"; + "is-glob-2.0.1" = self.by-version."is-glob"."2.0.1"; + "kind-of-3.0.2" = self.by-version."kind-of"."3.0.2"; + "normalize-path-2.0.1" = self.by-version."normalize-path"."2.0.1"; + "object.omit-2.0.0" = self.by-version."object.omit"."2.0.0"; + "parse-glob-3.0.4" = self.by-version."parse-glob"."3.0.4"; + "regex-cache-0.4.3" = self.by-version."regex-cache"."0.4.3"; }; optionalDependencies = { }; @@ -24450,19 +28088,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."miller-rabin"."^1.1.2" = - self.by-version."miller-rabin"."1.1.5"; - by-version."miller-rabin"."1.1.5" = self.buildNodePackage { - name = "miller-rabin-1.1.5"; - version = "1.1.5"; - bin = false; + by-spec."miller-rabin"."^4.0.0" = + self.by-version."miller-rabin"."4.0.0"; + by-version."miller-rabin"."4.0.0" = self.buildNodePackage { + name = "miller-rabin-4.0.0"; + version = "4.0.0"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/miller-rabin/-/miller-rabin-1.1.5.tgz"; - name = "miller-rabin-1.1.5.tgz"; - sha1 = "41f506bed994b97e7c184a658ae107dad980526e"; + url = "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.0.tgz"; + name = "miller-rabin-4.0.0.tgz"; + sha1 = "4a62fb1d42933c05583982f4c716f6fb9e6c6d3d"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; "brorand-1.0.5" = self.by-version."brorand"."1.0.5"; }; optionalDependencies = { @@ -24478,7 +28116,7 @@ version = "1.3.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz"; name = "mime-1.3.4.tgz"; sha1 = "115f9e3b6b3daf2959983cb38f149a2d40eb5d53"; }; @@ -24497,7 +28135,7 @@ version = "1.2.11"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; name = "mime-1.2.11.tgz"; sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10"; }; @@ -24516,7 +28154,7 @@ version = "1.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.4.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.4.tgz"; name = "mime-1.2.4.tgz"; sha1 = "11b5fdaf29c2509255176b80ad520294f5de92b7"; }; @@ -24535,7 +28173,7 @@ version = "1.2.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime/-/mime-1.2.6.tgz"; + url = "https://registry.npmjs.org/mime/-/mime-1.2.6.tgz"; name = "mime-1.2.6.tgz"; sha1 = "b1f86c768c025fa87b48075f1709f28aeaf20365"; }; @@ -24559,6 +28197,8 @@ self.by-version."mime"."1.3.4"; by-spec."mime"."^1.2.11" = self.by-version."mime"."1.3.4"; + by-spec."mime"."^1.3.4" = + self.by-version."mime"."1.3.4"; by-spec."mime"."~1.2.11" = self.by-version."mime"."1.2.11"; by-spec."mime"."~1.2.2" = @@ -24567,16 +28207,16 @@ self.by-version."mime"."1.2.11"; by-spec."mime"."~1.2.9" = self.by-version."mime"."1.2.11"; - by-spec."mime-db".">= 1.1.2 < 2" = - self.by-version."mime-db"."1.9.1"; - by-version."mime-db"."1.9.1" = self.buildNodePackage { - name = "mime-db-1.9.1"; - version = "1.9.1"; + by-spec."mime-db".">= 1.21.0 < 2" = + self.by-version."mime-db"."1.22.0"; + by-version."mime-db"."1.22.0" = self.buildNodePackage { + name = "mime-db-1.22.0"; + version = "1.22.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.9.1.tgz"; - name = "mime-db-1.9.1.tgz"; - sha1 = "1431049a71791482c29f37bafc8ea2cb3a6dd3e8"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"; + name = "mime-db-1.22.0.tgz"; + sha1 = "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a"; }; deps = { }; @@ -24586,16 +28226,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime-db"."~1.8.0" = - self.by-version."mime-db"."1.8.0"; - by-version."mime-db"."1.8.0" = self.buildNodePackage { - name = "mime-db-1.8.0"; - version = "1.8.0"; + by-spec."mime-db"."~1.12.0" = + self.by-version."mime-db"."1.12.0"; + by-version."mime-db"."1.12.0" = self.buildNodePackage { + name = "mime-db-1.12.0"; + version = "1.12.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.8.0.tgz"; - name = "mime-db-1.8.0.tgz"; - sha1 = "82a9b385f22b0f5954dec4d445faba0722c4ad25"; + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz"; + name = "mime-db-1.12.0.tgz"; + sha1 = "3d0c63180f458eb10d325aaa37d7c58ae312e9d7"; }; deps = { }; @@ -24605,19 +28245,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."mime-types"."^2.0.3" = - self.by-version."mime-types"."2.0.10"; - by-version."mime-types"."2.0.10" = self.buildNodePackage { - name = "mime-types-2.0.10"; - version = "2.0.10"; + by-spec."mime-db"."~1.22.0" = + self.by-version."mime-db"."1.22.0"; + by-spec."mime-types"."^2.1.10" = + self.by-version."mime-types"."2.1.10"; + by-version."mime-types"."2.1.10" = self.buildNodePackage { + name = "mime-types-2.1.10"; + version = "2.1.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.0.10.tgz"; - name = "mime-types-2.0.10.tgz"; - sha1 = "eacd81bb73cab2a77447549a078d4f2018c67b4d"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"; + name = "mime-types-2.1.10.tgz"; + sha1 = "b93c7cb4362e16d41072a7e54538fb4d43070837"; }; deps = { - "mime-db-1.8.0" = self.by-version."mime-db"."1.8.0"; + "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; }; optionalDependencies = { }; @@ -24625,6 +28267,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."mime-types"."^2.1.7" = + self.by-version."mime-types"."2.1.10"; by-spec."mime-types"."~1.0.0" = self.by-version."mime-types"."1.0.2"; by-version."mime-types"."1.0.2" = self.buildNodePackage { @@ -24632,7 +28276,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-1.0.2.tgz"; + url = "https://registry.npmjs.org/mime-types/-/mime-types-1.0.2.tgz"; name = "mime-types-1.0.2.tgz"; sha1 = "995ae1392ab8affcbfcb2641dd054e943c0d5dce"; }; @@ -24647,15 +28291,41 @@ by-spec."mime-types"."~1.0.1" = self.by-version."mime-types"."1.0.2"; by-spec."mime-types"."~2.0.1" = - self.by-version."mime-types"."2.0.10"; - by-spec."mime-types"."~2.0.10" = - self.by-version."mime-types"."2.0.10"; + self.by-version."mime-types"."2.0.14"; + by-version."mime-types"."2.0.14" = self.buildNodePackage { + name = "mime-types-2.0.14"; + version = "2.0.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz"; + name = "mime-types-2.0.14.tgz"; + sha1 = "310e159db23e077f8bb22b748dabfa4957140aa6"; + }; + deps = { + "mime-db-1.12.0" = self.by-version."mime-db"."1.12.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."mime-types"."~2.0.3" = - self.by-version."mime-types"."2.0.10"; + self.by-version."mime-types"."2.0.14"; by-spec."mime-types"."~2.0.4" = - self.by-version."mime-types"."2.0.10"; + self.by-version."mime-types"."2.0.14"; by-spec."mime-types"."~2.0.9" = - self.by-version."mime-types"."2.0.10"; + self.by-version."mime-types"."2.0.14"; + by-spec."mime-types"."~2.1.10" = + self.by-version."mime-types"."2.1.10"; + by-spec."mime-types"."~2.1.2" = + self.by-version."mime-types"."2.1.10"; + by-spec."mime-types"."~2.1.6" = + self.by-version."mime-types"."2.1.10"; + by-spec."mime-types"."~2.1.7" = + self.by-version."mime-types"."2.1.10"; + by-spec."mime-types"."~2.1.9" = + self.by-version."mime-types"."2.1.10"; by-spec."mimelib"."~0.2.15" = self.by-version."mimelib"."0.2.19"; by-version."mimelib"."0.2.19" = self.buildNodePackage { @@ -24663,12 +28333,12 @@ version = "0.2.19"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mimelib/-/mimelib-0.2.19.tgz"; + url = "https://registry.npmjs.org/mimelib/-/mimelib-0.2.19.tgz"; name = "mimelib-0.2.19.tgz"; sha1 = "37ec90a6ac7d00954851d0b2c31618f0a49da0ee"; }; deps = { - "encoding-0.1.11" = self.by-version."encoding"."0.1.11"; + "encoding-0.1.12" = self.by-version."encoding"."0.1.12"; "addressparser-0.3.2" = self.by-version."addressparser"."0.3.2"; }; optionalDependencies = { @@ -24677,35 +28347,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mine"."~0.0.1" = - self.by-version."mine"."0.0.2"; - by-version."mine"."0.0.2" = self.buildNodePackage { - name = "mine-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mine/-/mine-0.0.2.tgz"; - name = "mine-0.0.2.tgz"; - sha1 = "77c2d327f8357352e69fc3e618f7476539fa0c40"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."minilog"."~2.0.2" = - self.by-version."minilog"."2.0.7"; - by-version."minilog"."2.0.7" = self.buildNodePackage { - name = "minilog-2.0.7"; - version = "2.0.7"; + self.by-version."minilog"."2.0.8"; + by-version."minilog"."2.0.8" = self.buildNodePackage { + name = "minilog-2.0.8"; + version = "2.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minilog/-/minilog-2.0.7.tgz"; - name = "minilog-2.0.7.tgz"; - sha1 = "4f6d258a5e5fbe30afaccc641c2a5c3b726d3dc5"; + url = "https://registry.npmjs.org/minilog/-/minilog-2.0.8.tgz"; + name = "minilog-2.0.8.tgz"; + sha1 = "21ffdc429be2b50cb361df990a40a7731288e935"; }; deps = { "microee-0.0.2" = self.by-version."microee"."0.0.2"; @@ -24723,7 +28374,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz"; + url = "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.0.tgz"; name = "minimalistic-assert-1.0.0.tgz"; sha1 = "702be2dda6b37f4836bcb3f5db56641b64a1d3d3"; }; @@ -24735,20 +28386,40 @@ os = [ ]; cpu = [ ]; }; - by-spec."minimatch"."0" = - self.by-version."minimatch"."0.4.0"; - by-version."minimatch"."0.4.0" = self.buildNodePackage { - name = "minimatch-0.4.0"; - version = "0.4.0"; + by-spec."minimatch"."0.0.x" = + self.by-version."minimatch"."0.0.5"; + by-version."minimatch"."0.0.5" = self.buildNodePackage { + name = "minimatch-0.0.5"; + version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-0.4.0.tgz"; - name = "minimatch-0.4.0.tgz"; - sha1 = "bd2c7d060d2c8c8fd7cde7f1f2ed2d5b270fdb1b"; + url = "https://registry.npmjs.org/minimatch/-/minimatch-0.0.5.tgz"; + name = "minimatch-0.0.5.tgz"; + sha1 = "96bb490bbd3ba6836bbfac111adf75301b1584de"; }; deps = { - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "sigmund-1.0.0" = self.by-version."sigmund"."1.0.0"; + "lru-cache-1.0.6" = self.by-version."lru-cache"."1.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."minimatch"."0.2" = + self.by-version."minimatch"."0.2.14"; + by-version."minimatch"."0.2.14" = self.buildNodePackage { + name = "minimatch-0.2.14"; + version = "0.2.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz"; + name = "minimatch-0.2.14.tgz"; + sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a"; + }; + deps = { + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "sigmund-1.0.1" = self.by-version."sigmund"."1.0.1"; }; optionalDependencies = { }; @@ -24763,13 +28434,13 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz"; + url = "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz"; name = "minimatch-0.3.0.tgz"; sha1 = "275d8edaac4f1bb3326472089e7949c8394699dd"; }; deps = { - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "sigmund-1.0.0" = self.by-version."sigmund"."1.0.0"; + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "sigmund-1.0.1" = self.by-version."sigmund"."1.0.1"; }; optionalDependencies = { }; @@ -24777,8 +28448,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."minimatch"."0.x" = - self.by-version."minimatch"."0.4.0"; by-spec."minimatch"."1" = self.by-version."minimatch"."1.0.0"; by-version."minimatch"."1.0.0" = self.buildNodePackage { @@ -24786,13 +28455,33 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz"; + url = "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz"; name = "minimatch-1.0.0.tgz"; sha1 = "e0dd2120b49e1b724ce8d714c520822a9438576d"; }; deps = { - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "sigmund-1.0.0" = self.by-version."sigmund"."1.0.0"; + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "sigmund-1.0.1" = self.by-version."sigmund"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."minimatch"."2 || 3" = + self.by-version."minimatch"."3.0.0"; + by-version."minimatch"."3.0.0" = self.buildNodePackage { + name = "minimatch-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz"; + name = "minimatch-3.0.0.tgz"; + sha1 = "5236157a51e4f004c177fb3c527ff7dd78f0ef83"; + }; + deps = { + "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; }; optionalDependencies = { }; @@ -24801,18 +28490,18 @@ cpu = [ ]; }; by-spec."minimatch"."2.0.x" = - self.by-version."minimatch"."2.0.4"; - by-version."minimatch"."2.0.4" = self.buildNodePackage { - name = "minimatch-2.0.4"; - version = "2.0.4"; + self.by-version."minimatch"."2.0.10"; + by-version."minimatch"."2.0.10" = self.buildNodePackage { + name = "minimatch-2.0.10"; + version = "2.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-2.0.4.tgz"; - name = "minimatch-2.0.4.tgz"; - sha1 = "83bea115803e7a097a78022427287edb762fafed"; + url = "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz"; + name = "minimatch-2.0.10.tgz"; + sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"; }; deps = { - "brace-expansion-1.1.0" = self.by-version."brace-expansion"."1.1.0"; + "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; }; optionalDependencies = { }; @@ -24820,49 +28509,28 @@ os = [ ]; cpu = [ ]; }; + by-spec."minimatch"."2.x" = + self.by-version."minimatch"."2.0.10"; by-spec."minimatch".">=0.2.14 <2.0.0-0" = self.by-version."minimatch"."1.0.0"; - by-spec."minimatch".">=0.2.4" = - self.by-version."minimatch"."2.0.4"; by-spec."minimatch"."^1.0.0" = self.by-version."minimatch"."1.0.0"; by-spec."minimatch"."^2.0.1" = - self.by-version."minimatch"."2.0.4"; - by-spec."minimatch"."~0.2" = - self.by-version."minimatch"."0.2.14"; - by-version."minimatch"."0.2.14" = self.buildNodePackage { - name = "minimatch-0.2.14"; - version = "0.2.14"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz"; - name = "minimatch-0.2.14.tgz"; - sha1 = "c74e780574f63c6f9a090e90efbe6ef53a6a756a"; - }; - deps = { - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "sigmund-1.0.0" = self.by-version."sigmund"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."minimatch"."~0.2.0" = - self.by-version."minimatch"."0.2.14"; + self.by-version."minimatch"."2.0.10"; + by-spec."minimatch"."^2.0.10" = + self.by-version."minimatch"."2.0.10"; + by-spec."minimatch"."^3.0.0" = + self.by-version."minimatch"."3.0.0"; by-spec."minimatch"."~0.2.11" = self.by-version."minimatch"."0.2.14"; by-spec."minimatch"."~0.2.12" = self.by-version."minimatch"."0.2.14"; by-spec."minimatch"."~0.2.9" = self.by-version."minimatch"."0.2.14"; - by-spec."minimatch"."~0.3.0" = - self.by-version."minimatch"."0.3.0"; - by-spec."minimatch"."~1.0.0" = - self.by-version."minimatch"."1.0.0"; - by-spec."minimatch"."~2.0.4" = - self.by-version."minimatch"."2.0.4"; + by-spec."minimatch"."~2.0.0" = + self.by-version."minimatch"."2.0.10"; + by-spec."minimatch"."~3.0.0" = + self.by-version."minimatch"."3.0.0"; by-spec."minimist"."0.0.8" = self.by-version."minimist"."0.0.8"; by-version."minimist"."0.0.8" = self.buildNodePackage { @@ -24870,7 +28538,7 @@ version = "0.0.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; name = "minimist-0.0.8.tgz"; sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; }; @@ -24882,16 +28550,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."minimist"."1.1.0" = - self.by-version."minimist"."1.1.0"; - by-version."minimist"."1.1.0" = self.buildNodePackage { - name = "minimist-1.1.0"; - version = "1.1.0"; + by-spec."minimist"."1.2.0" = + self.by-version."minimist"."1.2.0"; + by-version."minimist"."1.2.0" = self.buildNodePackage { + name = "minimist-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-1.1.0.tgz"; - name = "minimist-1.1.0.tgz"; - sha1 = "cdf225e8898f840a258ded44fc91776770afdc93"; + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; + name = "minimist-1.2.0.tgz"; + sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; }; deps = { }; @@ -24908,7 +28576,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.2.0.tgz"; name = "minimist-0.2.0.tgz"; sha1 = "4dffe525dae2b864c66c2e23c6271d7afdecefce"; }; @@ -24921,24 +28589,13 @@ cpu = [ ]; }; by-spec."minimist"."^1.1.0" = - self.by-version."minimist"."1.1.1"; - by-version."minimist"."1.1.1" = self.buildNodePackage { - name = "minimist-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz"; - name = "minimist-1.1.1.tgz"; - sha1 = "1bc2bc71658cdca5712475684363615b0b4f695b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."minimist"."1.2.0"; + by-spec."minimist"."^1.1.1" = + self.by-version."minimist"."1.2.0"; + by-spec."minimist"."^1.1.3" = + self.by-version."minimist"."1.2.0"; + by-spec."minimist"."^1.2.0" = + self.by-version."minimist"."1.2.0"; by-spec."minimist"."~0.0.1" = self.by-version."minimist"."0.0.10"; by-version."minimist"."0.0.10" = self.buildNodePackage { @@ -24946,7 +28603,7 @@ version = "0.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; + url = "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz"; name = "minimist-0.0.10.tgz"; sha1 = "de3f98543dbf96082be48ad1a0c7cda836301dcf"; }; @@ -24958,14 +28615,8 @@ os = [ ]; cpu = [ ]; }; - by-spec."minimist"."~0.0.5" = - self.by-version."minimist"."0.0.10"; by-spec."minimist"."~0.0.7" = self.by-version."minimist"."0.0.10"; - by-spec."minimist"."~0.2.0" = - self.by-version."minimist"."0.2.0"; - by-spec."minimist"."~1.1.0" = - self.by-version."minimist"."1.1.1"; by-spec."ministyle"."~0.1.3" = self.by-version."ministyle"."0.1.4"; by-version."ministyle"."0.1.4" = self.buildNodePackage { @@ -24973,7 +28624,7 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ministyle/-/ministyle-0.1.4.tgz"; + url = "https://registry.npmjs.org/ministyle/-/ministyle-0.1.4.tgz"; name = "ministyle-0.1.4.tgz"; sha1 = "b10481eb16aa8f7b6cd983817393a44da0e5a0cd"; }; @@ -24992,7 +28643,7 @@ version = "0.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/miniwrite/-/miniwrite-0.1.4.tgz"; + url = "https://registry.npmjs.org/miniwrite/-/miniwrite-0.1.4.tgz"; name = "miniwrite-0.1.4.tgz"; sha1 = "72f02385c0ac37d542efe27dc6764b31908725ce"; }; @@ -25006,15 +28657,15 @@ cpu = [ ]; }; by-spec."mkdirp"."*" = - self.by-version."mkdirp"."0.5.0"; - by-version."mkdirp"."0.5.0" = self.buildNodePackage { - name = "mkdirp-0.5.0"; - version = "0.5.0"; + self.by-version."mkdirp"."0.5.1"; + by-version."mkdirp"."0.5.1" = self.buildNodePackage { + name = "mkdirp-0.5.1"; + version = "0.5.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz"; - name = "mkdirp-0.5.0.tgz"; - sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; + name = "mkdirp-0.5.1.tgz"; + sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; }; deps = { "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; @@ -25025,9 +28676,7 @@ os = [ ]; cpu = [ ]; }; - "mkdirp" = self.by-version."mkdirp"."0.5.0"; - by-spec."mkdirp"."0" = - self.by-version."mkdirp"."0.5.0"; + "mkdirp" = self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."0.0.x" = self.by-version."mkdirp"."0.0.7"; by-version."mkdirp"."0.0.7" = self.buildNodePackage { @@ -25035,7 +28684,7 @@ version = "0.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.0.7.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.0.7.tgz"; name = "mkdirp-0.0.7.tgz"; sha1 = "d89b4f0e4c3e5e5ca54235931675e094fe1a5072"; }; @@ -25054,7 +28703,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz"; name = "mkdirp-0.3.0.tgz"; sha1 = "1bbf5ab1ba827af23575143490426455f481fe1e"; }; @@ -25073,7 +28722,7 @@ version = "0.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz"; name = "mkdirp-0.3.5.tgz"; sha1 = "de3e5f8961c88c787ee1368df849ac4413eca8d7"; }; @@ -25094,7 +28743,7 @@ version = "0.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.4.0.tgz"; + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.4.0.tgz"; name = "mkdirp-0.4.0.tgz"; sha1 = "291ac2a2d43a19c478662577b5be846fe83b5923"; }; @@ -25107,25 +28756,45 @@ cpu = [ ]; }; by-spec."mkdirp"."0.5" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."0.5.0" = self.by-version."mkdirp"."0.5.0"; + by-version."mkdirp"."0.5.0" = self.buildNodePackage { + name = "mkdirp-0.5.0"; + version = "0.5.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.0.tgz"; + name = "mkdirp-0.5.0.tgz"; + sha1 = "1d73076a6df986cd9344e15e71fcc05a4c9abf12"; + }; + deps = { + "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mkdirp"."0.5.1" = + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."0.5.x" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."0.x.x" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp".">=0.3.5" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp".">=0.3.5 <1.0.0-0" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp".">=0.5 0" = - self.by-version."mkdirp"."0.5.0"; + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."^0.3.5" = self.by-version."mkdirp"."0.3.5"; by-spec."mkdirp"."^0.5.0" = - self.by-version."mkdirp"."0.5.0"; - by-spec."mkdirp"."~0.3" = - self.by-version."mkdirp"."0.3.5"; + self.by-version."mkdirp"."0.5.1"; + by-spec."mkdirp"."^0.5.1" = + self.by-version."mkdirp"."0.5.1"; by-spec."mkdirp"."~0.3.3" = self.by-version."mkdirp"."0.3.5"; by-spec."mkdirp"."~0.3.4" = @@ -25133,74 +28802,30 @@ by-spec."mkdirp"."~0.3.5" = self.by-version."mkdirp"."0.3.5"; by-spec."mkdirp"."~0.5.0" = - self.by-version."mkdirp"."0.5.0"; - by-spec."mkpath"."^0.1.0" = - self.by-version."mkpath"."0.1.0"; - by-version."mkpath"."0.1.0" = self.buildNodePackage { - name = "mkpath-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mkpath/-/mkpath-0.1.0.tgz"; - name = "mkpath-0.1.0.tgz"; - sha1 = "7554a6f8d871834cc97b5462b122c4c124d6de91"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."mkdirp"."0.5.1"; + by-spec."mkdirp"."~0.5.1" = + self.by-version."mkdirp"."0.5.1"; by-spec."mocha"."*" = - self.by-version."mocha"."2.2.4"; - by-version."mocha"."2.2.4" = self.buildNodePackage { - name = "mocha-2.2.4"; - version = "2.2.4"; + self.by-version."mocha"."2.4.5"; + by-version."mocha"."2.4.5" = self.buildNodePackage { + name = "mocha-2.4.5"; + version = "2.4.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mocha/-/mocha-2.2.4.tgz"; - name = "mocha-2.2.4.tgz"; - sha1 = "192b0edc0e17e56613bc66e5fc7e81c00413a98d"; + url = "https://registry.npmjs.org/mocha/-/mocha-2.4.5.tgz"; + name = "mocha-2.4.5.tgz"; + sha1 = "151768dd2875eb51bc8295e9800026e9f2bb398f"; }; deps = { "commander-2.3.0" = self.by-version."commander"."2.3.0"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "diff-1.0.8" = self.by-version."diff"."1.0.8"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "diff-1.4.0" = self.by-version."diff"."1.4.0"; "escape-string-regexp-1.0.2" = self.by-version."escape-string-regexp"."1.0.2"; "glob-3.2.3" = self.by-version."glob"."3.2.3"; "growl-1.8.1" = self.by-version."growl"."1.8.1"; "jade-0.26.3" = self.by-version."jade"."0.26.3"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "supports-color-1.2.1" = self.by-version."supports-color"."1.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "mocha" = self.by-version."mocha"."2.2.4"; - by-spec."mocha"."~1.20.1" = - self.by-version."mocha"."1.20.1"; - by-version."mocha"."1.20.1" = self.buildNodePackage { - name = "mocha-1.20.1"; - version = "1.20.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/mocha/-/mocha-1.20.1.tgz"; - name = "mocha-1.20.1.tgz"; - sha1 = "f343832d9fe0c7d97c64fc70448f5136df9fed5b"; - }; - deps = { - "commander-2.0.0" = self.by-version."commander"."2.0.0"; - "growl-1.7.0" = self.by-version."growl"."1.7.0"; - "jade-0.26.3" = self.by-version."jade"."0.26.3"; - "diff-1.0.7" = self.by-version."diff"."1.0.7"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "glob-3.2.3" = self.by-version."glob"."3.2.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "supports-color-1.2.0" = self.by-version."supports-color"."1.2.0"; }; optionalDependencies = { }; @@ -25208,29 +28833,49 @@ os = [ ]; cpu = [ ]; }; + "mocha" = self.by-version."mocha"."2.4.5"; by-spec."mocha-phantomjs"."*" = - self.by-version."mocha-phantomjs"."3.5.3"; - by-version."mocha-phantomjs"."3.5.3" = self.buildNodePackage { - name = "mocha-phantomjs-3.5.3"; - version = "3.5.3"; + self.by-version."mocha-phantomjs"."4.0.2"; + by-version."mocha-phantomjs"."4.0.2" = self.buildNodePackage { + name = "mocha-phantomjs-4.0.2"; + version = "4.0.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mocha-phantomjs/-/mocha-phantomjs-3.5.3.tgz"; - name = "mocha-phantomjs-3.5.3.tgz"; - sha1 = "bc0e654972d883ce11367f3f011f9e88f0a8de14"; + url = "https://registry.npmjs.org/mocha-phantomjs/-/mocha-phantomjs-4.0.2.tgz"; + name = "mocha-phantomjs-4.0.2.tgz"; + sha1 = "808e43e01f3250201660c52cf441e6992d89dd9b"; }; deps = { - "mocha-1.20.1" = self.by-version."mocha"."1.20.1"; - "commander-2.0.0" = self.by-version."commander"."2.0.0"; + "phantomjs-1.9.7-15" = self.by-version."phantomjs"."1.9.7-15"; + "mocha-phantomjs-core-1.3.0" = self.by-version."mocha-phantomjs-core"."1.3.0"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; }; optionalDependencies = { }; - peerDependencies = [ - self.by-version."phantomjs"."1.9.16"]; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "mocha-phantomjs" = self.by-version."mocha-phantomjs"."4.0.2"; + by-spec."mocha-phantomjs-core"."^1.1.0" = + self.by-version."mocha-phantomjs-core"."1.3.0"; + by-version."mocha-phantomjs-core"."1.3.0" = self.buildNodePackage { + name = "mocha-phantomjs-core-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mocha-phantomjs-core/-/mocha-phantomjs-core-1.3.0.tgz"; + name = "mocha-phantomjs-core-1.3.0.tgz"; + sha1 = "fa991c9b13e3ba34fa0a0fe4c3f567da84882eb0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; os = [ ]; cpu = [ ]; }; - "mocha-phantomjs" = self.by-version."mocha-phantomjs"."3.5.3"; by-spec."mocha-unfunk-reporter"."*" = self.by-version."mocha-unfunk-reporter"."0.4.0"; by-version."mocha-unfunk-reporter"."0.4.0" = self.buildNodePackage { @@ -25238,7 +28883,7 @@ version = "0.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mocha-unfunk-reporter/-/mocha-unfunk-reporter-0.4.0.tgz"; + url = "https://registry.npmjs.org/mocha-unfunk-reporter/-/mocha-unfunk-reporter-0.4.0.tgz"; name = "mocha-unfunk-reporter-0.4.0.tgz"; sha1 = "59eda97aec6ae6e26d7af4173490a65b7b082d20"; }; @@ -25255,34 +28900,32 @@ cpu = [ ]; }; "mocha-unfunk-reporter" = self.by-version."mocha-unfunk-reporter"."0.4.0"; - by-spec."module-deps"."^3.6.3" = - self.by-version."module-deps"."3.7.6"; - by-version."module-deps"."3.7.6" = self.buildNodePackage { - name = "module-deps-3.7.6"; - version = "3.7.6"; + by-spec."module-deps"."^3.7.11" = + self.by-version."module-deps"."3.9.1"; + by-version."module-deps"."3.9.1" = self.buildNodePackage { + name = "module-deps-3.9.1"; + version = "3.9.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/module-deps/-/module-deps-3.7.6.tgz"; - name = "module-deps-3.7.6.tgz"; - sha1 = "c1e596de260a26e78b9399ec32a989cdff71c1a0"; + url = "https://registry.npmjs.org/module-deps/-/module-deps-3.9.1.tgz"; + name = "module-deps-3.9.1.tgz"; + sha1 = "ea75caf9199090d25b0d5512b5acacb96e7f87f3"; }; deps = { - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "browser-resolve-1.8.2" = self.by-version."browser-resolve"."1.8.2"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "detective-4.0.0" = self.by-version."detective"."4.0.0"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "browser-resolve-1.11.1" = self.by-version."browser-resolve"."1.11.1"; + "concat-stream-1.4.10" = self.by-version."concat-stream"."1.4.10"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; + "detective-4.3.1" = self.by-version."detective"."4.3.1"; "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimist-0.2.0" = self.by-version."minimist"."0.2.0"; "parents-1.0.1" = self.by-version."parents"."1.0.1"; "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "resolve-1.1.6" = self.by-version."resolve"."1.1.6"; - "shallow-copy-0.0.1" = self.by-version."shallow-copy"."0.0.1"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; "stream-combiner2-1.0.2" = self.by-version."stream-combiner2"."1.0.2"; - "subarg-0.0.1" = self.by-version."subarg"."0.0.1"; - "through2-0.4.2" = self.by-version."through2"."0.4.2"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; + "through2-1.1.1" = self.by-version."through2"."1.1.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -25290,55 +28933,32 @@ os = [ ]; cpu = [ ]; }; - by-spec."module-deps"."^3.7.0" = - self.by-version."module-deps"."3.7.6"; - by-spec."module-deps"."~1.2.2" = - self.by-version."module-deps"."1.2.2"; - by-version."module-deps"."1.2.2" = self.buildNodePackage { - name = "module-deps-1.2.2"; - version = "1.2.2"; + by-spec."module-deps"."^4.0.2" = + self.by-version."module-deps"."4.0.5"; + by-version."module-deps"."4.0.5" = self.buildNodePackage { + name = "module-deps-4.0.5"; + version = "4.0.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/module-deps/-/module-deps-1.2.2.tgz"; - name = "module-deps-1.2.2.tgz"; - sha1 = "6e73959b7973af964de33a02437b76a8edfb2fc5"; + url = "https://registry.npmjs.org/module-deps/-/module-deps-4.0.5.tgz"; + name = "module-deps-4.0.5.tgz"; + sha1 = "67c5fad02e1c8720a56ec3182d624bf97d18bd9c"; }; deps = { - "through-2.3.7" = self.by-version."through"."2.3.7"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "browser-resolve-1.2.4" = self.by-version."browser-resolve"."1.2.4"; - "resolve-0.6.3" = self.by-version."resolve"."0.6.3"; - "detective-2.1.2" = self.by-version."detective"."2.1.2"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "parents-0.0.2" = self.by-version."parents"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."module-deps"."~1.4.0" = - self.by-version."module-deps"."1.4.2"; - by-version."module-deps"."1.4.2" = self.buildNodePackage { - name = "module-deps-1.4.2"; - version = "1.4.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/module-deps/-/module-deps-1.4.2.tgz"; - name = "module-deps-1.4.2.tgz"; - sha1 = "cc48c5f88a087c6d9ec1973167c2c9fee2f80314"; - }; - deps = { - "through-2.3.7" = self.by-version."through"."2.3.7"; - "JSONStream-0.7.4" = self.by-version."JSONStream"."0.7.4"; - "browser-resolve-1.2.4" = self.by-version."browser-resolve"."1.2.4"; - "resolve-0.6.3" = self.by-version."resolve"."0.6.3"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "parents-0.0.2" = self.by-version."parents"."0.0.2"; - "mine-0.0.2" = self.by-version."mine"."0.0.2"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "browser-resolve-1.11.1" = self.by-version."browser-resolve"."1.11.1"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "defined-1.0.0" = self.by-version."defined"."1.0.0"; + "detective-4.3.1" = self.by-version."detective"."4.3.1"; + "duplexer2-0.1.4" = self.by-version."duplexer2"."0.1.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "parents-1.0.1" = self.by-version."parents"."1.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; + "stream-combiner2-1.1.1" = self.by-version."stream-combiner2"."1.1.1"; + "subarg-1.0.0" = self.by-version."subarg"."1.0.0"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -25353,7 +28973,7 @@ version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.1.0.tgz"; + url = "https://registry.npmjs.org/moment/-/moment-2.1.0.tgz"; name = "moment-2.1.0.tgz"; sha1 = "1fd7b1134029a953c6ea371dbaee37598ac03567"; }; @@ -25365,16 +28985,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."moment".">= 2.1.0" = - self.by-version."moment"."2.10.2"; - by-version."moment"."2.10.2" = self.buildNodePackage { - name = "moment-2.10.2"; - version = "2.10.2"; + by-spec."moment"."2.10.6" = + self.by-version."moment"."2.10.6"; + by-version."moment"."2.10.6" = self.buildNodePackage { + name = "moment-2.10.6"; + version = "2.10.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.10.2.tgz"; - name = "moment-2.10.2.tgz"; - sha1 = "faf8c09ca82f03f94962e3b5a7239263ea50d087"; + url = "https://registry.npmjs.org/moment/-/moment-2.10.6.tgz"; + name = "moment-2.10.6.tgz"; + sha1 = "6cb21967c79cba7b0ca5e66644f173662b3efa77"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."moment"."2.x.x" = + self.by-version."moment"."2.12.0"; + by-version."moment"."2.12.0" = self.buildNodePackage { + name = "moment-2.12.0"; + version = "2.12.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/moment/-/moment-2.12.0.tgz"; + name = "moment-2.12.0.tgz"; + sha1 = "dc2560d19838d6c0731b1a6afa04675264d360d6"; }; deps = { }; @@ -25385,23 +29024,25 @@ cpu = [ ]; }; by-spec."moment".">= 2.6.0" = - self.by-version."moment"."2.10.2"; + self.by-version."moment"."2.12.0"; by-spec."moment".">=2.4.0" = - self.by-version."moment"."2.10.2"; + self.by-version."moment"."2.12.0"; by-spec."moment".">=2.5.0" = - self.by-version."moment"."2.10.2"; + self.by-version."moment"."2.12.0"; + by-spec."moment"."^2.10.6" = + self.by-version."moment"."2.12.0"; by-spec."moment"."^2.8.4" = - self.by-version."moment"."2.10.2"; - by-spec."moment"."~2.4.0" = - self.by-version."moment"."2.4.0"; - by-version."moment"."2.4.0" = self.buildNodePackage { - name = "moment-2.4.0"; - version = "2.4.0"; + self.by-version."moment"."2.12.0"; + by-spec."moment"."~2.11.2" = + self.by-version."moment"."2.11.2"; + by-version."moment"."2.11.2" = self.buildNodePackage { + name = "moment-2.11.2"; + version = "2.11.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.4.0.tgz"; - name = "moment-2.4.0.tgz"; - sha1 = "06dd8dfbbfdb53a03510080ac788163c9490e75d"; + url = "https://registry.npmjs.org/moment/-/moment-2.11.2.tgz"; + name = "moment-2.11.2.tgz"; + sha1 = "87968e5f95ac038c2e42ac959c75819cd3f52901"; }; deps = { }; @@ -25418,7 +29059,7 @@ version = "2.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.5.1.tgz"; + url = "https://registry.npmjs.org/moment/-/moment-2.5.1.tgz"; name = "moment-2.5.1.tgz"; sha1 = "7146a3900533064ca799d5e792f4e480ee0e82bc"; }; @@ -25432,18 +29073,19 @@ }; by-spec."moment"."~2.5.1" = self.by-version."moment"."2.5.1"; - by-spec."moment"."~2.9.0" = - self.by-version."moment"."2.9.0"; - by-version."moment"."2.9.0" = self.buildNodePackage { - name = "moment-2.9.0"; - version = "2.9.0"; + by-spec."moment-timezone".">=0.0.3" = + self.by-version."moment-timezone"."0.5.3"; + by-version."moment-timezone"."0.5.3" = self.buildNodePackage { + name = "moment-timezone-0.5.3"; + version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.9.0.tgz"; - name = "moment-2.9.0.tgz"; - sha1 = "77ec1175fa294f42627f10c8e6de6302c036f6d5"; + url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.3.tgz"; + name = "moment-timezone-0.5.3.tgz"; + sha1 = "34ba53bd719677975bee9d0e8ba799ad9373f082"; }; deps = { + "moment-2.12.0" = self.by-version."moment"."2.12.0"; }; optionalDependencies = { }; @@ -25451,59 +29093,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."moment-timezone"."0.0.3" = - self.by-version."moment-timezone"."0.0.3"; - by-version."moment-timezone"."0.0.3" = self.buildNodePackage { - name = "moment-timezone-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/moment-timezone/-/moment-timezone-0.0.3.tgz"; - name = "moment-timezone-0.0.3.tgz"; - sha1 = "ebbd95f9220eba1c1b5e562d078db6c7d971e7ac"; - }; - deps = { - "moment-2.10.2" = self.by-version."moment"."2.10.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."moment-timezone"."0.2.4" = - self.by-version."moment-timezone"."0.2.4"; - by-version."moment-timezone"."0.2.4" = self.buildNodePackage { - name = "moment-timezone-0.2.4"; - version = "0.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/moment-timezone/-/moment-timezone-0.2.4.tgz"; - name = "moment-timezone-0.2.4.tgz"; - sha1 = "331a9dbecf965a8fb185ee30a6ed3fe32ee93012"; - }; - deps = { - "moment-2.10.2" = self.by-version."moment"."2.10.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."moment-timezone"."^0.3.0" = + by-spec."moment-timezone".">=0.3.0" = + self.by-version."moment-timezone"."0.5.3"; + by-spec."moment-timezone"."~0.3.0" = self.by-version."moment-timezone"."0.3.1"; by-version."moment-timezone"."0.3.1" = self.buildNodePackage { name = "moment-timezone-0.3.1"; version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/moment-timezone/-/moment-timezone-0.3.1.tgz"; + url = "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.3.1.tgz"; name = "moment-timezone-0.3.1.tgz"; sha1 = "3ef47856b02d53b718a10a5ec2023aa299e07bf5"; }; deps = { - "moment-2.10.2" = self.by-version."moment"."2.10.2"; + "moment-2.12.0" = self.by-version."moment"."2.12.0"; }; optionalDependencies = { }; @@ -25511,8 +29115,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."moment-timezone"."~0.3.0" = - self.by-version."moment-timezone"."0.3.1"; by-spec."mongodb"."1.2.14" = self.by-version."mongodb"."1.2.14"; by-version."mongodb"."1.2.14" = self.buildNodePackage { @@ -25520,7 +29122,7 @@ version = "1.2.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb/-/mongodb-1.2.14.tgz"; + url = "https://registry.npmjs.org/mongodb/-/mongodb-1.2.14.tgz"; name = "mongodb-1.2.14.tgz"; sha1 = "269665552066437308d0942036646e6795c3a9a3"; }; @@ -25540,7 +29142,7 @@ version = "1.3.19"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb/-/mongodb-1.3.19.tgz"; + url = "https://registry.npmjs.org/mongodb/-/mongodb-1.3.19.tgz"; name = "mongodb-1.3.19.tgz"; sha1 = "f229db24098f019d86d135aaf8a1ab5f2658b1d4"; }; @@ -25554,63 +29156,87 @@ os = [ ]; cpu = [ ]; }; - by-spec."mongodb"."1.4.12" = - self.by-version."mongodb"."1.4.12"; - by-version."mongodb"."1.4.12" = self.buildNodePackage { - name = "mongodb-1.4.12"; - version = "1.4.12"; + by-spec."mongodb"."2.0.46" = + self.by-version."mongodb"."2.0.46"; + by-version."mongodb"."2.0.46" = self.buildNodePackage { + name = "mongodb-2.0.46"; + version = "2.0.46"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb/-/mongodb-1.4.12.tgz"; - name = "mongodb-1.4.12.tgz"; - sha1 = "65cdd46ec127861e941168fdccf82bf17ad71c4d"; + url = "https://registry.npmjs.org/mongodb/-/mongodb-2.0.46.tgz"; + name = "mongodb-2.0.46.tgz"; + sha1 = "b1b857465e45e259b1e0e033698341a64cb93559"; }; deps = { - "bson-0.2.21" = self.by-version."bson"."0.2.21"; + "mongodb-core-1.2.19" = self.by-version."mongodb-core"."1.2.19"; + "readable-stream-1.0.31" = self.by-version."readable-stream"."1.0.31"; + "es6-promise-2.1.1" = self.by-version."es6-promise"."2.1.1"; }; optionalDependencies = { - "kerberos-0.0.4" = self.by-version."kerberos"."0.0.4"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."mongodb"."1.4.32" = - self.by-version."mongodb"."1.4.32"; - by-version."mongodb"."1.4.32" = self.buildNodePackage { - name = "mongodb-1.4.32"; - version = "1.4.32"; + by-spec."mongodb"."2.1.14" = + self.by-version."mongodb"."2.1.14"; + by-version."mongodb"."2.1.14" = self.buildNodePackage { + name = "mongodb-2.1.14"; + version = "2.1.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb/-/mongodb-1.4.32.tgz"; - name = "mongodb-1.4.32.tgz"; - sha1 = "23043d743e507e73e37c3eef03916af5ba0333b8"; + url = "https://registry.npmjs.org/mongodb/-/mongodb-2.1.14.tgz"; + name = "mongodb-2.1.14.tgz"; + sha1 = "d78e9d70e0966ed56aba87abd15a1f1ab9478c85"; }; deps = { - "bson-0.2.21" = self.by-version."bson"."0.2.21"; + "es6-promise-3.0.2" = self.by-version."es6-promise"."3.0.2"; + "mongodb-core-1.3.13" = self.by-version."mongodb-core"."1.3.13"; + "readable-stream-1.0.31" = self.by-version."readable-stream"."1.0.31"; }; optionalDependencies = { - "kerberos-0.0.9" = self.by-version."kerberos"."0.0.9"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; by-spec."mongodb".">= 1.2.0 <2.1.0" = - self.by-version."mongodb"."2.0.27"; - by-version."mongodb"."2.0.27" = self.buildNodePackage { - name = "mongodb-2.0.27"; - version = "2.0.27"; + self.by-version."mongodb"."2.0.55"; + by-version."mongodb"."2.0.55" = self.buildNodePackage { + name = "mongodb-2.0.55"; + version = "2.0.55"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb/-/mongodb-2.0.27.tgz"; - name = "mongodb-2.0.27.tgz"; - sha1 = "12f70e98286d0f5cfd2fc2fc2c99963e3bd408f5"; + url = "https://registry.npmjs.org/mongodb/-/mongodb-2.0.55.tgz"; + name = "mongodb-2.0.55.tgz"; + sha1 = "a09dd77259f6bba69f7dd592a011c11aa5761097"; }; deps = { - "mongodb-core-1.1.21" = self.by-version."mongodb-core"."1.1.21"; + "mongodb-core-1.2.31" = self.by-version."mongodb-core"."1.2.31"; + "readable-stream-1.0.31" = self.by-version."readable-stream"."1.0.31"; + "es6-promise-2.1.1" = self.by-version."es6-promise"."2.1.1"; + "kerberos-0.0.19" = self.by-version."kerberos"."0.0.19"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mongodb".">= 1.2.0 <2.2.0" = + self.by-version."mongodb"."2.1.16"; + by-version."mongodb"."2.1.16" = self.buildNodePackage { + name = "mongodb-2.1.16"; + version = "2.1.16"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mongodb/-/mongodb-2.1.16.tgz"; + name = "mongodb-2.1.16.tgz"; + sha1 = "8501a7465574ef4b605c46c98cd6bd57fc4968fa"; + }; + deps = { + "es6-promise-3.0.2" = self.by-version."es6-promise"."3.0.2"; + "mongodb-core-1.3.16" = self.by-version."mongodb-core"."1.3.16"; "readable-stream-1.0.31" = self.by-version."readable-stream"."1.0.31"; }; optionalDependencies = { @@ -25620,25 +29246,117 @@ cpu = [ ]; }; by-spec."mongodb"."~2.0" = - self.by-version."mongodb"."2.0.27"; - by-spec."mongodb-core"."1.1.21" = - self.by-version."mongodb-core"."1.1.21"; - by-version."mongodb-core"."1.1.21" = self.buildNodePackage { - name = "mongodb-core-1.1.21"; - version = "1.1.21"; + self.by-version."mongodb"."2.0.55"; + by-spec."mongodb-core"."1.2.19" = + self.by-version."mongodb-core"."1.2.19"; + by-version."mongodb-core"."1.2.19" = self.buildNodePackage { + name = "mongodb-core-1.2.19"; + version = "1.2.19"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongodb-core/-/mongodb-core-1.1.21.tgz"; - name = "mongodb-core-1.1.21.tgz"; - sha1 = "11c313f0474315e8a200c4dbb89b5fc6442c8f7c"; + url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-1.2.19.tgz"; + name = "mongodb-core-1.2.19.tgz"; + sha1 = "fcb35f6b6abc5c3de1f1a4a5db526b9e306f3eb7"; }; deps = { - "bson-0.3.1" = self.by-version."bson"."0.3.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "rimraf-2.2.6" = self.by-version."rimraf"."2.2.6"; + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + }; + optionalDependencies = { + "kerberos-0.0.19" = self.by-version."kerberos"."0.0.19"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mongodb-core"."1.2.31" = + self.by-version."mongodb-core"."1.2.31"; + by-version."mongodb-core"."1.2.31" = self.buildNodePackage { + name = "mongodb-core-1.2.31"; + version = "1.2.31"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-1.2.31.tgz"; + name = "mongodb-core-1.2.31.tgz"; + sha1 = "f1e6405f03d40846fdb838a702507affa3cb2c39"; + }; + deps = { + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."kerberos"."0.0.19"]; + os = [ ]; + cpu = [ ]; + }; + by-spec."mongodb-core"."1.3.13" = + self.by-version."mongodb-core"."1.3.13"; + by-version."mongodb-core"."1.3.13" = self.buildNodePackage { + name = "mongodb-core-1.3.13"; + version = "1.3.13"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-1.3.13.tgz"; + name = "mongodb-core-1.3.13.tgz"; + sha1 = "0a8e8719461ed98f36ed981ae00fa65d8b97781d"; + }; + deps = { + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + "require_optional-1.0.0" = self.by-version."require_optional"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mongodb-core"."1.3.16" = + self.by-version."mongodb-core"."1.3.16"; + by-version."mongodb-core"."1.3.16" = self.buildNodePackage { + name = "mongodb-core-1.3.16"; + version = "1.3.16"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-1.3.16.tgz"; + name = "mongodb-core-1.3.16.tgz"; + sha1 = "6f9905bc7be0c890333a011d0313e5f0e2769a3b"; + }; + deps = { + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + "require_optional-1.0.0" = self.by-version."require_optional"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mongoose"."*" = + self.by-version."mongoose"."4.4.11"; + by-version."mongoose"."4.4.11" = self.buildNodePackage { + name = "mongoose-4.4.11"; + version = "4.4.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mongoose/-/mongoose-4.4.11.tgz"; + name = "mongoose-4.4.11.tgz"; + sha1 = "ea67e1cf819d180f96dbd4e205675596d55b9d68"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + "hooks-fixed-1.1.0" = self.by-version."hooks-fixed"."1.1.0"; + "kareem-1.0.1" = self.by-version."kareem"."1.0.1"; + "mongodb-2.1.14" = self.by-version."mongodb"."2.1.14"; + "mpath-0.2.1" = self.by-version."mpath"."0.2.1"; + "mpromise-0.5.5" = self.by-version."mpromise"."0.5.5"; + "mquery-1.10.0" = self.by-version."mquery"."1.10.0"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "muri-1.1.0" = self.by-version."muri"."1.1.0"; + "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; + "sliced-1.0.1" = self.by-version."sliced"."1.0.1"; }; optionalDependencies = { - "kerberos-0.0.10" = self.by-version."kerberos"."0.0.10"; }; peerDependencies = []; os = [ ]; @@ -25651,7 +29369,7 @@ version = "3.6.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongoose/-/mongoose-3.6.7.tgz"; + url = "https://registry.npmjs.org/mongoose/-/mongoose-3.6.7.tgz"; name = "mongoose-3.6.7.tgz"; sha1 = "aa6c9f4dfb740c7721dbe734fbb97714e5ab0ebc"; }; @@ -25677,7 +29395,7 @@ version = "3.6.20"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongoose/-/mongoose-3.6.20.tgz"; + url = "https://registry.npmjs.org/mongoose/-/mongoose-3.6.20.tgz"; name = "mongoose-3.6.20.tgz"; sha1 = "47263843e6b812ea207eec104c40a36c8d215f53"; }; @@ -25698,57 +29416,30 @@ cpu = [ ]; }; "mongoose" = self.by-version."mongoose"."3.6.20"; - by-spec."mongoose"."3.8.x" = - self.by-version."mongoose"."3.8.26"; - by-version."mongoose"."3.8.26" = self.buildNodePackage { - name = "mongoose-3.8.26"; - version = "3.8.26"; + by-spec."mongoose"."4.2.3" = + self.by-version."mongoose"."4.2.3"; + by-version."mongoose"."4.2.3" = self.buildNodePackage { + name = "mongoose-4.2.3"; + version = "4.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongoose/-/mongoose-3.8.26.tgz"; - name = "mongoose-3.8.26.tgz"; - sha1 = "28ba382c9b37dd5555c06632f1d8fd1d4c5dca1f"; + url = "https://registry.npmjs.org/mongoose/-/mongoose-4.2.3.tgz"; + name = "mongoose-4.2.3.tgz"; + sha1 = "a6781998d11f7d0f18d496ee035d76bf9f6b99ed"; }; deps = { - "mongodb-1.4.32" = self.by-version."mongodb"."1.4.32"; - "hooks-0.2.1" = self.by-version."hooks"."0.2.1"; - "ms-0.1.0" = self.by-version."ms"."0.1.0"; - "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; - "muri-0.3.1" = self.by-version."muri"."0.3.1"; - "mpromise-0.4.3" = self.by-version."mpromise"."0.4.3"; - "mpath-0.1.1" = self.by-version."mpath"."0.1.1"; - "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; - "mquery-1.4.0" = self.by-version."mquery"."1.4.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mongoose"."3.9.7" = - self.by-version."mongoose"."3.9.7"; - by-version."mongoose"."3.9.7" = self.buildNodePackage { - name = "mongoose-3.9.7"; - version = "3.9.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mongoose/-/mongoose-3.9.7.tgz"; - name = "mongoose-3.9.7.tgz"; - sha1 = "b315e6ebe5cefcce3843504b791f038828048da6"; - }; - deps = { - "hooks-0.3.2" = self.by-version."hooks"."0.3.2"; - "mongodb-1.4.12" = self.by-version."mongodb"."1.4.12"; - "ms-0.1.0" = self.by-version."ms"."0.1.0"; - "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; - "muri-0.3.1" = self.by-version."muri"."0.3.1"; - "mpromise-0.5.4" = self.by-version."mpromise"."0.5.4"; - "mpath-0.1.1" = self.by-version."mpath"."0.1.1"; - "kareem-0.0.4" = self.by-version."kareem"."0.0.4"; - "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; - "mquery-1.0.0" = self.by-version."mquery"."1.0.0"; "async-0.9.0" = self.by-version."async"."0.9.0"; + "bson-0.4.23" = self.by-version."bson"."0.4.23"; + "hooks-fixed-1.1.0" = self.by-version."hooks-fixed"."1.1.0"; + "kareem-1.0.1" = self.by-version."kareem"."1.0.1"; + "mongodb-2.0.46" = self.by-version."mongodb"."2.0.46"; + "mpath-0.1.1" = self.by-version."mpath"."0.1.1"; + "mpromise-0.5.4" = self.by-version."mpromise"."0.5.4"; + "mquery-1.6.3" = self.by-version."mquery"."1.6.3"; + "ms-0.1.0" = self.by-version."ms"."0.1.0"; + "muri-1.0.0" = self.by-version."muri"."1.0.0"; + "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; + "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; }; optionalDependencies = { }; @@ -25763,7 +29454,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongoose-lifecycle/-/mongoose-lifecycle-1.0.0.tgz"; + url = "https://registry.npmjs.org/mongoose-lifecycle/-/mongoose-lifecycle-1.0.0.tgz"; name = "mongoose-lifecycle-1.0.0.tgz"; sha1 = "3bac3f3924a845d147784fc6558dee900b0151e2"; }; @@ -25776,17 +29467,18 @@ cpu = [ ]; }; by-spec."mongoose-schema-extend"."*" = - self.by-version."mongoose-schema-extend"."0.1.7"; - by-version."mongoose-schema-extend"."0.1.7" = self.buildNodePackage { - name = "mongoose-schema-extend-0.1.7"; - version = "0.1.7"; + self.by-version."mongoose-schema-extend"."0.2.2"; + by-version."mongoose-schema-extend"."0.2.2" = self.buildNodePackage { + name = "mongoose-schema-extend-0.2.2"; + version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mongoose-schema-extend/-/mongoose-schema-extend-0.1.7.tgz"; - name = "mongoose-schema-extend-0.1.7.tgz"; - sha1 = "50dc366ba63227d00c4cd3db9bb8bf95e9629910"; + url = "https://registry.npmjs.org/mongoose-schema-extend/-/mongoose-schema-extend-0.2.2.tgz"; + name = "mongoose-schema-extend-0.2.2.tgz"; + sha1 = "f63dd313c422a3871f5569e36b0d28ca1a224631"; }; deps = { + "harmony-reflect-1.4.5" = self.by-version."harmony-reflect"."1.4.5"; "owl-deepcopy-0.0.4" = self.by-version."owl-deepcopy"."0.0.4"; }; optionalDependencies = { @@ -25795,47 +29487,7 @@ os = [ ]; cpu = [ ]; }; - "mongoose-schema-extend" = self.by-version."mongoose-schema-extend"."0.1.7"; - by-spec."monocle"."1.1.50" = - self.by-version."monocle"."1.1.50"; - by-version."monocle"."1.1.50" = self.buildNodePackage { - name = "monocle-1.1.50"; - version = "1.1.50"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/monocle/-/monocle-1.1.50.tgz"; - name = "monocle-1.1.50.tgz"; - sha1 = "e21b059d99726d958371f36240c106b8a067fa7d"; - }; - deps = { - "readdirp-0.2.5" = self.by-version."readdirp"."0.2.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."monocle"."1.1.51" = - self.by-version."monocle"."1.1.51"; - by-version."monocle"."1.1.51" = self.buildNodePackage { - name = "monocle-1.1.51"; - version = "1.1.51"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/monocle/-/monocle-1.1.51.tgz"; - name = "monocle-1.1.51.tgz"; - sha1 = "22ed16e112e9b056769c5ccac920e375249d89c0"; - }; - deps = { - "readdirp-0.2.5" = self.by-version."readdirp"."0.2.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + "mongoose-schema-extend" = self.by-version."mongoose-schema-extend"."0.2.2"; by-spec."morgan"."1.0.0" = self.by-version."morgan"."1.0.0"; by-version."morgan"."1.0.0" = self.buildNodePackage { @@ -25843,7 +29495,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/morgan/-/morgan-1.0.0.tgz"; + url = "https://registry.npmjs.org/morgan/-/morgan-1.0.0.tgz"; name = "morgan-1.0.0.tgz"; sha1 = "83cf74b9f2d841901f1a9a6b8fa7a468d2e47a8d"; }; @@ -25863,7 +29515,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/morgan/-/morgan-1.2.0.tgz"; + url = "https://registry.npmjs.org/morgan/-/morgan-1.2.0.tgz"; name = "morgan-1.2.0.tgz"; sha1 = "8dc17a57599598f80cd7a7e1e3b54e72c689910d"; }; @@ -25879,104 +29531,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."morgan"."~1.3.1" = - self.by-version."morgan"."1.3.2"; - by-version."morgan"."1.3.2" = self.buildNodePackage { - name = "morgan-1.3.2"; - version = "1.3.2"; + by-spec."morgan"."~1.6.1" = + self.by-version."morgan"."1.6.1"; + by-version."morgan"."1.6.1" = self.buildNodePackage { + name = "morgan-1.6.1"; + version = "1.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/morgan/-/morgan-1.3.2.tgz"; - name = "morgan-1.3.2.tgz"; - sha1 = "ac41aa15221ee4e5f2ac843896b6918139a18efd"; + url = "https://registry.npmjs.org/morgan/-/morgan-1.6.1.tgz"; + name = "morgan-1.6.1.tgz"; + sha1 = "5fd818398c6819cba28a7cd6664f292fe1c0bbf2"; }; deps = { - "basic-auth-1.0.0" = self.by-version."basic-auth"."1.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "on-finished-2.1.0" = self.by-version."on-finished"."2.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."morgan"."~1.3.2" = - self.by-version."morgan"."1.3.2"; - by-spec."morgan"."~1.5.2" = - self.by-version."morgan"."1.5.2"; - by-version."morgan"."1.5.2" = self.buildNodePackage { - name = "morgan-1.5.2"; - version = "1.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/morgan/-/morgan-1.5.2.tgz"; - name = "morgan-1.5.2.tgz"; - sha1 = "34c1a0e7c2d5ad3ed78f0ef3257b8ac7c35d7cff"; - }; - deps = { - "basic-auth-1.0.0" = self.by-version."basic-auth"."1.0.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "basic-auth-1.0.3" = self.by-version."basic-auth"."1.0.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "on-finished-2.2.0" = self.by-version."on-finished"."2.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mount-point"."^1.0.0" = - self.by-version."mount-point"."1.0.3"; - by-version."mount-point"."1.0.3" = self.buildNodePackage { - name = "mount-point-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mount-point/-/mount-point-1.0.3.tgz"; - name = "mount-point-1.0.3.tgz"; - sha1 = "43adac2467a9dc8abf4b784a0d7b7453ab58df4d"; - }; - deps = { - "node-df-0.1.1" = self.by-version."node-df"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mout"."^0.11.0" = - self.by-version."mout"."0.11.0"; - by-version."mout"."0.11.0" = self.buildNodePackage { - name = "mout-0.11.0"; - version = "0.11.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mout/-/mout-0.11.0.tgz"; - name = "mout-0.11.0.tgz"; - sha1 = "93cdf0791ac8a24873ceeb42a5b016b7c867abee"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mout"."~0.9.0" = - self.by-version."mout"."0.9.1"; - by-version."mout"."0.9.1" = self.buildNodePackage { - name = "mout-0.9.1"; - version = "0.9.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mout/-/mout-0.9.1.tgz"; - name = "mout-0.9.1.tgz"; - sha1 = "84f0f3fd6acc7317f63de2affdcc0cee009b0477"; - }; - deps = { + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; }; optionalDependencies = { }; @@ -25991,7 +29562,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mpath/-/mpath-0.1.1.tgz"; + url = "https://registry.npmjs.org/mpath/-/mpath-0.1.1.tgz"; name = "mpath-0.1.1.tgz"; sha1 = "23da852b7c232ee097f4759d29c0ee9cd22d5e46"; }; @@ -26003,6 +29574,25 @@ os = [ ]; cpu = [ ]; }; + by-spec."mpath"."0.2.1" = + self.by-version."mpath"."0.2.1"; + by-version."mpath"."0.2.1" = self.buildNodePackage { + name = "mpath-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mpath/-/mpath-0.2.1.tgz"; + name = "mpath-0.2.1.tgz"; + sha1 = "3a4e829359801de96309c27a6b2e102e89f9e96e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."mpromise"."0.2.1" = self.by-version."mpromise"."0.2.1"; by-version."mpromise"."0.2.1" = self.buildNodePackage { @@ -26010,7 +29600,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mpromise/-/mpromise-0.2.1.tgz"; + url = "https://registry.npmjs.org/mpromise/-/mpromise-0.2.1.tgz"; name = "mpromise-0.2.1.tgz"; sha1 = "fbbdc28cb0207e49b8a4eb1a4c0cea6c2de794c8"; }; @@ -26023,25 +29613,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."mpromise"."0.4.3" = - self.by-version."mpromise"."0.4.3"; - by-version."mpromise"."0.4.3" = self.buildNodePackage { - name = "mpromise-0.4.3"; - version = "0.4.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mpromise/-/mpromise-0.4.3.tgz"; - name = "mpromise-0.4.3.tgz"; - sha1 = "edc47a75a2a177b0e9382735db52dbec3808cc33"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."mpromise"."0.5.4" = self.by-version."mpromise"."0.5.4"; by-version."mpromise"."0.5.4" = self.buildNodePackage { @@ -26049,7 +29620,7 @@ version = "0.5.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mpromise/-/mpromise-0.5.4.tgz"; + url = "https://registry.npmjs.org/mpromise/-/mpromise-0.5.4.tgz"; name = "mpromise-0.5.4.tgz"; sha1 = "b610613ec6de37419f944b35f0783b4de9f5dc75"; }; @@ -26061,19 +29632,49 @@ os = [ ]; cpu = [ ]; }; - by-spec."mqtt"."0.3.x" = - self.by-version."mqtt"."0.3.13"; - by-version."mqtt"."0.3.13" = self.buildNodePackage { - name = "mqtt-0.3.13"; - version = "0.3.13"; + by-spec."mpromise"."0.5.5" = + self.by-version."mpromise"."0.5.5"; + by-version."mpromise"."0.5.5" = self.buildNodePackage { + name = "mpromise-0.5.5"; + version = "0.5.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mpromise/-/mpromise-0.5.5.tgz"; + name = "mpromise-0.5.5.tgz"; + sha1 = "f5b24259d763acc2257b0a0c8c6d866fd51732e6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mqtt"."1.7.4" = + self.by-version."mqtt"."1.7.4"; + by-version."mqtt"."1.7.4" = self.buildNodePackage { + name = "mqtt-1.7.4"; + version = "1.7.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mqtt/-/mqtt-0.3.13.tgz"; - name = "mqtt-0.3.13.tgz"; - sha1 = "f65fbe323901b664427b471658428dcfa1d5bee4"; + url = "https://registry.npmjs.org/mqtt/-/mqtt-1.7.4.tgz"; + name = "mqtt-1.7.4.tgz"; + sha1 = "bda47e1f6f0cfbd8b861bcfd60012ac39b563f16"; }; deps = { + "commist-1.0.0" = self.by-version."commist"."1.0.0"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; + "help-me-0.1.0" = self.by-version."help-me"."0.1.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "mqtt-connection-2.1.1" = self.by-version."mqtt-connection"."2.1.1"; + "mqtt-packet-3.4.6" = self.by-version."mqtt-packet"."3.4.6"; "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "reinterval-1.0.2" = self.by-version."reinterval"."1.0.2"; + "websocket-stream-3.1.0" = self.by-version."websocket-stream"."3.1.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -26081,21 +29682,68 @@ os = [ ]; cpu = [ ]; }; - by-spec."mquery"."1.0.0" = - self.by-version."mquery"."1.0.0"; - by-version."mquery"."1.0.0" = self.buildNodePackage { - name = "mquery-1.0.0"; - version = "1.0.0"; + by-spec."mqtt-connection"."^2.0.0" = + self.by-version."mqtt-connection"."2.1.1"; + by-version."mqtt-connection"."2.1.1" = self.buildNodePackage { + name = "mqtt-connection-2.1.1"; + version = "2.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mquery/-/mquery-1.0.0.tgz"; - name = "mquery-1.0.0.tgz"; - sha1 = "6940a46d643368fe8e5abddeb94bd8dd32013f5b"; + url = "https://registry.npmjs.org/mqtt-connection/-/mqtt-connection-2.1.1.tgz"; + name = "mqtt-connection-2.1.1.tgz"; + sha1 = "7b2e985a74e196619430bebd35da162c34c4e56a"; }; deps = { - "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "mqtt-packet-3.4.6" = self.by-version."mqtt-packet"."3.4.6"; + "reduplexer-1.1.0" = self.by-version."reduplexer"."1.1.0"; + "through2-0.6.5" = self.by-version."through2"."0.6.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mqtt-packet"."^3.0.0" = + self.by-version."mqtt-packet"."3.4.6"; + by-version."mqtt-packet"."3.4.6" = self.buildNodePackage { + name = "mqtt-packet-3.4.6"; + version = "3.4.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-3.4.6.tgz"; + name = "mqtt-packet-3.4.6.tgz"; + sha1 = "644ae77638fd3814151112bc67b9fc7f36d650e3"; + }; + deps = { + "bl-0.9.5" = self.by-version."bl"."0.9.5"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."mqtt-packet"."^3.2.0" = + self.by-version."mqtt-packet"."3.4.6"; + by-spec."mquery"."1.10.0" = + self.by-version."mquery"."1.10.0"; + by-version."mquery"."1.10.0" = self.buildNodePackage { + name = "mquery-1.10.0"; + version = "1.10.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mquery/-/mquery-1.10.0.tgz"; + name = "mquery-1.10.0.tgz"; + sha1 = "8603f02b0b524d17ac0539a85996124ee17b7cb3"; + }; + deps = { + "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; + "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; }; optionalDependencies = { }; @@ -26103,20 +29751,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."mquery"."1.4.0" = - self.by-version."mquery"."1.4.0"; - by-version."mquery"."1.4.0" = self.buildNodePackage { - name = "mquery-1.4.0"; - version = "1.4.0"; + by-spec."mquery"."1.6.3" = + self.by-version."mquery"."1.6.3"; + by-version."mquery"."1.6.3" = self.buildNodePackage { + name = "mquery-1.6.3"; + version = "1.6.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mquery/-/mquery-1.4.0.tgz"; - name = "mquery-1.4.0.tgz"; - sha1 = "d49b1c1ca89d1a06ebb6f000316fadba56c2469d"; + url = "https://registry.npmjs.org/mquery/-/mquery-1.6.3.tgz"; + name = "mquery-1.6.3.tgz"; + sha1 = "7c02bfb7e49c8012cece1556c5e65fef61f3c8e5"; }; deps = { - "bluebird-2.3.2" = self.by-version."bluebird"."2.3.2"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "bluebird-2.9.26" = self.by-version."bluebird"."2.9.26"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; "regexp-clone-0.0.1" = self.by-version."regexp-clone"."0.0.1"; "sliced-0.0.5" = self.by-version."sliced"."0.0.5"; }; @@ -26133,7 +29781,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.1.0.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.1.0.tgz"; name = "ms-0.1.0.tgz"; sha1 = "f21fac490daf1d7667fd180fe9077389cc9442b2"; }; @@ -26152,7 +29800,7 @@ version = "0.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.6.2.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.6.2.tgz"; name = "ms-0.6.2.tgz"; sha1 = "d89c2124c6fdc1353d65a8b77bf1aac4b193708c"; }; @@ -26171,7 +29819,7 @@ version = "0.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.7.0.tgz"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.0.tgz"; name = "ms-0.7.0.tgz"; sha1 = "865be94c2e7397ad8a57da6a633a6e2f30798b83"; }; @@ -26183,19 +29831,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."msgpack".">= 0.0.1" = - self.by-version."msgpack"."0.2.6"; - by-version."msgpack"."0.2.6" = self.buildNodePackage { - name = "msgpack-0.2.6"; - version = "0.2.6"; - bin = true; + by-spec."ms"."0.7.1" = + self.by-version."ms"."0.7.1"; + by-version."ms"."0.7.1" = self.buildNodePackage { + name = "ms-0.7.1"; + version = "0.7.1"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/msgpack/-/msgpack-0.2.6.tgz"; - name = "msgpack-0.2.6.tgz"; - sha1 = "e0eda501c43972efabb48eb34ee9daaeffd8eb4c"; + url = "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; + name = "ms-0.7.1.tgz"; + sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; }; deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; }; optionalDependencies = { }; @@ -26203,19 +29850,41 @@ os = [ ]; cpu = [ ]; }; - by-spec."multer".">=0.0.6" = + by-spec."ms"."^0.7.1" = + self.by-version."ms"."0.7.1"; + by-spec."msgpack".">= 0.0.1" = + self.by-version."msgpack"."1.0.2"; + by-version."msgpack"."1.0.2" = self.buildNodePackage { + name = "msgpack-1.0.2"; + version = "1.0.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/msgpack/-/msgpack-1.0.2.tgz"; + name = "msgpack-1.0.2.tgz"; + sha1 = "923e2c5cffa65c8418e9b228d1124793969c429c"; + }; + deps = { + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."multer"."0.1.8" = self.by-version."multer"."0.1.8"; by-version."multer"."0.1.8" = self.buildNodePackage { name = "multer-0.1.8"; version = "0.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/multer/-/multer-0.1.8.tgz"; + url = "https://registry.npmjs.org/multer/-/multer-0.1.8.tgz"; name = "multer-0.1.8.tgz"; sha1 = "551b8a6015093701bcacc964916b1ae06578f37b"; }; deps = { - "busboy-0.2.9" = self.by-version."busboy"."0.2.9"; + "busboy-0.2.13" = self.by-version."busboy"."0.2.13"; "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; "qs-1.2.2" = self.by-version."qs"."1.2.2"; "type-is-1.5.7" = self.by-version."type-is"."1.5.7"; @@ -26226,16 +29895,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."multicast-dns"."^2.0.0" = - self.by-version."multicast-dns"."2.1.0"; - by-version."multicast-dns"."2.1.0" = self.buildNodePackage { - name = "multicast-dns-2.1.0"; - version = "2.1.0"; + by-spec."multicast-dns"."^4.0.0" = + self.by-version."multicast-dns"."4.0.1"; + by-version."multicast-dns"."4.0.1" = self.buildNodePackage { + name = "multicast-dns-4.0.1"; + version = "4.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/multicast-dns/-/multicast-dns-2.1.0.tgz"; - name = "multicast-dns-2.1.0.tgz"; - sha1 = "f0f93e7584bb4e0f59d8f838b2ded055ff77f535"; + url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-4.0.1.tgz"; + name = "multicast-dns-4.0.1.tgz"; + sha1 = "abf022fc866727055a9e0c2bc98097f5ebad97a2"; }; deps = { "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; @@ -26253,7 +29922,7 @@ version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz"; + url = "https://registry.npmjs.org/multiparty/-/multiparty-2.2.0.tgz"; name = "multiparty-2.2.0.tgz"; sha1 = "a567c2af000ad22dc8f2a653d91978ae1f5316f4"; }; @@ -26274,7 +29943,7 @@ version = "3.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz"; + url = "https://registry.npmjs.org/multiparty/-/multiparty-3.3.2.tgz"; name = "multiparty-3.3.2.tgz"; sha1 = "35de6804dc19643e5249f3d3e3bdc6c8ce301d3f"; }; @@ -26297,7 +29966,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; + url = "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz"; name = "multipipe-0.1.2.tgz"; sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; }; @@ -26317,7 +29986,7 @@ version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/muri/-/muri-0.3.1.tgz"; + url = "https://registry.npmjs.org/muri/-/muri-0.3.1.tgz"; name = "muri-0.3.1.tgz"; sha1 = "861889c5c857f1a43700bee85d50731f61727c9a"; }; @@ -26329,6 +29998,44 @@ os = [ ]; cpu = [ ]; }; + by-spec."muri"."1.0.0" = + self.by-version."muri"."1.0.0"; + by-version."muri"."1.0.0" = self.buildNodePackage { + name = "muri-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/muri/-/muri-1.0.0.tgz"; + name = "muri-1.0.0.tgz"; + sha1 = "de3bf6bd71d67eae71d76689b950d2de118695c6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."muri"."1.1.0" = + self.by-version."muri"."1.1.0"; + by-version."muri"."1.1.0" = self.buildNodePackage { + name = "muri-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/muri/-/muri-1.1.0.tgz"; + name = "muri-1.1.0.tgz"; + sha1 = "a3a6d74e68a880f433a249a74969cbb665cc0add"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."murl"."0.4.x" = self.by-version."murl"."0.4.1"; by-version."murl"."0.4.1" = self.buildNodePackage { @@ -26336,7 +30043,7 @@ version = "0.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/murl/-/murl-0.4.1.tgz"; + url = "https://registry.npmjs.org/murl/-/murl-0.4.1.tgz"; name = "murl-0.4.1.tgz"; sha1 = "489fbcc7f1b2b77e689c84120a51339c3849c939"; }; @@ -26348,16 +30055,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mustache"."1.0.0" = - self.by-version."mustache"."1.0.0"; - by-version."mustache"."1.0.0" = self.buildNodePackage { - name = "mustache-1.0.0"; - version = "1.0.0"; - bin = false; + by-spec."mustache"."2.2.1" = + self.by-version."mustache"."2.2.1"; + by-version."mustache"."2.2.1" = self.buildNodePackage { + name = "mustache-2.2.1"; + version = "2.2.1"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/mustache/-/mustache-1.0.0.tgz"; - name = "mustache-1.0.0.tgz"; - sha1 = "8f5b8f68041dbead10997e0ba1d024771a03e15a"; + url = "https://registry.npmjs.org/mustache/-/mustache-2.2.1.tgz"; + name = "mustache-2.2.1.tgz"; + sha1 = "2c40ca21c278f53150682bcf9090e41a3339b876"; }; deps = { }; @@ -26374,7 +30081,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz"; + url = "https://registry.npmjs.org/mutate.js/-/mutate.js-0.2.0.tgz"; name = "mutate.js-0.2.0.tgz"; sha1 = "2e5cb1ac64c937dae28296e8f42af5eafd9bc7ef"; }; @@ -26393,7 +30100,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz"; + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.4.tgz"; name = "mute-stream-0.0.4.tgz"; sha1 = "a9219960a6d5d5d046597aee51252c6655f7177e"; }; @@ -26405,8 +30112,44 @@ os = [ ]; cpu = [ ]; }; + by-spec."mute-stream"."0.0.5" = + self.by-version."mute-stream"."0.0.5"; + by-version."mute-stream"."0.0.5" = self.buildNodePackage { + name = "mute-stream-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz"; + name = "mute-stream-0.0.5.tgz"; + sha1 = "8fbfabb0a98a253d3184331f9e8deb7372fac6c0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."mute-stream"."~0.0.4" = - self.by-version."mute-stream"."0.0.4"; + self.by-version."mute-stream"."0.0.6"; + by-version."mute-stream"."0.0.6" = self.buildNodePackage { + name = "mute-stream-0.0.6"; + version = "0.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz"; + name = "mute-stream-0.0.6.tgz"; + sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."mv"."0.0.5" = self.by-version."mv"."0.0.5"; by-version."mv"."0.0.5" = self.buildNodePackage { @@ -26414,7 +30157,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mv/-/mv-0.0.5.tgz"; + url = "https://registry.npmjs.org/mv/-/mv-0.0.5.tgz"; name = "mv-0.0.5.tgz"; sha1 = "15eac759479884df1131d6de56bce20b654f5391"; }; @@ -26427,20 +30170,20 @@ cpu = [ ]; }; by-spec."mv"."~2" = - self.by-version."mv"."2.0.3"; - by-version."mv"."2.0.3" = self.buildNodePackage { - name = "mv-2.0.3"; - version = "2.0.3"; + self.by-version."mv"."2.1.1"; + by-version."mv"."2.1.1" = self.buildNodePackage { + name = "mv-2.1.1"; + version = "2.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mv/-/mv-2.0.3.tgz"; - name = "mv-2.0.3.tgz"; - sha1 = "e9ab707d71dc38de24edcc637a8e2f5f480c7f32"; + url = "https://registry.npmjs.org/mv/-/mv-2.1.1.tgz"; + name = "mv-2.1.1.tgz"; + sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; }; deps = { - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "ncp-0.6.0" = self.by-version."ncp"."0.6.0"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "ncp-2.0.0" = self.by-version."ncp"."2.0.0"; + "rimraf-2.4.5" = self.by-version."rimraf"."2.4.5"; }; optionalDependencies = { }; @@ -26448,38 +30191,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."mz"."1" = - self.by-version."mz"."1.3.0"; - by-version."mz"."1.3.0" = self.buildNodePackage { - name = "mz-1.3.0"; - version = "1.3.0"; + by-spec."nan"."2" = + self.by-version."nan"."2.2.1"; + by-version."nan"."2.2.1" = self.buildNodePackage { + name = "nan-2.2.1"; + version = "2.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/mz/-/mz-1.3.0.tgz"; - name = "mz-1.3.0.tgz"; - sha1 = "06f093fdd9956a06d37e1b1e81344e27478c42f0"; - }; - deps = { - "native-or-bluebird-1.2.0" = self.by-version."native-or-bluebird"."1.2.0"; - "thenify-3.1.0" = self.by-version."thenify"."3.1.0"; - "thenify-all-1.6.0" = self.by-version."thenify-all"."1.6.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."nan"."*" = - self.by-version."nan"."1.7.0"; - by-version."nan"."1.7.0" = self.buildNodePackage { - name = "nan-1.7.0"; - version = "1.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.7.0.tgz"; - name = "nan-1.7.0.tgz"; - sha1 = "755b997404e83cbe7bc08bc3c5c56291bce87438"; + url = "https://registry.npmjs.org/nan/-/nan-2.2.1.tgz"; + name = "nan-2.2.1.tgz"; + sha1 = "d68693f6b34bb41d66bc68b3a4f9defc79d7149b"; }; deps = { }; @@ -26489,18 +30210,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."1 >=1.6.2" = - self.by-version."nan"."1.7.0"; - by-spec."nan"."1.4.x" = - self.by-version."nan"."1.4.3"; - by-version."nan"."1.4.3" = self.buildNodePackage { - name = "nan-1.4.3"; - version = "1.4.3"; + by-spec."nan"."2.0.*" = + self.by-version."nan"."2.0.9"; + by-version."nan"."2.0.9" = self.buildNodePackage { + name = "nan-2.0.9"; + version = "2.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.4.3.tgz"; - name = "nan-1.4.3.tgz"; - sha1 = "c56b5404698063696f597435f9163c312aea5009"; + url = "https://registry.npmjs.org/nan/-/nan-2.0.9.tgz"; + name = "nan-2.0.9.tgz"; + sha1 = "d02a770f46778842cceb94e17cab31ffc7234a05"; }; deps = { }; @@ -26510,16 +30229,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."1.5.0" = - self.by-version."nan"."1.5.0"; - by-version."nan"."1.5.0" = self.buildNodePackage { - name = "nan-1.5.0"; - version = "1.5.0"; + by-spec."nan"."2.0.5" = + self.by-version."nan"."2.0.5"; + by-version."nan"."2.0.5" = self.buildNodePackage { + name = "nan-2.0.5"; + version = "2.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.5.0.tgz"; - name = "nan-1.5.0.tgz"; - sha1 = "2b3c05bc361f52e50aea2c49077783aa67c5b7fb"; + url = "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz"; + name = "nan-2.0.5.tgz"; + sha1 = "365888014be1fd178db0cbfa258edf7b0cb1c408"; }; deps = { }; @@ -26529,16 +30248,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."1.5.1" = - self.by-version."nan"."1.5.1"; - by-version."nan"."1.5.1" = self.buildNodePackage { - name = "nan-1.5.1"; - version = "1.5.1"; + by-spec."nan"."2.0.7" = + self.by-version."nan"."2.0.7"; + by-version."nan"."2.0.7" = self.buildNodePackage { + name = "nan-2.0.7"; + version = "2.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.5.1.tgz"; - name = "nan-1.5.1.tgz"; - sha1 = "a565e4d4143cb49afdd3fe07e4c8aeaa1e7e0603"; + url = "https://registry.npmjs.org/nan/-/nan-2.0.7.tgz"; + name = "nan-2.0.7.tgz"; + sha1 = "c726ce45dbd863b46234e4dfe5bf02d0cb309cd8"; }; deps = { }; @@ -26548,56 +30267,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."1.5.x" = - self.by-version."nan"."1.5.3"; - by-version."nan"."1.5.3" = self.buildNodePackage { - name = "nan-1.5.3"; - version = "1.5.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.5.3.tgz"; - name = "nan-1.5.3.tgz"; - sha1 = "4cd0ecc133b7b0700a492a646add427ae8a318eb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."nan"."1.6.2" = - self.by-version."nan"."1.6.2"; - by-version."nan"."1.6.2" = self.buildNodePackage { - name = "nan-1.6.2"; - version = "1.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.6.2.tgz"; - name = "nan-1.6.2.tgz"; - sha1 = "2657d1c43b00f1e847e083832285b7d8f5ba8ec8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."nan"."1.6.x" = - self.by-version."nan"."1.6.2"; - by-spec."nan"."1.7.0" = - self.by-version."nan"."1.7.0"; - by-spec."nan".">=1.3.0" = - self.by-version."nan"."1.7.0"; - by-spec."nan"."^1.3.0" = - self.by-version."nan"."1.7.0"; - by-spec."nan"."^1.5.1" = - self.by-version."nan"."1.7.0"; - by-spec."nan"."^1.6.2" = - self.by-version."nan"."1.7.0"; + by-spec."nan"."2.0.9" = + self.by-version."nan"."2.0.9"; + by-spec."nan"."2.0.x" = + self.by-version."nan"."2.0.9"; + by-spec."nan".">=2.0.0" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.0" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.0.4" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.0.5" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.0.8" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.0.9" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.1.0" = + self.by-version."nan"."2.2.1"; + by-spec."nan"."^2.2.0" = + self.by-version."nan"."2.2.1"; by-spec."nan"."~0.3.0" = self.by-version."nan"."0.3.2"; by-version."nan"."0.3.2" = self.buildNodePackage { @@ -26605,7 +30294,7 @@ version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-0.3.2.tgz"; + url = "https://registry.npmjs.org/nan/-/nan-0.3.2.tgz"; name = "nan-0.3.2.tgz"; sha1 = "0df1935cab15369075ef160ad2894107aa14dc2d"; }; @@ -26624,7 +30313,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.0.0.tgz"; + url = "https://registry.npmjs.org/nan/-/nan-1.0.0.tgz"; name = "nan-1.0.0.tgz"; sha1 = "ae24f8850818d662fcab5acf7f3b95bfaa2ccf38"; }; @@ -26636,16 +30325,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."~1.2.0" = - self.by-version."nan"."1.2.0"; - by-version."nan"."1.2.0" = self.buildNodePackage { - name = "nan-1.2.0"; - version = "1.2.0"; + by-spec."nan"."~1.8.4" = + self.by-version."nan"."1.8.4"; + by-version."nan"."1.8.4" = self.buildNodePackage { + name = "nan-1.8.4"; + version = "1.8.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.2.0.tgz"; - name = "nan-1.2.0.tgz"; - sha1 = "9c4d63ce9e4f8e95de2d574e18f7925554a8a8ef"; + url = "https://registry.npmjs.org/nan/-/nan-1.8.4.tgz"; + name = "nan-1.8.4.tgz"; + sha1 = "3c76b5382eab33e44b758d2813ca9d92e9342f34"; }; deps = { }; @@ -26655,16 +30344,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."~1.3.0" = - self.by-version."nan"."1.3.0"; - by-version."nan"."1.3.0" = self.buildNodePackage { - name = "nan-1.3.0"; - version = "1.3.0"; + by-spec."nan"."~2.0" = + self.by-version."nan"."2.0.9"; + by-spec."nan"."~2.0.0" = + self.by-version."nan"."2.0.9"; + by-spec."nan"."~2.0.5" = + self.by-version."nan"."2.0.9"; + by-spec."nan"."~2.1.0" = + self.by-version."nan"."2.1.0"; + by-version."nan"."2.1.0" = self.buildNodePackage { + name = "nan-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nan/-/nan-1.3.0.tgz"; - name = "nan-1.3.0.tgz"; - sha1 = "9a5b8d5ef97a10df3050e59b2c362d3baf779742"; + url = "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz"; + name = "nan-2.1.0.tgz"; + sha1 = "020a7ccedc63fdee85f85967d5607849e74abbe8"; }; deps = { }; @@ -26674,41 +30369,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."nan"."~1.5.0" = - self.by-version."nan"."1.5.3"; - by-spec."nan"."~1.5.1" = - self.by-version."nan"."1.5.3"; - by-spec."nan"."~1.5.3" = - self.by-version."nan"."1.5.3"; - by-spec."nan"."~1.6" = - self.by-version."nan"."1.6.2"; - by-spec."nan"."~1.6.2" = - self.by-version."nan"."1.6.2"; - by-spec."nan"."~1.7.0" = - self.by-version."nan"."1.7.0"; - by-spec."native-buffer-browserify"."~2.0.0" = - self.by-version."native-buffer-browserify"."2.0.17"; - by-version."native-buffer-browserify"."2.0.17" = self.buildNodePackage { - name = "native-buffer-browserify-2.0.17"; - version = "2.0.17"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/native-buffer-browserify/-/native-buffer-browserify-2.0.17.tgz"; - name = "native-buffer-browserify-2.0.17.tgz"; - sha1 = "980577018c4884d169da40b47958ffac6c327d15"; - }; - deps = { - "base64-js-0.0.8" = self.by-version."base64-js"."0.0.8"; - "ieee754-1.1.4" = self.by-version."ieee754"."1.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."native-buffer-browserify"."~2.0.15" = - self.by-version."native-buffer-browserify"."2.0.17"; by-spec."native-dns"."0.6.1" = self.by-version."native-dns"."0.6.1"; by-version."native-dns"."0.6.1" = self.buildNodePackage { @@ -26716,12 +30376,12 @@ version = "0.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/native-dns/-/native-dns-0.6.1.tgz"; + url = "https://registry.npmjs.org/native-dns/-/native-dns-0.6.1.tgz"; name = "native-dns-0.6.1.tgz"; sha1 = "f7d2a3c5464bb6f09d9167e35a7350bd7ffe9b82"; }; deps = { - "ipaddr.js-1.0.1" = self.by-version."ipaddr.js"."1.0.1"; + "ipaddr.js-1.1.0" = self.by-version."ipaddr.js"."1.1.0"; "native-dns-cache-0.0.2" = self.by-version."native-dns-cache"."0.0.2"; "native-dns-packet-0.1.1" = self.by-version."native-dns-packet"."0.1.1"; }; @@ -26738,7 +30398,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/native-dns-cache/-/native-dns-cache-0.0.2.tgz"; + url = "https://registry.npmjs.org/native-dns-cache/-/native-dns-cache-0.0.2.tgz"; name = "native-dns-cache-0.0.2.tgz"; sha1 = "ce0998f7fdf6c7990970a33190624b0e98ee959b"; }; @@ -26759,13 +30419,13 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/native-dns-packet/-/native-dns-packet-0.1.1.tgz"; + url = "https://registry.npmjs.org/native-dns-packet/-/native-dns-packet-0.1.1.tgz"; name = "native-dns-packet-0.1.1.tgz"; sha1 = "97da90570b8438a00194701ce24d011fd3cc109a"; }; deps = { "buffercursor-0.0.12" = self.by-version."buffercursor"."0.0.12"; - "ipaddr.js-1.0.1" = self.by-version."ipaddr.js"."1.0.1"; + "ipaddr.js-1.1.0" = self.by-version."ipaddr.js"."1.1.0"; }; optionalDependencies = { }; @@ -26775,44 +30435,6 @@ }; by-spec."native-dns-packet".">= 0.0.4" = self.by-version."native-dns-packet"."0.1.1"; - by-spec."native-or-bluebird"."1" = - self.by-version."native-or-bluebird"."1.2.0"; - by-version."native-or-bluebird"."1.2.0" = self.buildNodePackage { - name = "native-or-bluebird-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/native-or-bluebird/-/native-or-bluebird-1.2.0.tgz"; - name = "native-or-bluebird-1.2.0.tgz"; - sha1 = "39c47bfd7825d1fb9ffad32210ae25daadf101c9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."native-or-bluebird"."~1.1.2" = - self.by-version."native-or-bluebird"."1.1.2"; - by-version."native-or-bluebird"."1.1.2" = self.buildNodePackage { - name = "native-or-bluebird-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/native-or-bluebird/-/native-or-bluebird-1.1.2.tgz"; - name = "native-or-bluebird-1.1.2.tgz"; - sha1 = "3921e110232d1eb790f3dac61bb370531c7d356e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."natural"."^0.2.0" = self.by-version."natural"."0.2.1"; by-version."natural"."0.2.1" = self.buildNodePackage { @@ -26820,7 +30442,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/natural/-/natural-0.2.1.tgz"; + url = "https://registry.npmjs.org/natural/-/natural-0.2.1.tgz"; name = "natural-0.2.1.tgz"; sha1 = "1eb5156a9d90b4591949e20e94ebc77bb2339eda"; }; @@ -26836,20 +30458,21 @@ cpu = [ ]; }; by-spec."nconf"."*" = - self.by-version."nconf"."0.7.1"; - by-version."nconf"."0.7.1" = self.buildNodePackage { - name = "nconf-0.7.1"; - version = "0.7.1"; + self.by-version."nconf"."0.8.4"; + by-version."nconf"."0.8.4" = self.buildNodePackage { + name = "nconf-0.8.4"; + version = "0.8.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nconf/-/nconf-0.7.1.tgz"; - name = "nconf-0.7.1.tgz"; - sha1 = "ee4b561dd979a3c58db122e38f196d49d61aeb5b"; + url = "https://registry.npmjs.org/nconf/-/nconf-0.8.4.tgz"; + name = "nconf-0.8.4.tgz"; + sha1 = "9502234f7ad6238cab7f92d7c068c20434d3ff93"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "secure-keys-1.0.0" = self.by-version."secure-keys"."1.0.0"; + "yargs-3.32.0" = self.by-version."yargs"."3.32.0"; }; optionalDependencies = { }; @@ -26857,7 +30480,7 @@ os = [ ]; cpu = [ ]; }; - "nconf" = self.by-version."nconf"."0.7.1"; + "nconf" = self.by-version."nconf"."0.8.4"; by-spec."nconf"."0.6.9" = self.by-version."nconf"."0.6.9"; by-version."nconf"."0.6.9" = self.buildNodePackage { @@ -26865,13 +30488,13 @@ version = "0.6.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz"; + url = "https://registry.npmjs.org/nconf/-/nconf-0.6.9.tgz"; name = "nconf-0.6.9.tgz"; sha1 = "9570ef15ed6f9ae6b2b3c8d5e71b66d3193cd661"; }; deps = { "async-0.2.9" = self.by-version."async"."0.2.9"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; "optimist-0.6.0" = self.by-version."optimist"."0.6.0"; }; optionalDependencies = { @@ -26882,14 +30505,33 @@ }; by-spec."nconf"."~0.6.9" = self.by-version."nconf"."0.6.9"; - by-spec."ncp"."0.4.x" = + by-spec."ncp"."0.2.x" = + self.by-version."ncp"."0.2.7"; + by-version."ncp"."0.2.7" = self.buildNodePackage { + name = "ncp-0.2.7"; + version = "0.2.7"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/ncp/-/ncp-0.2.7.tgz"; + name = "ncp-0.2.7.tgz"; + sha1 = "46fac2b7dda2560a4cb7e628677bd5f64eac5be1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ncp"."0.4.2" = self.by-version."ncp"."0.4.2"; by-version."ncp"."0.4.2" = self.buildNodePackage { name = "ncp-0.4.2"; version = "0.4.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; + url = "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz"; name = "ncp-0.4.2.tgz"; sha1 = "abcc6cbd3ec2ed2a729ff6e7c1fa8f01784a8574"; }; @@ -26901,18 +30543,20 @@ os = [ ]; cpu = [ ]; }; + by-spec."ncp"."0.4.x" = + self.by-version."ncp"."0.4.2"; by-spec."ncp"."~0.4.2" = self.by-version."ncp"."0.4.2"; - by-spec."ncp"."~0.6.0" = - self.by-version."ncp"."0.6.0"; - by-version."ncp"."0.6.0" = self.buildNodePackage { - name = "ncp-0.6.0"; - version = "0.6.0"; + by-spec."ncp"."~2.0.0" = + self.by-version."ncp"."2.0.0"; + by-version."ncp"."2.0.0" = self.buildNodePackage { + name = "ncp-2.0.0"; + version = "2.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/ncp/-/ncp-0.6.0.tgz"; - name = "ncp-0.6.0.tgz"; - sha1 = "df8ce021e262be21b52feb3d3e5cfaab12491f0d"; + url = "https://registry.npmjs.org/ncp/-/ncp-2.0.0.tgz"; + name = "ncp-2.0.0.tgz"; + sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; }; deps = { }; @@ -26923,19 +30567,20 @@ cpu = [ ]; }; by-spec."ndjson"."^1.2.3" = - self.by-version."ndjson"."1.3.0"; - by-version."ndjson"."1.3.0" = self.buildNodePackage { - name = "ndjson-1.3.0"; - version = "1.3.0"; - bin = false; + self.by-version."ndjson"."1.4.3"; + by-version."ndjson"."1.4.3" = self.buildNodePackage { + name = "ndjson-1.4.3"; + version = "1.4.3"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/ndjson/-/ndjson-1.3.0.tgz"; - name = "ndjson-1.3.0.tgz"; - sha1 = "84f4d197986919620a763aa36c7058cbbdcf7351"; + url = "https://registry.npmjs.org/ndjson/-/ndjson-1.4.3.tgz"; + name = "ndjson-1.4.3.tgz"; + sha1 = "7aa026fe3ab38a7da1a2b4ad07b1008e733eb239"; }; deps = { "split2-0.2.1" = self.by-version."split2"."0.2.1"; "through2-0.6.5" = self.by-version."through2"."0.6.5"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; }; optionalDependencies = { }; @@ -26950,7 +30595,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.3.0.tgz"; name = "negotiator-0.3.0.tgz"; sha1 = "706d692efeddf574d57ea9fb1ab89a4fa7ee8f60"; }; @@ -26969,7 +30614,7 @@ version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/negotiator/-/negotiator-0.4.2.tgz"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.4.2.tgz"; name = "negotiator-0.4.2.tgz"; sha1 = "8c43ea7e4c40ddfe40c3c0234c4ef77500b8fd37"; }; @@ -26988,7 +30633,7 @@ version = "0.4.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/negotiator/-/negotiator-0.4.7.tgz"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.4.7.tgz"; name = "negotiator-0.4.7.tgz"; sha1 = "a4160f7177ec806738631d0d3052325da42abdc8"; }; @@ -27007,7 +30652,7 @@ version = "0.4.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/negotiator/-/negotiator-0.4.9.tgz"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.4.9.tgz"; name = "negotiator-0.4.9.tgz"; sha1 = "92e46b6db53c7e421ed64a2bc94f08be7630df3f"; }; @@ -27019,16 +30664,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."negotiator"."0.5.1" = - self.by-version."negotiator"."0.5.1"; - by-version."negotiator"."0.5.1" = self.buildNodePackage { - name = "negotiator-0.5.1"; - version = "0.5.1"; + by-spec."negotiator"."0.5.3" = + self.by-version."negotiator"."0.5.3"; + by-version."negotiator"."0.5.3" = self.buildNodePackage { + name = "negotiator-0.5.3"; + version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/negotiator/-/negotiator-0.5.1.tgz"; - name = "negotiator-0.5.1.tgz"; - sha1 = "498f661c522470153c6086ac83019cb3eb66f61c"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.5.3.tgz"; + name = "negotiator-0.5.3.tgz"; + sha1 = "269d5c476810ec92edbe7b6c2f28316384f9a7e8"; }; deps = { }; @@ -27038,18 +30683,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."negotiator"."^0.4.5" = - self.by-version."negotiator"."0.4.9"; - by-spec."nested-error-stacks"."^1.0.0" = - self.by-version."nested-error-stacks"."1.0.0"; - by-version."nested-error-stacks"."1.0.0" = self.buildNodePackage { - name = "nested-error-stacks-1.0.0"; - version = "1.0.0"; + by-spec."negotiator"."0.6.0" = + self.by-version."negotiator"."0.6.0"; + by-version."negotiator"."0.6.0" = self.buildNodePackage { + name = "negotiator-0.6.0"; + version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.0.tgz"; - name = "nested-error-stacks-1.0.0.tgz"; - sha1 = "3bd2785bb1fa9ebbf608e293e9ccb9ea765254c7"; + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.0.tgz"; + name = "negotiator-0.6.0.tgz"; + sha1 = "33593a5a2b0ce30c985840c6f56b6fb1ea9e3a55"; }; deps = { }; @@ -27059,6 +30702,28 @@ os = [ ]; cpu = [ ]; }; + by-spec."negotiator"."^0.5.1" = + self.by-version."negotiator"."0.5.3"; + by-spec."nested-error-stacks"."^1.0.0" = + self.by-version."nested-error-stacks"."1.0.2"; + by-version."nested-error-stacks"."1.0.2" = self.buildNodePackage { + name = "nested-error-stacks-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz"; + name = "nested-error-stacks-1.0.2.tgz"; + sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."net-ping"."1.1.7" = self.by-version."net-ping"."1.1.7"; by-version."net-ping"."1.1.7" = self.buildNodePackage { @@ -27066,12 +30731,12 @@ version = "1.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/net-ping/-/net-ping-1.1.7.tgz"; + url = "https://registry.npmjs.org/net-ping/-/net-ping-1.1.7.tgz"; name = "net-ping-1.1.7.tgz"; sha1 = "49f5bca55a30a3726d69253557f231135a637075"; }; deps = { - "raw-socket-1.2.2" = self.by-version."raw-socket"."1.2.2"; + "raw-socket-1.4.0" = self.by-version."raw-socket"."1.4.0"; }; optionalDependencies = { }; @@ -27086,7 +30751,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/netmask/-/netmask-1.0.5.tgz"; + url = "https://registry.npmjs.org/netmask/-/netmask-1.0.5.tgz"; name = "netmask-1.0.5.tgz"; sha1 = "84851218294b88e0ac5a008ec46401e2a5c767d2"; }; @@ -27105,7 +30770,7 @@ version = "0.0.5"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz"; + url = "https://registry.npmjs.org/network-address/-/network-address-0.0.5.tgz"; name = "network-address-0.0.5.tgz"; sha1 = "a400225438cacb67cd6108e8e826d5920a705dcc"; }; @@ -27120,34 +30785,15 @@ by-spec."network-address"."0.0.x" = self.by-version."network-address"."0.0.5"; by-spec."network-address"."^1.0.0" = - self.by-version."network-address"."1.0.0"; - by-version."network-address"."1.0.0" = self.buildNodePackage { - name = "network-address-1.0.0"; - version = "1.0.0"; + self.by-version."network-address"."1.1.0"; + by-version."network-address"."1.1.0" = self.buildNodePackage { + name = "network-address-1.1.0"; + version = "1.1.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/network-address/-/network-address-1.0.0.tgz"; - name = "network-address-1.0.0.tgz"; - sha1 = "246e82910c9e49d8842f1515d8341973a8db642f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."next-tick"."~0.2.2" = - self.by-version."next-tick"."0.2.2"; - by-version."next-tick"."0.2.2" = self.buildNodePackage { - name = "next-tick-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/next-tick/-/next-tick-0.2.2.tgz"; - name = "next-tick-0.2.2.tgz"; - sha1 = "75da4a927ee5887e39065880065b7336413b310d"; + url = "https://registry.npmjs.org/network-address/-/network-address-1.1.0.tgz"; + name = "network-address-1.1.0.tgz"; + sha1 = "74d577b0dea652284659079fc8d7010b72f01092"; }; deps = { }; @@ -27164,7 +30810,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nib/-/nib-1.1.0.tgz"; + url = "https://registry.npmjs.org/nib/-/nib-1.1.0.tgz"; name = "nib-1.1.0.tgz"; sha1 = "527c19662a10a2b565fe85e9b309d622aa7557d3"; }; @@ -27178,25 +30824,8 @@ cpu = [ ]; }; "nib" = self.by-version."nib"."1.1.0"; - by-spec."nib"."0.5.0" = - self.by-version."nib"."0.5.0"; - by-version."nib"."0.5.0" = self.buildNodePackage { - name = "nib-0.5.0"; - version = "0.5.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/nib/-/nib-0.5.0.tgz"; - name = "nib-0.5.0.tgz"; - sha1 = "ad0a7dfa2bca8680c8cb8adaa6ab68c80e5221e5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + by-spec."nib"."~1.1.0" = + self.by-version."nib"."1.1.0"; by-spec."nijs"."*" = self.by-version."nijs"."0.0.23"; by-version."nijs"."0.0.23" = self.buildNodePackage { @@ -27204,7 +30833,7 @@ version = "0.0.23"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nijs/-/nijs-0.0.23.tgz"; + url = "https://registry.npmjs.org/nijs/-/nijs-0.0.23.tgz"; name = "nijs-0.0.23.tgz"; sha1 = "dbf8f4a0acafbe3b8d9b71c24cbd1d851de6c31a"; }; @@ -27219,30 +30848,51 @@ cpu = [ ]; }; "nijs" = self.by-version."nijs"."0.0.23"; - by-spec."node-appc"."0.2.26" = - self.by-version."node-appc"."0.2.26"; - by-version."node-appc"."0.2.26" = self.buildNodePackage { - name = "node-appc-0.2.26"; - version = "0.2.26"; + by-spec."node-alias"."^1.0.3" = + self.by-version."node-alias"."1.0.4"; + by-version."node-alias"."1.0.4" = self.buildNodePackage { + name = "node-alias-1.0.4"; + version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-appc/-/node-appc-0.2.26.tgz"; - name = "node-appc-0.2.26.tgz"; - sha1 = "7744e585d10a69b090ce6d983efda6131d8c3e31"; + url = "https://registry.npmjs.org/node-alias/-/node-alias-1.0.4.tgz"; + name = "node-alias-1.0.4.tgz"; + sha1 = "1f1b916b56b9ea241c0135f97ced6940f556f292"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-appc"."0.2.31" = + self.by-version."node-appc"."0.2.31"; + by-version."node-appc"."0.2.31" = self.buildNodePackage { + name = "node-appc-0.2.31"; + version = "0.2.31"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.31.tgz"; + name = "node-appc-0.2.31.tgz"; + sha1 = "8d8d0052fd8b8ce4bc44f06883009f7c950bc8c2"; }; deps = { "adm-zip-0.4.7" = self.by-version."adm-zip"."0.4.7"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "diff-1.0.8" = self.by-version."diff"."1.0.8"; + "async-1.4.2" = self.by-version."async"."1.4.2"; + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "diff-2.1.0" = self.by-version."diff"."2.1.0"; "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "request-2.40.0" = self.by-version."request"."2.40.0"; - "semver-3.0.1" = self.by-version."semver"."3.0.1"; + "request-2.61.0" = self.by-version."request"."2.61.0"; + "semver-5.0.1" = self.by-version."semver"."5.0.1"; "sprintf-0.1.5" = self.by-version."sprintf"."0.1.5"; - "temp-0.8.1" = self.by-version."temp"."0.8.1"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; "wrench-1.5.8" = self.by-version."wrench"."1.5.8"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; + "uglify-js-2.4.24" = self.by-version."uglify-js"."2.4.24"; "xmldom-0.1.19" = self.by-version."xmldom"."0.1.19"; }; optionalDependencies = { @@ -27252,15 +30902,15 @@ cpu = [ ]; }; by-spec."node-craigslist"."^0.1.7" = - self.by-version."node-craigslist"."0.1.8"; - by-version."node-craigslist"."0.1.8" = self.buildNodePackage { - name = "node-craigslist-0.1.8"; - version = "0.1.8"; + self.by-version."node-craigslist"."0.1.9"; + by-version."node-craigslist"."0.1.9" = self.buildNodePackage { + name = "node-craigslist-0.1.9"; + version = "0.1.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-craigslist/-/node-craigslist-0.1.8.tgz"; - name = "node-craigslist-0.1.8.tgz"; - sha1 = "2c69ba5869a2461070cd296dcf3b1dd2e3032227"; + url = "https://registry.npmjs.org/node-craigslist/-/node-craigslist-0.1.9.tgz"; + name = "node-craigslist-0.1.9.tgz"; + sha1 = "d33d9d18337e6d1002f3a417d66a6b8b33dcbe98"; }; deps = { "cheerio-0.17.0" = self.by-version."cheerio"."0.17.0"; @@ -27271,42 +30921,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-df"."^0.1.1" = - self.by-version."node-df"."0.1.1"; - by-version."node-df"."0.1.1" = self.buildNodePackage { - name = "node-df-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/node-df/-/node-df-0.1.1.tgz"; - name = "node-df-0.1.1.tgz"; - sha1 = "42ec5a15b7b491164b3de7edeef2e346a0e500ea"; - }; - deps = { - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."node-expat"."*" = - self.by-version."node-expat"."2.3.7"; - by-version."node-expat"."2.3.7" = self.buildNodePackage { - name = "node-expat-2.3.7"; - version = "2.3.7"; + self.by-version."node-expat"."2.3.13"; + by-version."node-expat"."2.3.13" = self.buildNodePackage { + name = "node-expat-2.3.13"; + version = "2.3.13"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-expat/-/node-expat-2.3.7.tgz"; - name = "node-expat-2.3.7.tgz"; - sha1 = "7d8811989c52c90578a70d8ea6335692a7f14c8a"; + url = "https://registry.npmjs.org/node-expat/-/node-expat-2.3.13.tgz"; + name = "node-expat-2.3.13.tgz"; + sha1 = "e32494308d14f451e2b8efa4464f52e1e8a59532"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "iconv-2.1.6" = self.by-version."iconv"."2.1.6"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -27314,17 +30942,57 @@ os = [ ]; cpu = [ ]; }; - "node-expat" = self.by-version."node-expat"."2.3.7"; - by-spec."node-expat".">=1.4.1" = - self.by-version."node-expat"."2.3.7"; + "node-expat" = self.by-version."node-expat"."2.3.13"; by-spec."node-expat"."^2.3.0" = - self.by-version."node-expat"."2.3.7"; - by-spec."node-expat"."^2.3.6" = - self.by-version."node-expat"."2.3.7"; + self.by-version."node-expat"."2.3.13"; + by-spec."node-expat"."^2.3.9" = + self.by-version."node-expat"."2.3.13"; by-spec."node-expat"."~2.3.0" = - self.by-version."node-expat"."2.3.7"; + self.by-version."node-expat"."2.3.13"; by-spec."node-expat"."~2.3.7" = - self.by-version."node-expat"."2.3.7"; + self.by-version."node-expat"."2.3.13"; + by-spec."node-expat"."~2.3.8" = + self.by-version."node-expat"."2.3.13"; + by-spec."node-fetch"."^1.0.1" = + self.by-version."node-fetch"."1.5.0"; + by-version."node-fetch"."1.5.0" = self.buildNodePackage { + name = "node-fetch-1.5.0"; + version = "1.5.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-fetch/-/node-fetch-1.5.0.tgz"; + name = "node-fetch-1.5.0.tgz"; + sha1 = "c1b82cda9579aa57ee05b838278183c6e997f642"; + }; + deps = { + "encoding-0.1.12" = self.by-version."encoding"."0.1.12"; + "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-forge"."^0.6.33" = + self.by-version."node-forge"."0.6.39"; + by-version."node-forge"."0.6.39" = self.buildNodePackage { + name = "node-forge-0.6.39"; + version = "0.6.39"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-forge/-/node-forge-0.6.39.tgz"; + name = "node-forge-0.6.39.tgz"; + sha1 = "2184e89dba9b44b3aa54cd4bf1e7334f247cf9ce"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."node-fs"."^0.1.7" = self.by-version."node-fs"."0.1.7"; by-version."node-fs"."0.1.7" = self.buildNodePackage { @@ -27332,7 +31000,7 @@ version = "0.1.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz"; + url = "https://registry.npmjs.org/node-fs/-/node-fs-0.1.7.tgz"; name = "node-fs-0.1.7.tgz"; sha1 = "32323cccb46c9fbf0fc11812d45021cc31d325bb"; }; @@ -27345,84 +31013,31 @@ cpu = [ ]; }; by-spec."node-gyp"."*" = - self.by-version."node-gyp"."1.0.3"; - by-version."node-gyp"."1.0.3" = self.buildNodePackage { - name = "node-gyp-1.0.3"; - version = "1.0.3"; + self.by-version."node-gyp"."3.3.1"; + by-version."node-gyp"."3.3.1" = self.buildNodePackage { + name = "node-gyp-3.3.1"; + version = "3.3.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-gyp/-/node-gyp-1.0.3.tgz"; - name = "node-gyp-1.0.3.tgz"; - sha1 = "a2f63f2df0b1f6cc69fa54bce3cc298aa769cbd8"; + url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.3.1.tgz"; + name = "node-gyp-3.3.1.tgz"; + sha1 = "80f7b6d7c2f9c0495ba42c518a670c99bdf6e4a0"; }; deps = { - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "tar-1.0.3" = self.by-version."tar"."1.0.3"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "node-gyp" = self.by-version."node-gyp"."1.0.3"; - by-spec."node-gyp"."~0.10.6" = - self.by-version."node-gyp"."0.10.10"; - by-version."node-gyp"."0.10.10" = self.buildNodePackage { - name = "node-gyp-0.10.10"; - version = "0.10.10"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/node-gyp/-/node-gyp-0.10.10.tgz"; - name = "node-gyp-0.10.10.tgz"; - sha1 = "74290b46b72046d648d301fae3813feb0d07edd9"; - }; - deps = { - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; - "minimatch-0.4.0" = self.by-version."minimatch"."0.4.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "nopt-2.2.1" = self.by-version."nopt"."2.2.1"; - "npmlog-0.1.1" = self.by-version."npmlog"."0.1.1"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-2.1.0" = self.by-version."semver"."2.1.0"; - "tar-0.1.20" = self.by-version."tar"."0.1.20"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."node-gyp"."~1.0.3" = - self.by-version."node-gyp"."1.0.3"; - by-spec."node-icu-charset-detector"."0.0.7" = - self.by-version."node-icu-charset-detector"."0.0.7"; - by-version."node-icu-charset-detector"."0.0.7" = self.buildNodePackage { - name = "node-icu-charset-detector-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/node-icu-charset-detector/-/node-icu-charset-detector-0.0.7.tgz"; - name = "node-icu-charset-detector-0.0.7.tgz"; - sha1 = "832867d4e70cc666a616339ff6637bad039c7d1f"; - }; - deps = { + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; + "path-array-1.0.1" = self.by-version."path-array"."1.0.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "tar-2.2.1" = self.by-version."tar"."2.2.1"; + "which-1.2.4" = self.by-version."which"."1.2.4"; }; optionalDependencies = { }; @@ -27430,32 +31045,36 @@ os = [ ]; cpu = [ ]; }; + "node-gyp" = self.by-version."node-gyp"."3.3.1"; + by-spec."node-gyp"."~3.3.1" = + self.by-version."node-gyp"."3.3.1"; by-spec."node-inspector"."*" = - self.by-version."node-inspector"."0.9.2"; - by-version."node-inspector"."0.9.2" = self.buildNodePackage { - name = "node-inspector-0.9.2"; - version = "0.9.2"; + self.by-version."node-inspector"."0.12.7"; + by-version."node-inspector"."0.12.7" = self.buildNodePackage { + name = "node-inspector-0.12.7"; + version = "0.12.7"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-inspector/-/node-inspector-0.9.2.tgz"; - name = "node-inspector-0.9.2.tgz"; - sha1 = "f25e2be0dbd672f7f09b50af01ef81da3157ae7c"; + url = "https://registry.npmjs.org/node-inspector/-/node-inspector-0.12.7.tgz"; + name = "node-inspector-0.12.7.tgz"; + sha1 = "99289f6a15826c01d7cd15d8f54b2fc9cef2d3c5"; }; deps = { - "express-4.12.3" = self.by-version."express"."4.12.3"; - "serve-favicon-2.2.0" = self.by-version."serve-favicon"."2.2.0"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "rc-0.5.5" = self.by-version."rc"."0.5.5"; - "strong-data-uri-0.1.1" = self.by-version."strong-data-uri"."0.1.1"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; - "ws-0.4.32" = self.by-version."ws"."0.4.32"; - "biased-opener-0.2.5" = self.by-version."biased-opener"."0.2.5"; - "yargs-1.3.3" = self.by-version."yargs"."1.3.3"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - "v8-debug-0.4.2" = self.by-version."v8-debug"."0.4.2"; - "v8-profiler-5.2.4" = self.by-version."v8-profiler"."5.2.4"; - "semver-3.0.1" = self.by-version."semver"."3.0.1"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + "biased-opener-0.2.8" = self.by-version."biased-opener"."0.2.8"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; + "rc-1.1.6" = self.by-version."rc"."1.1.6"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + "serve-favicon-2.3.0" = self.by-version."serve-favicon"."2.3.0"; + "strong-data-uri-1.0.3" = self.by-version."strong-data-uri"."1.0.3"; + "v8-debug-0.7.1" = self.by-version."v8-debug"."0.7.1"; + "v8-profiler-5.6.0" = self.by-version."v8-profiler"."5.6.0"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + "ws-0.8.1" = self.by-version."ws"."0.8.1"; + "yargs-3.32.0" = self.by-version."yargs"."3.32.0"; }; optionalDependencies = { }; @@ -27463,38 +31082,57 @@ os = [ ]; cpu = [ ]; }; - "node-inspector" = self.by-version."node-inspector"."0.9.2"; - by-spec."node-libs-browser"."~0.4.0" = - self.by-version."node-libs-browser"."0.4.3"; - by-version."node-libs-browser"."0.4.3" = self.buildNodePackage { - name = "node-libs-browser-0.4.3"; - version = "0.4.3"; + "node-inspector" = self.by-version."node-inspector"."0.12.7"; + by-spec."node-int64"."~0.3.0" = + self.by-version."node-int64"."0.3.3"; + by-version."node-int64"."0.3.3" = self.buildNodePackage { + name = "node-int64-0.3.3"; + version = "0.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.4.3.tgz"; - name = "node-libs-browser-0.4.3.tgz"; - sha1 = "4c6f784411ecc1b383c8d5fb6c2490ae5a546099"; + url = "https://registry.npmjs.org/node-int64/-/node-int64-0.3.3.tgz"; + name = "node-int64-0.3.3.tgz"; + sha1 = "2d6e6b2ece5de8588b43d88d1bc41b26cd1fa84d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-libs-browser".">= 0.4.0 <=0.6.0" = + self.by-version."node-libs-browser"."0.5.3"; + by-version."node-libs-browser"."0.5.3" = self.buildNodePackage { + name = "node-libs-browser-0.5.3"; + version = "0.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-0.5.3.tgz"; + name = "node-libs-browser-0.5.3.tgz"; + sha1 = "55efa888ec907acdb8cffc4e7a51712780e13b6a"; }; deps = { "assert-1.3.0" = self.by-version."assert"."1.3.0"; "browserify-zlib-0.1.4" = self.by-version."browserify-zlib"."0.1.4"; - "buffer-3.1.2" = self.by-version."buffer"."3.1.2"; + "buffer-3.6.0" = self.by-version."buffer"."3.6.0"; "console-browserify-1.1.0" = self.by-version."console-browserify"."1.1.0"; "constants-browserify-0.0.1" = self.by-version."constants-browserify"."0.0.1"; "crypto-browserify-3.2.8" = self.by-version."crypto-browserify"."3.2.8"; - "domain-browser-1.1.4" = self.by-version."domain-browser"."1.1.4"; - "events-1.0.2" = self.by-version."events"."1.0.2"; + "domain-browser-1.1.7" = self.by-version."domain-browser"."1.1.7"; + "events-1.1.0" = self.by-version."events"."1.1.0"; "http-browserify-1.7.0" = self.by-version."http-browserify"."1.7.0"; "https-browserify-0.0.0" = self.by-version."https-browserify"."0.0.0"; "os-browserify-0.1.2" = self.by-version."os-browserify"."0.1.2"; "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; - "process-0.10.1" = self.by-version."process"."0.10.1"; - "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "punycode-1.4.1" = self.by-version."punycode"."1.4.1"; "querystring-es3-0.2.1" = self.by-version."querystring-es3"."0.2.1"; "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; "stream-browserify-1.0.0" = self.by-version."stream-browserify"."1.0.0"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; - "timers-browserify-1.4.0" = self.by-version."timers-browserify"."1.4.0"; + "timers-browserify-1.4.2" = self.by-version."timers-browserify"."1.4.2"; "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; "url-0.10.3" = self.by-version."url"."0.10.3"; "util-0.10.3" = self.by-version."util"."0.10.3"; @@ -27506,6 +31144,48 @@ os = [ ]; cpu = [ ]; }; + by-spec."node-libs-browser"."^1.0.0" = + self.by-version."node-libs-browser"."1.0.0"; + by-version."node-libs-browser"."1.0.0" = self.buildNodePackage { + name = "node-libs-browser-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-1.0.0.tgz"; + name = "node-libs-browser-1.0.0.tgz"; + sha1 = "ff8ad6c2cfa78043bdd0091ec07f0aaa581620fc"; + }; + deps = { + "assert-1.3.0" = self.by-version."assert"."1.3.0"; + "browserify-zlib-0.1.4" = self.by-version."browserify-zlib"."0.1.4"; + "buffer-4.5.1" = self.by-version."buffer"."4.5.1"; + "console-browserify-1.1.0" = self.by-version."console-browserify"."1.1.0"; + "constants-browserify-1.0.0" = self.by-version."constants-browserify"."1.0.0"; + "crypto-browserify-3.11.0" = self.by-version."crypto-browserify"."3.11.0"; + "domain-browser-1.1.7" = self.by-version."domain-browser"."1.1.7"; + "events-1.1.0" = self.by-version."events"."1.1.0"; + "http-browserify-1.7.0" = self.by-version."http-browserify"."1.7.0"; + "https-browserify-0.0.1" = self.by-version."https-browserify"."0.0.1"; + "os-browserify-0.2.1" = self.by-version."os-browserify"."0.2.1"; + "path-browserify-0.0.0" = self.by-version."path-browserify"."0.0.0"; + "process-0.11.2" = self.by-version."process"."0.11.2"; + "punycode-1.4.1" = self.by-version."punycode"."1.4.1"; + "querystring-es3-0.2.1" = self.by-version."querystring-es3"."0.2.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "stream-browserify-2.0.1" = self.by-version."stream-browserify"."2.0.1"; + "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; + "timers-browserify-1.4.2" = self.by-version."timers-browserify"."1.4.2"; + "tty-browserify-0.0.0" = self.by-version."tty-browserify"."0.0.0"; + "url-0.11.0" = self.by-version."url"."0.11.0"; + "util-0.10.3" = self.by-version."util"."0.10.3"; + "vm-browserify-0.0.4" = self.by-version."vm-browserify"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."node-options"."0.0.6" = self.by-version."node-options"."0.0.6"; by-version."node-options"."0.0.6" = self.buildNodePackage { @@ -27513,7 +31193,7 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-options/-/node-options-0.0.6.tgz"; + url = "https://registry.npmjs.org/node-options/-/node-options-0.0.6.tgz"; name = "node-options-0.0.6.tgz"; sha1 = "98721bd14fc4969a619e4d87666449f1f92477ed"; }; @@ -27525,27 +31205,27 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-pre-gyp"."0.5.x" = - self.by-version."node-pre-gyp"."0.5.31"; - by-version."node-pre-gyp"."0.5.31" = self.buildNodePackage { - name = "node-pre-gyp-0.5.31"; - version = "0.5.31"; + by-spec."node-pre-gyp"."0.6.x" = + self.by-version."node-pre-gyp"."0.6.26"; + by-version."node-pre-gyp"."0.6.26" = self.buildNodePackage { + name = "node-pre-gyp-0.6.26"; + version = "0.6.26"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.5.31.tgz"; - name = "node-pre-gyp-0.5.31.tgz"; - sha1 = "8c91516f0009e4691413c8c3f2d8a060deb607ba"; + url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.26.tgz"; + name = "node-pre-gyp-0.6.26.tgz"; + sha1 = "d4fae0d69030d60e394169cdae5a4fbcad788630"; }; deps = { - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "npmlog-0.1.1" = self.by-version."npmlog"."0.1.1"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "semver-4.1.1" = self.by-version."semver"."4.1.1"; - "tar-1.0.3" = self.by-version."tar"."1.0.3"; - "tar-pack-2.0.0" = self.by-version."tar-pack"."2.0.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "rc-0.5.5" = self.by-version."rc"."0.5.5"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; + "rc-1.1.6" = self.by-version."rc"."1.1.6"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "tar-2.2.1" = self.by-version."tar"."2.2.1"; + "tar-pack-3.1.3" = self.by-version."tar-pack"."3.1.3"; }; optionalDependencies = { }; @@ -27553,27 +31233,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-pre-gyp"."^0.6.4" = - self.by-version."node-pre-gyp"."0.6.4"; - by-version."node-pre-gyp"."0.6.4" = self.buildNodePackage { - name = "node-pre-gyp-0.6.4"; - version = "0.6.4"; + by-spec."node-pre-gyp"."^0.6.25" = + self.by-version."node-pre-gyp"."0.6.26"; + by-spec."node-pre-gyp"."^0.6.5" = + self.by-version."node-pre-gyp"."0.6.26"; + by-spec."node-pre-gyp-github"."^1.1.0" = + self.by-version."node-pre-gyp-github"."1.1.2"; + by-version."node-pre-gyp-github"."1.1.2" = self.buildNodePackage { + name = "node-pre-gyp-github-1.1.2"; + version = "1.1.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.4.tgz"; - name = "node-pre-gyp-0.6.4.tgz"; - sha1 = "86a32ba4073b2735087f7eacb47979af6c70ce08"; + url = "https://registry.npmjs.org/node-pre-gyp-github/-/node-pre-gyp-github-1.1.2.tgz"; + name = "node-pre-gyp-github-1.1.2.tgz"; + sha1 = "01454ef4079a44907596920c6051228124ff9042"; }; deps = { - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "npmlog-1.1.0" = self.by-version."npmlog"."1.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "tar-1.0.3" = self.by-version."tar"."1.0.3"; - "tar-pack-2.0.0" = self.by-version."tar-pack"."2.0.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "rc-0.6.0" = self.by-version."rc"."0.6.0"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; + "github-0.2.4" = self.by-version."github"."0.2.4"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -27581,22 +31260,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-pre-gyp"."https://github.com/mongodb-js/node-pre-gyp/archive/v0.6.5-appveyor.tar.gz" = - self.by-version."node-pre-gyp"."0.6.4"; by-spec."node-protobuf"."*" = - self.by-version."node-protobuf"."1.2.3"; - by-version."node-protobuf"."1.2.3" = self.buildNodePackage { - name = "node-protobuf-1.2.3"; - version = "1.2.3"; + self.by-version."node-protobuf"."1.2.14"; + by-version."node-protobuf"."1.2.14" = self.buildNodePackage { + name = "node-protobuf-1.2.14"; + version = "1.2.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-protobuf/-/node-protobuf-1.2.3.tgz"; - name = "node-protobuf-1.2.3.tgz"; - sha1 = "a38cf84db610822aff0803db45a400de6ec80835"; + url = "https://registry.npmjs.org/node-protobuf/-/node-protobuf-1.2.14.tgz"; + name = "node-protobuf-1.2.14.tgz"; + sha1 = "99fced0cd2e6daeba48c664f99b13d1df930d0a0"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; }; optionalDependencies = { }; @@ -27604,99 +31281,222 @@ os = [ ]; cpu = [ ]; }; - "node-protobuf" = self.by-version."node-protobuf"."1.2.3"; + "node-protobuf" = self.by-version."node-protobuf"."1.2.14"; by-spec."node-red"."*" = - self.by-version."node-red"."0.10.6"; - by-version."node-red"."0.10.6" = self.buildNodePackage { - name = "node-red-0.10.6"; - version = "0.10.6"; + self.by-version."node-red"."0.13.4"; + by-version."node-red"."0.13.4" = self.buildNodePackage { + name = "node-red-0.13.4"; + version = "0.13.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-red/-/node-red-0.10.6.tgz"; - name = "node-red-0.10.6.tgz"; - sha1 = "42a8a8e609bedf1c2972c50bf7deeda3d89bed3c"; + url = "https://registry.npmjs.org/node-red/-/node-red-0.13.4.tgz"; + name = "node-red-0.13.4.tgz"; + sha1 = "128a7e52129132d8fc5f0f7dc0ddd22b3de14bf1"; }; deps = { - "express-3.17.2" = self.by-version."express"."3.17.2"; - "when-3.7.2" = self.by-version."when"."3.7.2"; - "bcryptjs-2.1.0" = self.by-version."bcryptjs"."2.1.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "mqtt-0.3.13" = self.by-version."mqtt"."0.3.13"; - "ws-0.7.1" = self.by-version."ws"."0.7.1"; - "fs-extra-0.16.3" = self.by-version."fs-extra"."0.16.3"; - "clone-0.2.0" = self.by-version."clone"."0.2.0"; - "mustache-1.0.0" = self.by-version."mustache"."1.0.0"; - "cron-1.0.6" = self.by-version."cron"."1.0.6"; - "raw-body-1.3.2" = self.by-version."raw-body"."1.3.2"; - "twitter-ng-0.6.2" = self.by-version."twitter-ng"."0.6.2"; - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; - "xml2js-0.4.4" = self.by-version."xml2js"."0.4.4"; - "sentiment-0.2.3" = self.by-version."sentiment"."0.2.3"; - "irc-0.3.9" = self.by-version."irc"."0.3.9"; - "follow-redirects-0.0.3" = self.by-version."follow-redirects"."0.0.3"; - "cors-2.5.3" = self.by-version."cors"."2.5.3"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "cheerio-0.18.0" = self.by-version."cheerio"."0.18.0"; - "uglify-js-2.4.16" = self.by-version."uglify-js"."2.4.16"; - "nodemailer-1.3.0" = self.by-version."nodemailer"."1.3.0"; - "imap-0.8.14" = self.by-version."imap"."0.8.14"; - "request-2.42.0" = self.by-version."request"."2.42.0"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - "is-utf8-0.2.0" = self.by-version."is-utf8"."0.2.0"; - "serialport-1.4.10" = self.by-version."serialport"."1.4.10"; - "feedparser-0.19.2" = self.by-version."feedparser"."0.19.2"; + "basic-auth-1.0.3" = self.by-version."basic-auth"."1.0.3"; + "bcryptjs-2.3.0" = self.by-version."bcryptjs"."2.3.0"; + "body-parser-1.15.0" = self.by-version."body-parser"."1.15.0"; + "cheerio-0.19.0" = self.by-version."cheerio"."0.19.0"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "cors-2.7.1" = self.by-version."cors"."2.7.1"; + "cron-1.1.0" = self.by-version."cron"."1.1.0"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "follow-redirects-0.0.7" = self.by-version."follow-redirects"."0.0.7"; + "fs-extra-0.26.7" = self.by-version."fs-extra"."0.26.7"; "fs.notify-0.0.4" = self.by-version."fs.notify"."0.0.4"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; + "i18next-1.10.6" = self.by-version."i18next"."1.10.6"; + "is-utf8-0.2.1" = self.by-version."is-utf8"."0.2.1"; + "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; + "mqtt-1.7.4" = self.by-version."mqtt"."1.7.4"; + "mustache-2.2.1" = self.by-version."mustache"."2.2.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "oauth2orize-1.2.2" = self.by-version."oauth2orize"."1.2.2"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + "passport-0.3.2" = self.by-version."passport"."0.3.2"; "passport-http-bearer-1.0.1" = self.by-version."passport-http-bearer"."1.0.1"; "passport-oauth2-client-password-0.1.2" = self.by-version."passport-oauth2-client-password"."0.1.2"; - "oauth2orize-1.0.1" = self.by-version."oauth2orize"."1.0.1"; + "raw-body-2.1.6" = self.by-version."raw-body"."2.1.6"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "sentiment-1.0.6" = self.by-version."sentiment"."1.0.6"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; + "when-3.7.7" = self.by-version."when"."3.7.7"; + "ws-0.8.1" = self.by-version."ws"."0.8.1"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; + "node-red-node-feedparser-0.1.5" = self.by-version."node-red-node-feedparser"."0.1.5"; + "node-red-node-email-0.1.3" = self.by-version."node-red-node-email"."0.1.3"; + "node-red-node-twitter-0.1.6" = self.by-version."node-red-node-twitter"."0.1.6"; + "node-red-node-rbe-0.1.5" = self.by-version."node-red-node-rbe"."0.1.5"; }; optionalDependencies = { - "bcrypt-0.8.1" = self.by-version."bcrypt"."0.8.1"; + "node-red-node-serialport-0.1.2" = self.by-version."node-red-node-serialport"."0.1.2"; + "bcrypt-0.8.5" = self.by-version."bcrypt"."0.8.5"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - "node-red" = self.by-version."node-red"."0.10.6"; - by-spec."node-stringprep"."*" = - self.by-version."node-stringprep"."0.7.0"; - by-version."node-stringprep"."0.7.0" = self.buildNodePackage { - name = "node-stringprep-0.7.0"; - version = "0.7.0"; + "node-red" = self.by-version."node-red"."0.13.4"; + by-spec."node-red-node-email"."0.1.*" = + self.by-version."node-red-node-email"."0.1.3"; + by-version."node-red-node-email"."0.1.3" = self.buildNodePackage { + name = "node-red-node-email-0.1.3"; + version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.7.0.tgz"; - name = "node-stringprep-0.7.0.tgz"; - sha1 = "c8a8deac9217db97ef3eb20dfa817d7e716f56b5"; + url = "https://registry.npmjs.org/node-red-node-email/-/node-red-node-email-0.1.3.tgz"; + name = "node-red-node-email-0.1.3.tgz"; + sha1 = "4beade1fa54903e34be18766cceb525d76b27fe7"; + }; + deps = { + "nodemailer-1.3.4" = self.by-version."nodemailer"."1.3.4"; + "imap-0.8.16" = self.by-version."imap"."0.8.16"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-red-node-feedparser"."0.1.*" = + self.by-version."node-red-node-feedparser"."0.1.5"; + by-version."node-red-node-feedparser"."0.1.5" = self.buildNodePackage { + name = "node-red-node-feedparser-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-red-node-feedparser/-/node-red-node-feedparser-0.1.5.tgz"; + name = "node-red-node-feedparser-0.1.5.tgz"; + sha1 = "88f2b68b3c00d2cd95498436baf9ed13b552b8d0"; + }; + deps = { + "feedparser-1.1.3" = self.by-version."feedparser"."1.1.3"; + "request-2.65.0" = self.by-version."request"."2.65.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-red-node-rbe"."0.1.*" = + self.by-version."node-red-node-rbe"."0.1.5"; + by-version."node-red-node-rbe"."0.1.5" = self.buildNodePackage { + name = "node-red-node-rbe-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-red-node-rbe/-/node-red-node-rbe-0.1.5.tgz"; + name = "node-red-node-rbe-0.1.5.tgz"; + sha1 = "9df9b13b8828c9396319a54ad7c0fbb1a4005e9d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-red-node-serialport"."0.1.*" = + self.by-version."node-red-node-serialport"."0.1.2"; + by-version."node-red-node-serialport"."0.1.2" = self.buildNodePackage { + name = "node-red-node-serialport-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-red-node-serialport/-/node-red-node-serialport-0.1.2.tgz"; + name = "node-red-node-serialport-0.1.2.tgz"; + sha1 = "50ee3de46ef9b709fd110b22d9f7283955fa4b9b"; + }; + deps = { + "serialport-2.0.6" = self.by-version."serialport"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-red-node-twitter"."0.1.*" = + self.by-version."node-red-node-twitter"."0.1.6"; + by-version."node-red-node-twitter"."0.1.6" = self.buildNodePackage { + name = "node-red-node-twitter-0.1.6"; + version = "0.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.6.tgz"; + name = "node-red-node-twitter-0.1.6.tgz"; + sha1 = "ee1c65767db0325f316987bf155543864995e618"; + }; + deps = { + "twitter-ng-0.6.2" = self.by-version."twitter-ng"."0.6.2"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; + "request-2.67.0" = self.by-version."request"."2.67.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-redis-scripty"."0.0.5" = + self.by-version."node-redis-scripty"."0.0.5"; + by-version."node-redis-scripty"."0.0.5" = self.buildNodePackage { + name = "node-redis-scripty-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-redis-scripty/-/node-redis-scripty-0.0.5.tgz"; + name = "node-redis-scripty-0.0.5.tgz"; + sha1 = "4bf2d365ab6dab202cc08b7ac63f8f55aadc9625"; + }; + deps = { + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "extend-1.3.0" = self.by-version."extend"."1.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-redis-warlock"."^0.1.2" = + self.by-version."node-redis-warlock"."0.1.4"; + by-version."node-redis-warlock"."0.1.4" = self.buildNodePackage { + name = "node-redis-warlock-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-redis-warlock/-/node-redis-warlock-0.1.4.tgz"; + name = "node-redis-warlock-0.1.4.tgz"; + sha1 = "a9050d0d257ff3498b6e51a097f15ed5e297479e"; + }; + deps = { + "node-redis-scripty-0.0.5" = self.by-version."node-redis-scripty"."0.0.5"; + "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-stringprep"."*" = + self.by-version."node-stringprep"."0.7.3"; + by-version."node-stringprep"."0.7.3" = self.buildNodePackage { + name = "node-stringprep-0.7.3"; + version = "0.7.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-stringprep/-/node-stringprep-0.7.3.tgz"; + name = "node-stringprep-0.7.3.tgz"; + sha1 = "78b93d29660b6eddec501f2b2fa3f5e2e09dc6fd"; }; deps = { "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "node-stringprep" = self.by-version."node-stringprep"."0.7.0"; - by-spec."node-stringprep"."^0.5.2" = - self.by-version."node-stringprep"."0.5.4"; - by-version."node-stringprep"."0.5.4" = self.buildNodePackage { - name = "node-stringprep-0.5.4"; - version = "0.5.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/node-stringprep/-/node-stringprep-0.5.4.tgz"; - name = "node-stringprep-0.5.4.tgz"; - sha1 = "dd03b3d8f6f83137754cc1ea1a55675447b0ab92"; - }; - deps = { - "nan-1.2.0" = self.by-version."nan"."1.2.0"; - "bindings-1.1.1" = self.by-version."bindings"."1.1.1"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "nan-1.8.4" = self.by-version."nan"."1.8.4"; }; optionalDependencies = { }; @@ -27704,12 +31504,11 @@ os = [ ]; cpu = [ ]; }; + "node-stringprep" = self.by-version."node-stringprep"."0.7.3"; by-spec."node-stringprep"."^0.7.0" = - self.by-version."node-stringprep"."0.7.0"; + self.by-version."node-stringprep"."0.7.3"; by-spec."node-stringprep"."~0.7.0" = - self.by-version."node-stringprep"."0.7.0"; - by-spec."node-stringprep"."~0.x" = - self.by-version."node-stringprep"."0.7.0"; + self.by-version."node-stringprep"."0.7.3"; by-spec."node-swt".">=0.1.1" = self.by-version."node-swt"."0.1.1"; by-version."node-swt"."0.1.1" = self.buildNodePackage { @@ -27717,7 +31516,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-swt/-/node-swt-0.1.1.tgz"; + url = "https://registry.npmjs.org/node-swt/-/node-swt-0.1.1.tgz"; name = "node-swt-0.1.1.tgz"; sha1 = "af0903825784be553b93dbae57d99d59060585dd"; }; @@ -27729,23 +31528,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-syslog"."schamane/node-syslog#30d44555" = - self.by-version."node-syslog"."1.1.7"; - by-version."node-syslog"."1.1.7" = self.buildNodePackage { - name = "node-syslog-1.1.7"; - version = "1.1.7"; + by-spec."node-txstatsd"."~0.1.5" = + self.by-version."node-txstatsd"."0.1.6"; + by-version."node-txstatsd"."0.1.6" = self.buildNodePackage { + name = "node-txstatsd-0.1.6"; + version = "0.1.6"; bin = false; - src = fetchgit { - url = "git://github.com/schamane/node-syslog.git"; - rev = "30d445559617d439714418cdc1e847efbb49c5a0"; - sha256 = "d24a821603d8a4745839f5d90dc6bf63b5e286acf29a149ba3e412c5755a88ca"; + src = fetchurl { + url = "https://registry.npmjs.org/node-txstatsd/-/node-txstatsd-0.1.6.tgz"; + name = "node-txstatsd-0.1.6.tgz"; + sha1 = "924d22e5348c40156c2eb5ac29a5bb5609ca2a04"; }; deps = { }; optionalDependencies = { }; peerDependencies = []; - os = [ "!win32" ]; + os = [ ]; cpu = [ ]; }; by-spec."node-uptime"."https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" = @@ -27783,15 +31582,15 @@ }; "node-uptime" = self.by-version."node-uptime"."3.2.0"; by-spec."node-uuid"."*" = - self.by-version."node-uuid"."1.4.3"; - by-version."node-uuid"."1.4.3" = self.buildNodePackage { - name = "node-uuid-1.4.3"; - version = "1.4.3"; + self.by-version."node-uuid"."1.4.7"; + by-version."node-uuid"."1.4.7" = self.buildNodePackage { + name = "node-uuid-1.4.7"; + version = "1.4.7"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz"; - name = "node-uuid-1.4.3.tgz"; - sha1 = "319bb7a56e7cb63f00b5c0cd7851cd4b4ddf1df9"; + url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz"; + name = "node-uuid-1.4.7.tgz"; + sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"; }; deps = { }; @@ -27801,7 +31600,7 @@ os = [ ]; cpu = [ ]; }; - "node-uuid" = self.by-version."node-uuid"."1.4.3"; + "node-uuid" = self.by-version."node-uuid"."1.4.7"; by-spec."node-uuid"."1.3.3" = self.by-version."node-uuid"."1.3.3"; by-version."node-uuid"."1.3.3" = self.buildNodePackage { @@ -27809,7 +31608,7 @@ version = "1.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-uuid/-/node-uuid-1.3.3.tgz"; + url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.3.3.tgz"; name = "node-uuid-1.3.3.tgz"; sha1 = "d3db4d7b56810d9e4032342766282af07391729b"; }; @@ -27828,7 +31627,7 @@ version = "1.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-uuid/-/node-uuid-1.4.1.tgz"; + url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.1.tgz"; name = "node-uuid-1.4.1.tgz"; sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048"; }; @@ -27840,18 +31639,37 @@ os = [ ]; cpu = [ ]; }; + by-spec."node-uuid"."1.4.3" = + self.by-version."node-uuid"."1.4.3"; + by-version."node-uuid"."1.4.3" = self.buildNodePackage { + name = "node-uuid-1.4.3"; + version = "1.4.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz"; + name = "node-uuid-1.4.3.tgz"; + sha1 = "319bb7a56e7cb63f00b5c0cd7851cd4b4ddf1df9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."node-uuid"."^1.3.3" = - self.by-version."node-uuid"."1.4.3"; + self.by-version."node-uuid"."1.4.7"; by-spec."node-uuid"."^1.4.1" = - self.by-version."node-uuid"."1.4.3"; + self.by-version."node-uuid"."1.4.7"; by-spec."node-uuid"."~1.4.0" = - self.by-version."node-uuid"."1.4.3"; + self.by-version."node-uuid"."1.4.7"; by-spec."node-uuid"."~1.4.1" = - self.by-version."node-uuid"."1.4.3"; - by-spec."node-uuid"."~1.4.2" = - self.by-version."node-uuid"."1.4.3"; + self.by-version."node-uuid"."1.4.7"; by-spec."node-uuid"."~1.4.3" = - self.by-version."node-uuid"."1.4.3"; + self.by-version."node-uuid"."1.4.7"; + by-spec."node-uuid"."~1.4.7" = + self.by-version."node-uuid"."1.4.7"; by-spec."node-wsfederation".">=0.1.1" = self.by-version."node-wsfederation"."0.1.1"; by-version."node-wsfederation"."0.1.1" = self.buildNodePackage { @@ -27859,12 +31677,12 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-wsfederation/-/node-wsfederation-0.1.1.tgz"; + url = "https://registry.npmjs.org/node-wsfederation/-/node-wsfederation-0.1.1.tgz"; name = "node-wsfederation-0.1.1.tgz"; sha1 = "9abf1dd3b20a3ab0a38f899c882c218d734e8a7b"; }; deps = { - "xml2js-0.4.8" = self.by-version."xml2js"."0.4.8"; + "xml2js-0.4.16" = self.by-version."xml2js"."0.4.16"; }; optionalDependencies = { }; @@ -27872,83 +31690,25 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-xmpp"."*" = - self.by-version."node-xmpp"."1.0.0-alpha2"; - by-version."node-xmpp"."1.0.0-alpha2" = self.buildNodePackage { - name = "node-xmpp-1.0.0-alpha2"; - version = "1.0.0-alpha2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp/-/node-xmpp-1.0.0-alpha2.tgz"; - name = "node-xmpp-1.0.0-alpha2.tgz"; - sha1 = "349041a9041d3bcc608cdbf57e60f5b301e7a8c0"; - }; - deps = { - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "browser-request-0.3.3" = self.by-version."browser-request"."0.3.3"; - "faye-websocket-0.9.4" = self.by-version."faye-websocket"."0.9.4"; - "browserify-3.19.1" = self.by-version."browserify"."3.19.1"; - "brfs-0.0.8" = self.by-version."brfs"."0.0.8"; - "node-xmpp-component-1.0.0-alpha1" = self.by-version."node-xmpp-component"."1.0.0-alpha1"; - "node-xmpp-client-1.0.0-alpha20" = self.by-version."node-xmpp-client"."1.0.0-alpha20"; - "node-xmpp-server-1.0.0-alpha12" = self.by-version."node-xmpp-server"."1.0.0-alpha12"; - "node-xmpp-core-1.0.0-alpha14" = self.by-version."node-xmpp-core"."1.0.0-alpha14"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "node-xmpp" = self.by-version."node-xmpp"."1.0.0-alpha2"; - by-spec."node-xmpp"."~1.0.0-alpha2" = - self.by-version."node-xmpp"."1.0.0-alpha2"; by-spec."node-xmpp-client"."*" = - self.by-version."node-xmpp-client"."1.0.0-alpha9"; - by-version."node-xmpp-client"."1.0.0-alpha9" = self.buildNodePackage { - name = "node-xmpp-client-1.0.0-alpha9"; - version = "1.0.0-alpha9"; + self.by-version."node-xmpp-client"."3.0.0"; + by-version."node-xmpp-client"."3.0.0" = self.buildNodePackage { + name = "node-xmpp-client-3.0.0"; + version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-client/-/node-xmpp-client-1.0.0-alpha9.tgz"; - name = "node-xmpp-client-1.0.0-alpha9.tgz"; - sha1 = "5e48ce59f9ea96ff7f80dc4fff2be252ace26f24"; + url = "https://registry.npmjs.org/node-xmpp-client/-/node-xmpp-client-3.0.0.tgz"; + name = "node-xmpp-client-3.0.0.tgz"; + sha1 = "52cc5d3bf7d1fc86d2776a582f7c7bcae802613a"; }; deps = { - "request-2.27.0" = self.by-version."request"."2.27.0"; - "faye-websocket-0.7.3" = self.by-version."faye-websocket"."0.7.3"; - "node-xmpp-core-1.0.0-alpha9" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; "browser-request-0.3.3" = self.by-version."browser-request"."0.3.3"; - "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "node-xmpp-client" = self.by-version."node-xmpp-client"."1.0.0-alpha9"; - by-spec."node-xmpp-client"."git+https://github.com/node-xmpp/node-xmpp-client.git" = - self.by-version."node-xmpp-client"."1.0.0-alpha20"; - by-version."node-xmpp-client"."1.0.0-alpha20" = self.buildNodePackage { - name = "node-xmpp-client-1.0.0-alpha20"; - version = "1.0.0-alpha20"; - bin = false; - src = fetchgit { - url = "https://github.com/node-xmpp/node-xmpp-client.git"; - rev = "15685d8ad8ae9767281c74939cbec1500d9b0745"; - sha256 = "1e0cba0ec6b58a73533d723e9f5100676229d27c3fcb0799cc64bf79f97c687f"; - }; - deps = { - "request-2.48.0" = self.by-version."request"."2.48.0"; - "faye-websocket-0.7.3" = self.by-version."faye-websocket"."0.7.3"; - "node-xmpp-core-1.0.0-alpha9" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; - "browser-request-0.3.3" = self.by-version."browser-request"."0.3.3"; - "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; - "debug-1.0.4" = self.by-version."debug"."1.0.4"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "faye-websocket-0.10.0" = self.by-version."faye-websocket"."0.10.0"; + "istanbul-0.4.3" = self.by-version."istanbul"."0.4.3"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "node-xmpp-core-4.2.0" = self.by-version."node-xmpp-core"."4.2.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -27956,20 +31716,20 @@ os = [ ]; cpu = [ ]; }; + "node-xmpp-client" = self.by-version."node-xmpp-client"."3.0.0"; by-spec."node-xmpp-component"."*" = - self.by-version."node-xmpp-component"."1.0.0-alpha1"; - by-version."node-xmpp-component"."1.0.0-alpha1" = self.buildNodePackage { - name = "node-xmpp-component-1.0.0-alpha1"; - version = "1.0.0-alpha1"; + self.by-version."node-xmpp-component"."2.0.1"; + by-version."node-xmpp-component"."2.0.1" = self.buildNodePackage { + name = "node-xmpp-component-2.0.1"; + version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-component/-/node-xmpp-component-1.0.0-alpha1.tgz"; - name = "node-xmpp-component-1.0.0-alpha1.tgz"; - sha1 = "3f85da00c05240bd48cc6c729d74875e6eb97877"; + url = "https://registry.npmjs.org/node-xmpp-component/-/node-xmpp-component-2.0.1.tgz"; + name = "node-xmpp-component-2.0.1.tgz"; + sha1 = "987f4928cbadb4542a0fbdd3c7c529778a89ef1c"; }; deps = { - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "node-xmpp-core-1.0.0-alpha1" = self.by-version."node-xmpp-core"."1.0.0-alpha1"; + "node-xmpp-core-5.0.1" = self.by-version."node-xmpp-core"."5.0.1"; }; optionalDependencies = { }; @@ -27977,26 +31737,27 @@ os = [ ]; cpu = [ ]; }; - "node-xmpp-component" = self.by-version."node-xmpp-component"."1.0.0-alpha1"; - by-spec."node-xmpp-component"."git+https://github.com/node-xmpp/node-xmpp-component.git" = - self.by-version."node-xmpp-component"."1.0.0-alpha1"; + "node-xmpp-component" = self.by-version."node-xmpp-component"."2.0.1"; by-spec."node-xmpp-core"."*" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-version."node-xmpp-core"."1.0.0-alpha9" = self.buildNodePackage { - name = "node-xmpp-core-1.0.0-alpha9"; - version = "1.0.0-alpha9"; + self.by-version."node-xmpp-core"."5.0.1"; + by-version."node-xmpp-core"."5.0.1" = self.buildNodePackage { + name = "node-xmpp-core-5.0.1"; + version = "5.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-core/-/node-xmpp-core-1.0.0-alpha9.tgz"; - name = "node-xmpp-core-1.0.0-alpha9.tgz"; - sha1 = "64b2b41e9f59fc910c71fe648c6be2bc4ecef7f1"; + url = "https://registry.npmjs.org/node-xmpp-core/-/node-xmpp-core-5.0.1.tgz"; + name = "node-xmpp-core-5.0.1.tgz"; + sha1 = "74098106652e17e2a2847ba82225e6504c595135"; }; deps = { - "node-stringprep-0.5.4" = self.by-version."node-stringprep"."0.5.4"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "lodash.assign-3.2.0" = self.by-version."lodash.assign"."3.2.0"; + "ltx-2.3.0" = self.by-version."ltx"."2.3.0"; + "node-xmpp-jid-2.3.0" = self.by-version."node-xmpp-jid"."2.3.0"; + "node-xmpp-stanza-1.1.0" = self.by-version."node-xmpp-stanza"."1.1.0"; "reconnect-core-0.0.1" = self.by-version."reconnect-core"."0.0.1"; - "tls-connect-0.2.2" = self.by-version."tls-connect"."0.2.2"; - "ltx-0.5.2" = self.by-version."ltx"."0.5.2"; - "debug-0.8.1" = self.by-version."debug"."0.8.1"; + "node-xmpp-tls-connect-1.0.1" = self.by-version."node-xmpp-tls-connect"."1.0.1"; }; optionalDependencies = { }; @@ -28004,24 +31765,26 @@ os = [ ]; cpu = [ ]; }; - "node-xmpp-core" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-spec."node-xmpp-core"."1.0.0-alpha1" = - self.by-version."node-xmpp-core"."1.0.0-alpha1"; - by-version."node-xmpp-core"."1.0.0-alpha1" = self.buildNodePackage { - name = "node-xmpp-core-1.0.0-alpha1"; - version = "1.0.0-alpha1"; + "node-xmpp-core" = self.by-version."node-xmpp-core"."5.0.1"; + by-spec."node-xmpp-core"."^4.1.0" = + self.by-version."node-xmpp-core"."4.2.0"; + by-version."node-xmpp-core"."4.2.0" = self.buildNodePackage { + name = "node-xmpp-core-4.2.0"; + version = "4.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-core/-/node-xmpp-core-1.0.0-alpha1.tgz"; - name = "node-xmpp-core-1.0.0-alpha1.tgz"; - sha1 = "94b1b33a0ccb84427d8b290af80e29b8dec5545f"; + url = "https://registry.npmjs.org/node-xmpp-core/-/node-xmpp-core-4.2.0.tgz"; + name = "node-xmpp-core-4.2.0.tgz"; + sha1 = "7e2e040c1e5aa64be35013bdc34132ec376995ae"; }; deps = { - "node-stringprep-0.7.0" = self.by-version."node-stringprep"."0.7.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "lodash.assign-3.2.0" = self.by-version."lodash.assign"."3.2.0"; + "ltx-2.3.0" = self.by-version."ltx"."2.3.0"; + "node-xmpp-jid-2.3.0" = self.by-version."node-xmpp-jid"."2.3.0"; "reconnect-core-0.0.1" = self.by-version."reconnect-core"."0.0.1"; "tls-connect-0.2.2" = self.by-version."tls-connect"."0.2.2"; - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "debug-0.8.1" = self.by-version."debug"."0.8.1"; }; optionalDependencies = { }; @@ -28029,61 +31792,72 @@ os = [ ]; cpu = [ ]; }; - by-spec."node-xmpp-core"."^1.0.0-alpha13" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-spec."node-xmpp-core"."^1.0.0-alpha14" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-spec."node-xmpp-core"."^1.0.0-alpha6" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-spec."node-xmpp-core"."^1.0.0-alpha9" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; - by-spec."node-xmpp-core"."git+https://github.com/node-xmpp/node-xmpp-core.git" = - self.by-version."node-xmpp-core"."1.0.0-alpha14"; - by-version."node-xmpp-core"."1.0.0-alpha14" = self.buildNodePackage { - name = "node-xmpp-core-1.0.0-alpha14"; - version = "1.0.0-alpha14"; - bin = false; - src = fetchgit { - url = "https://github.com/node-xmpp/node-xmpp-core.git"; - rev = "e4bb484de051e76383608b41e45ea54af9c8f053"; - sha256 = "51ff9b4accbd617357a394726dd8d7afbdd9d2dbeebe155ecfc0ae54c3bec662"; - }; - deps = { - "node-stringprep-0.7.0" = self.by-version."node-stringprep"."0.7.0"; - "reconnect-core-0.0.1" = self.by-version."reconnect-core"."0.0.1"; - "tls-connect-0.2.2" = self.by-version."tls-connect"."0.2.2"; - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."node-xmpp-core"."~1.0.0-alpha10" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; + by-spec."node-xmpp-core"."^4.2.0" = + self.by-version."node-xmpp-core"."4.2.0"; + by-spec."node-xmpp-core"."^5.0.1" = + self.by-version."node-xmpp-core"."5.0.1"; by-spec."node-xmpp-core"."~1.0.0-alpha14" = - self.by-version."node-xmpp-core"."1.0.0-alpha9"; + self.by-version."node-xmpp-core"."1.0.0"; + by-version."node-xmpp-core"."1.0.0" = self.buildNodePackage { + name = "node-xmpp-core-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-xmpp-core/-/node-xmpp-core-1.0.0.tgz"; + name = "node-xmpp-core-1.0.0.tgz"; + sha1 = "6c96e7f5ce044fcc93ffb2cc45cb100e09af149f"; + }; + deps = { + "node-stringprep-0.7.3" = self.by-version."node-stringprep"."0.7.3"; + "reconnect-core-0.0.1" = self.by-version."reconnect-core"."0.0.1"; + "tls-connect-0.2.2" = self.by-version."tls-connect"."0.2.2"; + "ltx-0.9.1" = self.by-version."ltx"."0.9.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-xmpp-jid"."^2.0.0" = + self.by-version."node-xmpp-jid"."2.3.0"; + by-version."node-xmpp-jid"."2.3.0" = self.buildNodePackage { + name = "node-xmpp-jid-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-xmpp-jid/-/node-xmpp-jid-2.3.0.tgz"; + name = "node-xmpp-jid-2.3.0.tgz"; + sha1 = "60a3c950582a0cdcfda074494357a85178f38878"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."node-xmpp-joap"."*" = - self.by-version."node-xmpp-joap"."0.0.18"; - by-version."node-xmpp-joap"."0.0.18" = self.buildNodePackage { - name = "node-xmpp-joap-0.0.18"; - version = "0.0.18"; + self.by-version."node-xmpp-joap"."0.0.19"; + by-version."node-xmpp-joap"."0.0.19" = self.buildNodePackage { + name = "node-xmpp-joap-0.0.19"; + version = "0.0.19"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-joap/-/node-xmpp-joap-0.0.18.tgz"; - name = "node-xmpp-joap-0.0.18.tgz"; - sha1 = "208c86f23789f1409e3888ad40bf7f61138a2db9"; + url = "https://registry.npmjs.org/node-xmpp-joap/-/node-xmpp-joap-0.0.19.tgz"; + name = "node-xmpp-joap-0.0.19.tgz"; + sha1 = "d026cef86639f9db67e0d7451f38bb2337ed1511"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - "node-stringprep-0.7.0" = self.by-version."node-stringprep"."0.7.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "node-xmpp-1.0.0-alpha2" = self.by-version."node-xmpp"."1.0.0-alpha2"; - "toobusy-js-0.4.1" = self.by-version."toobusy-js"."0.4.1"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + "ltx-0.9.1" = self.by-version."ltx"."0.9.1"; + "node-expat-2.3.13" = self.by-version."node-expat"."2.3.13"; + "node-stringprep-0.7.3" = self.by-version."node-stringprep"."0.7.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "node-xmpp-core-1.0.0" = self.by-version."node-xmpp-core"."1.0.0"; + "toobusy-js-0.4.3" = self.by-version."toobusy-js"."0.4.3"; }; optionalDependencies = { }; @@ -28091,46 +31865,24 @@ os = [ ]; cpu = [ ]; }; - "node-xmpp-joap" = self.by-version."node-xmpp-joap"."0.0.18"; + "node-xmpp-joap" = self.by-version."node-xmpp-joap"."0.0.19"; by-spec."node-xmpp-server"."*" = - self.by-version."node-xmpp-server"."1.0.0-alpha9"; - by-version."node-xmpp-server"."1.0.0-alpha9" = self.buildNodePackage { - name = "node-xmpp-server-1.0.0-alpha9"; - version = "1.0.0-alpha9"; + self.by-version."node-xmpp-server"."2.1.2"; + by-version."node-xmpp-server"."2.1.2" = self.buildNodePackage { + name = "node-xmpp-server-2.1.2"; + version = "2.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-server/-/node-xmpp-server-1.0.0-alpha9.tgz"; - name = "node-xmpp-server-1.0.0-alpha9.tgz"; - sha1 = "1622aafddf9efde4dd9483c849d56b80e582a745"; + url = "https://registry.npmjs.org/node-xmpp-server/-/node-xmpp-server-2.1.2.tgz"; + name = "node-xmpp-server-2.1.2.tgz"; + sha1 = "57ebff142811540070be50048db17d5179a243e5"; }; deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "es6-collections-0.5.6" = self.by-version."es6-collections"."0.5.6"; "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "node-xmpp-core-1.0.0-alpha9" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "node-xmpp-server" = self.by-version."node-xmpp-server"."1.0.0-alpha9"; - by-spec."node-xmpp-server"."git+https://github.com/node-xmpp/node-xmpp-server.git" = - self.by-version."node-xmpp-server"."1.0.0-alpha12"; - by-version."node-xmpp-server"."1.0.0-alpha12" = self.buildNodePackage { - name = "node-xmpp-server-1.0.0-alpha12"; - version = "1.0.0-alpha12"; - bin = false; - src = fetchgit { - url = "https://github.com/node-xmpp/node-xmpp-server.git"; - rev = "db748d1e8c2510a6a834b9ebf179175c33c3dfba"; - sha256 = "d0f3e91a045e3afda26ab3a276e95b15e29c099cb48f468a30185cfee3d96ce0"; - }; - deps = { - "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "node-xmpp-core-1.0.0-alpha9" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "ws-0.7.1" = self.by-version."ws"."0.7.1"; + "node-xmpp-core-4.2.0" = self.by-version."node-xmpp-core"."4.2.0"; + "ws-0.8.1" = self.by-version."ws"."0.8.1"; }; optionalDependencies = { }; @@ -28138,6 +31890,7 @@ os = [ ]; cpu = [ ]; }; + "node-xmpp-server" = self.by-version."node-xmpp-server"."2.1.2"; by-spec."node-xmpp-serviceadmin"."*" = self.by-version."node-xmpp-serviceadmin"."0.2.0"; by-version."node-xmpp-serviceadmin"."0.2.0" = self.buildNodePackage { @@ -28145,16 +31898,16 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node-xmpp-serviceadmin/-/node-xmpp-serviceadmin-0.2.0.tgz"; + url = "https://registry.npmjs.org/node-xmpp-serviceadmin/-/node-xmpp-serviceadmin-0.2.0.tgz"; name = "node-xmpp-serviceadmin-0.2.0.tgz"; sha1 = "35f8b07cf6d96c27fe292f1b0cb9ac73f69e6315"; }; deps = { - "node-xmpp-core-1.0.0-alpha9" = self.by-version."node-xmpp-core"."1.0.0-alpha9"; - "node-stringprep-0.7.0" = self.by-version."node-stringprep"."0.7.0"; - "ltx-0.9.0" = self.by-version."ltx"."0.9.0"; - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - "coffee-script-1.9.2" = self.by-version."coffee-script"."1.9.2"; + "node-xmpp-core-1.0.0" = self.by-version."node-xmpp-core"."1.0.0"; + "node-stringprep-0.7.3" = self.by-version."node-stringprep"."0.7.3"; + "ltx-0.9.1" = self.by-version."ltx"."0.9.1"; + "node-expat-2.3.13" = self.by-version."node-expat"."2.3.13"; + "coffee-script-1.10.0" = self.by-version."coffee-script"."1.10.0"; }; optionalDependencies = { }; @@ -28163,6 +31916,46 @@ cpu = [ ]; }; "node-xmpp-serviceadmin" = self.by-version."node-xmpp-serviceadmin"."0.2.0"; + by-spec."node-xmpp-stanza"."^1.1.0" = + self.by-version."node-xmpp-stanza"."1.1.0"; + by-version."node-xmpp-stanza"."1.1.0" = self.buildNodePackage { + name = "node-xmpp-stanza-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-xmpp-stanza/-/node-xmpp-stanza-1.1.0.tgz"; + name = "node-xmpp-stanza-1.1.0.tgz"; + sha1 = "26bb749065fe00787004f8c3b7c0b28494d46554"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "ltx-2.3.0" = self.by-version."ltx"."2.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."node-xmpp-tls-connect"."^1.0.1" = + self.by-version."node-xmpp-tls-connect"."1.0.1"; + by-version."node-xmpp-tls-connect"."1.0.1" = self.buildNodePackage { + name = "node-xmpp-tls-connect-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/node-xmpp-tls-connect/-/node-xmpp-tls-connect-1.0.1.tgz"; + name = "node-xmpp-tls-connect-1.0.1.tgz"; + sha1 = "91ace43ac26b138861b2be478df9df19d61dc5c3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."node.extend"."1.0.0" = self.by-version."node.extend"."1.0.0"; by-version."node.extend"."1.0.0" = self.buildNodePackage { @@ -28170,7 +31963,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz"; + url = "https://registry.npmjs.org/node.extend/-/node.extend-1.0.0.tgz"; name = "node.extend-1.0.0.tgz"; sha1 = "ab83960c477280d01ba5554a0d8fd3acfe39336e"; }; @@ -28189,12 +31982,12 @@ version = "0.3.35"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer/-/nodemailer-0.3.35.tgz"; + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-0.3.35.tgz"; name = "nodemailer-0.3.35.tgz"; sha1 = "4d38cdc0ad230bdf88cc27d1256ef49fcb422e19"; }; deps = { - "mailcomposer-0.2.12" = self.by-version."mailcomposer"."0.2.12"; + "mailcomposer-3.7.0" = self.by-version."mailcomposer"."3.7.0"; "simplesmtp-0.3.35" = self.by-version."simplesmtp"."0.3.35"; "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; }; @@ -28211,7 +32004,7 @@ version = "0.7.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer/-/nodemailer-0.7.1.tgz"; + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-0.7.1.tgz"; name = "nodemailer-0.7.1.tgz"; sha1 = "1ec819e243622300a00abe746cb5d3389c0f316c"; }; @@ -28230,23 +32023,62 @@ os = [ ]; cpu = [ ]; }; - by-spec."nodemailer"."1.3.0" = - self.by-version."nodemailer"."1.3.0"; - by-version."nodemailer"."1.3.0" = self.buildNodePackage { - name = "nodemailer-1.3.0"; + by-spec."nodemailer"."1.3.4" = + self.by-version."nodemailer"."1.3.4"; + by-version."nodemailer"."1.3.4" = self.buildNodePackage { + name = "nodemailer-1.3.4"; + version = "1.3.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/nodemailer/-/nodemailer-1.3.4.tgz"; + name = "nodemailer-1.3.4.tgz"; + sha1 = "9e5ca29ddc9fd78584e5ed46ddc486385be43ae3"; + }; + deps = { + "buildmail-1.3.0" = self.by-version."buildmail"."1.3.0"; + "hyperquest-1.3.0" = self.by-version."hyperquest"."1.3.0"; + "libmime-1.2.0" = self.by-version."libmime"."1.2.0"; + "nodemailer-direct-transport-1.1.0" = self.by-version."nodemailer-direct-transport"."1.1.0"; + "nodemailer-smtp-transport-1.1.0" = self.by-version."nodemailer-smtp-transport"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."nodemailer-direct-transport"."^1.0.2" = + self.by-version."nodemailer-direct-transport"."1.1.0"; + by-version."nodemailer-direct-transport"."1.1.0" = self.buildNodePackage { + name = "nodemailer-direct-transport-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-1.1.0.tgz"; + name = "nodemailer-direct-transport-1.1.0.tgz"; + sha1 = "a2f78708ee6f16ea0573fc82949d138ff172f624"; + }; + deps = { + "smtp-connection-1.3.8" = self.by-version."smtp-connection"."1.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."nodemailer-fetch"."1.3.0" = + self.by-version."nodemailer-fetch"."1.3.0"; + by-version."nodemailer-fetch"."1.3.0" = self.buildNodePackage { + name = "nodemailer-fetch-1.3.0"; version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer/-/nodemailer-1.3.0.tgz"; - name = "nodemailer-1.3.0.tgz"; - sha1 = "a6e4c507b2f776a03d46e9be8d40b5be916f290a"; + url = "https://registry.npmjs.org/nodemailer-fetch/-/nodemailer-fetch-1.3.0.tgz"; + name = "nodemailer-fetch-1.3.0.tgz"; + sha1 = "9f37f6a5b80c1cb5d697ca2bfbde41a6582a50b0"; }; deps = { - "buildmail-1.2.4" = self.by-version."buildmail"."1.2.4"; - "hyperquest-0.3.0" = self.by-version."hyperquest"."0.3.0"; - "libmime-0.1.7" = self.by-version."libmime"."0.1.7"; - "nodemailer-direct-transport-1.0.2" = self.by-version."nodemailer-direct-transport"."1.0.2"; - "nodemailer-smtp-transport-0.1.13" = self.by-version."nodemailer-smtp-transport"."0.1.13"; }; optionalDependencies = { }; @@ -28254,19 +32086,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."nodemailer-direct-transport"."^1.0.0" = - self.by-version."nodemailer-direct-transport"."1.0.2"; - by-version."nodemailer-direct-transport"."1.0.2" = self.buildNodePackage { - name = "nodemailer-direct-transport-1.0.2"; - version = "1.0.2"; + by-spec."nodemailer-shared"."1.0.4" = + self.by-version."nodemailer-shared"."1.0.4"; + by-version."nodemailer-shared"."1.0.4" = self.buildNodePackage { + name = "nodemailer-shared-1.0.4"; + version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer-direct-transport/-/nodemailer-direct-transport-1.0.2.tgz"; - name = "nodemailer-direct-transport-1.0.2.tgz"; - sha1 = "cec0fb03bb7828c64faacc5344b28911807cdba1"; + url = "https://registry.npmjs.org/nodemailer-shared/-/nodemailer-shared-1.0.4.tgz"; + name = "nodemailer-shared-1.0.4.tgz"; + sha1 = "8b5c5c35bfb29a47dda7d38303f3a4fb47ba38ae"; }; deps = { - "smtp-connection-1.2.0" = self.by-version."smtp-connection"."1.2.0"; + "nodemailer-fetch-1.3.0" = self.by-version."nodemailer-fetch"."1.3.0"; }; optionalDependencies = { }; @@ -28274,20 +32106,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."nodemailer-smtp-transport"."^0.1.12" = - self.by-version."nodemailer-smtp-transport"."0.1.13"; - by-version."nodemailer-smtp-transport"."0.1.13" = self.buildNodePackage { - name = "nodemailer-smtp-transport-0.1.13"; - version = "0.1.13"; + by-spec."nodemailer-smtp-transport"."^1.0.2" = + self.by-version."nodemailer-smtp-transport"."1.1.0"; + by-version."nodemailer-smtp-transport"."1.1.0" = self.buildNodePackage { + name = "nodemailer-smtp-transport-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-0.1.13.tgz"; - name = "nodemailer-smtp-transport-0.1.13.tgz"; - sha1 = "f8d1babfd5221aaa1308fd36ab7945a2f7081476"; + url = "https://registry.npmjs.org/nodemailer-smtp-transport/-/nodemailer-smtp-transport-1.1.0.tgz"; + name = "nodemailer-smtp-transport-1.1.0.tgz"; + sha1 = "e6c37f31885ab3080e7ded3cf528c4ad7e691398"; }; deps = { - "nodemailer-wellknown-0.1.5" = self.by-version."nodemailer-wellknown"."0.1.5"; - "smtp-connection-1.2.0" = self.by-version."smtp-connection"."1.2.0"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "nodemailer-wellknown-0.1.8" = self.by-version."nodemailer-wellknown"."0.1.8"; + "smtp-connection-1.3.8" = self.by-version."smtp-connection"."1.3.8"; }; optionalDependencies = { }; @@ -28295,16 +32128,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nodemailer-wellknown"."^0.1.1" = - self.by-version."nodemailer-wellknown"."0.1.5"; - by-version."nodemailer-wellknown"."0.1.5" = self.buildNodePackage { - name = "nodemailer-wellknown-0.1.5"; - version = "0.1.5"; + by-spec."nodemailer-wellknown"."^0.1.7" = + self.by-version."nodemailer-wellknown"."0.1.8"; + by-version."nodemailer-wellknown"."0.1.8" = self.buildNodePackage { + name = "nodemailer-wellknown-0.1.8"; + version = "0.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.5.tgz"; - name = "nodemailer-wellknown-0.1.5.tgz"; - sha1 = "1e467a2f7132ec30273b45f1ae300dd1193dd035"; + url = "https://registry.npmjs.org/nodemailer-wellknown/-/nodemailer-wellknown-0.1.8.tgz"; + name = "nodemailer-wellknown-0.1.8.tgz"; + sha1 = "d44f1ced0aedf1ac1d9a99e8444d0db6c01428dc"; }; deps = { }; @@ -28315,21 +32148,27 @@ cpu = [ ]; }; by-spec."nodemon"."*" = - self.by-version."nodemon"."1.3.7"; - by-version."nodemon"."1.3.7" = self.buildNodePackage { - name = "nodemon-1.3.7"; - version = "1.3.7"; + self.by-version."nodemon"."1.9.1"; + by-version."nodemon"."1.9.1" = self.buildNodePackage { + name = "nodemon-1.9.1"; + version = "1.9.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nodemon/-/nodemon-1.3.7.tgz"; - name = "nodemon-1.3.7.tgz"; - sha1 = "447bc2e01bf499cbf5853f9937496e0a04835449"; + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.9.1.tgz"; + name = "nodemon-1.9.1.tgz"; + sha1 = "442071f88c39d801fb0bdfd209413da5dce6dad3"; }; deps = { - "minimatch-0.3.0" = self.by-version."minimatch"."0.3.0"; - "ps-tree-0.0.3" = self.by-version."ps-tree"."0.0.3"; - "touch-0.0.3" = self.by-version."touch"."0.0.3"; - "update-notifier-0.3.2" = self.by-version."update-notifier"."0.3.2"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "es6-promise-3.1.2" = self.by-version."es6-promise"."3.1.2"; + "ignore-by-default-1.0.1" = self.by-version."ignore-by-default"."1.0.1"; + "lodash.defaults-3.1.2" = self.by-version."lodash.defaults"."3.1.2"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "ps-tree-1.0.1" = self.by-version."ps-tree"."1.0.1"; + "touch-1.0.0" = self.by-version."touch"."1.0.0"; + "undefsafe-0.0.3" = self.by-version."undefsafe"."0.0.3"; + "update-notifier-0.5.0" = self.by-version."update-notifier"."0.5.0"; }; optionalDependencies = { }; @@ -28337,7 +32176,7 @@ os = [ ]; cpu = [ ]; }; - "nodemon" = self.by-version."nodemon"."1.3.7"; + "nodemon" = self.by-version."nodemon"."1.9.1"; by-spec."nomnom"."1.6.x" = self.by-version."nomnom"."1.6.2"; by-version."nomnom"."1.6.2" = self.buildNodePackage { @@ -28345,7 +32184,7 @@ version = "1.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz"; + url = "https://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz"; name = "nomnom-1.6.2.tgz"; sha1 = "84a66a260174408fc5b77a18f888eccc44fb6971"; }; @@ -28366,12 +32205,12 @@ version = "2.2.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz"; + url = "https://registry.npmjs.org/nopt/-/nopt-2.2.1.tgz"; name = "nopt-2.2.1.tgz"; sha1 = "2aa09b7d1768487b3b89a9c5aa52335bff0baea7"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28380,18 +32219,18 @@ cpu = [ ]; }; by-spec."nopt"."2 || 3" = - self.by-version."nopt"."3.0.1"; - by-version."nopt"."3.0.1" = self.buildNodePackage { - name = "nopt-3.0.1"; - version = "3.0.1"; + self.by-version."nopt"."3.0.6"; + by-version."nopt"."3.0.6" = self.buildNodePackage { + name = "nopt-3.0.6"; + version = "3.0.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-3.0.1.tgz"; - name = "nopt-3.0.1.tgz"; - sha1 = "bce5c42446a3291f47622a370abbf158fbbacbfd"; + url = "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz"; + name = "nopt-3.0.6.tgz"; + sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28406,12 +32245,12 @@ version = "2.0.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz"; + url = "https://registry.npmjs.org/nopt/-/nopt-2.0.0.tgz"; name = "nopt-2.0.0.tgz"; sha1 = "ca7416f20a5e3f9c3b86180f96295fa3d0b52e0d"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28426,12 +32265,12 @@ version = "2.1.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-2.1.1.tgz"; + url = "https://registry.npmjs.org/nopt/-/nopt-2.1.1.tgz"; name = "nopt-2.1.1.tgz"; sha1 = "91eb7c4b017e7c00adcad1fd6d63944d0fdb75c1"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28441,23 +32280,17 @@ }; by-spec."nopt"."3.0.1" = self.by-version."nopt"."3.0.1"; - by-spec."nopt"."3.x" = - self.by-version."nopt"."3.0.1"; - by-spec."nopt"."^3.0.1" = - self.by-version."nopt"."3.0.1"; - by-spec."nopt"."~1.0.10" = - self.by-version."nopt"."1.0.10"; - by-version."nopt"."1.0.10" = self.buildNodePackage { - name = "nopt-1.0.10"; - version = "1.0.10"; + by-version."nopt"."3.0.1" = self.buildNodePackage { + name = "nopt-3.0.1"; + version = "3.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz"; - name = "nopt-1.0.10.tgz"; - sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; + url = "https://registry.npmjs.org/nopt/-/nopt-3.0.1.tgz"; + name = "nopt-3.0.1.tgz"; + sha1 = "bce5c42446a3291f47622a370abbf158fbbacbfd"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28465,21 +32298,25 @@ os = [ ]; cpu = [ ]; }; - by-spec."nopt"."~2" = - self.by-version."nopt"."2.2.1"; - by-spec."nopt"."~2.1.1" = - self.by-version."nopt"."2.1.2"; - by-version."nopt"."2.1.2" = self.buildNodePackage { - name = "nopt-2.1.2"; - version = "2.1.2"; + by-spec."nopt"."3.0.6" = + self.by-version."nopt"."3.0.6"; + by-spec."nopt"."3.x" = + self.by-version."nopt"."3.0.6"; + by-spec."nopt"."^3.0.6" = + self.by-version."nopt"."3.0.6"; + by-spec."nopt"."~1.0.10" = + self.by-version."nopt"."1.0.10"; + by-version."nopt"."1.0.10" = self.buildNodePackage { + name = "nopt-1.0.10"; + version = "1.0.10"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/nopt/-/nopt-2.1.2.tgz"; - name = "nopt-2.1.2.tgz"; - sha1 = "6cccd977b80132a07731d6e8ce58c2c8303cf9af"; + url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz"; + name = "nopt-1.0.10.tgz"; + sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; }; optionalDependencies = { }; @@ -28488,17 +32325,19 @@ cpu = [ ]; }; by-spec."nopt"."~3.0.1" = - self.by-version."nopt"."3.0.1"; - by-spec."normalize-git-url"."~1.0.0" = - self.by-version."normalize-git-url"."1.0.0"; - by-version."normalize-git-url"."1.0.0" = self.buildNodePackage { - name = "normalize-git-url-1.0.0"; - version = "1.0.0"; + self.by-version."nopt"."3.0.6"; + by-spec."nopt"."~3.0.6" = + self.by-version."nopt"."3.0.6"; + by-spec."normalize-git-url"."~3.0.1" = + self.by-version."normalize-git-url"."3.0.1"; + by-version."normalize-git-url"."3.0.1" = self.buildNodePackage { + name = "normalize-git-url-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/normalize-git-url/-/normalize-git-url-1.0.0.tgz"; - name = "normalize-git-url-1.0.0.tgz"; - sha1 = "80e59471f0616b579893973e3f1b3684bedbad48"; + url = "https://registry.npmjs.org/normalize-git-url/-/normalize-git-url-3.0.1.tgz"; + name = "normalize-git-url-3.0.1.tgz"; + sha1 = "d40d419d05a15870271e50534dbb7b8ccd9b0a5c"; }; deps = { }; @@ -28508,64 +32347,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."normalize-package-data"."^0.2.13" = - self.by-version."normalize-package-data"."0.2.13"; - by-version."normalize-package-data"."0.2.13" = self.buildNodePackage { - name = "normalize-package-data-0.2.13"; - version = "0.2.13"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-0.2.13.tgz"; - name = "normalize-package-data-0.2.13.tgz"; - sha1 = "50f9fd9e77b1c8411cd231db2962e73963de774d"; - }; - deps = { - "github-url-from-git-1.1.1" = self.by-version."github-url-from-git"."1.1.1"; - "github-url-from-username-repo-0.1.0" = self.by-version."github-url-from-username-repo"."0.1.0"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."normalize-package-data"."^1.0.0" = - self.by-version."normalize-package-data"."1.0.3"; - by-version."normalize-package-data"."1.0.3" = self.buildNodePackage { - name = "normalize-package-data-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-1.0.3.tgz"; - name = "normalize-package-data-1.0.3.tgz"; - sha1 = "8be955b8907af975f1a4584ea8bb9b41492312f5"; - }; - deps = { - "github-url-from-git-1.4.0" = self.by-version."github-url-from-git"."1.4.0"; - "github-url-from-username-repo-1.0.2" = self.by-version."github-url-from-username-repo"."1.0.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."normalize-package-data"."^2.0.0" = - self.by-version."normalize-package-data"."2.0.0"; - by-version."normalize-package-data"."2.0.0" = self.buildNodePackage { - name = "normalize-package-data-2.0.0"; - version = "2.0.0"; + self.by-version."normalize-package-data"."2.3.5"; + by-version."normalize-package-data"."2.3.5" = self.buildNodePackage { + name = "normalize-package-data-2.3.5"; + version = "2.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.0.0.tgz"; - name = "normalize-package-data-2.0.0.tgz"; - sha1 = "8795d0d5c70c0e9ca36f419548aac0abf1f638bc"; + url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz"; + name = "normalize-package-data-2.3.5.tgz"; + sha1 = "8d924f142960e1777e7ffe170543631cc7cb02df"; }; deps = { - "hosted-git-info-2.1.2" = self.by-version."hosted-git-info"."2.1.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; + "is-builtin-module-1.0.0" = self.by-version."is-builtin-module"."1.0.0"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; }; optionalDependencies = { }; @@ -28573,91 +32370,128 @@ os = [ ]; cpu = [ ]; }; - by-spec."normalize-package-data"."~1.0.1" = - self.by-version."normalize-package-data"."1.0.3"; + by-spec."normalize-package-data"."^2.3.2" = + self.by-version."normalize-package-data"."2.3.5"; + by-spec."normalize-package-data"."^2.3.4" = + self.by-version."normalize-package-data"."2.3.5"; by-spec."normalize-package-data"."~1.0.1 || ^2.0.0" = - self.by-version."normalize-package-data"."2.0.0"; - by-spec."normalize-package-data"."~2.0.0" = - self.by-version."normalize-package-data"."2.0.0"; - by-spec."npm"."*" = - self.by-version."npm"."2.8.4"; - by-version."npm"."2.8.4" = self.buildNodePackage { - name = "npm-2.8.4"; - version = "2.8.4"; - bin = true; + self.by-version."normalize-package-data"."2.3.5"; + by-spec."normalize-package-data"."~2.3.5" = + self.by-version."normalize-package-data"."2.3.5"; + by-spec."normalize-path"."^2.0.1" = + self.by-version."normalize-path"."2.0.1"; + by-version."normalize-path"."2.0.1" = self.buildNodePackage { + name = "normalize-path-2.0.1"; + version = "2.0.1"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm/-/npm-2.8.4.tgz"; - name = "npm-2.8.4.tgz"; - sha1 = "f5d84c990466b2b535b7be6ff7706fcf4bf38255"; + url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz"; + name = "normalize-path-2.0.1.tgz"; + sha1 = "47886ac1662760d4261b7d979d241709d3ce3f7a"; }; deps = { - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - "ansi-regex-1.1.1" = self.by-version."ansi-regex"."1.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."npm"."*" = + self.by-version."npm"."3.8.7"; + by-version."npm"."3.8.7" = self.buildNodePackage { + name = "npm-3.8.7"; + version = "3.8.7"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/npm/-/npm-3.8.7.tgz"; + name = "npm-3.8.7.tgz"; + sha1 = "dabc1c63f6eef1cb30e3e560966fdd9affe5a1ee"; + }; + deps = { + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; "ansicolors-0.3.2" = self.by-version."ansicolors"."0.3.2"; "ansistyles-0.1.3" = self.by-version."ansistyles"."0.1.3"; + "aproba-1.0.1" = self.by-version."aproba"."1.0.1"; "archy-1.0.0" = self.by-version."archy"."1.0.0"; - "async-some-1.0.1" = self.by-version."async-some"."1.0.1"; - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "char-spinner-1.0.1" = self.by-version."char-spinner"."1.0.1"; - "chmodr-0.1.0" = self.by-version."chmodr"."0.1.0"; - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; - "cmd-shim-2.0.1" = self.by-version."cmd-shim"."2.0.1"; - "columnify-1.5.1" = self.by-version."columnify"."1.5.1"; - "config-chain-1.1.8" = self.by-version."config-chain"."1.1.8"; - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; - "editor-0.1.0" = self.by-version."editor"."0.1.0"; - "fs-vacuum-1.2.5" = self.by-version."fs-vacuum"."1.2.5"; - "fs-write-stream-atomic-1.0.2" = self.by-version."fs-write-stream-atomic"."1.0.2"; - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; - "fstream-npm-1.0.2" = self.by-version."fstream-npm"."1.0.2"; - "github-url-from-git-1.4.0" = self.by-version."github-url-from-git"."1.4.0"; - "github-url-from-username-repo-1.0.2" = self.by-version."github-url-from-username-repo"."1.0.2"; - "glob-5.0.5" = self.by-version."glob"."5.0.5"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "hosted-git-info-2.1.2" = self.by-version."hosted-git-info"."2.1.2"; + "chownr-1.0.1" = self.by-version."chownr"."1.0.1"; + "cmd-shim-2.0.2" = self.by-version."cmd-shim"."2.0.2"; + "columnify-1.5.4" = self.by-version."columnify"."1.5.4"; + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; + "editor-1.0.0" = self.by-version."editor"."1.0.0"; + "fs-vacuum-1.2.7" = self.by-version."fs-vacuum"."1.2.7"; + "fs-write-stream-atomic-1.0.8" = self.by-version."fs-write-stream-atomic"."1.0.8"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; + "fstream-npm-1.0.7" = self.by-version."fstream-npm"."1.0.7"; + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "has-unicode-2.0.0" = self.by-version."has-unicode"."2.0.0"; + "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; + "iferr-0.1.5" = self.by-version."iferr"."0.1.5"; "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; - "init-package-json-1.4.1" = self.by-version."init-package-json"."1.4.1"; - "lockfile-1.0.0" = self.by-version."lockfile"."1.0.0"; - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "node-gyp-1.0.3" = self.by-version."node-gyp"."1.0.3"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "normalize-git-url-1.0.0" = self.by-version."normalize-git-url"."1.0.0"; - "normalize-package-data-2.0.0" = self.by-version."normalize-package-data"."2.0.0"; - "npm-cache-filename-1.0.1" = self.by-version."npm-cache-filename"."1.0.1"; - "npm-install-checks-1.0.5" = self.by-version."npm-install-checks"."1.0.5"; - "npm-package-arg-4.0.0" = self.by-version."npm-package-arg"."4.0.0"; - "npm-registry-client-6.3.2" = self.by-version."npm-registry-client"."6.3.2"; - "npm-user-validate-0.1.1" = self.by-version."npm-user-validate"."0.1.1"; - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "init-package-json-1.9.3" = self.by-version."init-package-json"."1.9.3"; + "lockfile-1.0.1" = self.by-version."lockfile"."1.0.1"; + "lodash._baseuniq-4.5.1" = self.by-version."lodash._baseuniq"."4.5.1"; + "lodash.clonedeep-4.3.2" = self.by-version."lodash.clonedeep"."4.3.2"; + "lodash.isarray-4.0.0" = self.by-version."lodash.isarray"."4.0.0"; + "lodash.keys-4.0.6" = self.by-version."lodash.keys"."4.0.6"; + "lodash.union-4.2.1" = self.by-version."lodash.union"."4.2.1"; + "lodash.uniq-4.2.1" = self.by-version."lodash.uniq"."4.2.1"; + "lodash.without-4.1.2" = self.by-version."lodash.without"."4.1.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "node-gyp-3.3.1" = self.by-version."node-gyp"."3.3.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "normalize-git-url-3.0.1" = self.by-version."normalize-git-url"."3.0.1"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "npm-cache-filename-1.0.2" = self.by-version."npm-cache-filename"."1.0.2"; + "npm-install-checks-3.0.0" = self.by-version."npm-install-checks"."3.0.0"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; + "npm-registry-client-7.1.0" = self.by-version."npm-registry-client"."7.1.0"; + "npm-user-validate-0.1.2" = self.by-version."npm-user-validate"."0.1.2"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; "opener-1.4.1" = self.by-version."opener"."1.4.1"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; "path-is-inside-1.0.1" = self.by-version."path-is-inside"."1.0.1"; - "read-1.0.5" = self.by-version."read"."1.0.5"; - "read-installed-4.0.0" = self.by-version."read-installed"."4.0.0"; - "read-package-json-2.0.0" = self.by-version."read-package-json"."2.0.0"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "realize-package-specifier-3.0.0" = self.by-version."realize-package-specifier"."3.0.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "sha-1.3.0" = self.by-version."sha"."1.3.0"; + "read-1.0.7" = self.by-version."read"."1.0.7"; + "read-cmd-shim-1.0.1" = self.by-version."read-cmd-shim"."1.0.1"; + "read-installed-4.0.3" = self.by-version."read-installed"."4.0.3"; + "read-package-json-2.0.3" = self.by-version."read-package-json"."2.0.3"; + "read-package-tree-5.1.2" = self.by-version."read-package-tree"."5.1.2"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "realize-package-specifier-3.0.1" = self.by-version."realize-package-specifier"."3.0.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "retry-0.9.0" = self.by-version."retry"."0.9.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "sha-2.0.1" = self.by-version."sha"."2.0.1"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "sorted-object-1.0.0" = self.by-version."sorted-object"."1.0.0"; - "strip-ansi-2.0.1" = self.by-version."strip-ansi"."2.0.1"; - "tar-2.1.0" = self.by-version."tar"."2.1.0"; + "sorted-object-2.0.0" = self.by-version."sorted-object"."2.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "tar-2.2.1" = self.by-version."tar"."2.2.1"; "text-table-0.2.0" = self.by-version."text-table"."0.2.0"; "uid-number-0.0.6" = self.by-version."uid-number"."0.0.6"; "umask-1.1.0" = self.by-version."umask"."1.1.0"; - "which-1.0.9" = self.by-version."which"."1.0.9"; + "unique-filename-1.1.0" = self.by-version."unique-filename"."1.1.0"; + "unpipe-1.0.0" = self.by-version."unpipe"."1.0.0"; + "validate-npm-package-name-2.2.2" = self.by-version."validate-npm-package-name"."2.2.2"; + "which-1.2.4" = self.by-version."which"."1.2.4"; "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; - "write-file-atomic-1.1.0" = self.by-version."write-file-atomic"."1.1.0"; + "write-file-atomic-1.1.4" = self.by-version."write-file-atomic"."1.1.4"; + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; + "debuglog-1.0.1" = self.by-version."debuglog"."1.0.1"; + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; + "lodash._baseindexof-3.1.0" = self.by-version."lodash._baseindexof"."3.1.0"; + "lodash._bindcallback-3.0.1" = self.by-version."lodash._bindcallback"."3.0.1"; + "lodash._cacheindexof-3.0.2" = self.by-version."lodash._cacheindexof"."3.0.2"; + "lodash._createcache-3.1.2" = self.by-version."lodash._createcache"."3.1.2"; + "lodash._getnative-3.9.1" = self.by-version."lodash._getnative"."3.9.1"; + "lodash.restparam-3.6.1" = self.by-version."lodash.restparam"."3.6.1"; + "readdir-scoped-modules-1.0.2" = self.by-version."readdir-scoped-modules"."1.0.2"; + "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; }; optionalDependencies = { }; @@ -28665,60 +32499,90 @@ os = [ ]; cpu = [ ]; }; - "npm" = self.by-version."npm"."2.8.4"; - by-spec."npm"."1.3.4" = - self.by-version."npm"."1.3.4"; - by-version."npm"."1.3.4" = self.buildNodePackage { - name = "npm-1.3.4"; - version = "1.3.4"; + "npm" = self.by-version."npm"."3.8.7"; + by-spec."npm"."^2.1.12" = + self.by-version."npm"."2.15.3"; + by-version."npm"."2.15.3" = self.buildNodePackage { + name = "npm-2.15.3"; + version = "2.15.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/npm/-/npm-1.3.4.tgz"; - name = "npm-1.3.4.tgz"; - sha1 = "1dacc91458f2197c362d774d2cbf111680f86ec2"; + url = "https://registry.npmjs.org/npm/-/npm-2.15.3.tgz"; + name = "npm-2.15.3.tgz"; + sha1 = "9ee96a12f7dad6e8dc3e90b5635b65aedffb6cd3"; }; deps = { - "semver-2.0.11" = self.by-version."semver"."2.0.11"; - "ini-1.1.0" = self.by-version."ini"."1.1.0"; + "abbrev-1.0.7" = self.by-version."abbrev"."1.0.7"; + "ansi-0.3.1" = self.by-version."ansi"."0.3.1"; + "ansicolors-0.3.2" = self.by-version."ansicolors"."0.3.2"; + "ansistyles-0.1.3" = self.by-version."ansistyles"."0.1.3"; + "archy-1.0.0" = self.by-version."archy"."1.0.0"; + "async-some-1.0.2" = self.by-version."async-some"."1.0.2"; + "block-stream-0.0.8" = self.by-version."block-stream"."0.0.8"; + "char-spinner-1.0.1" = self.by-version."char-spinner"."1.0.1"; + "chmodr-1.0.2" = self.by-version."chmodr"."1.0.2"; + "chownr-1.0.1" = self.by-version."chownr"."1.0.1"; + "cmd-shim-2.0.2" = self.by-version."cmd-shim"."2.0.2"; + "columnify-1.5.4" = self.by-version."columnify"."1.5.4"; + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; + "editor-1.0.0" = self.by-version."editor"."1.0.0"; + "fs-vacuum-1.2.7" = self.by-version."fs-vacuum"."1.2.7"; + "fs-write-stream-atomic-1.0.8" = self.by-version."fs-write-stream-atomic"."1.0.8"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; + "fstream-npm-1.0.7" = self.by-version."fstream-npm"."1.0.7"; + "github-url-from-git-1.4.0" = self.by-version."github-url-from-git"."1.4.0"; + "github-url-from-username-repo-1.0.2" = self.by-version."github-url-from-username-repo"."1.0.2"; + "glob-7.0.3" = self.by-version."glob"."7.0.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; + "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "init-package-json-1.9.3" = self.by-version."init-package-json"."1.9.3"; + "lockfile-1.0.1" = self.by-version."lockfile"."1.0.1"; + "lru-cache-3.2.0" = self.by-version."lru-cache"."3.2.0"; + "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "node-gyp-3.3.1" = self.by-version."node-gyp"."3.3.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "normalize-git-url-3.0.1" = self.by-version."normalize-git-url"."3.0.1"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "npm-cache-filename-1.0.2" = self.by-version."npm-cache-filename"."1.0.2"; + "npm-install-checks-1.0.7" = self.by-version."npm-install-checks"."1.0.7"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; + "npm-registry-client-7.1.0" = self.by-version."npm-registry-client"."7.1.0"; + "npm-user-validate-0.1.2" = self.by-version."npm-user-validate"."0.1.2"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "opener-1.4.1" = self.by-version."opener"."1.4.1"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; + "path-is-inside-1.0.1" = self.by-version."path-is-inside"."1.0.1"; + "read-1.0.7" = self.by-version."read"."1.0.7"; + "read-installed-4.0.3" = self.by-version."read-installed"."4.0.3"; + "read-package-json-2.0.3" = self.by-version."read-package-json"."2.0.3"; + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "realize-package-specifier-3.0.1" = self.by-version."realize-package-specifier"."3.0.1"; + "request-2.69.0" = self.by-version."request"."2.69.0"; + "retry-0.9.0" = self.by-version."retry"."0.9.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "sha-2.0.1" = self.by-version."sha"."2.0.1"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "abbrev-1.0.5" = self.by-version."abbrev"."1.0.5"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; - "nopt-2.1.2" = self.by-version."nopt"."2.1.2"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - "request-2.21.0" = self.by-version."request"."2.21.0"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - "tar-0.1.20" = self.by-version."tar"."0.1.20"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "inherits-1.0.0" = self.by-version."inherits"."1.0.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "read-1.0.5" = self.by-version."read"."1.0.5"; - "lru-cache-2.3.1" = self.by-version."lru-cache"."2.3.1"; - "node-gyp-0.10.10" = self.by-version."node-gyp"."0.10.10"; - "fstream-npm-0.1.8" = self.by-version."fstream-npm"."0.1.8"; + "sorted-object-1.0.0" = self.by-version."sorted-object"."1.0.0"; + "spdx-license-ids-1.2.1" = self.by-version."spdx-license-ids"."1.2.1"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "tar-2.2.1" = self.by-version."tar"."2.2.1"; + "text-table-0.2.0" = self.by-version."text-table"."0.2.0"; "uid-number-0.0.6" = self.by-version."uid-number"."0.0.6"; - "archy-0.0.2" = self.by-version."archy"."0.0.2"; - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; - "npmlog-0.0.4" = self.by-version."npmlog"."0.0.4"; - "ansi-0.1.2" = self.by-version."ansi"."0.1.2"; - "npm-registry-client-0.2.31" = self.by-version."npm-registry-client"."0.2.31"; - "read-package-json-1.1.9" = self.by-version."read-package-json"."1.1.9"; - "read-installed-0.2.5" = self.by-version."read-installed"."0.2.5"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "init-package-json-0.0.10" = self.by-version."init-package-json"."0.0.10"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "lockfile-0.4.3" = self.by-version."lockfile"."0.4.3"; - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - "once-1.1.1" = self.by-version."once"."1.1.1"; - "npmconf-0.1.16" = self.by-version."npmconf"."0.1.16"; - "opener-1.3.0" = self.by-version."opener"."1.3.0"; - "chmodr-0.1.0" = self.by-version."chmodr"."0.1.0"; - "cmd-shim-1.1.2" = self.by-version."cmd-shim"."1.1.2"; - "sha-1.0.1" = self.by-version."sha"."1.0.1"; - "editor-0.0.4" = self.by-version."editor"."0.0.4"; - "child-process-close-0.1.1" = self.by-version."child-process-close"."0.1.1"; - "npm-user-validate-0.0.3" = self.by-version."npm-user-validate"."0.0.3"; + "umask-1.1.0" = self.by-version."umask"."1.1.0"; + "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; + "validate-npm-package-name-2.2.2" = self.by-version."validate-npm-package-name"."2.2.2"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; + "write-file-atomic-1.1.4" = self.by-version."write-file-atomic"."1.1.4"; + "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; }; optionalDependencies = { }; @@ -28726,18 +32590,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."npm"."^2.5.1" = - self.by-version."npm"."2.8.4"; - by-spec."npm-cache-filename"."~1.0.1" = - self.by-version."npm-cache-filename"."1.0.1"; - by-version."npm-cache-filename"."1.0.1" = self.buildNodePackage { - name = "npm-cache-filename-1.0.1"; - version = "1.0.1"; + by-spec."npm"."^2.10.x" = + self.by-version."npm"."2.15.3"; + by-spec."npm"."^3.5.1" = + self.by-version."npm"."3.8.7"; + by-spec."npm-cache-filename"."~1.0.2" = + self.by-version."npm-cache-filename"."1.0.2"; + by-version."npm-cache-filename"."1.0.2" = self.buildNodePackage { + name = "npm-cache-filename-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-cache-filename/-/npm-cache-filename-1.0.1.tgz"; - name = "npm-cache-filename-1.0.1.tgz"; - sha1 = "9b640f0c1a5ba1145659685372a9ff71f70c4323"; + url = "https://registry.npmjs.org/npm-cache-filename/-/npm-cache-filename-1.0.2.tgz"; + name = "npm-cache-filename-1.0.2.tgz"; + sha1 = "ded306c5b0bfc870a9e9faf823bc5f283e05ae11"; }; deps = { }; @@ -28748,25 +32614,35 @@ cpu = [ ]; }; by-spec."npm-check-updates"."*" = - self.by-version."npm-check-updates"."2.0.0-alpha6"; - by-version."npm-check-updates"."2.0.0-alpha6" = self.buildNodePackage { - name = "npm-check-updates-2.0.0-alpha6"; - version = "2.0.0-alpha6"; + self.by-version."npm-check-updates"."2.6.1"; + by-version."npm-check-updates"."2.6.1" = self.buildNodePackage { + name = "npm-check-updates-2.6.1"; + version = "2.6.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.0.0-alpha6.tgz"; - name = "npm-check-updates-2.0.0-alpha6.tgz"; - sha1 = "cc9a00208db31af606ed6bd018ed9354fac23f02"; + url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.6.1.tgz"; + name = "npm-check-updates-2.6.1.tgz"; + sha1 = "50fe729bcb30178d806339851c02068b15c5d2c9"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; + "bluebird-3.3.4" = self.by-version."bluebird"."3.3.4"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; "cint-8.2.1" = self.by-version."cint"."8.2.1"; - "closest-package-1.0.0" = self.by-version."closest-package"."1.0.0"; - "commander-2.8.0" = self.by-version."commander"."2.8.0"; - "lodash-3.7.0" = self.by-version."lodash"."3.7.0"; - "npm-2.8.4" = self.by-version."npm"."2.8.4"; - "read-package-json-1.3.3" = self.by-version."read-package-json"."1.3.3"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "cli-table-0.3.1" = self.by-version."cli-table"."0.3.1"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "fast-diff-1.0.1" = self.by-version."fast-diff"."1.0.1"; + "find-up-1.1.2" = self.by-version."find-up"."1.1.2"; + "get-stdin-5.0.1" = self.by-version."get-stdin"."5.0.1"; + "json-parse-helpfulerror-1.0.3" = self.by-version."json-parse-helpfulerror"."1.0.3"; + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "node-alias-1.0.4" = self.by-version."node-alias"."1.0.4"; + "npm-3.8.7" = self.by-version."npm"."3.8.7"; + "npmi-1.0.1" = self.by-version."npmi"."1.0.1"; + "require-dir-0.3.0" = self.by-version."require-dir"."0.3.0"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "semver-utils-1.1.1" = self.by-version."semver-utils"."1.1.1"; + "spawn-please-0.1.0" = self.by-version."spawn-please"."0.1.0"; + "update-notifier-0.5.0" = self.by-version."update-notifier"."0.5.0"; }; optionalDependencies = { }; @@ -28774,21 +32650,21 @@ os = [ ]; cpu = [ ]; }; - "npm-check-updates" = self.by-version."npm-check-updates"."2.0.0-alpha6"; - by-spec."npm-install-checks"."~1.0.5" = - self.by-version."npm-install-checks"."1.0.5"; - by-version."npm-install-checks"."1.0.5" = self.buildNodePackage { - name = "npm-install-checks-1.0.5"; - version = "1.0.5"; + "npm-check-updates" = self.by-version."npm-check-updates"."2.6.1"; + by-spec."npm-install-checks"."~1.0.7" = + self.by-version."npm-install-checks"."1.0.7"; + by-version."npm-install-checks"."1.0.7" = self.buildNodePackage { + name = "npm-install-checks-1.0.7"; + version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-install-checks/-/npm-install-checks-1.0.5.tgz"; - name = "npm-install-checks-1.0.5.tgz"; - sha1 = "a1b5beabfd60e0535b14f763157c410cb6bdae56"; + url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-1.0.7.tgz"; + name = "npm-install-checks-1.0.7.tgz"; + sha1 = "6d91aeda0ac96801f1ed7aadee116a6c0a086a57"; }; deps = { - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; }; optionalDependencies = { }; @@ -28796,20 +32672,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."npm-package-arg"."^3.0.0" = - self.by-version."npm-package-arg"."3.1.1"; - by-version."npm-package-arg"."3.1.1" = self.buildNodePackage { - name = "npm-package-arg-3.1.1"; - version = "3.1.1"; + by-spec."npm-install-checks"."~3.0.0" = + self.by-version."npm-install-checks"."3.0.0"; + by-version."npm-install-checks"."3.0.0" = self.buildNodePackage { + name = "npm-install-checks-3.0.0"; + version = "3.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-package-arg/-/npm-package-arg-3.1.1.tgz"; - name = "npm-package-arg-3.1.1.tgz"; - sha1 = "c9e5f7587f8484d1372a9b386fbf8b2443fc1bdb"; + url = "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-3.0.0.tgz"; + name = "npm-install-checks-3.0.0.tgz"; + sha1 = "d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7"; }; deps = { - "hosted-git-info-1.6.0" = self.by-version."hosted-git-info"."1.6.0"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; }; optionalDependencies = { }; @@ -28818,19 +32693,19 @@ cpu = [ ]; }; by-spec."npm-package-arg"."^3.0.0 || ^4.0.0" = - self.by-version."npm-package-arg"."4.0.0"; - by-version."npm-package-arg"."4.0.0" = self.buildNodePackage { - name = "npm-package-arg-4.0.0"; - version = "4.0.0"; + self.by-version."npm-package-arg"."4.1.0"; + by-version."npm-package-arg"."4.1.0" = self.buildNodePackage { + name = "npm-package-arg-4.1.0"; + version = "4.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.0.0.tgz"; - name = "npm-package-arg-4.0.0.tgz"; - sha1 = "04766dc98dbc19f6d627a5817075f4ce13d64a5d"; + url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.1.0.tgz"; + name = "npm-package-arg-4.1.0.tgz"; + sha1 = "2e015f8ac00737cb97f997c9cbf059f42a74527d"; }; deps = { - "hosted-git-info-2.1.2" = self.by-version."hosted-git-info"."2.1.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; }; optionalDependencies = { }; @@ -28839,9 +32714,9 @@ cpu = [ ]; }; by-spec."npm-package-arg"."^4.0.0" = - self.by-version."npm-package-arg"."4.0.0"; - by-spec."npm-package-arg"."~4.0.0" = - self.by-version."npm-package-arg"."4.0.0"; + self.by-version."npm-package-arg"."4.1.0"; + by-spec."npm-package-arg"."~4.1.0" = + self.by-version."npm-package-arg"."4.1.0"; by-spec."npm-registry-client"."0.2.27" = self.by-version."npm-registry-client"."0.2.27"; by-version."npm-registry-client"."0.2.27" = self.buildNodePackage { @@ -28849,150 +32724,102 @@ version = "0.2.27"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.27.tgz"; + url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.27.tgz"; name = "npm-registry-client-0.2.27.tgz"; sha1 = "8f338189d32769267886a07ad7b7fd2267446adf"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; "semver-2.0.11" = self.by-version."semver"."2.0.11"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; + "chownr-0.0.2" = self.by-version."chownr"."0.0.2"; "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; "retry-0.6.0" = self.by-version."retry"."0.6.0"; "couch-login-0.1.20" = self.by-version."couch-login"."0.1.20"; }; optionalDependencies = { - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."npm-registry-client"."~0.2.27" = - self.by-version."npm-registry-client"."0.2.31"; - by-version."npm-registry-client"."0.2.31" = self.buildNodePackage { - name = "npm-registry-client-0.2.31"; - version = "0.2.31"; + by-spec."npm-registry-client"."~7.0.9" = + self.by-version."npm-registry-client"."7.0.9"; + by-version."npm-registry-client"."7.0.9" = self.buildNodePackage { + name = "npm-registry-client-7.0.9"; + version = "7.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-registry-client/-/npm-registry-client-0.2.31.tgz"; - name = "npm-registry-client-0.2.31.tgz"; - sha1 = "24a23e24e43246677cb485f8391829e9536563d4"; + url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.0.9.tgz"; + name = "npm-registry-client-7.0.9.tgz"; + sha1 = "1baf86ee5285c4e6d38d4556208ded56049231bb"; }; deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "retry-0.6.0" = self.by-version."retry"."0.6.0"; - "couch-login-0.1.20" = self.by-version."couch-login"."0.1.20"; - }; - optionalDependencies = { - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."npm-registry-client"."~6.1.2" = - self.by-version."npm-registry-client"."6.1.2"; - by-version."npm-registry-client"."6.1.2" = self.buildNodePackage { - name = "npm-registry-client-6.1.2"; - version = "6.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/npm-registry-client/-/npm-registry-client-6.1.2.tgz"; - name = "npm-registry-client-6.1.2.tgz"; - sha1 = "b74ba7efa9bfbbce46a1bd15fa97dc7d784099cb"; - }; - deps = { - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "normalize-package-data-1.0.3" = self.by-version."normalize-package-data"."1.0.3"; - "npm-package-arg-3.1.1" = self.by-version."npm-package-arg"."3.1.1"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "chownr-1.0.1" = self.by-version."chownr"."1.0.1"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "retry-0.8.0" = self.by-version."retry"."0.8.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; }; optionalDependencies = { - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."npm-registry-client"."~6.3.2" = - self.by-version."npm-registry-client"."6.3.2"; - by-version."npm-registry-client"."6.3.2" = self.buildNodePackage { - name = "npm-registry-client-6.3.2"; - version = "6.3.2"; + by-spec."npm-registry-client"."~7.1.0" = + self.by-version."npm-registry-client"."7.1.0"; + by-version."npm-registry-client"."7.1.0" = self.buildNodePackage { + name = "npm-registry-client-7.1.0"; + version = "7.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-registry-client/-/npm-registry-client-6.3.2.tgz"; - name = "npm-registry-client-6.3.2.tgz"; - sha1 = "a662a36c6eda56c184099631cf429ba69b73d65b"; + url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.1.0.tgz"; + name = "npm-registry-client-7.1.0.tgz"; + sha1 = "e3be14ab279fe5123e15ab5c8a650445415664a5"; }; deps = { - "chownr-0.0.1" = self.by-version."chownr"."0.0.1"; - "concat-stream-1.4.8" = self.by-version."concat-stream"."1.4.8"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "normalize-package-data-2.0.0" = self.by-version."normalize-package-data"."2.0.0"; - "npm-package-arg-4.0.0" = self.by-version."npm-package-arg"."4.0.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "chownr-1.0.1" = self.by-version."chownr"."1.0.1"; + "concat-stream-1.5.1" = self.by-version."concat-stream"."1.5.1"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "retry-0.8.0" = self.by-version."retry"."0.8.0"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; }; optionalDependencies = { - "npmlog-1.2.0" = self.by-version."npmlog"."1.2.0"; + "npmlog-2.0.3" = self.by-version."npmlog"."2.0.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."npm-user-validate"."0.0.3" = - self.by-version."npm-user-validate"."0.0.3"; - by-version."npm-user-validate"."0.0.3" = self.buildNodePackage { - name = "npm-user-validate-0.0.3"; - version = "0.0.3"; + by-spec."npm-user-validate"."~0.1.2" = + self.by-version."npm-user-validate"."0.1.2"; + by-version."npm-user-validate"."0.1.2" = self.buildNodePackage { + name = "npm-user-validate-0.1.2"; + version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npm-user-validate/-/npm-user-validate-0.0.3.tgz"; - name = "npm-user-validate-0.0.3.tgz"; - sha1 = "818eca4312d13da648f9bc1d7f80bb4f151e0c2e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."npm-user-validate"."~0.1.1" = - self.by-version."npm-user-validate"."0.1.1"; - by-version."npm-user-validate"."0.1.1" = self.buildNodePackage { - name = "npm-user-validate-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/npm-user-validate/-/npm-user-validate-0.1.1.tgz"; - name = "npm-user-validate-0.1.1.tgz"; - sha1 = "ea7774636c3c8fe6d01e174bd9f2ee0e22eeed57"; + url = "https://registry.npmjs.org/npm-user-validate/-/npm-user-validate-0.1.2.tgz"; + name = "npm-user-validate-0.1.2.tgz"; + sha1 = "d585da0b47c9f41a9e6ca684b6fd84ba41ebe87d"; }; deps = { }; @@ -29014,7 +32841,7 @@ sha256 = "fb79dccb5ca4bfa0c8cc4490be37313367eb98e216d8eb97cb00f9e492e8e7a7"; }; deps = { - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; "argparse-0.1.15" = self.by-version."argparse"."0.1.15"; "npm-registry-client-0.2.27" = self.by-version."npm-registry-client"."0.2.27"; "npmconf-0.1.1" = self.by-version."npmconf"."0.1.1"; @@ -29022,7 +32849,7 @@ "temp-0.6.0" = self.by-version."temp"."0.6.0"; "fs.extra-1.3.2" = self.by-version."fs.extra"."1.3.2"; "findit-1.2.0" = self.by-version."findit"."1.2.0"; - "coffee-script-1.9.2" = self.by-version."coffee-script"."1.9.2"; + "coffee-script-1.10.0" = self.by-version."coffee-script"."1.10.0"; }; optionalDependencies = { }; @@ -29031,6 +32858,33 @@ cpu = [ ]; }; "npm2nix" = self.by-version."npm2nix"."5.12.0"; + by-spec."npmconf"."0.0.24" = + self.by-version."npmconf"."0.0.24"; + by-version."npmconf"."0.0.24" = self.buildNodePackage { + name = "npmconf-0.0.24"; + version = "0.0.24"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/npmconf/-/npmconf-0.0.24.tgz"; + name = "npmconf-0.0.24.tgz"; + sha1 = "b78875b088ccc3c0afa3eceb3ce3244b1b52390c"; + }; + deps = { + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; + "inherits-1.0.2" = self.by-version."inherits"."1.0.2"; + "once-1.1.1" = self.by-version."once"."1.1.1"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; + "nopt-2.2.1" = self.by-version."nopt"."2.2.1"; + "semver-1.1.4" = self.by-version."semver"."1.1.4"; + "ini-1.1.0" = self.by-version."ini"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."npmconf"."0.1.1" = self.by-version."npmconf"."0.1.1"; by-version."npmconf"."0.1.1" = self.buildNodePackage { @@ -29038,13 +32892,13 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npmconf/-/npmconf-0.1.1.tgz"; + url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.1.tgz"; name = "npmconf-0.1.1.tgz"; sha1 = "7a254182591ca22d77b2faecc0d17e0f9bdf25a1"; }; deps = { - "config-chain-1.1.8" = self.by-version."config-chain"."1.1.8"; - "inherits-1.0.0" = self.by-version."inherits"."1.0.0"; + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; + "inherits-1.0.2" = self.by-version."inherits"."1.0.2"; "once-1.1.1" = self.by-version."once"."1.1.1"; "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; @@ -29058,21 +32912,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."npmconf"."0.1.16" = + by-spec."npmconf"."~0.1.2" = self.by-version."npmconf"."0.1.16"; by-version."npmconf"."0.1.16" = self.buildNodePackage { name = "npmconf-0.1.16"; version = "0.1.16"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npmconf/-/npmconf-0.1.16.tgz"; + url = "https://registry.npmjs.org/npmconf/-/npmconf-0.1.16.tgz"; name = "npmconf-0.1.16.tgz"; sha1 = "0bdca78b8551419686b3a98004f06f0819edcd2a"; }; deps = { - "config-chain-1.1.8" = self.by-version."config-chain"."1.1.8"; + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; "nopt-2.2.1" = self.by-version."nopt"."2.2.1"; @@ -29085,26 +32939,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."npmconf"."2.1.1" = - self.by-version."npmconf"."2.1.1"; - by-version."npmconf"."2.1.1" = self.buildNodePackage { - name = "npmconf-2.1.1"; - version = "2.1.1"; + by-spec."npmconf"."~2.1.2" = + self.by-version."npmconf"."2.1.2"; + by-version."npmconf"."2.1.2" = self.buildNodePackage { + name = "npmconf-2.1.2"; + version = "2.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npmconf/-/npmconf-2.1.1.tgz"; - name = "npmconf-2.1.1.tgz"; - sha1 = "a266c7e5c56695eb7f55caf3a5a7328f24510dae"; + url = "https://registry.npmjs.org/npmconf/-/npmconf-2.1.2.tgz"; + name = "npmconf-2.1.2.tgz"; + sha1 = "66606a4a736f1e77a059aa071a79c94ab781853a"; }; deps = { - "config-chain-1.1.8" = self.by-version."config-chain"."1.1.8"; + "config-chain-1.1.10" = self.by-version."config-chain"."1.1.10"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "nopt-3.0.1" = self.by-version."nopt"."3.0.1"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "osenv-0.1.0" = self.by-version."osenv"."0.1.0"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "nopt-3.0.6" = self.by-version."nopt"."3.0.6"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "osenv-0.1.3" = self.by-version."osenv"."0.1.3"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; "uid-number-0.0.5" = self.by-version."uid-number"."0.0.5"; }; optionalDependencies = { @@ -29113,27 +32967,42 @@ os = [ ]; cpu = [ ]; }; - by-spec."npmconf"."~0.1.1" = - self.by-version."npmconf"."0.1.16"; - by-spec."npmconf"."~0.1.2" = - self.by-version."npmconf"."0.1.16"; - by-spec."npmconf"."~2.1.1" = - self.by-version."npmconf"."2.1.1"; + by-spec."npmi"."^1.0.1" = + self.by-version."npmi"."1.0.1"; + by-version."npmi"."1.0.1" = self.buildNodePackage { + name = "npmi-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/npmi/-/npmi-1.0.1.tgz"; + name = "npmi-1.0.1.tgz"; + sha1 = "15d769273547545e6809dcf0ce18aed48b0290e2"; + }; + deps = { + "npm-2.15.3" = self.by-version."npm"."2.15.3"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."npmlog"."*" = - self.by-version."npmlog"."1.2.0"; - by-version."npmlog"."1.2.0" = self.buildNodePackage { - name = "npmlog-1.2.0"; - version = "1.2.0"; + self.by-version."npmlog"."2.0.3"; + by-version."npmlog"."2.0.3" = self.buildNodePackage { + name = "npmlog-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/npmlog/-/npmlog-1.2.0.tgz"; - name = "npmlog-1.2.0.tgz"; - sha1 = "b512f18ae8696a0192ada78ba00c06dbbd91bafb"; + url = "https://registry.npmjs.org/npmlog/-/npmlog-2.0.3.tgz"; + name = "npmlog-2.0.3.tgz"; + sha1 = "020f99351f0c02e399c674ba256e7c4d3b3dd298"; }; deps = { - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - "are-we-there-yet-1.0.4" = self.by-version."are-we-there-yet"."1.0.4"; - "gauge-1.2.0" = self.by-version."gauge"."1.2.0"; + "ansi-0.3.1" = self.by-version."ansi"."0.3.1"; + "are-we-there-yet-1.1.2" = self.by-version."are-we-there-yet"."1.1.2"; + "gauge-1.2.7" = self.by-version."gauge"."1.2.7"; }; optionalDependencies = { }; @@ -29141,76 +33010,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."npmlog"."0" = - self.by-version."npmlog"."0.1.1"; - by-version."npmlog"."0.1.1" = self.buildNodePackage { - name = "npmlog-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/npmlog/-/npmlog-0.1.1.tgz"; - name = "npmlog-0.1.1.tgz"; - sha1 = "8b9b9e4405d7ec48c31c2346965aadc7abaecaa5"; - }; - deps = { - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."npmlog"."0 || 1" = - self.by-version."npmlog"."1.2.0"; - by-spec."npmlog"."0.0.4" = - self.by-version."npmlog"."0.0.4"; - by-version."npmlog"."0.0.4" = self.buildNodePackage { - name = "npmlog-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/npmlog/-/npmlog-0.0.4.tgz"; - name = "npmlog-0.0.4.tgz"; - sha1 = "a12a7418606b7e0183a2851d97a8729b9a0f3837"; - }; - deps = { - "ansi-0.1.2" = self.by-version."ansi"."0.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."npmlog"."0.1 || 1" = - self.by-version."npmlog"."1.2.0"; - by-spec."npmlog"."~0.1.1" = - self.by-version."npmlog"."0.1.1"; - by-spec."npmlog"."~1.1.0" = - self.by-version."npmlog"."1.1.0"; - by-version."npmlog"."1.1.0" = self.buildNodePackage { - name = "npmlog-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/npmlog/-/npmlog-1.1.0.tgz"; - name = "npmlog-1.1.0.tgz"; - sha1 = "8744168148df1ce3f3387c0bc38154883b4af5f4"; - }; - deps = { - "ansi-0.3.0" = self.by-version."ansi"."0.3.0"; - "are-we-there-yet-1.0.4" = self.by-version."are-we-there-yet"."1.0.4"; - "gauge-1.1.0" = self.by-version."gauge"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."npmlog"."~1.2.0" = - self.by-version."npmlog"."1.2.0"; + by-spec."npmlog"."0 || 1 || 2" = + self.by-version."npmlog"."2.0.3"; + by-spec."npmlog"."0.1 || 1 || 2" = + self.by-version."npmlog"."2.0.3"; + by-spec."npmlog"."~2.0.0" = + self.by-version."npmlog"."2.0.3"; + by-spec."npmlog"."~2.0.3" = + self.by-version."npmlog"."2.0.3"; by-spec."nssocket"."~0.5.1" = self.by-version."nssocket"."0.5.3"; by-version."nssocket"."0.5.3" = self.buildNodePackage { @@ -29218,7 +33025,7 @@ version = "0.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz"; + url = "https://registry.npmjs.org/nssocket/-/nssocket-0.5.3.tgz"; name = "nssocket-0.5.3.tgz"; sha1 = "883ca2ec605f5ed64a4d5190b2625401928f8f8d"; }; @@ -29232,6 +33039,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."nth-check"."~1.0.0" = + self.by-version."nth-check"."1.0.1"; + by-version."nth-check"."1.0.1" = self.buildNodePackage { + name = "nth-check-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/nth-check/-/nth-check-1.0.1.tgz"; + name = "nth-check-1.0.1.tgz"; + sha1 = "9929acdf628fc2c41098deab82ac580cf149aae4"; + }; + deps = { + "boolbase-1.0.0" = self.by-version."boolbase"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."ntwitter".">=0.5.0" = self.by-version."ntwitter"."0.5.0"; by-version."ntwitter"."0.5.0" = self.buildNodePackage { @@ -29239,12 +33066,12 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ntwitter/-/ntwitter-0.5.0.tgz"; + url = "https://registry.npmjs.org/ntwitter/-/ntwitter-0.5.0.tgz"; name = "ntwitter-0.5.0.tgz"; sha1 = "30c40105f82432fa8956a4f7655de932af631534"; }; deps = { - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; "cookies-0.1.6" = self.by-version."cookies"."0.1.6"; "keygrip-0.2.4" = self.by-version."keygrip"."0.2.4"; }; @@ -29254,6 +33081,44 @@ os = [ ]; cpu = [ ]; }; + by-spec."null-check"."^1.0.0" = + self.by-version."null-check"."1.0.0"; + by-version."null-check"."1.0.0" = self.buildNodePackage { + name = "null-check-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz"; + name = "null-check-1.0.0.tgz"; + sha1 = "977dffd7176012b9ec30d2a39db5cf72a0439edd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."number-is-nan"."^1.0.0" = + self.by-version."number-is-nan"."1.0.0"; + by-version."number-is-nan"."1.0.0" = self.buildNodePackage { + name = "number-is-nan-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz"; + name = "number-is-nan-1.0.0.tgz"; + sha1 = "c020f529c5282adfdd233d91d4b181c3d686dc4b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."numeral"."^1.5.3" = self.by-version."numeral"."1.5.3"; by-version."numeral"."1.5.3" = self.buildNodePackage { @@ -29261,7 +33126,7 @@ version = "1.5.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/numeral/-/numeral-1.5.3.tgz"; + url = "https://registry.npmjs.org/numeral/-/numeral-1.5.3.tgz"; name = "numeral-1.5.3.tgz"; sha1 = "a4c3eba68239580509f818267c77243bce43ff62"; }; @@ -29273,16 +33138,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."nwmatcher"."~1.3.1" = - self.by-version."nwmatcher"."1.3.4"; - by-version."nwmatcher"."1.3.4" = self.buildNodePackage { - name = "nwmatcher-1.3.4"; - version = "1.3.4"; + by-spec."nwmatcher".">= 1.3.4 < 2.0.0" = + self.by-version."nwmatcher"."1.3.7"; + by-version."nwmatcher"."1.3.7" = self.buildNodePackage { + name = "nwmatcher-1.3.7"; + version = "1.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.4.tgz"; - name = "nwmatcher-1.3.4.tgz"; - sha1 = "965aa05fc3bc9de0a6438c8c07169866092fdaed"; + url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.3.7.tgz"; + name = "nwmatcher-1.3.7.tgz"; + sha1 = "fec04ddfb1b07ff37b1e11a02b9c3c274cc131e0"; }; deps = { }; @@ -29292,19 +33157,20 @@ os = [ ]; cpu = [ ]; }; + by-spec."nwmatcher"."~1.3.1" = + self.by-version."nwmatcher"."1.3.7"; by-spec."nwmatcher"."~1.3.2" = - self.by-version."nwmatcher"."1.3.4"; + self.by-version."nwmatcher"."1.3.7"; by-spec."oauth"."*" = - self.by-version."oauth"."0.9.12"; - by-version."oauth"."0.9.12" = self.buildNodePackage { - name = "oauth-0.9.12"; - version = "0.9.12"; + self.by-version."oauth"."0.9.14"; + by-version."oauth"."0.9.14" = self.buildNodePackage { + name = "oauth-0.9.14"; + version = "0.9.14"; bin = false; - src = fetchFromGitHub { - owner = "ciaranj"; - repo = "node-oauth"; - rev = "0.9.12"; - sha256 = "1c67nq1q5isfcvyp520q02w5c527s1wsfiyknzfvvp22sf2yn7k6"; + src = fetchurl { + url = "https://registry.npmjs.org/oauth/-/oauth-0.9.14.tgz"; + name = "oauth-0.9.14.tgz"; + sha1 = "c5748883a40b53de30ade9cabf2100414b8a0971"; }; deps = { }; @@ -29314,16 +33180,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."oauth"."0.9.12" = - self.by-version."oauth"."0.9.12"; + by-spec."oauth"."0.9.14" = + self.by-version."oauth"."0.9.14"; by-spec."oauth"."0.9.x" = - self.by-version."oauth"."0.9.12"; + self.by-version."oauth"."0.9.14"; by-spec."oauth".">=0.8.4" = - self.by-version."oauth"."0.9.12"; + self.by-version."oauth"."0.9.14"; by-spec."oauth".">=0.9.9" = - self.by-version."oauth"."0.9.12"; + self.by-version."oauth"."0.9.14"; by-spec."oauth"."https://github.com/ciaranj/node-oauth/tarball/master" = - self.by-version."oauth"."0.9.12"; + self.by-version."oauth"."0.9.14"; by-spec."oauth-sign"."~0.2.0" = self.by-version."oauth-sign"."0.2.0"; by-version."oauth-sign"."0.2.0" = self.buildNodePackage { @@ -29331,7 +33197,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz"; name = "oauth-sign-0.2.0.tgz"; sha1 = "a0e6a1715daed062f322b622b7fe5afd1035b6e2"; }; @@ -29350,7 +33216,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.3.0.tgz"; name = "oauth-sign-0.3.0.tgz"; sha1 = "cb540f93bb2b22a7d5941691a288d60e8ea9386e"; }; @@ -29369,7 +33235,7 @@ version = "0.4.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.4.0.tgz"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.4.0.tgz"; name = "oauth-sign-0.4.0.tgz"; sha1 = "f22956f31ea7151a821e5f2fb32c113cad8b9f69"; }; @@ -29388,7 +33254,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.5.0.tgz"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.5.0.tgz"; name = "oauth-sign-0.5.0.tgz"; sha1 = "d767f5169325620eab2e087ef0c472e773db6461"; }; @@ -29407,7 +33273,7 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.6.0.tgz"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.6.0.tgz"; name = "oauth-sign-0.6.0.tgz"; sha1 = "7dbeae44f6ca454e1f168451d630746735813ce3"; }; @@ -29419,21 +33285,42 @@ os = [ ]; cpu = [ ]; }; - by-spec."oauth2orize"."1.0.1" = - self.by-version."oauth2orize"."1.0.1"; - by-version."oauth2orize"."1.0.1" = self.buildNodePackage { - name = "oauth2orize-1.0.1"; - version = "1.0.1"; + by-spec."oauth-sign"."~0.8.0" = + self.by-version."oauth-sign"."0.8.1"; + by-version."oauth-sign"."0.8.1" = self.buildNodePackage { + name = "oauth-sign-0.8.1"; + version = "0.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/oauth2orize/-/oauth2orize-1.0.1.tgz"; - name = "oauth2orize-1.0.1.tgz"; - sha1 = "eceb666b641caf717df43e63511518796c93642d"; + url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.1.tgz"; + name = "oauth-sign-0.8.1.tgz"; + sha1 = "182439bdb91378bf7460e75c64ea43e6448def06"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."oauth-sign"."~0.8.1" = + self.by-version."oauth-sign"."0.8.1"; + by-spec."oauth2orize"."1.2.2" = + self.by-version."oauth2orize"."1.2.2"; + by-version."oauth2orize"."1.2.2" = self.buildNodePackage { + name = "oauth2orize-1.2.2"; + version = "1.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/oauth2orize/-/oauth2orize-1.2.2.tgz"; + name = "oauth2orize-1.2.2.tgz"; + sha1 = "59611975c90b2105de61f7710abfd6f8a5a86be7"; }; deps = { "uid2-0.0.3" = self.by-version."uid2"."0.0.3"; "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -29448,7 +33335,7 @@ version = "0.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-additions/-/object-additions-0.5.1.tgz"; + url = "https://registry.npmjs.org/object-additions/-/object-additions-0.5.1.tgz"; name = "object-additions-0.5.1.tgz"; sha1 = "ac624e0995e696c94cc69b41f316462b16a3bda4"; }; @@ -29467,7 +33354,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz"; + url = "https://registry.npmjs.org/object-assign/-/object-assign-1.0.0.tgz"; name = "object-assign-1.0.0.tgz"; sha1 = "e65dc8766d3b47b4b8307465c8311da030b070a6"; }; @@ -29480,15 +33367,53 @@ cpu = [ ]; }; by-spec."object-assign"."^2.0.0" = - self.by-version."object-assign"."2.0.0"; - by-version."object-assign"."2.0.0" = self.buildNodePackage { - name = "object-assign-2.0.0"; - version = "2.0.0"; + self.by-version."object-assign"."2.1.1"; + by-version."object-assign"."2.1.1" = self.buildNodePackage { + name = "object-assign-2.1.1"; + version = "2.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-assign/-/object-assign-2.0.0.tgz"; - name = "object-assign-2.0.0.tgz"; - sha1 = "f8309b09083b01261ece3ef7373f2b57b8dd7042"; + url = "https://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"; + name = "object-assign-2.1.1.tgz"; + sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."object-assign"."^3.0.0" = + self.by-version."object-assign"."3.0.0"; + by-version."object-assign"."3.0.0" = self.buildNodePackage { + name = "object-assign-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"; + name = "object-assign-3.0.0.tgz"; + sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."object-assign"."^4.0.1" = + self.by-version."object-assign"."4.0.1"; + by-version."object-assign"."4.0.1" = self.buildNodePackage { + name = "object-assign-4.0.1"; + version = "4.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz"; + name = "object-assign-4.0.1.tgz"; + sha1 = "99504456c3598b5cad4fc59c26e8a9bb107fe0bd"; }; deps = { }; @@ -29505,7 +33430,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; + url = "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz"; name = "object-component-0.0.3.tgz"; sha1 = "f0c69aa50efc95b866c186f400a33769cb2f1291"; }; @@ -29517,16 +33442,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."object-inspect"."~0.4.0" = - self.by-version."object-inspect"."0.4.0"; - by-version."object-inspect"."0.4.0" = self.buildNodePackage { - name = "object-inspect-0.4.0"; - version = "0.4.0"; + by-spec."object-keys"."^1.0.6" = + self.by-version."object-keys"."1.0.9"; + by-version."object-keys"."1.0.9" = self.buildNodePackage { + name = "object-keys-1.0.9"; + version = "1.0.9"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-inspect/-/object-inspect-0.4.0.tgz"; - name = "object-inspect-0.4.0.tgz"; - sha1 = "f5157c116c1455b243b06ee97703392c5ad89fec"; + url = "https://registry.npmjs.org/object-keys/-/object-keys-1.0.9.tgz"; + name = "object-keys-1.0.9.tgz"; + sha1 = "cabb1202d9a7af29b50edface8094bb46da5ea21"; }; deps = { }; @@ -29536,18 +33461,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."object-keys"."1.0.1" = - self.by-version."object-keys"."1.0.1"; - by-version."object-keys"."1.0.1" = self.buildNodePackage { - name = "object-keys-1.0.1"; - version = "1.0.1"; + by-spec."object-keys"."~1.0.1" = + self.by-version."object-keys"."1.0.9"; + by-spec."object.assign"."^1.1.1" = + self.by-version."object.assign"."1.1.1"; + by-version."object.assign"."1.1.1" = self.buildNodePackage { + name = "object.assign-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-keys/-/object-keys-1.0.1.tgz"; - name = "object-keys-1.0.1.tgz"; - sha1 = "55802e85842c26bbb5ebbc157abf3be302569ba8"; + url = "https://registry.npmjs.org/object.assign/-/object.assign-1.1.1.tgz"; + name = "object.assign-1.1.1.tgz"; + sha1 = "f229674273f94fcb230d02c1958a8b94ec9ef95c"; }; deps = { + "object-keys-1.0.9" = self.by-version."object-keys"."1.0.9"; }; optionalDependencies = { }; @@ -29555,18 +33483,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."object-keys"."~0.4.0" = - self.by-version."object-keys"."0.4.0"; - by-version."object-keys"."0.4.0" = self.buildNodePackage { - name = "object-keys-0.4.0"; - version = "0.4.0"; + by-spec."object.omit"."^2.0.0" = + self.by-version."object.omit"."2.0.0"; + by-version."object.omit"."2.0.0" = self.buildNodePackage { + name = "object.omit-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object-keys/-/object-keys-0.4.0.tgz"; - name = "object-keys-0.4.0.tgz"; - sha1 = "28a6aae7428dd2c3a92f3d95f21335dd204e0336"; + url = "https://registry.npmjs.org/object.omit/-/object.omit-2.0.0.tgz"; + name = "object.omit-2.0.0.tgz"; + sha1 = "868597333d54e60662940bb458605dd6ae12fe94"; }; deps = { + "for-own-0.1.4" = self.by-version."for-own"."0.1.4"; + "is-extendable-0.1.1" = self.by-version."is-extendable"."0.1.1"; }; optionalDependencies = { }; @@ -29574,20 +33504,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."object.omit"."^0.2.1" = - self.by-version."object.omit"."0.2.1"; - by-version."object.omit"."0.2.1" = self.buildNodePackage { - name = "object.omit-0.2.1"; - version = "0.2.1"; + by-spec."octicons"."~3.4.1" = + self.by-version."octicons"."3.4.1"; + by-version."octicons"."3.4.1" = self.buildNodePackage { + name = "octicons-3.4.1"; + version = "3.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/object.omit/-/object.omit-0.2.1.tgz"; - name = "object.omit-0.2.1.tgz"; - sha1 = "ca9af6631df6883fe61bae74df82a4fbc9df2e92"; + url = "https://registry.npmjs.org/octicons/-/octicons-3.4.1.tgz"; + name = "octicons-3.4.1.tgz"; + sha1 = "042c3e433a0176212da3f2e61a4867e7b95557b1"; }; deps = { - "for-own-0.1.3" = self.by-version."for-own"."0.1.3"; - "isobject-0.2.0" = self.by-version."isobject"."0.2.0"; }; optionalDependencies = { }; @@ -29602,7 +33530,7 @@ version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/on-finished/-/on-finished-2.1.0.tgz"; + url = "https://registry.npmjs.org/on-finished/-/on-finished-2.1.0.tgz"; name = "on-finished-2.1.0.tgz"; sha1 = "0c539f09291e8ffadde0c8a25850fb2cedc7022d"; }; @@ -29622,7 +33550,7 @@ version = "2.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/on-finished/-/on-finished-2.1.1.tgz"; + url = "https://registry.npmjs.org/on-finished/-/on-finished-2.1.1.tgz"; name = "on-finished-2.1.1.tgz"; sha1 = "f82ca1c9e3a4f3286b1b9938610e5b8636bd3cb2"; }; @@ -29635,21 +33563,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."on-finished"."~2.1.1" = - self.by-version."on-finished"."2.1.1"; - by-spec."on-finished"."~2.2.0" = - self.by-version."on-finished"."2.2.0"; - by-version."on-finished"."2.2.0" = self.buildNodePackage { - name = "on-finished-2.2.0"; - version = "2.2.0"; + by-spec."on-finished"."~2.3.0" = + self.by-version."on-finished"."2.3.0"; + by-version."on-finished"."2.3.0" = self.buildNodePackage { + name = "on-finished-2.3.0"; + version = "2.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/on-finished/-/on-finished-2.2.0.tgz"; - name = "on-finished-2.2.0.tgz"; - sha1 = "e6ba6a09a3482d6b7969bc3da92c86f0a967605e"; + url = "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz"; + name = "on-finished-2.3.0.tgz"; + sha1 = "20f1336481b083cd75337992a16971aa2d906947"; }; deps = { - "ee-first-1.1.0" = self.by-version."ee-first"."1.1.0"; + "ee-first-1.1.1" = self.by-version."ee-first"."1.1.1"; }; optionalDependencies = { }; @@ -29657,16 +33583,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."on-headers"."1.0.0" = - self.by-version."on-headers"."1.0.0"; - by-version."on-headers"."1.0.0" = self.buildNodePackage { - name = "on-headers-1.0.0"; - version = "1.0.0"; + by-spec."on-headers"."1.0.1" = + self.by-version."on-headers"."1.0.1"; + by-version."on-headers"."1.0.1" = self.buildNodePackage { + name = "on-headers-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/on-headers/-/on-headers-1.0.0.tgz"; - name = "on-headers-1.0.0.tgz"; - sha1 = "2c75b5da4375513d0161c6052e7fcbe4953fca5d"; + url = "https://registry.npmjs.org/on-headers/-/on-headers-1.0.1.tgz"; + name = "on-headers-1.0.1.tgz"; + sha1 = "928f5d0f470d49342651ea6794b0857c100693f7"; }; deps = { }; @@ -29677,7 +33603,9 @@ cpu = [ ]; }; by-spec."on-headers"."~1.0.0" = - self.by-version."on-headers"."1.0.0"; + self.by-version."on-headers"."1.0.1"; + by-spec."on-headers"."~1.0.1" = + self.by-version."on-headers"."1.0.1"; by-spec."once"."1.3.0" = self.by-version."once"."1.3.0"; by-version."once"."1.3.0" = self.buildNodePackage { @@ -29685,7 +33613,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/once/-/once-1.3.0.tgz"; + url = "https://registry.npmjs.org/once/-/once-1.3.0.tgz"; name = "once-1.3.0.tgz"; sha1 = "151af86bfc1f08c4b9f07d06ab250ffcbeb56581"; }; @@ -29698,15 +33626,15 @@ cpu = [ ]; }; by-spec."once"."1.x" = - self.by-version."once"."1.3.1"; - by-version."once"."1.3.1" = self.buildNodePackage { - name = "once-1.3.1"; - version = "1.3.1"; + self.by-version."once"."1.3.3"; + by-version."once"."1.3.3" = self.buildNodePackage { + name = "once-1.3.3"; + version = "1.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/once/-/once-1.3.1.tgz"; - name = "once-1.3.1.tgz"; - sha1 = "f3f3e4da5b7d27b5c732969ee3e67e729457b31f"; + url = "https://registry.npmjs.org/once/-/once-1.3.3.tgz"; + name = "once-1.3.3.tgz"; + sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; }; deps = { "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; @@ -29718,11 +33646,11 @@ cpu = [ ]; }; by-spec."once"."^1.1.1" = - self.by-version."once"."1.3.1"; + self.by-version."once"."1.3.3"; by-spec."once"."^1.3.0" = - self.by-version."once"."1.3.1"; + self.by-version."once"."1.3.3"; by-spec."once"."^1.3.1" = - self.by-version."once"."1.3.1"; + self.by-version."once"."1.3.3"; by-spec."once"."~1.1.1" = self.by-version."once"."1.1.1"; by-version."once"."1.1.1" = self.buildNodePackage { @@ -29730,7 +33658,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/once/-/once-1.1.1.tgz"; + url = "https://registry.npmjs.org/once/-/once-1.1.1.tgz"; name = "once-1.1.1.tgz"; sha1 = "9db574933ccb08c3a7614d154032c09ea6f339e7"; }; @@ -29749,7 +33677,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/once/-/once-1.2.0.tgz"; + url = "https://registry.npmjs.org/once/-/once-1.2.0.tgz"; name = "once-1.2.0.tgz"; sha1 = "de1905c636af874a8fba862d9aabddd1f920461c"; }; @@ -29762,19 +33690,19 @@ cpu = [ ]; }; by-spec."once"."~1.3.0" = - self.by-version."once"."1.3.1"; - by-spec."once"."~1.3.1" = - self.by-version."once"."1.3.1"; + self.by-version."once"."1.3.3"; + by-spec."once"."~1.3.3" = + self.by-version."once"."1.3.3"; by-spec."onetime"."^1.0.0" = - self.by-version."onetime"."1.0.0"; - by-version."onetime"."1.0.0" = self.buildNodePackage { - name = "onetime-1.0.0"; - version = "1.0.0"; + self.by-version."onetime"."1.1.0"; + by-version."onetime"."1.1.0" = self.buildNodePackage { + name = "onetime-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/onetime/-/onetime-1.0.0.tgz"; - name = "onetime-1.0.0.tgz"; - sha1 = "3a08a8e39d7816df52d34886374fb8ed8b651f62"; + url = "https://registry.npmjs.org/onetime/-/onetime-1.1.0.tgz"; + name = "onetime-1.1.0.tgz"; + sha1 = "a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"; }; deps = { }; @@ -29791,7 +33719,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/open/-/open-0.0.2.tgz"; + url = "https://registry.npmjs.org/open/-/open-0.0.2.tgz"; name = "open-0.0.2.tgz"; sha1 = "0a620ba2574464742f51e69f8ba8eccfd97b5dfc"; }; @@ -29810,7 +33738,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/open/-/open-0.0.5.tgz"; + url = "https://registry.npmjs.org/open/-/open-0.0.5.tgz"; name = "open-0.0.5.tgz"; sha1 = "42c3e18ec95466b6bf0dc42f3a2945c3f0cad8fc"; }; @@ -29835,7 +33763,7 @@ version = "1.4.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/opener/-/opener-1.4.1.tgz"; + url = "https://registry.npmjs.org/opener/-/opener-1.4.1.tgz"; name = "opener-1.4.1.tgz"; sha1 = "897590acd1aed3311b703b58bccb4d43f56f2895"; }; @@ -29847,58 +33775,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."opener"."~1.3.0" = - self.by-version."opener"."1.3.0"; - by-version."opener"."1.3.0" = self.buildNodePackage { - name = "opener-1.3.0"; - version = "1.3.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/opener/-/opener-1.3.0.tgz"; - name = "opener-1.3.0.tgz"; - sha1 = "130ba662213fa842edb4cd0361d31a15301a43e2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."opener"."~1.4.1" = self.by-version."opener"."1.4.1"; by-spec."openid".">=0.2.0" = - self.by-version."openid"."0.5.11"; - by-version."openid"."0.5.11" = self.buildNodePackage { - name = "openid-0.5.11"; - version = "0.5.11"; + self.by-version."openid"."2.0.0"; + by-version."openid"."2.0.0" = self.buildNodePackage { + name = "openid-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/openid/-/openid-0.5.11.tgz"; - name = "openid-0.5.11.tgz"; - sha1 = "01fda48f3c1d73d2f073f34240c933747eeac056"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."opn"."^1.0.1" = - self.by-version."opn"."1.0.1"; - by-version."opn"."1.0.1" = self.buildNodePackage { - name = "opn-1.0.1"; - version = "1.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/opn/-/opn-1.0.1.tgz"; - name = "opn-1.0.1.tgz"; - sha1 = "c2dce2a5c41ab9589a7486aaff4d8de002d041ca"; + url = "https://registry.npmjs.org/openid/-/openid-2.0.0.tgz"; + name = "openid-2.0.0.tgz"; + sha1 = "cf738439d321d248790cc49f5cadded3e4b5910a"; }; deps = { + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -29913,12 +33804,12 @@ version = "0.6.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz"; + url = "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz"; name = "optimist-0.6.1.tgz"; sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686"; }; deps = { - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; + "wordwrap-0.0.3" = self.by-version."wordwrap"."0.0.3"; "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; }; optionalDependencies = { @@ -29935,12 +33826,12 @@ version = "0.2.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz"; + url = "https://registry.npmjs.org/optimist/-/optimist-0.2.8.tgz"; name = "optimist-0.2.8.tgz"; sha1 = "e981ab7e268b457948593b55674c099a815cac31"; }; deps = { - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; + "wordwrap-0.0.3" = self.by-version."wordwrap"."0.0.3"; }; optionalDependencies = { }; @@ -29955,12 +33846,12 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz"; + url = "https://registry.npmjs.org/optimist/-/optimist-0.6.0.tgz"; name = "optimist-0.6.0.tgz"; sha1 = "69424826f3405f79f142e6fc3d9ae58d4dbb9200"; }; deps = { - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; + "wordwrap-0.0.3" = self.by-version."wordwrap"."0.0.3"; "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; }; optionalDependencies = { @@ -29969,7 +33860,7 @@ os = [ ]; cpu = [ ]; }; - by-spec."optimist"."0.6.x" = + by-spec."optimist"."0.6.1" = self.by-version."optimist"."0.6.1"; by-spec."optimist"."^0.6.1" = self.by-version."optimist"."0.6.1"; @@ -29980,12 +33871,12 @@ version = "0.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz"; + url = "https://registry.npmjs.org/optimist/-/optimist-0.3.7.tgz"; name = "optimist-0.3.7.tgz"; sha1 = "c90941ad59e4273328923074d2cf2e7cbc6ec0d9"; }; deps = { - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; + "wordwrap-0.0.3" = self.by-version."wordwrap"."0.0.3"; }; optionalDependencies = { }; @@ -30001,24 +33892,24 @@ self.by-version."optimist"."0.6.1"; by-spec."optimist"."~0.6.1" = self.by-version."optimist"."0.6.1"; - by-spec."optionator"."^0.5.0" = - self.by-version."optionator"."0.5.0"; - by-version."optionator"."0.5.0" = self.buildNodePackage { - name = "optionator-0.5.0"; - version = "0.5.0"; + by-spec."optionator"."^0.8.1" = + self.by-version."optionator"."0.8.1"; + by-version."optionator"."0.8.1" = self.buildNodePackage { + name = "optionator-0.8.1"; + version = "0.8.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optionator/-/optionator-0.5.0.tgz"; - name = "optionator-0.5.0.tgz"; - sha1 = "b75a8995a2d417df25b6e4e3862f50aa88651368"; + url = "https://registry.npmjs.org/optionator/-/optionator-0.8.1.tgz"; + name = "optionator-0.8.1.tgz"; + sha1 = "e31b4932cdd5fb862a8b0d10bc63d3ee1ec7d78b"; }; deps = { - "prelude-ls-1.1.1" = self.by-version."prelude-ls"."1.1.1"; + "prelude-ls-1.1.2" = self.by-version."prelude-ls"."1.1.2"; "deep-is-0.1.3" = self.by-version."deep-is"."0.1.3"; - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; - "type-check-0.3.1" = self.by-version."type-check"."0.3.1"; - "levn-0.2.5" = self.by-version."levn"."0.2.5"; - "fast-levenshtein-1.0.6" = self.by-version."fast-levenshtein"."1.0.6"; + "wordwrap-1.0.0" = self.by-version."wordwrap"."1.0.0"; + "type-check-0.3.2" = self.by-version."type-check"."0.3.2"; + "levn-0.3.0" = self.by-version."levn"."0.3.0"; + "fast-levenshtein-1.1.3" = self.by-version."fast-levenshtein"."1.1.3"; }; optionalDependencies = { }; @@ -30033,7 +33924,7 @@ version = "0.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/options/-/options-0.0.6.tgz"; + url = "https://registry.npmjs.org/options/-/options-0.0.6.tgz"; name = "options-0.0.6.tgz"; sha1 = "ec22d312806bb53e731773e7cdaefcf1c643128f"; }; @@ -30046,15 +33937,15 @@ cpu = [ ]; }; by-spec."optjs"."*" = - self.by-version."optjs"."3.2.1-boom"; - by-version."optjs"."3.2.1-boom" = self.buildNodePackage { - name = "optjs-3.2.1-boom"; - version = "3.2.1-boom"; + self.by-version."optjs"."3.2.2"; + by-version."optjs"."3.2.2" = self.buildNodePackage { + name = "optjs-3.2.2"; + version = "3.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optjs/-/optjs-3.2.1-boom.tgz"; - name = "optjs-3.2.1-boom.tgz"; - sha1 = "bc0af6c8647db5eec511c4ca2d264f9646add758"; + url = "https://registry.npmjs.org/optjs/-/optjs-3.2.2.tgz"; + name = "optjs-3.2.2.tgz"; + sha1 = "69a6ce89c442a44403141ad2f9b370bd5bb6f4ee"; }; deps = { }; @@ -30071,7 +33962,7 @@ version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz"; + url = "https://registry.npmjs.org/optparse/-/optparse-1.0.5.tgz"; name = "optparse-1.0.5.tgz"; sha1 = "75e75a96506611eb1c65ba89018ff08a981e2c16"; }; @@ -30093,7 +33984,7 @@ version = "1.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/opts/-/opts-1.2.2.tgz"; + url = "https://registry.npmjs.org/opts/-/opts-1.2.2.tgz"; name = "opts-1.2.2.tgz"; sha1 = "81782b93014a1cd88d56c226643fd4282473853d"; }; @@ -30112,7 +34003,7 @@ version = "0.3.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/orchestrator/-/orchestrator-0.3.7.tgz"; + url = "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.7.tgz"; name = "orchestrator-0.3.7.tgz"; sha1 = "c45064e22c5a2a7b99734f409a95ffedc7d3c3df"; }; @@ -30134,7 +34025,7 @@ version = "0.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz"; + url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz"; name = "ordered-read-streams-0.1.0.tgz"; sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126"; }; @@ -30153,7 +34044,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz"; + url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.1.2.tgz"; name = "os-browserify-0.1.2.tgz"; sha1 = "49ca0293e0b19590a5f5de10c7f265a617d8fe54"; }; @@ -30167,20 +34058,18 @@ }; by-spec."os-browserify"."~0.1.2" = self.by-version."os-browserify"."0.1.2"; - by-spec."os-name"."^1.0.0" = - self.by-version."os-name"."1.0.3"; - by-version."os-name"."1.0.3" = self.buildNodePackage { - name = "os-name-1.0.3"; - version = "1.0.3"; - bin = true; + by-spec."os-browserify"."~0.2.0" = + self.by-version."os-browserify"."0.2.1"; + by-version."os-browserify"."0.2.1" = self.buildNodePackage { + name = "os-browserify-0.2.1"; + version = "0.2.1"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/os-name/-/os-name-1.0.3.tgz"; - name = "os-name-1.0.3.tgz"; - sha1 = "1b379f64835af7c5a7f498b357cb95215c159edf"; + url = "https://registry.npmjs.org/os-browserify/-/os-browserify-0.2.1.tgz"; + name = "os-browserify-0.2.1.tgz"; + sha1 = "63fc4ccee5d2d7763d26bbf8601078e6c2e0044f"; }; deps = { - "osx-release-1.0.0" = self.by-version."osx-release"."1.0.0"; - "win-release-1.0.0" = self.by-version."win-release"."1.0.0"; }; optionalDependencies = { }; @@ -30188,16 +34077,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."osenv"."0" = - self.by-version."osenv"."0.1.0"; - by-version."osenv"."0.1.0" = self.buildNodePackage { - name = "osenv-0.1.0"; - version = "0.1.0"; + by-spec."os-homedir"."^1.0.0" = + self.by-version."os-homedir"."1.0.1"; + by-version."os-homedir"."1.0.1" = self.buildNodePackage { + name = "os-homedir-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/osenv/-/osenv-0.1.0.tgz"; - name = "osenv-0.1.0.tgz"; - sha1 = "61668121eec584955030b9f470b1d2309504bfcb"; + url = "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz"; + name = "os-homedir-1.0.1.tgz"; + sha1 = "0d62bdf44b916fd3bbdcf2cab191948fb094f007"; }; deps = { }; @@ -30207,6 +34096,70 @@ os = [ ]; cpu = [ ]; }; + by-spec."os-homedir"."~1.0.1" = + self.by-version."os-homedir"."1.0.1"; + by-spec."os-locale"."^1.4.0" = + self.by-version."os-locale"."1.4.0"; + by-version."os-locale"."1.4.0" = self.buildNodePackage { + name = "os-locale-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz"; + name = "os-locale-1.4.0.tgz"; + sha1 = "20f9f17ae29ed345e8bde583b13d2009803c14d9"; + }; + deps = { + "lcid-1.0.0" = self.by-version."lcid"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."os-tmpdir"."^1.0.0" = + self.by-version."os-tmpdir"."1.0.1"; + by-version."os-tmpdir"."1.0.1" = self.buildNodePackage { + name = "os-tmpdir-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz"; + name = "os-tmpdir-1.0.1.tgz"; + sha1 = "e9b423a1edaf479882562e92ed71d7743a071b6e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."os-tmpdir"."~1.0.1" = + self.by-version."os-tmpdir"."1.0.1"; + by-spec."osenv"."0" = + self.by-version."osenv"."0.1.3"; + by-version."osenv"."0.1.3" = self.buildNodePackage { + name = "osenv-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz"; + name = "osenv-0.1.3.tgz"; + sha1 = "83cf05c6d6458fc4d5ac6362ea325d92f2754217"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."osenv"."0.0.3" = self.by-version."osenv"."0.0.3"; by-version."osenv"."0.0.3" = self.buildNodePackage { @@ -30214,7 +34167,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz"; + url = "https://registry.npmjs.org/osenv/-/osenv-0.0.3.tgz"; name = "osenv-0.0.3.tgz"; sha1 = "cd6ad8ddb290915ad9e22765576025d411f29cb6"; }; @@ -30226,53 +34179,12 @@ os = [ ]; cpu = [ ]; }; - by-spec."osenv"."0.1.0" = - self.by-version."osenv"."0.1.0"; by-spec."osenv"."^0.1.0" = - self.by-version."osenv"."0.1.0"; - by-spec."osenv"."~0.1.0" = - self.by-version."osenv"."0.1.0"; - by-spec."osx-release"."^1.0.0" = - self.by-version."osx-release"."1.0.0"; - by-version."osx-release"."1.0.0" = self.buildNodePackage { - name = "osx-release-1.0.0"; - version = "1.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/osx-release/-/osx-release-1.0.0.tgz"; - name = "osx-release-1.0.0.tgz"; - sha1 = "02bee80f3b898aaa88922d2f86e178605974beac"; - }; - deps = { - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."osx-trash"."^1.0.0" = - self.by-version."osx-trash"."1.0.0"; - by-version."osx-trash"."1.0.0" = self.buildNodePackage { - name = "osx-trash-1.0.0"; - version = "1.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/osx-trash/-/osx-trash-1.0.0.tgz"; - name = "osx-trash-1.0.0.tgz"; - sha1 = "be846a528b8d98e02a920f788857838d57d601d5"; - }; - deps = { - "escape-string-applescript-1.0.0" = self.by-version."escape-string-applescript"."1.0.0"; - "run-applescript-1.0.1" = self.by-version."run-applescript"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."osenv"."0.1.3"; + by-spec."osenv"."^0.1.3" = + self.by-version."osenv"."0.1.3"; + by-spec."osenv"."~0.1.3" = + self.by-version."osenv"."0.1.3"; by-spec."owl-deepcopy"."*" = self.by-version."owl-deepcopy"."0.0.4"; by-version."owl-deepcopy"."0.0.4" = self.buildNodePackage { @@ -30280,7 +34192,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/owl-deepcopy/-/owl-deepcopy-0.0.4.tgz"; + url = "https://registry.npmjs.org/owl-deepcopy/-/owl-deepcopy-0.0.4.tgz"; name = "owl-deepcopy-0.0.4.tgz"; sha1 = "665f3aeafab74302d98ecaeeb7b3e764ae21f369"; }; @@ -30295,26 +34207,6 @@ "owl-deepcopy" = self.by-version."owl-deepcopy"."0.0.4"; by-spec."owl-deepcopy"."~0.0.1" = self.by-version."owl-deepcopy"."0.0.4"; - by-spec."p-throttler"."0.1.1" = - self.by-version."p-throttler"."0.1.1"; - by-version."p-throttler"."0.1.1" = self.buildNodePackage { - name = "p-throttler-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/p-throttler/-/p-throttler-0.1.1.tgz"; - name = "p-throttler-0.1.1.tgz"; - sha1 = "15246409d225d3eefca85c50de710a83a78cca6a"; - }; - deps = { - "q-0.9.7" = self.by-version."q"."0.9.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."pac-proxy-agent"."0" = self.by-version."pac-proxy-agent"."0.2.0"; by-version."pac-proxy-agent"."0.2.0" = self.buildNodePackage { @@ -30322,18 +34214,18 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-0.2.0.tgz"; + url = "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-0.2.0.tgz"; name = "pac-proxy-agent-0.2.0.tgz"; sha1 = "ad902909d92f4fe7cc2e5f59f5bf5061bcfa71b2"; }; deps = { - "agent-base-1.0.1" = self.by-version."agent-base"."1.0.1"; + "agent-base-1.0.2" = self.by-version."agent-base"."1.0.2"; "extend-1.2.1" = self.by-version."extend"."1.2.1"; "pac-resolver-1.2.6" = self.by-version."pac-resolver"."1.2.6"; - "proxy-agent-1.1.0" = self.by-version."proxy-agent"."1.1.0"; - "get-uri-0.1.3" = self.by-version."get-uri"."0.1.3"; + "proxy-agent-1.1.1" = self.by-version."proxy-agent"."1.1.1"; + "get-uri-0.1.4" = self.by-version."get-uri"."0.1.4"; "stream-to-array-1.0.0" = self.by-version."stream-to-array"."1.0.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; }; optionalDependencies = { }; @@ -30348,15 +34240,15 @@ version = "1.2.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pac-resolver/-/pac-resolver-1.2.6.tgz"; + url = "https://registry.npmjs.org/pac-resolver/-/pac-resolver-1.2.6.tgz"; name = "pac-resolver-1.2.6.tgz"; sha1 = "ed03af0c5b5933505bdd3f07f75175466d5e7cfb"; }; deps = { "co-3.0.6" = self.by-version."co"."3.0.6"; "netmask-1.0.5" = self.by-version."netmask"."1.0.5"; - "degenerator-1.0.1" = self.by-version."degenerator"."1.0.1"; - "regenerator-0.8.22" = self.by-version."regenerator"."0.8.22"; + "degenerator-1.0.2" = self.by-version."degenerator"."1.0.2"; + "regenerator-0.8.42" = self.by-version."regenerator"."0.8.42"; "thunkify-2.1.2" = self.by-version."thunkify"."2.1.2"; }; optionalDependencies = { @@ -30366,19 +34258,19 @@ cpu = [ ]; }; by-spec."package-json"."^1.0.0" = - self.by-version."package-json"."1.1.0"; - by-version."package-json"."1.1.0" = self.buildNodePackage { - name = "package-json-1.1.0"; - version = "1.1.0"; + self.by-version."package-json"."1.2.0"; + by-version."package-json"."1.2.0" = self.buildNodePackage { + name = "package-json-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/package-json/-/package-json-1.1.0.tgz"; - name = "package-json-1.1.0.tgz"; - sha1 = "32b427c626385ccce180dc73a66d94f35f545e4b"; + url = "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz"; + name = "package-json-1.2.0.tgz"; + sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0"; }; deps = { - "got-2.7.2" = self.by-version."got"."2.7.2"; - "registry-url-3.0.3" = self.by-version."registry-url"."3.0.3"; + "got-3.3.1" = self.by-version."got"."3.3.1"; + "registry-url-3.1.0" = self.by-version."registry-url"."3.1.0"; }; optionalDependencies = { }; @@ -30393,7 +34285,7 @@ version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pad/-/pad-0.0.5.tgz"; + url = "https://registry.npmjs.org/pad/-/pad-0.0.5.tgz"; name = "pad-0.0.5.tgz"; sha1 = "2219ab4db2ac74549a676164bc475d68cb87de05"; }; @@ -30406,34 +34298,15 @@ cpu = [ ]; }; by-spec."pako"."~0.2.0" = - self.by-version."pako"."0.2.6"; - by-version."pako"."0.2.6" = self.buildNodePackage { - name = "pako-0.2.6"; - version = "0.2.6"; + self.by-version."pako"."0.2.8"; + by-version."pako"."0.2.8" = self.buildNodePackage { + name = "pako-0.2.8"; + version = "0.2.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pako/-/pako-0.2.6.tgz"; - name = "pako-0.2.6.tgz"; - sha1 = "3e0c548353b859ab9c8005fac706bdd6c7af505f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."parents"."0.0.2" = - self.by-version."parents"."0.0.2"; - by-version."parents"."0.0.2" = self.buildNodePackage { - name = "parents-0.0.2"; - version = "0.0.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/parents/-/parents-0.0.2.tgz"; - name = "parents-0.0.2.tgz"; - sha1 = "67147826e497d40759aaf5ba4c99659b6034d302"; + url = "https://registry.npmjs.org/pako/-/pako-0.2.8.tgz"; + name = "pako-0.2.8.tgz"; + sha1 = "15ad772915362913f20de4a8a164b4aacc6165d6"; }; deps = { }; @@ -30450,7 +34323,7 @@ version = "1.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/parents/-/parents-1.0.1.tgz"; + url = "https://registry.npmjs.org/parents/-/parents-1.0.1.tgz"; name = "parents-1.0.1.tgz"; sha1 = "fedd4d2bf193a77745fe71e371d73c3307d9c751"; }; @@ -30465,19 +34338,23 @@ }; by-spec."parents"."^1.0.1" = self.by-version."parents"."1.0.1"; - by-spec."parents"."~0.0.1" = - self.by-version."parents"."0.0.3"; - by-version."parents"."0.0.3" = self.buildNodePackage { - name = "parents-0.0.3"; - version = "0.0.3"; - bin = true; + by-spec."parse-asn1"."^5.0.0" = + self.by-version."parse-asn1"."5.0.0"; + by-version."parse-asn1"."5.0.0" = self.buildNodePackage { + name = "parse-asn1-5.0.0"; + version = "5.0.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parents/-/parents-0.0.3.tgz"; - name = "parents-0.0.3.tgz"; - sha1 = "fa212f024d9fa6318dbb6b4ce676c8be493b9c43"; + url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.0.0.tgz"; + name = "parse-asn1-5.0.0.tgz"; + sha1 = "35060f6d5015d37628c770f4e091a0b5a278bc23"; }; deps = { - "path-platform-0.0.1" = self.by-version."path-platform"."0.0.1"; + "asn1.js-4.5.2" = self.by-version."asn1.js"."4.5.2"; + "browserify-aes-1.0.6" = self.by-version."browserify-aes"."1.0.6"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; + "evp_bytestokey-1.0.0" = self.by-version."evp_bytestokey"."1.0.0"; + "pbkdf2-3.0.4" = self.by-version."pbkdf2"."3.0.4"; }; optionalDependencies = { }; @@ -30485,45 +34362,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."parse-asn1"."^3.0.0" = - self.by-version."parse-asn1"."3.0.0"; - by-version."parse-asn1"."3.0.0" = self.buildNodePackage { - name = "parse-asn1-3.0.0"; - version = "3.0.0"; + by-spec."parse-glob"."^3.0.4" = + self.by-version."parse-glob"."3.0.4"; + by-version."parse-glob"."3.0.4" = self.buildNodePackage { + name = "parse-glob-3.0.4"; + version = "3.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parse-asn1/-/parse-asn1-3.0.0.tgz"; - name = "parse-asn1-3.0.0.tgz"; - sha1 = "36ea30eb2ad99084e738e92801647910cdbf1ee4"; + url = "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz"; + name = "parse-glob-3.0.4.tgz"; + sha1 = "b2c376cfb11f35513badd173ef0bb6e3a388391c"; }; deps = { - "asn1.js-1.0.4" = self.by-version."asn1.js"."1.0.4"; - "browserify-aes-1.0.0" = self.by-version."browserify-aes"."1.0.0"; - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; - "pbkdf2-compat-3.0.2" = self.by-version."pbkdf2-compat"."3.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."parse-glob"."^3.0.0" = - self.by-version."parse-glob"."3.0.1"; - by-version."parse-glob"."3.0.1" = self.buildNodePackage { - name = "parse-glob-3.0.1"; - version = "3.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/parse-glob/-/parse-glob-3.0.1.tgz"; - name = "parse-glob-3.0.1.tgz"; - sha1 = "6dc718c0265f41096e106bb9adb40d327b7ab588"; - }; - deps = { - "glob-base-0.2.0" = self.by-version."glob-base"."0.2.0"; - "is-dotfile-1.0.0" = self.by-version."is-dotfile"."1.0.0"; + "glob-base-0.3.0" = self.by-version."glob-base"."0.3.0"; + "is-dotfile-1.0.2" = self.by-version."is-dotfile"."1.0.2"; "is-extglob-1.0.0" = self.by-version."is-extglob"."1.0.0"; - "is-glob-1.1.3" = self.by-version."is-glob"."1.1.3"; + "is-glob-2.0.1" = self.by-version."is-glob"."2.0.1"; }; optionalDependencies = { }; @@ -30531,19 +34385,19 @@ os = [ ]; cpu = [ ]; }; - by-spec."parse-torrent"."^1.4.0" = - self.by-version."parse-torrent"."1.7.0"; - by-version."parse-torrent"."1.7.0" = self.buildNodePackage { - name = "parse-torrent-1.7.0"; - version = "1.7.0"; - bin = true; + by-spec."parse-json"."^2.2.0" = + self.by-version."parse-json"."2.2.0"; + by-version."parse-json"."2.2.0" = self.buildNodePackage { + name = "parse-json-2.2.0"; + version = "2.2.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parse-torrent/-/parse-torrent-1.7.0.tgz"; - name = "parse-torrent-1.7.0.tgz"; - sha1 = "f64d09d2efa05f7a9e89378d041a63d9ca1e47d2"; + url = "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; + name = "parse-json-2.2.0.tgz"; + sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; }; deps = { - "bencode-0.6.0" = self.by-version."bencode"."0.6.0"; + "error-ex-1.3.0" = self.by-version."error-ex"."1.3.0"; }; optionalDependencies = { }; @@ -30552,19 +34406,19 @@ cpu = [ ]; }; by-spec."parse-torrent"."^4.0.0" = - self.by-version."parse-torrent"."4.0.0"; - by-version."parse-torrent"."4.0.0" = self.buildNodePackage { - name = "parse-torrent-4.0.0"; - version = "4.0.0"; + self.by-version."parse-torrent"."4.1.0"; + by-version."parse-torrent"."4.1.0" = self.buildNodePackage { + name = "parse-torrent-4.1.0"; + version = "4.1.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/parse-torrent/-/parse-torrent-4.0.0.tgz"; - name = "parse-torrent-4.0.0.tgz"; - sha1 = "bdf118b5e59eadfbf5ad4795dbf1765b2ec46a25"; + url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-4.1.0.tgz"; + name = "parse-torrent-4.1.0.tgz"; + sha1 = "a814bd8505e8b58e88eb8ff3e2daff5d19a711b7"; }; deps = { - "magnet-uri-4.2.2" = self.by-version."magnet-uri"."4.2.2"; - "parse-torrent-file-2.1.3" = self.by-version."parse-torrent-file"."2.1.3"; + "magnet-uri-4.2.3" = self.by-version."magnet-uri"."4.2.3"; + "parse-torrent-file-2.1.4" = self.by-version."parse-torrent-file"."2.1.4"; }; optionalDependencies = { }; @@ -30572,20 +34426,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."parse-torrent"."~1.0.0" = - self.by-version."parse-torrent"."1.0.0"; - by-version."parse-torrent"."1.0.0" = self.buildNodePackage { - name = "parse-torrent-1.0.0"; - version = "1.0.0"; + by-spec."parse-torrent"."^5.4.0" = + self.by-version."parse-torrent"."5.7.3"; + by-version."parse-torrent"."5.7.3" = self.buildNodePackage { + name = "parse-torrent-5.7.3"; + version = "5.7.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/parse-torrent/-/parse-torrent-1.0.0.tgz"; - name = "parse-torrent-1.0.0.tgz"; - sha1 = "5a47a038c5db161b7b67b0534636194e1c8907a2"; + url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.7.3.tgz"; + name = "parse-torrent-5.7.3.tgz"; + sha1 = "8e7159acc2a3206cafba63ca6b418f1e4e64df34"; }; deps = { - "bncode-0.5.3" = self.by-version."bncode"."0.5.3"; - "rusha-browserify-0.7.3" = self.by-version."rusha-browserify"."0.7.3"; + "blob-to-buffer-1.2.6" = self.by-version."blob-to-buffer"."1.2.6"; + "get-stdin-5.0.1" = self.by-version."get-stdin"."5.0.1"; + "magnet-uri-5.1.3" = self.by-version."magnet-uri"."5.1.3"; + "parse-torrent-file-3.3.7" = self.by-version."parse-torrent-file"."3.3.7"; + "simple-get-2.0.0" = self.by-version."simple-get"."2.0.0"; }; optionalDependencies = { }; @@ -30594,19 +34451,60 @@ cpu = [ ]; }; by-spec."parse-torrent-file"."^2.0.0" = - self.by-version."parse-torrent-file"."2.1.3"; - by-version."parse-torrent-file"."2.1.3" = self.buildNodePackage { - name = "parse-torrent-file-2.1.3"; - version = "2.1.3"; + self.by-version."parse-torrent-file"."2.1.4"; + by-version."parse-torrent-file"."2.1.4" = self.buildNodePackage { + name = "parse-torrent-file-2.1.4"; + version = "2.1.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.3.tgz"; - name = "parse-torrent-file-2.1.3.tgz"; - sha1 = "b537e0b277a76d5652fd1c1d045f7ee7189d88a4"; + url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.4.tgz"; + name = "parse-torrent-file-2.1.4.tgz"; + sha1 = "32d4b6afde631420e5f415919a222b774b575707"; }; deps = { "bencode-0.7.0" = self.by-version."bencode"."0.7.0"; - "simple-sha1-2.0.7" = self.by-version."simple-sha1"."2.0.7"; + "simple-sha1-2.0.8" = self.by-version."simple-sha1"."2.0.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."parse-torrent-file"."^3.0.0" = + self.by-version."parse-torrent-file"."3.3.7"; + by-version."parse-torrent-file"."3.3.7" = self.buildNodePackage { + name = "parse-torrent-file-3.3.7"; + version = "3.3.7"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-3.3.7.tgz"; + name = "parse-torrent-file-3.3.7.tgz"; + sha1 = "4b39e456b5ce16761ccf26ef3275b4ac848e9394"; + }; + deps = { + "bencode-0.9.0" = self.by-version."bencode"."0.9.0"; + "simple-sha1-2.0.8" = self.by-version."simple-sha1"."2.0.8"; + "uniq-1.0.1" = self.by-version."uniq"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."parse5".">= 1.3.1 < 2.0.0" = + self.by-version."parse5"."1.5.1"; + by-version."parse5"."1.5.1" = self.buildNodePackage { + name = "parse5-1.5.1"; + version = "1.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz"; + name = "parse5-1.5.1.tgz"; + sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"; + }; + deps = { }; optionalDependencies = { }; @@ -30621,7 +34519,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz"; + url = "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz"; name = "parsejson-0.0.1.tgz"; sha1 = "9b10c6c0d825ab589e685153826de0a3ba278bcc"; }; @@ -30641,7 +34539,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz"; + url = "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz"; name = "parseqs-0.0.2.tgz"; sha1 = "9dfe70b2cddac388bde4f35b1f240fa58adbe6c7"; }; @@ -30661,7 +34559,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseuri/-/parseuri-0.0.2.tgz"; + url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.2.tgz"; name = "parseuri-0.0.2.tgz"; sha1 = "db41878f2d6964718be870b3140973d8093be156"; }; @@ -30681,7 +34579,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseuri/-/parseuri-0.0.4.tgz"; + url = "https://registry.npmjs.org/parseuri/-/parseuri-0.0.4.tgz"; name = "parseuri-0.0.4.tgz"; sha1 = "806582a39887e1ea18dd5e2fe0e01902268e9350"; }; @@ -30701,7 +34599,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseurl/-/parseurl-1.0.1.tgz"; + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.0.1.tgz"; name = "parseurl-1.0.1.tgz"; sha1 = "2e57dce6efdd37c3518701030944c22bf388b7b4"; }; @@ -30720,7 +34618,7 @@ version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseurl/-/parseurl-1.1.3.tgz"; + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.1.3.tgz"; name = "parseurl-1.1.3.tgz"; sha1 = "1f005738ac71b417bc2d0845cbdfa2a8b63ea639"; }; @@ -30733,15 +34631,15 @@ cpu = [ ]; }; by-spec."parseurl"."~1.3.0" = - self.by-version."parseurl"."1.3.0"; - by-version."parseurl"."1.3.0" = self.buildNodePackage { - name = "parseurl-1.3.0"; - version = "1.3.0"; + self.by-version."parseurl"."1.3.1"; + by-version."parseurl"."1.3.1" = self.buildNodePackage { + name = "parseurl-1.3.1"; + version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/parseurl/-/parseurl-1.3.0.tgz"; - name = "parseurl-1.3.0.tgz"; - sha1 = "b58046db4223e145afa76009e61bac87cc2281b3"; + url = "https://registry.npmjs.org/parseurl/-/parseurl-1.3.1.tgz"; + name = "parseurl-1.3.1.tgz"; + sha1 = "c8ab8c9223ba34888aa64a297b28853bec18da56"; }; deps = { }; @@ -30751,34 +34649,40 @@ os = [ ]; cpu = [ ]; }; + by-spec."parseurl"."~1.3.1" = + self.by-version."parseurl"."1.3.1"; by-spec."parsoid"."*" = - self.by-version."parsoid"."0.2.0"; - by-version."parsoid"."0.2.0" = self.buildNodePackage { - name = "parsoid-0.2.0"; - version = "0.2.0"; + self.by-version."parsoid"."0.4.0"; + by-version."parsoid"."0.4.0" = self.buildNodePackage { + name = "parsoid-0.4.0"; + version = "0.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/parsoid/-/parsoid-0.2.0.tgz"; - name = "parsoid-0.2.0.tgz"; - sha1 = "6b32e8246d1e477d00fcf3b25b79fbd9b1223069"; + url = "https://registry.npmjs.org/parsoid/-/parsoid-0.4.0.tgz"; + name = "parsoid-0.4.0.tgz"; + sha1 = "3bfc61b6d217a6f7903650140f880fa2550865a7"; }; deps = { "alea-0.0.9" = self.by-version."alea"."0.0.9"; - "async-0.9.0" = self.by-version."async"."0.9.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + "body-parser-1.15.0" = self.by-version."body-parser"."1.15.0"; "bunyan-1.0.1" = self.by-version."bunyan"."1.0.1"; + "compression-1.6.1" = self.by-version."compression"."1.6.1"; + "connect-busboy-0.0.2" = self.by-version."connect-busboy"."0.0.2"; + "core-js-0.8.4" = self.by-version."core-js"."0.8.4"; "diff-1.0.8" = self.by-version."diff"."1.0.8"; - "domino-1.0.18" = self.by-version."domino"."1.0.18"; + "domino-1.0.24" = self.by-version."domino"."1.0.24"; "entities-1.1.1" = self.by-version."entities"."1.1.1"; - "es6-shim-0.16.0" = self.by-version."es6-shim"."0.16.0"; - "express-2.5.11" = self.by-version."express"."2.5.11"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "express-handlebars-2.0.1" = self.by-version."express-handlebars"."2.0.1"; "gelf-stream-0.2.4" = self.by-version."gelf-stream"."0.2.4"; - "handlebars-1.3.0" = self.by-version."handlebars"."1.3.0"; "html5-1.0.5" = self.by-version."html5"."1.0.5"; - "html5-entities-1.0.0" = self.by-version."html5-entities"."1.0.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-txstatsd-0.1.6" = self.by-version."node-txstatsd"."0.1.6"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "pegjs-0.8.0" = self.by-version."pegjs"."0.8.0"; - "prfun-1.0.2" = self.by-version."prfun"."1.0.2"; + "prfun-2.0.0" = self.by-version."prfun"."2.0.0"; "request-2.40.0" = self.by-version."request"."2.40.0"; + "serve-favicon-2.3.0" = self.by-version."serve-favicon"."2.3.0"; "simplediff-0.1.1" = self.by-version."simplediff"."0.1.1"; "yargs-1.3.3" = self.by-version."yargs"."1.3.3"; }; @@ -30788,17 +34692,17 @@ os = [ ]; cpu = [ ]; }; - "parsoid" = self.by-version."parsoid"."0.2.0"; + "parsoid" = self.by-version."parsoid"."0.4.0"; by-spec."passport"."*" = - self.by-version."passport"."0.2.1"; - by-version."passport"."0.2.1" = self.buildNodePackage { - name = "passport-0.2.1"; - version = "0.2.1"; + self.by-version."passport"."0.3.2"; + by-version."passport"."0.3.2" = self.buildNodePackage { + name = "passport-0.3.2"; + version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport/-/passport-0.2.1.tgz"; - name = "passport-0.2.1.tgz"; - sha1 = "a7d34c07b30fb605be885edbc8c93e5142e38574"; + url = "https://registry.npmjs.org/passport/-/passport-0.3.2.tgz"; + name = "passport-0.3.2.tgz"; + sha1 = "9dd009f915e8fe095b0124a01b8f82da07510102"; }; deps = { "passport-strategy-1.0.0" = self.by-version."passport-strategy"."1.0.0"; @@ -30810,11 +34714,11 @@ os = [ ]; cpu = [ ]; }; - "passport" = self.by-version."passport"."0.2.1"; - by-spec."passport"."0.2.1" = - self.by-version."passport"."0.2.1"; + "passport" = self.by-version."passport"."0.3.2"; + by-spec."passport"."0.3.2" = + self.by-version."passport"."0.3.2"; by-spec."passport".">=0.1.15" = - self.by-version."passport"."0.2.1"; + self.by-version."passport"."0.3.2"; by-spec."passport"."~0.1.1" = self.by-version."passport"."0.1.18"; by-version."passport"."0.1.18" = self.buildNodePackage { @@ -30822,7 +34726,7 @@ version = "0.1.18"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport/-/passport-0.1.18.tgz"; + url = "https://registry.npmjs.org/passport/-/passport-0.1.18.tgz"; name = "passport-0.1.18.tgz"; sha1 = "c8264479dcb6414cadbb66752d12b37e0b6525a1"; }; @@ -30836,45 +34740,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."passport"."~0.1.3" = - self.by-version."passport"."0.1.18"; - by-spec."passport"."~0.2.1" = - self.by-version."passport"."0.2.1"; - by-spec."passport-bitly"."git://github.com/simov/passport-bitly.git" = - self.by-version."passport-bitly"."0.1.0"; - by-version."passport-bitly"."0.1.0" = self.buildNodePackage { - name = "passport-bitly-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchgit { - url = "git://github.com/simov/passport-bitly.git"; - rev = "838ce018873eb4b8bb23331216c78e2822c6493f"; - sha256 = "7cb69e2ca9ef5cf47fecf0d669f15c0366174183ec0c7623ad5a619365c36e8a"; - }; - deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + by-spec."passport"."~0.3.2" = + self.by-version."passport"."0.3.2"; by-spec."passport-dropbox".">=0.1.2" = - self.by-version."passport-dropbox"."0.1.2"; - by-version."passport-dropbox"."0.1.2" = self.buildNodePackage { - name = "passport-dropbox-0.1.2"; - version = "0.1.2"; + self.by-version."passport-dropbox"."2.0.0"; + by-version."passport-dropbox"."2.0.0" = self.buildNodePackage { + name = "passport-dropbox-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-dropbox/-/passport-dropbox-0.1.2.tgz"; - name = "passport-dropbox-0.1.2.tgz"; - sha1 = "19149539d88895ce4627e166ddc8009239f58010"; + url = "https://registry.npmjs.org/passport-dropbox/-/passport-dropbox-2.0.0.tgz"; + name = "passport-dropbox-2.0.0.tgz"; + sha1 = "7efe6ced152a4f4db4e4db385743c2764eba963b"; }; deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; + "passport-oauth1-1.1.0" = self.by-version."passport-oauth1"."1.1.0"; }; optionalDependencies = { }; @@ -30889,7 +34769,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-evernote/-/passport-evernote-0.1.1.tgz"; + url = "https://registry.npmjs.org/passport-evernote/-/passport-evernote-0.1.1.tgz"; name = "passport-evernote-0.1.1.tgz"; sha1 = "10e097affa7e7520358d9ea26f34f1cce176adc2"; }; @@ -30904,18 +34784,18 @@ cpu = [ ]; }; by-spec."passport-facebook".">=0.1.5" = - self.by-version."passport-facebook"."2.0.0"; - by-version."passport-facebook"."2.0.0" = self.buildNodePackage { - name = "passport-facebook-2.0.0"; - version = "2.0.0"; + self.by-version."passport-facebook"."2.1.0"; + by-version."passport-facebook"."2.1.0" = self.buildNodePackage { + name = "passport-facebook-2.1.0"; + version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-facebook/-/passport-facebook-2.0.0.tgz"; - name = "passport-facebook-2.0.0.tgz"; - sha1 = "35a0cd0b5a791d25810a78014f0cc0a9e72e1957"; + url = "https://registry.npmjs.org/passport-facebook/-/passport-facebook-2.1.0.tgz"; + name = "passport-facebook-2.1.0.tgz"; + sha1 = "41f591557fc209b621be79a3b37be395ca5de4d0"; }; deps = { - "passport-oauth2-1.1.2" = self.by-version."passport-oauth2"."1.1.2"; + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; }; optionalDependencies = { }; @@ -30930,7 +34810,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-flickr/-/passport-flickr-0.2.0.tgz"; + url = "https://registry.npmjs.org/passport-flickr/-/passport-flickr-0.2.0.tgz"; name = "passport-flickr-0.2.0.tgz"; sha1 = "9f3a77eac4b48a9e2109df12e544114b42960c5c"; }; @@ -30944,40 +34824,18 @@ cpu = [ ]; }; by-spec."passport-github".">=0.1.5" = - self.by-version."passport-github"."0.1.5"; - by-version."passport-github"."0.1.5" = self.buildNodePackage { - name = "passport-github-0.1.5"; - version = "0.1.5"; + self.by-version."passport-github"."1.1.0"; + by-version."passport-github"."1.1.0" = self.buildNodePackage { + name = "passport-github-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-github/-/passport-github-0.1.5.tgz"; - name = "passport-github-0.1.5.tgz"; - sha1 = "258ebb75af40cdc4e3af11be3a138b75c1f865c1"; + url = "https://registry.npmjs.org/passport-github/-/passport-github-1.1.0.tgz"; + name = "passport-github-1.1.0.tgz"; + sha1 = "8ce1e3fcd61ad7578eb1df595839e4aea12355d4"; }; deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."passport-google-oauth"."*" = - self.by-version."passport-google-oauth"."0.2.0"; - by-version."passport-google-oauth"."0.2.0" = self.buildNodePackage { - name = "passport-google-oauth-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/passport-google-oauth/-/passport-google-oauth-0.2.0.tgz"; - name = "passport-google-oauth-0.2.0.tgz"; - sha1 = "e9a87e9cd3bc71b08819fa44825cc5bf464a894a"; - }; - deps = { - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "passport-oauth-1.0.0" = self.by-version."passport-oauth"."1.0.0"; + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; }; optionalDependencies = { }; @@ -30986,21 +34844,19 @@ cpu = [ ]; }; by-spec."passport-google-oauth".">=0.1.5" = - self.by-version."passport-google-oauth"."0.2.0"; - by-spec."passport-http"."*" = - self.by-version."passport-http"."0.2.2"; - by-version."passport-http"."0.2.2" = self.buildNodePackage { - name = "passport-http-0.2.2"; - version = "0.2.2"; + self.by-version."passport-google-oauth"."1.0.0"; + by-version."passport-google-oauth"."1.0.0" = self.buildNodePackage { + name = "passport-google-oauth-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-http/-/passport-http-0.2.2.tgz"; - name = "passport-http-0.2.2.tgz"; - sha1 = "2501314c0ff4a831e8a51ccfdb1b68f5c7cbc9f6"; + url = "https://registry.npmjs.org/passport-google-oauth/-/passport-google-oauth-1.0.0.tgz"; + name = "passport-google-oauth-1.0.0.tgz"; + sha1 = "65f50633192ad0627a18b08960077109d84eb76d"; }; deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-0.1.18" = self.by-version."passport"."0.1.18"; + "passport-google-oauth1-1.0.0" = self.by-version."passport-google-oauth1"."1.0.0"; + "passport-google-oauth20-1.0.0" = self.by-version."passport-google-oauth20"."1.0.0"; }; optionalDependencies = { }; @@ -31008,7 +34864,67 @@ os = [ ]; cpu = [ ]; }; - "passport-http" = self.by-version."passport-http"."0.2.2"; + by-spec."passport-google-oauth1"."1.x.x" = + self.by-version."passport-google-oauth1"."1.0.0"; + by-version."passport-google-oauth1"."1.0.0" = self.buildNodePackage { + name = "passport-google-oauth1-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/passport-google-oauth1/-/passport-google-oauth1-1.0.0.tgz"; + name = "passport-google-oauth1-1.0.0.tgz"; + sha1 = "af74a803df51ec646f66a44d82282be6f108e0cc"; + }; + deps = { + "passport-oauth1-1.1.0" = self.by-version."passport-oauth1"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."passport-google-oauth20"."1.x.x" = + self.by-version."passport-google-oauth20"."1.0.0"; + by-version."passport-google-oauth20"."1.0.0" = self.buildNodePackage { + name = "passport-google-oauth20-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz"; + name = "passport-google-oauth20-1.0.0.tgz"; + sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0"; + }; + deps = { + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."passport-http"."*" = + self.by-version."passport-http"."0.3.0"; + by-version."passport-http"."0.3.0" = self.buildNodePackage { + name = "passport-http-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/passport-http/-/passport-http-0.3.0.tgz"; + name = "passport-http-0.3.0.tgz"; + sha1 = "8ee53d4380be9c60df2151925029826f77115603"; + }; + deps = { + "passport-strategy-1.0.0" = self.by-version."passport-strategy"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "passport-http" = self.by-version."passport-http"."0.3.0"; by-spec."passport-http-bearer"."1.0.1" = self.by-version."passport-http-bearer"."1.0.1"; by-version."passport-http-bearer"."1.0.1" = self.buildNodePackage { @@ -31016,7 +34932,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-1.0.1.tgz"; + url = "https://registry.npmjs.org/passport-http-bearer/-/passport-http-bearer-1.0.1.tgz"; name = "passport-http-bearer-1.0.1.tgz"; sha1 = "147469ea3669e2a84c6167ef99dbb77e1f0098a8"; }; @@ -31030,15 +34946,15 @@ cpu = [ ]; }; by-spec."passport-imgur".">=0.0.1" = - self.by-version."passport-imgur"."0.0.2"; - by-version."passport-imgur"."0.0.2" = self.buildNodePackage { - name = "passport-imgur-0.0.2"; - version = "0.0.2"; + self.by-version."passport-imgur"."0.0.3"; + by-version."passport-imgur"."0.0.3" = self.buildNodePackage { + name = "passport-imgur-0.0.3"; + version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-imgur/-/passport-imgur-0.0.2.tgz"; - name = "passport-imgur-0.0.2.tgz"; - sha1 = "81d1d7049f3f83b71d04f4eb08627659b07e58b0"; + url = "https://registry.npmjs.org/passport-imgur/-/passport-imgur-0.0.3.tgz"; + name = "passport-imgur-0.0.3.tgz"; + sha1 = "c27fca66db4745b4061b59b80c81262fd3bbe17f"; }; deps = { "passport-oauth-1.0.0" = self.by-version."passport-oauth"."1.0.0"; @@ -31050,19 +34966,18 @@ cpu = [ ]; }; by-spec."passport-instagram".">=0.1.2" = - self.by-version."passport-instagram"."0.1.2"; - by-version."passport-instagram"."0.1.2" = self.buildNodePackage { - name = "passport-instagram-0.1.2"; - version = "0.1.2"; + self.by-version."passport-instagram"."1.0.0"; + by-version."passport-instagram"."1.0.0" = self.buildNodePackage { + name = "passport-instagram-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-instagram/-/passport-instagram-0.1.2.tgz"; - name = "passport-instagram-0.1.2.tgz"; - sha1 = "a1c84525330eed8a05d3ecfec3bf56caa895cfd6"; + url = "https://registry.npmjs.org/passport-instagram/-/passport-instagram-1.0.0.tgz"; + name = "passport-instagram-1.0.0.tgz"; + sha1 = "eaa2b42d11473bcfda5190f26234cf485f645656"; }; deps = { - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; }; optionalDependencies = { }; @@ -31077,7 +34992,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz"; + url = "https://registry.npmjs.org/passport-local/-/passport-local-1.0.0.tgz"; name = "passport-local-1.0.0.tgz"; sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee"; }; @@ -31094,19 +35009,19 @@ by-spec."passport-local"."~1.0.0" = self.by-version."passport-local"."1.0.0"; by-spec."passport-mailchimp".">=0.0.1" = - self.by-version."passport-mailchimp"."0.0.1"; - by-version."passport-mailchimp"."0.0.1" = self.buildNodePackage { - name = "passport-mailchimp-0.0.1"; - version = "0.0.1"; + self.by-version."passport-mailchimp"."1.0.0"; + by-version."passport-mailchimp"."1.0.0" = self.buildNodePackage { + name = "passport-mailchimp-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-mailchimp/-/passport-mailchimp-0.0.1.tgz"; - name = "passport-mailchimp-0.0.1.tgz"; - sha1 = "24f78c6926d2fa684ee7aa51cfb1b2b11f3fe4ac"; + url = "https://registry.npmjs.org/passport-mailchimp/-/passport-mailchimp-1.0.0.tgz"; + name = "passport-mailchimp-1.0.0.tgz"; + sha1 = "34c5ec1186fd7ef265153d1258406b96d8d64e74"; }; deps = { - "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; }; optionalDependencies = { }; @@ -31121,7 +35036,7 @@ version = "0.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-mixcloud/-/passport-mixcloud-0.0.2.tgz"; + url = "https://registry.npmjs.org/passport-mixcloud/-/passport-mixcloud-0.0.2.tgz"; name = "passport-mixcloud-0.0.2.tgz"; sha1 = "b216bcb0cbc605ec5dac87e65387d456768346c1"; }; @@ -31129,7 +35044,7 @@ "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "passport-oauth-0.1.15" = self.by-version."passport-oauth"."0.1.15"; "passport-mixcloud-0.0.2" = self.by-version."passport-mixcloud"."0.0.2"; - "request-2.55.0" = self.by-version."request"."2.55.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; }; optionalDependencies = { }; @@ -31144,14 +35059,14 @@ version = "0.1.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-oauth/-/passport-oauth-0.1.15.tgz"; + url = "https://registry.npmjs.org/passport-oauth/-/passport-oauth-0.1.15.tgz"; name = "passport-oauth-0.1.15.tgz"; sha1 = "fb74e0afe84614bfa256c5fc716cc56bbfc8cec0"; }; deps = { "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; "passport-0.1.18" = self.by-version."passport"."0.1.18"; - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; }; optionalDependencies = { }; @@ -31166,13 +35081,13 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-oauth/-/passport-oauth-1.0.0.tgz"; + url = "https://registry.npmjs.org/passport-oauth/-/passport-oauth-1.0.0.tgz"; name = "passport-oauth-1.0.0.tgz"; sha1 = "90aff63387540f02089af28cdad39ea7f80d77df"; }; deps = { - "passport-oauth1-1.0.1" = self.by-version."passport-oauth1"."1.0.1"; - "passport-oauth2-1.1.2" = self.by-version."passport-oauth2"."1.1.2"; + "passport-oauth1-1.1.0" = self.by-version."passport-oauth1"."1.1.0"; + "passport-oauth2-1.3.0" = self.by-version."passport-oauth2"."1.3.0"; }; optionalDependencies = { }; @@ -31180,26 +35095,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."passport-oauth"."^1.0.0" = - self.by-version."passport-oauth"."1.0.0"; by-spec."passport-oauth"."~0.1.1" = self.by-version."passport-oauth"."0.1.15"; - by-spec."passport-oauth"."~0.1.15" = - self.by-version."passport-oauth"."0.1.15"; by-spec."passport-oauth1"."1.x.x" = - self.by-version."passport-oauth1"."1.0.1"; - by-version."passport-oauth1"."1.0.1" = self.buildNodePackage { - name = "passport-oauth1-1.0.1"; - version = "1.0.1"; + self.by-version."passport-oauth1"."1.1.0"; + by-version."passport-oauth1"."1.1.0" = self.buildNodePackage { + name = "passport-oauth1-1.1.0"; + version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-oauth1/-/passport-oauth1-1.0.1.tgz"; - name = "passport-oauth1-1.0.1.tgz"; - sha1 = "41ade140b881392b144cbdd426095c035a91ad9c"; + url = "https://registry.npmjs.org/passport-oauth1/-/passport-oauth1-1.1.0.tgz"; + name = "passport-oauth1-1.1.0.tgz"; + sha1 = "a7de988a211f9cf4687377130ea74df32730c918"; }; deps = { "passport-strategy-1.0.0" = self.by-version."passport-strategy"."1.0.0"; - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; }; optionalDependencies = { @@ -31208,20 +35119,22 @@ os = [ ]; cpu = [ ]; }; + by-spec."passport-oauth1"."^1.0.1" = + self.by-version."passport-oauth1"."1.1.0"; by-spec."passport-oauth2"."1.x.x" = - self.by-version."passport-oauth2"."1.1.2"; - by-version."passport-oauth2"."1.1.2" = self.buildNodePackage { - name = "passport-oauth2-1.1.2"; - version = "1.1.2"; + self.by-version."passport-oauth2"."1.3.0"; + by-version."passport-oauth2"."1.3.0" = self.buildNodePackage { + name = "passport-oauth2-1.3.0"; + version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.1.2.tgz"; - name = "passport-oauth2-1.1.2.tgz"; - sha1 = "bd7163b1b6090371868dc4ef6f9f2e1e4cc4b948"; + url = "https://registry.npmjs.org/passport-oauth2/-/passport-oauth2-1.3.0.tgz"; + name = "passport-oauth2-1.3.0.tgz"; + sha1 = "d72b4bd62eeb807a4089ff3071a22c26c382dc0c"; }; deps = { "passport-strategy-1.0.0" = self.by-version."passport-strategy"."1.0.0"; - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; "uid2-0.0.3" = self.by-version."uid2"."0.0.3"; }; optionalDependencies = { @@ -31230,6 +35143,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."passport-oauth2"."^1.1.2" = + self.by-version."passport-oauth2"."1.3.0"; by-spec."passport-oauth2-client-password"."0.1.2" = self.by-version."passport-oauth2-client-password"."0.1.2"; by-version."passport-oauth2-client-password"."0.1.2" = self.buildNodePackage { @@ -31237,7 +35152,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-oauth2-client-password/-/passport-oauth2-client-password-0.1.2.tgz"; + url = "https://registry.npmjs.org/passport-oauth2-client-password/-/passport-oauth2-client-password-0.1.2.tgz"; name = "passport-oauth2-client-password-0.1.2.tgz"; sha1 = "4f378b678b92d16dbbd233a6c706520093e561ba"; }; @@ -31257,7 +35172,7 @@ version = "0.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-soundcloud/-/passport-soundcloud-0.1.2.tgz"; + url = "https://registry.npmjs.org/passport-soundcloud/-/passport-soundcloud-0.1.2.tgz"; name = "passport-soundcloud-0.1.2.tgz"; sha1 = "4ecf4b42b3e7d9641b78b9181aae6b75127beb21"; }; @@ -31278,7 +35193,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"; + url = "https://registry.npmjs.org/passport-strategy/-/passport-strategy-1.0.0.tgz"; name = "passport-strategy-1.0.0.tgz"; sha1 = "b5539aa8fc225a3d1ad179476ddf236b440f52e4"; }; @@ -31291,18 +35206,18 @@ cpu = [ ]; }; by-spec."passport-trello"."~0.1.4" = - self.by-version."passport-trello"."0.1.4"; - by-version."passport-trello"."0.1.4" = self.buildNodePackage { - name = "passport-trello-0.1.4"; - version = "0.1.4"; + self.by-version."passport-trello"."0.1.5"; + by-version."passport-trello"."0.1.5" = self.buildNodePackage { + name = "passport-trello-0.1.5"; + version = "0.1.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-trello/-/passport-trello-0.1.4.tgz"; - name = "passport-trello-0.1.4.tgz"; - sha1 = "c0aeeaa4dd598f99e129cb83b97950f672519442"; + url = "https://registry.npmjs.org/passport-trello/-/passport-trello-0.1.5.tgz"; + name = "passport-trello-0.1.5.tgz"; + sha1 = "cc98ce493a4827a6335490acd2c0d995580fd039"; }; deps = { - "passport-oauth-1.0.0" = self.by-version."passport-oauth"."1.0.0"; + "passport-oauth1-1.1.0" = self.by-version."passport-oauth1"."1.1.0"; }; optionalDependencies = { }; @@ -31311,18 +35226,18 @@ cpu = [ ]; }; by-spec."passport-twitter".">=0.1.4" = - self.by-version."passport-twitter"."1.0.3"; - by-version."passport-twitter"."1.0.3" = self.buildNodePackage { - name = "passport-twitter-1.0.3"; - version = "1.0.3"; + self.by-version."passport-twitter"."1.0.4"; + by-version."passport-twitter"."1.0.4" = self.buildNodePackage { + name = "passport-twitter-1.0.4"; + version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-twitter/-/passport-twitter-1.0.3.tgz"; - name = "passport-twitter-1.0.3.tgz"; - sha1 = "887076f265a598cdffde59be2169a040e5908353"; + url = "https://registry.npmjs.org/passport-twitter/-/passport-twitter-1.0.4.tgz"; + name = "passport-twitter-1.0.4.tgz"; + sha1 = "01a799e1f760bf2de49f2ba5fba32282f18932d7"; }; deps = { - "passport-oauth1-1.0.1" = self.by-version."passport-oauth1"."1.0.1"; + "passport-oauth1-1.1.0" = self.by-version."passport-oauth1"."1.1.0"; "xtraverse-0.1.0" = self.by-version."xtraverse"."0.1.0"; }; optionalDependencies = { @@ -31338,7 +35253,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/passport-wordpress/-/passport-wordpress-0.0.3.tgz"; + url = "https://registry.npmjs.org/passport-wordpress/-/passport-wordpress-0.0.3.tgz"; name = "passport-wordpress-0.0.3.tgz"; sha1 = "fa3b144c7c5a4c967a5f5f383139d515a95a7988"; }; @@ -31352,6 +35267,26 @@ os = [ ]; cpu = [ ]; }; + by-spec."path-array"."^1.0.0" = + self.by-version."path-array"."1.0.1"; + by-version."path-array"."1.0.1" = self.buildNodePackage { + name = "path-array-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/path-array/-/path-array-1.0.1.tgz"; + name = "path-array-1.0.1.tgz"; + sha1 = "7e2f0f35f07a2015122b868b7eac0eb2c4fec271"; + }; + deps = { + "array-index-1.0.0" = self.by-version."array-index"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."path-browserify"."0.0.0" = self.by-version."path-browserify"."0.0.0"; by-version."path-browserify"."0.0.0" = self.buildNodePackage { @@ -31359,7 +35294,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz"; + url = "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.0.tgz"; name = "path-browserify-0.0.0.tgz"; sha1 = "a0b870729aae214005b7d5032ec2cbbb0fb4451a"; }; @@ -31373,14 +35308,36 @@ }; by-spec."path-browserify"."~0.0.0" = self.by-version."path-browserify"."0.0.0"; - by-spec."path-is-absolute"."^1.0.0" = + by-spec."path-exists"."^2.0.0" = + self.by-version."path-exists"."2.1.0"; + by-version."path-exists"."2.1.0" = self.buildNodePackage { + name = "path-exists-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; + name = "path-exists-2.1.0.tgz"; + sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; + }; + deps = { + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."path-exists"."^2.1.0" = + self.by-version."path-exists"."2.1.0"; + by-spec."path-is-absolute"."1.0.0" = self.by-version."path-is-absolute"."1.0.0"; by-version."path-is-absolute"."1.0.0" = self.buildNodePackage { name = "path-is-absolute-1.0.0"; version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz"; + url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz"; name = "path-is-absolute-1.0.0.tgz"; sha1 = "263dada66ab3f2fb10bf7f9d24dd8f3e570ef912"; }; @@ -31392,6 +35349,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."path-is-absolute"."^1.0.0" = + self.by-version."path-is-absolute"."1.0.0"; + by-spec."path-is-absolute"."~1.0.0" = + self.by-version."path-is-absolute"."1.0.0"; by-spec."path-is-inside"."^1.0.1" = self.by-version."path-is-inside"."1.0.1"; by-version."path-is-inside"."1.0.1" = self.buildNodePackage { @@ -31399,7 +35360,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.1.tgz"; + url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.1.tgz"; name = "path-is-inside-1.0.1.tgz"; sha1 = "98d8f1d030bf04bd7aeee4a1ba5485d40318fd89"; }; @@ -31413,16 +35374,18 @@ }; by-spec."path-is-inside"."~1.0.0" = self.by-version."path-is-inside"."1.0.1"; - by-spec."path-platform"."^0.0.1" = - self.by-version."path-platform"."0.0.1"; - by-version."path-platform"."0.0.1" = self.buildNodePackage { - name = "path-platform-0.0.1"; - version = "0.0.1"; + by-spec."path-is-inside"."~1.0.1" = + self.by-version."path-is-inside"."1.0.1"; + by-spec."path-parse"."^1.0.5" = + self.by-version."path-parse"."1.0.5"; + by-version."path-parse"."1.0.5" = self.buildNodePackage { + name = "path-parse-1.0.5"; + version = "1.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-platform/-/path-platform-0.0.1.tgz"; - name = "path-platform-0.0.1.tgz"; - sha1 = "b5585d7c3c463d89aa0060d86611cf1afd617e2a"; + url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz"; + name = "path-parse-1.0.5.tgz"; + sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1"; }; deps = { }; @@ -31439,7 +35402,7 @@ version = "0.11.15"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz"; + url = "https://registry.npmjs.org/path-platform/-/path-platform-0.11.15.tgz"; name = "path-platform-0.11.15.tgz"; sha1 = "e864217f74c36850f0852b78dc7bf7d4a5721bf2"; }; @@ -31458,7 +35421,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz"; + url = "https://registry.npmjs.org/path-proxy/-/path-proxy-1.0.0.tgz"; name = "path-proxy-1.0.0.tgz"; sha1 = "18e8a36859fc9d2f1a53b48dee138543c020de5e"; }; @@ -31478,7 +35441,7 @@ version = "0.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.3.tgz"; + url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.3.tgz"; name = "path-to-regexp-0.1.3.tgz"; sha1 = "21b9ab82274279de25b156ea08fd12ca51b8aecb"; }; @@ -31490,6 +35453,66 @@ os = [ ]; cpu = [ ]; }; + by-spec."path-to-regexp"."0.1.6" = + self.by-version."path-to-regexp"."0.1.6"; + by-version."path-to-regexp"."0.1.6" = self.buildNodePackage { + name = "path-to-regexp-0.1.6"; + version = "0.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.6.tgz"; + name = "path-to-regexp-0.1.6.tgz"; + sha1 = "f01fd5734047b6bfbc5f208c6135a33d7af09c36"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."path-to-regexp"."0.1.7" = + self.by-version."path-to-regexp"."0.1.7"; + by-version."path-to-regexp"."0.1.7" = self.buildNodePackage { + name = "path-to-regexp-0.1.7"; + version = "0.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz"; + name = "path-to-regexp-0.1.7.tgz"; + sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."path-type"."^1.0.0" = + self.by-version."path-type"."1.1.0"; + by-version."path-type"."1.1.0" = self.buildNodePackage { + name = "path-type-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; + name = "path-type-1.1.0.tgz"; + sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "pify-2.3.0" = self.by-version."pify"."2.3.0"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."pause"."0.0.1" = self.by-version."pause"."0.0.1"; by-version."pause"."0.0.1" = self.buildNodePackage { @@ -31497,7 +35520,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; + url = "https://registry.npmjs.org/pause/-/pause-0.0.1.tgz"; name = "pause-0.0.1.tgz"; sha1 = "1d408b3fdb76923b9543d96fb4c9dfd535d9cb5d"; }; @@ -31509,6 +35532,45 @@ os = [ ]; cpu = [ ]; }; + by-spec."pause"."0.1.0" = + self.by-version."pause"."0.1.0"; + by-version."pause"."0.1.0" = self.buildNodePackage { + name = "pause-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pause/-/pause-0.1.0.tgz"; + name = "pause-0.1.0.tgz"; + sha1 = "ebc8a4a8619ff0b8a81ac1513c3434ff469fdb74"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pause-stream"."0.0.11" = + self.by-version."pause-stream"."0.0.11"; + by-version."pause-stream"."0.0.11" = self.buildNodePackage { + name = "pause-stream-0.0.11"; + version = "0.0.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; + name = "pause-stream-0.0.11.tgz"; + sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."pbkdf2"."^3.0.3" = self.by-version."pbkdf2"."3.0.4"; by-version."pbkdf2"."3.0.4" = self.buildNodePackage { @@ -31516,12 +35578,12 @@ version = "3.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.4.tgz"; + url = "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.4.tgz"; name = "pbkdf2-3.0.4.tgz"; sha1 = "12c8bfaf920543786a85150b03f68d5f1aa982fc"; }; deps = { - "create-hmac-1.1.3" = self.by-version."create-hmac"."1.1.3"; + "create-hmac-1.1.4" = self.by-version."create-hmac"."1.1.4"; }; optionalDependencies = { }; @@ -31536,7 +35598,7 @@ version = "2.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz"; + url = "https://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-2.0.1.tgz"; name = "pbkdf2-compat-2.0.1.tgz"; sha1 = "b6e0c8fa99494d94e0511575802a59a5c142f288"; }; @@ -31548,26 +35610,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."pbkdf2-compat"."^3.0.0" = - self.by-version."pbkdf2-compat"."3.0.2"; - by-version."pbkdf2-compat"."3.0.2" = self.buildNodePackage { - name = "pbkdf2-compat-3.0.2"; - version = "3.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pbkdf2-compat/-/pbkdf2-compat-3.0.2.tgz"; - name = "pbkdf2-compat-3.0.2.tgz"; - sha1 = "0b207887e7d45467e9dd1027bbf1414e1f165291"; - }; - deps = { - "create-hmac-1.1.3" = self.by-version."create-hmac"."1.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."peer-wire-protocol"."^0.7.0" = self.by-version."peer-wire-protocol"."0.7.0"; by-version."peer-wire-protocol"."0.7.0" = self.buildNodePackage { @@ -31575,7 +35617,7 @@ version = "0.7.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.0.tgz"; + url = "https://registry.npmjs.org/peer-wire-protocol/-/peer-wire-protocol-0.7.0.tgz"; name = "peer-wire-protocol-0.7.0.tgz"; sha1 = "6c015abf24b4877ed9eca3822b22d996078011da"; }; @@ -31591,22 +35633,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."peer-wire-swarm"."^0.9.0" = - self.by-version."peer-wire-swarm"."0.9.2"; - by-version."peer-wire-swarm"."0.9.2" = self.buildNodePackage { - name = "peer-wire-swarm-0.9.2"; - version = "0.9.2"; + by-spec."peer-wire-swarm"."^0.12.0" = + self.by-version."peer-wire-swarm"."0.12.1"; + by-version."peer-wire-swarm"."0.12.1" = self.buildNodePackage { + name = "peer-wire-swarm-0.12.1"; + version = "0.12.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.9.2.tgz"; - name = "peer-wire-swarm-0.9.2.tgz"; - sha1 = "092848005607d8ca94e69f9bc9ebe52956ec3048"; + url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.12.1.tgz"; + name = "peer-wire-swarm-0.12.1.tgz"; + sha1 = "51b75da99c335c64c9ba9ef99fe27a4a5951ff42"; }; deps = { - "peer-wire-protocol-0.7.0" = self.by-version."peer-wire-protocol"."0.7.0"; "fifo-0.1.4" = self.by-version."fifo"."0.1.4"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "peer-wire-protocol-0.7.0" = self.by-version."peer-wire-protocol"."0.7.0"; "speedometer-0.1.4" = self.by-version."speedometer"."0.1.4"; + "utp-0.0.7" = self.by-version."utp"."0.0.7"; }; optionalDependencies = { }; @@ -31616,20 +35659,77 @@ }; by-spec."peer-wire-swarm"."^0.9.2" = self.by-version."peer-wire-swarm"."0.9.2"; + by-version."peer-wire-swarm"."0.9.2" = self.buildNodePackage { + name = "peer-wire-swarm-0.9.2"; + version = "0.9.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/peer-wire-swarm/-/peer-wire-swarm-0.9.2.tgz"; + name = "peer-wire-swarm-0.9.2.tgz"; + sha1 = "092848005607d8ca94e69f9bc9ebe52956ec3048"; + }; + deps = { + "peer-wire-protocol-0.7.0" = self.by-version."peer-wire-protocol"."0.7.0"; + "fifo-0.1.4" = self.by-version."fifo"."0.1.4"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "speedometer-0.1.4" = self.by-version."speedometer"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."peerflix"."*" = + self.by-version."peerflix"."0.32.4"; + by-version."peerflix"."0.32.4" = self.buildNodePackage { + name = "peerflix-0.32.4"; + version = "0.32.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/peerflix/-/peerflix-0.32.4.tgz"; + name = "peerflix-0.32.4.tgz"; + sha1 = "f971df69db962ecaee1b7a7ba67fff7c57fd12dc"; + }; + deps = { + "clivas-0.1.4" = self.by-version."clivas"."0.1.4"; + "inquirer-0.8.5" = self.by-version."inquirer"."0.8.5"; + "keypress-0.2.1" = self.by-version."keypress"."0.2.1"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "network-address-0.0.5" = self.by-version."network-address"."0.0.5"; + "numeral-1.5.3" = self.by-version."numeral"."1.5.3"; + "open-0.0.5" = self.by-version."open"."0.0.5"; + "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "parse-torrent-5.7.3" = self.by-version."parse-torrent"."5.7.3"; + "pump-0.3.5" = self.by-version."pump"."0.3.5"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "rc-0.4.0" = self.by-version."rc"."0.4.0"; + "torrent-stream-1.0.2" = self.by-version."torrent-stream"."1.0.2"; + "windows-no-runnable-0.0.6" = self.by-version."windows-no-runnable"."0.0.6"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + "airplay-js-0.2.16" = self.by-version."airplay-js"."0.2.16"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "peerflix" = self.by-version."peerflix"."0.32.4"; + by-spec."peerflix"."^0.29.1" = self.by-version."peerflix"."0.29.2"; by-version."peerflix"."0.29.2" = self.buildNodePackage { name = "peerflix-0.29.2"; version = "0.29.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/peerflix/-/peerflix-0.29.2.tgz"; + url = "https://registry.npmjs.org/peerflix/-/peerflix-0.29.2.tgz"; name = "peerflix-0.29.2.tgz"; sha1 = "6a32587260546d42d4d2c0ccc37063d977af105c"; }; deps = { "clivas-0.1.4" = self.by-version."clivas"."0.1.4"; - "inquirer-0.8.2" = self.by-version."inquirer"."0.8.2"; + "inquirer-0.8.5" = self.by-version."inquirer"."0.8.5"; "keypress-0.2.1" = self.by-version."keypress"."0.2.1"; "mime-1.3.4" = self.by-version."mime"."1.3.4"; "network-address-0.0.5" = self.by-version."network-address"."0.0.5"; @@ -31637,53 +35737,50 @@ "open-0.0.5" = self.by-version."open"."0.0.5"; "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; "pump-0.3.5" = self.by-version."pump"."0.3.5"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; "rc-0.4.0" = self.by-version."rc"."0.4.0"; "read-torrent-1.3.0" = self.by-version."read-torrent"."1.3.0"; "torrent-stream-0.18.1" = self.by-version."torrent-stream"."0.18.1"; "windows-no-runnable-0.0.6" = self.by-version."windows-no-runnable"."0.0.6"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { - "airplay-js-0.2.13" = self.by-version."airplay-js"."0.2.13"; + "airplay-js-0.2.16" = self.by-version."airplay-js"."0.2.16"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - "peerflix" = self.by-version."peerflix"."0.29.2"; - by-spec."peerflix"."^0.29.1" = - self.by-version."peerflix"."0.29.2"; by-spec."peerflix-server"."*" = - self.by-version."peerflix-server"."0.0.22"; - by-version."peerflix-server"."0.0.22" = self.buildNodePackage { - name = "peerflix-server-0.0.22"; - version = "0.0.22"; + self.by-version."peerflix-server"."0.0.29"; + by-version."peerflix-server"."0.0.29" = self.buildNodePackage { + name = "peerflix-server-0.0.29"; + version = "0.0.29"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/peerflix-server/-/peerflix-server-0.0.22.tgz"; - name = "peerflix-server-0.0.22.tgz"; - sha1 = "008b0463eb3139729b8787db95131735803ae94d"; + url = "https://registry.npmjs.org/peerflix-server/-/peerflix-server-0.0.29.tgz"; + name = "peerflix-server-0.0.29.tgz"; + sha1 = "db21c35c6c1bde4a54dd1f215dc466ab55962751"; }; deps = { "connect-multiparty-1.2.5" = self.by-version."connect-multiparty"."1.2.5"; "express-3.5.3" = self.by-version."express"."3.5.3"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "pump-0.3.5" = self.by-version."pump"."0.3.5"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - "read-torrent-1.0.0" = self.by-version."read-torrent"."1.0.0"; + "lodash-2.4.2" = self.by-version."lodash"."2.4.2"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "pump-1.0.1" = self.by-version."pump"."1.0.1"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "read-torrent-1.3.0" = self.by-version."read-torrent"."1.3.0"; "socket.io-0.9.17" = self.by-version."socket.io"."0.9.17"; - "torrent-stream-0.13.5" = self.by-version."torrent-stream"."0.13.5"; + "torrent-stream-0.18.1" = self.by-version."torrent-stream"."0.18.1"; }; optionalDependencies = { - "fluent-ffmpeg-2.0.0-rc3" = self.by-version."fluent-ffmpeg"."2.0.0-rc3"; + "fluent-ffmpeg-2.0.1" = self.by-version."fluent-ffmpeg"."2.0.1"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - "peerflix-server" = self.by-version."peerflix-server"."0.0.22"; + "peerflix-server" = self.by-version."peerflix-server"."0.0.29"; by-spec."pegjs"."0.6.2" = self.by-version."pegjs"."0.6.2"; by-version."pegjs"."0.6.2" = self.buildNodePackage { @@ -31691,7 +35788,7 @@ version = "0.6.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/pegjs/-/pegjs-0.6.2.tgz"; + url = "https://registry.npmjs.org/pegjs/-/pegjs-0.6.2.tgz"; name = "pegjs-0.6.2.tgz"; sha1 = "74651f8a800e444db688e4eeae8edb65637a17a5"; }; @@ -31703,16 +35800,35 @@ os = [ ]; cpu = [ ]; }; - by-spec."pegjs"."git+https://github.com/arlolra/pegjs#startOffset" = + by-spec."pegjs"."git+https://github.com/tstarling/pegjs#fork" = self.by-version."pegjs"."0.8.0"; by-version."pegjs"."0.8.0" = self.buildNodePackage { name = "pegjs-0.8.0"; version = "0.8.0"; bin = true; src = fetchgit { - url = "https://github.com/arlolra/pegjs"; - rev = "7ff7464d082dd96def08e8c14aadc6bc5e5a84ba"; - sha256 = "36706b776a50ca1320cd5f7d4db2668d1567cccd43ee6a746e4d2c70552570e9"; + url = "https://github.com/tstarling/pegjs"; + rev = "9162b1e114e41992dd0fdafa24d2574a0b8a836a"; + sha256 = "11f0b6b159709bc7c9223c0c8013b3e307b87ea6bbfcf615b804b2d67fe3813a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pend"."~1.2.0" = + self.by-version."pend"."1.2.0"; + by-version."pend"."1.2.0" = self.buildNodePackage { + name = "pend-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz"; + name = "pend-1.2.0.tgz"; + sha1 = "7a57eb550a6783f9115331fcf4663d5c8e007a50"; }; deps = { }; @@ -31723,24 +35839,54 @@ cpu = [ ]; }; by-spec."phantomjs"."*" = - self.by-version."phantomjs"."1.9.16"; - by-version."phantomjs"."1.9.16" = self.buildNodePackage { - name = "phantomjs-1.9.16"; - version = "1.9.16"; + self.by-version."phantomjs"."2.1.7"; + by-version."phantomjs"."2.1.7" = self.buildNodePackage { + name = "phantomjs-2.1.7"; + version = "2.1.7"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/phantomjs/-/phantomjs-1.9.16.tgz"; - name = "phantomjs-1.9.16.tgz"; - sha1 = "989256190c00f987fc96b7067bdb5cd2e420bac9"; + url = "https://registry.npmjs.org/phantomjs/-/phantomjs-2.1.7.tgz"; + name = "phantomjs-2.1.7.tgz"; + sha1 = "c6910f67935c37285b6114329fc2f27d5f3e3134"; }; deps = { - "adm-zip-0.4.4" = self.by-version."adm-zip"."0.4.4"; - "fs-extra-0.16.5" = self.by-version."fs-extra"."0.16.5"; - "kew-0.4.0" = self.by-version."kew"."0.4.0"; - "npmconf-2.1.1" = self.by-version."npmconf"."2.1.1"; + "extract-zip-1.5.0" = self.by-version."extract-zip"."1.5.0"; + "fs-extra-0.26.7" = self.by-version."fs-extra"."0.26.7"; + "hasha-2.2.0" = self.by-version."hasha"."2.2.0"; + "kew-0.7.0" = self.by-version."kew"."0.7.0"; "progress-1.1.8" = self.by-version."progress"."1.1.8"; - "request-2.42.0" = self.by-version."request"."2.42.0"; + "request-2.67.0" = self.by-version."request"."2.67.0"; + "request-progress-2.0.1" = self.by-version."request-progress"."2.0.1"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "phantomjs" = self.by-version."phantomjs"."2.1.7"; + by-spec."phantomjs"."1.9.7-15" = + self.by-version."phantomjs"."1.9.7-15"; + by-version."phantomjs"."1.9.7-15" = self.buildNodePackage { + name = "phantomjs-1.9.7-15"; + version = "1.9.7-15"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.7-15.tgz"; + name = "phantomjs-1.9.7-15.tgz"; + sha1 = "0b3a7ce630486a83be91ff4e832eee20e971115b"; + }; + deps = { + "adm-zip-0.2.1" = self.by-version."adm-zip"."0.2.1"; + "kew-0.1.7" = self.by-version."kew"."0.1.7"; + "ncp-0.4.2" = self.by-version."ncp"."0.4.2"; + "npmconf-0.0.24" = self.by-version."npmconf"."0.0.24"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "progress-1.1.8" = self.by-version."progress"."1.1.8"; + "request-2.36.0" = self.by-version."request"."2.36.0"; "request-progress-0.3.1" = self.by-version."request-progress"."0.3.1"; + "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; "which-1.0.9" = self.by-version."which"."1.0.9"; }; optionalDependencies = { @@ -31749,30 +35895,111 @@ os = [ ]; cpu = [ ]; }; - "phantomjs" = self.by-version."phantomjs"."1.9.16"; - by-spec."phantomjs"."~1.9.1" = - self.by-version."phantomjs"."1.9.16"; by-spec."phantomjs"."~1.9.10" = - self.by-version."phantomjs"."1.9.16"; - by-spec."pkgcloud".">=1.1.0" = - self.by-version."pkgcloud"."1.1.0"; - by-version."pkgcloud"."1.1.0" = self.buildNodePackage { - name = "pkgcloud-1.1.0"; - version = "1.1.0"; - bin = false; + self.by-version."phantomjs"."1.9.20"; + by-version."phantomjs"."1.9.20" = self.buildNodePackage { + name = "phantomjs-1.9.20"; + version = "1.9.20"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/pkgcloud/-/pkgcloud-1.1.0.tgz"; - name = "pkgcloud-1.1.0.tgz"; - sha1 = "b67d48d9c39c40c2578eeb255165bbb05d4803d4"; + url = "https://registry.npmjs.org/phantomjs/-/phantomjs-1.9.20.tgz"; + name = "phantomjs-1.9.20.tgz"; + sha1 = "4424aca20e14d255c0b0889af6f6b8973da10e0d"; }; deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "aws-sdk-2.0.31" = self.by-version."aws-sdk"."2.0.31"; + "extract-zip-1.5.0" = self.by-version."extract-zip"."1.5.0"; + "fs-extra-0.26.7" = self.by-version."fs-extra"."0.26.7"; + "hasha-2.2.0" = self.by-version."hasha"."2.2.0"; + "kew-0.7.0" = self.by-version."kew"."0.7.0"; + "progress-1.1.8" = self.by-version."progress"."1.1.8"; + "request-2.67.0" = self.by-version."request"."2.67.0"; + "request-progress-2.0.1" = self.by-version."request-progress"."2.0.1"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pify"."^2.0.0" = + self.by-version."pify"."2.3.0"; + by-version."pify"."2.3.0" = self.buildNodePackage { + name = "pify-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; + name = "pify-2.3.0.tgz"; + sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pinkie"."^2.0.0" = + self.by-version."pinkie"."2.0.4"; + by-version."pinkie"."2.0.4" = self.buildNodePackage { + name = "pinkie-2.0.4"; + version = "2.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; + name = "pinkie-2.0.4.tgz"; + sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pinkie-promise"."^2.0.0" = + self.by-version."pinkie-promise"."2.0.0"; + by-version."pinkie-promise"."2.0.0" = self.buildNodePackage { + name = "pinkie-promise-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz"; + name = "pinkie-promise-2.0.0.tgz"; + sha1 = "4c83538de1f6e660c29e0a13446844f7a7e88259"; + }; + deps = { + "pinkie-2.0.4" = self.by-version."pinkie"."2.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pkgcloud".">=1.1.0" = + self.by-version."pkgcloud"."1.3.0"; + by-version."pkgcloud"."1.3.0" = self.buildNodePackage { + name = "pkgcloud-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pkgcloud/-/pkgcloud-1.3.0.tgz"; + name = "pkgcloud-1.3.0.tgz"; + sha1 = "d7e44892e5ddd24dcc6c10bee2bcefb7526a5ed6"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; + "aws-sdk-2.3.2" = self.by-version."aws-sdk"."2.3.2"; "errs-0.3.2" = self.by-version."errs"."0.3.2"; "eventemitter2-0.4.14" = self.by-version."eventemitter2"."0.4.14"; + "fast-json-patch-0.5.6" = self.by-version."fast-json-patch"."0.5.6"; "filed-0.1.0" = self.by-version."filed"."0.1.0"; "gcloud-0.10.0" = self.by-version."gcloud"."0.10.0"; - "ip-0.3.2" = self.by-version."ip"."0.3.2"; + "ip-0.3.3" = self.by-version."ip"."0.3.3"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; "qs-1.2.2" = self.by-version."qs"."1.2.2"; "request-2.40.0" = self.by-version."request"."2.40.0"; @@ -31795,7 +36022,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz"; + url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.2.3.tgz"; name = "pkginfo-0.2.3.tgz"; sha1 = "7239c42a5ef6c30b8f328439d9b9ff71042490f8"; }; @@ -31807,16 +36034,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."pkginfo"."0.3.0" = - self.by-version."pkginfo"."0.3.0"; - by-version."pkginfo"."0.3.0" = self.buildNodePackage { - name = "pkginfo-0.3.0"; - version = "0.3.0"; + by-spec."pkginfo"."0.3.x" = + self.by-version."pkginfo"."0.3.1"; + by-version."pkginfo"."0.3.1" = self.buildNodePackage { + name = "pkginfo-0.3.1"; + version = "0.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz"; - name = "pkginfo-0.3.0.tgz"; - sha1 = "726411401039fe9b009eea86614295d5f3a54276"; + url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz"; + name = "pkginfo-0.3.1.tgz"; + sha1 = "5b29f6a81f70717142e09e765bbeab97b4f81e21"; }; deps = { }; @@ -31826,12 +36053,27 @@ os = [ ]; cpu = [ ]; }; - by-spec."pkginfo"."0.3.x" = - self.by-version."pkginfo"."0.3.0"; by-spec."pkginfo"."0.x.x" = - self.by-version."pkginfo"."0.3.0"; - by-spec."pkginfo"."~0.3.0" = - self.by-version."pkginfo"."0.3.0"; + self.by-version."pkginfo"."0.4.0"; + by-version."pkginfo"."0.4.0" = self.buildNodePackage { + name = "pkginfo-0.4.0"; + version = "0.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pkginfo/-/pkginfo-0.4.0.tgz"; + name = "pkginfo-0.4.0.tgz"; + sha1 = "349dbb7ffd38081fcadc0853df687f0c7744cd65"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pkginfo"."^0.3.0" = + self.by-version."pkginfo"."0.3.1"; by-spec."playerui"."^1.2.0" = self.by-version."playerui"."1.2.0"; by-version."playerui"."1.2.0" = self.buildNodePackage { @@ -31839,7 +36081,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/playerui/-/playerui-1.2.0.tgz"; + url = "https://registry.npmjs.org/playerui/-/playerui-1.2.0.tgz"; name = "playerui-1.2.0.tgz"; sha1 = "2d59c8cb736e189cb2398cd809469ca47077f812"; }; @@ -31847,7 +36089,7 @@ "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; "pad-0.0.5" = self.by-version."pad"."0.0.5"; "single-line-log-0.4.1" = self.by-version."single-line-log"."0.4.1"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -31855,22 +36097,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."plist"."1.1.0" = - self.by-version."plist"."1.1.0"; - by-version."plist"."1.1.0" = self.buildNodePackage { - name = "plist-1.1.0"; - version = "1.1.0"; + by-spec."plist"."*" = + self.by-version."plist"."1.2.0"; + by-version."plist"."1.2.0" = self.buildNodePackage { + name = "plist-1.2.0"; + version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/plist/-/plist-1.1.0.tgz"; - name = "plist-1.1.0.tgz"; - sha1 = "ff6708590c97cc438e7bc45de5251bd725f3f89d"; + url = "https://registry.npmjs.org/plist/-/plist-1.2.0.tgz"; + name = "plist-1.2.0.tgz"; + sha1 = "084b5093ddc92506e259f874b8d9b1afb8c79593"; }; deps = { - "base64-js-0.0.6" = self.by-version."base64-js"."0.0.6"; - "xmlbuilder-2.2.1" = self.by-version."xmlbuilder"."2.2.1"; - "xmldom-0.1.19" = self.by-version."xmldom"."0.1.19"; - "util-deprecate-1.0.0" = self.by-version."util-deprecate"."1.0.0"; + "base64-js-0.0.8" = self.by-version."base64-js"."0.0.8"; + "xmlbuilder-4.0.0" = self.by-version."xmlbuilder"."4.0.0"; + "xmldom-0.1.22" = self.by-version."xmldom"."0.1.22"; + "util-deprecate-1.0.2" = self.by-version."util-deprecate"."1.0.2"; }; optionalDependencies = { }; @@ -31879,20 +36121,22 @@ cpu = [ ]; }; by-spec."plist"."^1.0.1" = - self.by-version."plist"."1.1.0"; + self.by-version."plist"."1.2.0"; + by-spec."plist"."^1.2.0" = + self.by-version."plist"."1.2.0"; by-spec."plist-native"."*" = - self.by-version."plist-native"."0.4.0"; - by-version."plist-native"."0.4.0" = self.buildNodePackage { - name = "plist-native-0.4.0"; - version = "0.4.0"; + self.by-version."plist-native"."0.4.2"; + by-version."plist-native"."0.4.2" = self.buildNodePackage { + name = "plist-native-0.4.2"; + version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/plist-native/-/plist-native-0.4.0.tgz"; - name = "plist-native-0.4.0.tgz"; - sha1 = "9b257c5e99b704dff177f23af082c59f7d58855f"; + url = "https://registry.npmjs.org/plist-native/-/plist-native-0.4.2.tgz"; + name = "plist-native-0.4.2.tgz"; + sha1 = "5fa25c9c4ce9b01144de02564e8aa984ebbc8901"; }; deps = { - "libxmljs-0.13.0" = self.by-version."libxmljs"."0.13.0"; + "libxmljs-0.17.1" = self.by-version."libxmljs"."0.17.1"; }; optionalDependencies = { }; @@ -31900,21 +36144,19 @@ os = [ ]; cpu = [ ]; }; - "plist-native" = self.by-version."plist-native"."0.4.0"; - by-spec."plist-with-patches"."0.5.1" = - self.by-version."plist-with-patches"."0.5.1"; - by-version."plist-with-patches"."0.5.1" = self.buildNodePackage { - name = "plist-with-patches-0.5.1"; - version = "0.5.1"; + "plist-native" = self.by-version."plist-native"."0.4.2"; + by-spec."pluralize"."^1.2.1" = + self.by-version."pluralize"."1.2.1"; + by-version."pluralize"."1.2.1" = self.buildNodePackage { + name = "pluralize-1.2.1"; + version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/plist-with-patches/-/plist-with-patches-0.5.1.tgz"; - name = "plist-with-patches-0.5.1.tgz"; - sha1 = "868aae2e0df8989b026562b35cbc19cfd8bb780d"; + url = "https://registry.npmjs.org/pluralize/-/pluralize-1.2.1.tgz"; + name = "pluralize-1.2.1.tgz"; + sha1 = "d1a21483fd22bb41e58a12fa3421823140897c45"; }; deps = { - "xmlbuilder-0.4.3" = self.by-version."xmlbuilder"."0.4.3"; - "xmldom-0.1.19" = self.by-version."xmldom"."0.1.19"; }; optionalDependencies = { }; @@ -31929,7 +36171,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/policyfile/-/policyfile-0.0.4.tgz"; + url = "https://registry.npmjs.org/policyfile/-/policyfile-0.0.4.tgz"; name = "policyfile-0.0.4.tgz"; sha1 = "d6b82ead98ae79ebe228e2daf5903311ec982e4d"; }; @@ -31948,7 +36190,7 @@ version = "0.4.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pooling/-/pooling-0.4.6.tgz"; + url = "https://registry.npmjs.org/pooling/-/pooling-0.4.6.tgz"; name = "pooling-0.4.6.tgz"; sha1 = "76a317371ea8a363b4858fa4799e60245f30e664"; }; @@ -31972,7 +36214,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz"; + url = "https://registry.npmjs.org/pop-iterate/-/pop-iterate-1.0.1.tgz"; name = "pop-iterate-1.0.1.tgz"; sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3"; }; @@ -31984,26 +36226,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."portfinder"."^0.2.1" = - self.by-version."portfinder"."0.2.1"; - by-version."portfinder"."0.2.1" = self.buildNodePackage { - name = "portfinder-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/portfinder/-/portfinder-0.2.1.tgz"; - name = "portfinder-0.2.1.tgz"; - sha1 = "b2b9b0164f9e17fa3a9c7db2304d0a75140c71ad"; - }; - deps = { - "mkdirp-0.0.7" = self.by-version."mkdirp"."0.0.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."portfinder"."^0.3.0" = self.by-version."portfinder"."0.3.0"; by-version."portfinder"."0.3.0" = self.buildNodePackage { @@ -32011,7 +36233,7 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/portfinder/-/portfinder-0.3.0.tgz"; + url = "https://registry.npmjs.org/portfinder/-/portfinder-0.3.0.tgz"; name = "portfinder-0.3.0.tgz"; sha1 = "f9f2c96894440c5b5113b84e0ad1013042b7c2a0"; }; @@ -32025,18 +36247,18 @@ cpu = [ ]; }; by-spec."posix"."*" = - self.by-version."posix"."2.0.0"; - by-version."posix"."2.0.0" = self.buildNodePackage { - name = "posix-2.0.0"; - version = "2.0.0"; + self.by-version."posix"."4.0.1"; + by-version."posix"."4.0.1" = self.buildNodePackage { + name = "posix-4.0.1"; + version = "4.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/posix/-/posix-2.0.0.tgz"; - name = "posix-2.0.0.tgz"; - sha1 = "90fd0ec73968d805c890b61ae6cc95ae5803a87d"; + url = "https://registry.npmjs.org/posix/-/posix-4.0.1.tgz"; + name = "posix-4.0.1.tgz"; + sha1 = "22d195ef7915705b69430eb997780dc74e159be4"; }; deps = { - "nan-1.6.2" = self.by-version."nan"."1.6.2"; + "nan-2.0.9" = self.by-version."nan"."2.0.9"; }; optionalDependencies = { }; @@ -32044,7 +36266,7 @@ os = [ ]; cpu = [ ]; }; - "posix" = self.by-version."posix"."2.0.0"; + "posix" = self.by-version."posix"."4.0.1"; by-spec."posix-getopt"."1.1.0" = self.by-version."posix-getopt"."1.1.0"; by-version."posix-getopt"."1.1.0" = self.buildNodePackage { @@ -32052,7 +36274,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/posix-getopt/-/posix-getopt-1.1.0.tgz"; + url = "https://registry.npmjs.org/posix-getopt/-/posix-getopt-1.1.0.tgz"; name = "posix-getopt-1.1.0.tgz"; sha1 = "8e258aca8f34d6906c159a32b0388360197e5698"; }; @@ -32071,7 +36293,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; + url = "https://registry.npmjs.org/precond/-/precond-0.2.3.tgz"; name = "precond-0.2.3.tgz"; sha1 = "aa9591bcaa24923f1e0f4849d240f47efc1075ac"; }; @@ -32083,16 +36305,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."prelude-ls"."~1.1.0" = - self.by-version."prelude-ls"."1.1.1"; - by-version."prelude-ls"."1.1.1" = self.buildNodePackage { - name = "prelude-ls-1.1.1"; - version = "1.1.1"; + by-spec."prelude-ls"."~1.1.2" = + self.by-version."prelude-ls"."1.1.2"; + by-version."prelude-ls"."1.1.2" = self.buildNodePackage { + name = "prelude-ls-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.1.tgz"; - name = "prelude-ls-1.1.1.tgz"; - sha1 = "c0b86c1ffd151ad3cc75e7e3fe38d7a1bf33728a"; + url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz"; + name = "prelude-ls-1.1.2.tgz"; + sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; }; deps = { }; @@ -32102,18 +36324,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."prelude-ls"."~1.1.1" = - self.by-version."prelude-ls"."1.1.1"; by-spec."prepend-http"."^1.0.0" = - self.by-version."prepend-http"."1.0.1"; - by-version."prepend-http"."1.0.1" = self.buildNodePackage { - name = "prepend-http-1.0.1"; - version = "1.0.1"; + self.by-version."prepend-http"."1.0.3"; + by-version."prepend-http"."1.0.3" = self.buildNodePackage { + name = "prepend-http-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/prepend-http/-/prepend-http-1.0.1.tgz"; - name = "prepend-http-1.0.1.tgz"; - sha1 = "5f13dad9a434fa4f346aa51cf03f3cea15fe4eb3"; + url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.3.tgz"; + name = "prepend-http-1.0.3.tgz"; + sha1 = "4d0d2b6f9efcf1190c23931325b4f3a9dba84869"; }; deps = { }; @@ -32130,7 +36350,7 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz"; + url = "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz"; name = "preserve-0.2.0.tgz"; sha1 = "815ed1f6ebc65926f865b310c0713bcb3315ce4b"; }; @@ -32149,13 +36369,13 @@ version = "1.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz"; + url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-1.0.4.tgz"; name = "pretty-bytes-1.0.4.tgz"; sha1 = "0a22e8210609ad35542f8c8d5d2159aff0751c84"; }; deps = { "get-stdin-4.0.1" = self.by-version."get-stdin"."4.0.1"; - "meow-3.1.0" = self.by-version."meow"."3.1.0"; + "meow-3.7.0" = self.by-version."meow"."3.7.0"; }; optionalDependencies = { }; @@ -32163,38 +36383,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."pretty-hrtime"."^0.2.0" = - self.by-version."pretty-hrtime"."0.2.2"; - by-version."pretty-hrtime"."0.2.2" = self.buildNodePackage { - name = "pretty-hrtime-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-0.2.2.tgz"; - name = "pretty-hrtime-0.2.2.tgz"; - sha1 = "d4fd88351e3a4741f8173af7d6a4b846f9895c00"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."prfun"."~1.0.2" = - self.by-version."prfun"."1.0.2"; - by-version."prfun"."1.0.2" = self.buildNodePackage { - name = "prfun-1.0.2"; + by-spec."pretty-hrtime"."^1.0.0" = + self.by-version."pretty-hrtime"."1.0.2"; + by-version."pretty-hrtime"."1.0.2" = self.buildNodePackage { + name = "pretty-hrtime-1.0.2"; version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/prfun/-/prfun-1.0.2.tgz"; - name = "prfun-1.0.2.tgz"; - sha1 = "ac8799843d8194ea478ee4442e455fd5e054db3e"; + url = "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.2.tgz"; + name = "pretty-hrtime-1.0.2.tgz"; + sha1 = "70ca96f4d0628a443b918758f79416a9a7bc9fa8"; }; deps = { - "es6-shim-0.28.1" = self.by-version."es6-shim"."0.28.1"; }; optionalDependencies = { }; @@ -32202,14 +36402,55 @@ os = [ ]; cpu = [ ]; }; - by-spec."private"."~0.1.2" = + by-spec."prettyjson"."^1.1.2" = + self.by-version."prettyjson"."1.1.3"; + by-version."prettyjson"."1.1.3" = self.buildNodePackage { + name = "prettyjson-1.1.3"; + version = "1.1.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/prettyjson/-/prettyjson-1.1.3.tgz"; + name = "prettyjson-1.1.3.tgz"; + sha1 = "d0787f732c9c3a566f4165fa4f1176fd67e6b263"; + }; + deps = { + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."prfun"."~2.0.0" = + self.by-version."prfun"."2.0.0"; + by-version."prfun"."2.0.0" = self.buildNodePackage { + name = "prfun-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/prfun/-/prfun-2.0.0.tgz"; + name = "prfun-2.0.0.tgz"; + sha1 = "f8d8217fac9f0853299a103e9e1fd9cb15238c9a"; + }; + deps = { + }; + optionalDependencies = { + "es6-shim-0.35.0" = self.by-version."es6-shim"."0.35.0"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."private"."^0.1.6" = self.by-version."private"."0.1.6"; by-version."private"."0.1.6" = self.buildNodePackage { name = "private-0.1.6"; version = "0.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/private/-/private-0.1.6.tgz"; + url = "https://registry.npmjs.org/private/-/private-0.1.6.tgz"; name = "private-0.1.6.tgz"; sha1 = "55c6a976d0f9bafb9924851350fe47b9b5fbb7c1"; }; @@ -32221,20 +36462,20 @@ os = [ ]; cpu = [ ]; }; + by-spec."private"."~0.1.2" = + self.by-version."private"."0.1.6"; by-spec."private"."~0.1.5" = self.by-version."private"."0.1.6"; - by-spec."private"."~0.1.6" = - self.by-version."private"."0.1.6"; - by-spec."process"."^0.10.0" = - self.by-version."process"."0.10.1"; - by-version."process"."0.10.1" = self.buildNodePackage { - name = "process-0.10.1"; - version = "0.10.1"; + by-spec."process"."^0.11.0" = + self.by-version."process"."0.11.2"; + by-version."process"."0.11.2" = self.buildNodePackage { + name = "process-0.11.2"; + version = "0.11.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/process/-/process-0.10.1.tgz"; - name = "process-0.10.1.tgz"; - sha1 = "842457cc51cfed72dc775afeeafb8c6034372725"; + url = "https://registry.npmjs.org/process/-/process-0.11.2.tgz"; + name = "process-0.11.2.tgz"; + sha1 = "8a58d1d12c573f3f890da9848a4fe8e16ca977b2"; }; deps = { }; @@ -32244,56 +36485,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."process"."^0.8.0" = - self.by-version."process"."0.8.0"; - by-version."process"."0.8.0" = self.buildNodePackage { - name = "process-0.8.0"; - version = "0.8.0"; + by-spec."process"."~0.11.0" = + self.by-version."process"."0.11.2"; + by-spec."process-nextick-args"."~1.0.6" = + self.by-version."process-nextick-args"."1.0.6"; + by-version."process-nextick-args"."1.0.6" = self.buildNodePackage { + name = "process-nextick-args-1.0.6"; + version = "1.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/process/-/process-0.8.0.tgz"; - name = "process-0.8.0.tgz"; - sha1 = "7bbaf7187fe6ded3fd5be0cb6103fba9cacb9798"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."process"."~0.10.0" = - self.by-version."process"."0.10.1"; - by-spec."process"."~0.5.1" = - self.by-version."process"."0.5.2"; - by-version."process"."0.5.2" = self.buildNodePackage { - name = "process-0.5.2"; - version = "0.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/process/-/process-0.5.2.tgz"; - name = "process-0.5.2.tgz"; - sha1 = "1638d8a8e34c2f440a91db95ab9aeb677fc185cf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."process"."~0.6.0" = - self.by-version."process"."0.6.0"; - by-version."process"."0.6.0" = self.buildNodePackage { - name = "process-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/process/-/process-0.6.0.tgz"; - name = "process-0.6.0.tgz"; - sha1 = "7dd9be80ffaaedd4cb628f1827f1cbab6dc0918f"; + url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz"; + name = "process-nextick-args-1.0.6.tgz"; + sha1 = "0f96b001cea90b12592ce566edb97ec11e69bd05"; }; deps = { }; @@ -32310,7 +36513,7 @@ version = "1.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/progress/-/progress-1.1.4.tgz"; + url = "https://registry.npmjs.org/progress/-/progress-1.1.4.tgz"; name = "progress-1.1.4.tgz"; sha1 = "789f57691b88b826a439bc52dc9620245d60255b"; }; @@ -32322,14 +36525,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."progress"."1.1.8" = + by-spec."progress"."^1.1.5" = self.by-version."progress"."1.1.8"; by-version."progress"."1.1.8" = self.buildNodePackage { name = "progress-1.1.8"; version = "1.1.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; + url = "https://registry.npmjs.org/progress/-/progress-1.1.8.tgz"; name = "progress-1.1.8.tgz"; sha1 = "e260c78f6161cdd9b0e56cc3e0a85de17c7a57be"; }; @@ -32341,6 +36544,10 @@ os = [ ]; cpu = [ ]; }; + by-spec."progress"."^1.1.8" = + self.by-version."progress"."1.1.8"; + by-spec."progress"."~1.1.8" = + self.by-version."progress"."1.1.8"; by-spec."promiscuous"."^0.6.0" = self.by-version."promiscuous"."0.6.0"; by-version."promiscuous"."0.6.0" = self.buildNodePackage { @@ -32348,7 +36555,7 @@ version = "0.6.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz"; + url = "https://registry.npmjs.org/promiscuous/-/promiscuous-0.6.0.tgz"; name = "promiscuous-0.6.0.tgz"; sha1 = "54014cd3d62cafe831e3354990c05ff5b78c8892"; }; @@ -32360,14 +36567,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."promise"."^6.0.1" = + by-spec."promise"."^6.0.0" = self.by-version."promise"."6.1.0"; by-version."promise"."6.1.0" = self.buildNodePackage { name = "promise-6.1.0"; version = "6.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/promise/-/promise-6.1.0.tgz"; + url = "https://registry.npmjs.org/promise/-/promise-6.1.0.tgz"; name = "promise-6.1.0.tgz"; sha1 = "2ce729f6b94b45c26891ad0602c5c90e04c6eef6"; }; @@ -32380,6 +36587,28 @@ os = [ ]; cpu = [ ]; }; + by-spec."promise"."^6.0.1" = + self.by-version."promise"."6.1.0"; + by-spec."promise"."^7.1.1" = + self.by-version."promise"."7.1.1"; + by-version."promise"."7.1.1" = self.buildNodePackage { + name = "promise-7.1.1"; + version = "7.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/promise/-/promise-7.1.1.tgz"; + name = "promise-7.1.1.tgz"; + sha1 = "489654c692616b8aa55b0724fa809bb7db49c5bf"; + }; + deps = { + "asap-2.0.3" = self.by-version."asap"."2.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."promise"."~2.0" = self.by-version."promise"."2.0.0"; by-version."promise"."2.0.0" = self.buildNodePackage { @@ -32387,7 +36616,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/promise/-/promise-2.0.0.tgz"; + url = "https://registry.npmjs.org/promise/-/promise-2.0.0.tgz"; name = "promise-2.0.0.tgz"; sha1 = "46648aa9d605af5d2e70c3024bf59436da02b80e"; }; @@ -32400,6 +36629,29 @@ os = [ ]; cpu = [ ]; }; + by-spec."promised-temp"."^0.1.0" = + self.by-version."promised-temp"."0.1.0"; + by-version."promised-temp"."0.1.0" = self.buildNodePackage { + name = "promised-temp-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/promised-temp/-/promised-temp-0.1.0.tgz"; + name = "promised-temp-0.1.0.tgz"; + sha1 = "5f8a704ccdf5f2ac23996fcafe2b301bc2a8d0eb"; + }; + deps = { + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."prompt"."0.2.14" = self.by-version."prompt"."0.2.14"; by-version."prompt"."0.2.14" = self.buildNodePackage { @@ -32407,13 +36659,13 @@ version = "0.2.14"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz"; + url = "https://registry.npmjs.org/prompt/-/prompt-0.2.14.tgz"; name = "prompt-0.2.14.tgz"; sha1 = "57754f64f543fd7b0845707c818ece618f05ffdc"; }; deps = { - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "read-1.0.5" = self.by-version."read"."1.0.5"; + "pkginfo-0.4.0" = self.by-version."pkginfo"."0.4.0"; + "read-1.0.7" = self.by-version."read"."1.0.7"; "revalidator-0.1.8" = self.by-version."revalidator"."0.1.8"; "utile-0.2.1" = self.by-version."utile"."0.2.1"; "winston-0.8.3" = self.by-version."winston"."0.8.3"; @@ -32426,26 +36678,6 @@ }; by-spec."prompt"."0.2.x" = self.by-version."prompt"."0.2.14"; - by-spec."promptly"."0.2.0" = - self.by-version."promptly"."0.2.0"; - by-version."promptly"."0.2.0" = self.buildNodePackage { - name = "promptly-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/promptly/-/promptly-0.2.0.tgz"; - name = "promptly-0.2.0.tgz"; - sha1 = "73ef200fa8329d5d3a8df41798950b8646ca46d9"; - }; - deps = { - "read-1.0.5" = self.by-version."read"."1.0.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."promzard"."^0.3.0" = self.by-version."promzard"."0.3.0"; by-version."promzard"."0.3.0" = self.buildNodePackage { @@ -32453,32 +36685,12 @@ version = "0.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz"; + url = "https://registry.npmjs.org/promzard/-/promzard-0.3.0.tgz"; name = "promzard-0.3.0.tgz"; sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee"; }; deps = { - "read-1.0.5" = self.by-version."read"."1.0.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."promzard"."~0.2.0" = - self.by-version."promzard"."0.2.2"; - by-version."promzard"."0.2.2" = self.buildNodePackage { - name = "promzard-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/promzard/-/promzard-0.2.2.tgz"; - name = "promzard-0.2.2.tgz"; - sha1 = "918b9f2b29458cb001781a8856502e4a79b016e0"; - }; - deps = { - "read-1.0.5" = self.by-version."read"."1.0.5"; + "read-1.0.7" = self.by-version."read"."1.0.7"; }; optionalDependencies = { }; @@ -32493,7 +36705,7 @@ version = "0.2.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/properties-parser/-/properties-parser-0.2.3.tgz"; + url = "https://registry.npmjs.org/properties-parser/-/properties-parser-0.2.3.tgz"; name = "properties-parser-0.2.3.tgz"; sha1 = "f7591255f707abbff227c7b56b637dbb0373a10f"; }; @@ -32512,7 +36724,7 @@ version = "0.5.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/protein/-/protein-0.5.0.tgz"; + url = "https://registry.npmjs.org/protein/-/protein-0.5.0.tgz"; name = "protein-0.5.0.tgz"; sha1 = "80ab4e919749351263ef14500d684e57c4202840"; }; @@ -32525,15 +36737,15 @@ cpu = [ ]; }; by-spec."proto-list"."~1.2.1" = - self.by-version."proto-list"."1.2.3"; - by-version."proto-list"."1.2.3" = self.buildNodePackage { - name = "proto-list-1.2.3"; - version = "1.2.3"; + self.by-version."proto-list"."1.2.4"; + by-version."proto-list"."1.2.4" = self.buildNodePackage { + name = "proto-list-1.2.4"; + version = "1.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/proto-list/-/proto-list-1.2.3.tgz"; - name = "proto-list-1.2.3.tgz"; - sha1 = "6235554a1bca1f0d15e3ca12ca7329d5def42bd9"; + url = "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz"; + name = "proto-list-1.2.4.tgz"; + sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; }; deps = { }; @@ -32550,12 +36762,12 @@ version = "3.8.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/protobufjs/-/protobufjs-3.8.2.tgz"; + url = "https://registry.npmjs.org/protobufjs/-/protobufjs-3.8.2.tgz"; name = "protobufjs-3.8.2.tgz"; sha1 = "bc826e34c3af4697e8d0af7a669e4d612aedcd17"; }; deps = { - "bytebuffer-3.5.4" = self.by-version."bytebuffer"."3.5.4"; + "bytebuffer-3.5.5" = self.by-version."bytebuffer"."3.5.5"; "ascli-0.3.0" = self.by-version."ascli"."0.3.0"; }; optionalDependencies = { @@ -32573,7 +36785,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.1.tgz"; + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.1.tgz"; name = "proxy-addr-1.0.1.tgz"; sha1 = "c7c566d5eb4e3fad67eeb9c77c5558ccc39b88a8"; }; @@ -32586,20 +36798,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."proxy-addr"."~1.0.3" = - self.by-version."proxy-addr"."1.0.7"; - by-version."proxy-addr"."1.0.7" = self.buildNodePackage { - name = "proxy-addr-1.0.7"; - version = "1.0.7"; + by-spec."proxy-addr"."~1.0.10" = + self.by-version."proxy-addr"."1.0.10"; + by-version."proxy-addr"."1.0.10" = self.buildNodePackage { + name = "proxy-addr-1.0.10"; + version = "1.0.10"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.7.tgz"; - name = "proxy-addr-1.0.7.tgz"; - sha1 = "6e2655aa9c56b014f09734a7e6d558cc77751939"; + url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.0.10.tgz"; + name = "proxy-addr-1.0.10.tgz"; + sha1 = "0d40a82f801fc355567d2ecb65efe3f077f121c5"; }; deps = { "forwarded-0.1.0" = self.by-version."forwarded"."0.1.0"; - "ipaddr.js-0.1.9" = self.by-version."ipaddr.js"."0.1.9"; + "ipaddr.js-1.0.5" = self.by-version."ipaddr.js"."1.0.5"; }; optionalDependencies = { }; @@ -32607,25 +36819,25 @@ os = [ ]; cpu = [ ]; }; - by-spec."proxy-addr"."~1.0.7" = - self.by-version."proxy-addr"."1.0.7"; + by-spec."proxy-addr"."~1.0.8" = + self.by-version."proxy-addr"."1.0.10"; by-spec."proxy-agent"."1" = - self.by-version."proxy-agent"."1.1.0"; - by-version."proxy-agent"."1.1.0" = self.buildNodePackage { - name = "proxy-agent-1.1.0"; - version = "1.1.0"; + self.by-version."proxy-agent"."1.1.1"; + by-version."proxy-agent"."1.1.1" = self.buildNodePackage { + name = "proxy-agent-1.1.1"; + version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/proxy-agent/-/proxy-agent-1.1.0.tgz"; - name = "proxy-agent-1.1.0.tgz"; - sha1 = "e23fd209bcbaa3e6743206f4e5fef0b765c380a6"; + url = "https://registry.npmjs.org/proxy-agent/-/proxy-agent-1.1.1.tgz"; + name = "proxy-agent-1.1.1.tgz"; + sha1 = "fcb1eef5e58965c995f938f029d729fc81858b95"; }; deps = { - "http-proxy-agent-0.2.6" = self.by-version."http-proxy-agent"."0.2.6"; - "https-proxy-agent-0.3.5" = self.by-version."https-proxy-agent"."0.3.5"; - "pac-proxy-agent-0.2.0" = self.by-version."pac-proxy-agent"."0.2.0"; - "socks-proxy-agent-0.1.2" = self.by-version."socks-proxy-agent"."0.1.2"; "lru-cache-2.5.2" = self.by-version."lru-cache"."2.5.2"; + "pac-proxy-agent-0.2.0" = self.by-version."pac-proxy-agent"."0.2.0"; + "http-proxy-agent-0.2.7" = self.by-version."http-proxy-agent"."0.2.7"; + "https-proxy-agent-0.3.6" = self.by-version."https-proxy-agent"."0.3.6"; + "socks-proxy-agent-1.0.2" = self.by-version."socks-proxy-agent"."1.0.2"; }; optionalDependencies = { }; @@ -32634,7 +36846,7 @@ cpu = [ ]; }; by-spec."proxy-agent"."~1.1.0" = - self.by-version."proxy-agent"."1.1.0"; + self.by-version."proxy-agent"."1.1.1"; by-spec."prr"."~0.0.0" = self.by-version."prr"."0.0.0"; by-version."prr"."0.0.0" = self.buildNodePackage { @@ -32642,7 +36854,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/prr/-/prr-0.0.0.tgz"; + url = "https://registry.npmjs.org/prr/-/prr-0.0.0.tgz"; name = "prr-0.0.0.tgz"; sha1 = "1a84b85908325501411853d0081ee3fa86e2926a"; }; @@ -32661,7 +36873,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz"; + url = "https://registry.npmjs.org/ps-tree/-/ps-tree-0.0.3.tgz"; name = "ps-tree-0.0.3.tgz"; sha1 = "dbf8d752a7fe22fa7d58635689499610e9276ddc"; }; @@ -32674,8 +36886,45 @@ os = [ ]; cpu = [ ]; }; - by-spec."ps-tree"."~0.0.3" = - self.by-version."ps-tree"."0.0.3"; + by-spec."ps-tree"."^1.0.1" = + self.by-version."ps-tree"."1.0.1"; + by-version."ps-tree"."1.0.1" = self.buildNodePackage { + name = "ps-tree-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ps-tree/-/ps-tree-1.0.1.tgz"; + name = "ps-tree-1.0.1.tgz"; + sha1 = "c64063b4ce8d72f7f874975f3ecc5f3597ac8e4b"; + }; + deps = { + "event-stream-3.3.2" = self.by-version."event-stream"."3.3.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."pseudomap"."^1.0.1" = + self.by-version."pseudomap"."1.0.2"; + by-version."pseudomap"."1.0.2" = self.buildNodePackage { + name = "pseudomap-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; + name = "pseudomap-1.0.2.tgz"; + sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."public-address"."~0.1.1" = self.by-version."public-address"."0.1.1"; by-version."public-address"."0.1.1" = self.buildNodePackage { @@ -32683,7 +36932,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/public-address/-/public-address-0.1.1.tgz"; + url = "https://registry.npmjs.org/public-address/-/public-address-0.1.1.tgz"; name = "public-address-0.1.1.tgz"; sha1 = "58bdea323c88287b6914159312454b804ca9eeaf"; }; @@ -32695,23 +36944,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."public-encrypt"."^2.0.0" = - self.by-version."public-encrypt"."2.0.0"; - by-version."public-encrypt"."2.0.0" = self.buildNodePackage { - name = "public-encrypt-2.0.0"; - version = "2.0.0"; + by-spec."public-encrypt"."^4.0.0" = + self.by-version."public-encrypt"."4.0.0"; + by-version."public-encrypt"."4.0.0" = self.buildNodePackage { + name = "public-encrypt-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/public-encrypt/-/public-encrypt-2.0.0.tgz"; - name = "public-encrypt-2.0.0.tgz"; - sha1 = "9e49010bf021d33f6597c77abd939612a82767fc"; + url = "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.0.tgz"; + name = "public-encrypt-4.0.0.tgz"; + sha1 = "39f699f3a46560dd5ebacbca693caf7c65c18cc6"; }; deps = { - "bn.js-1.3.0" = self.by-version."bn.js"."1.3.0"; - "browserify-rsa-2.0.0" = self.by-version."browserify-rsa"."2.0.0"; - "create-hash-1.1.1" = self.by-version."create-hash"."1.1.1"; - "parse-asn1-3.0.0" = self.by-version."parse-asn1"."3.0.0"; - "randombytes-2.0.1" = self.by-version."randombytes"."2.0.1"; + "bn.js-4.11.1" = self.by-version."bn.js"."4.11.1"; + "browserify-rsa-4.0.1" = self.by-version."browserify-rsa"."4.0.1"; + "create-hash-1.1.2" = self.by-version."create-hash"."1.1.2"; + "parse-asn1-5.0.0" = self.by-version."parse-asn1"."5.0.0"; + "randombytes-2.0.3" = self.by-version."randombytes"."2.0.3"; }; optionalDependencies = { }; @@ -32726,7 +36975,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pull-core/-/pull-core-1.0.0.tgz"; + url = "https://registry.npmjs.org/pull-core/-/pull-core-1.0.0.tgz"; name = "pull-core-1.0.0.tgz"; sha1 = "e0eb93918dfa70963ed09e36f63daa15b76b38a4"; }; @@ -32745,7 +36994,7 @@ version = "2.21.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pull-stream/-/pull-stream-2.21.0.tgz"; + url = "https://registry.npmjs.org/pull-stream/-/pull-stream-2.21.0.tgz"; name = "pull-stream-2.21.0.tgz"; sha1 = "5b04e0bb35ffe64744fa9bb68465a84f9e1fe5d1"; }; @@ -32765,7 +37014,7 @@ version = "0.3.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pump/-/pump-0.3.5.tgz"; + url = "https://registry.npmjs.org/pump/-/pump-0.3.5.tgz"; name = "pump-0.3.5.tgz"; sha1 = "ae5ff8c1f93ed87adc6530a97565b126f585454b"; }; @@ -32780,19 +37029,19 @@ cpu = [ ]; }; by-spec."pump"."^1.0.0" = - self.by-version."pump"."1.0.0"; - by-version."pump"."1.0.0" = self.buildNodePackage { - name = "pump-1.0.0"; - version = "1.0.0"; + self.by-version."pump"."1.0.1"; + by-version."pump"."1.0.1" = self.buildNodePackage { + name = "pump-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pump/-/pump-1.0.0.tgz"; - name = "pump-1.0.0.tgz"; - sha1 = "f0250fe282742492e4dea170e5ed3f7bc8a5e32c"; + url = "https://registry.npmjs.org/pump/-/pump-1.0.1.tgz"; + name = "pump-1.0.1.tgz"; + sha1 = "f1f1409fb9bd1085bbdb576b43b84ec4b5eadc1a"; }; deps = { "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -32800,22 +37049,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."pump"."~0.3.2" = - self.by-version."pump"."0.3.5"; by-spec."pumpify"."^1.3.3" = - self.by-version."pumpify"."1.3.3"; - by-version."pumpify"."1.3.3" = self.buildNodePackage { - name = "pumpify-1.3.3"; - version = "1.3.3"; + self.by-version."pumpify"."1.3.4"; + by-version."pumpify"."1.3.4" = self.buildNodePackage { + name = "pumpify-1.3.4"; + version = "1.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pumpify/-/pumpify-1.3.3.tgz"; - name = "pumpify-1.3.3.tgz"; - sha1 = "f6d27bb71d32871ff6d0868859dbacfeb2ebdbfe"; + url = "https://registry.npmjs.org/pumpify/-/pumpify-1.3.4.tgz"; + name = "pumpify-1.3.4.tgz"; + sha1 = "33418bdaf200b8fd55276c39eefb1bb842e4a606"; }; deps = { - "duplexify-3.3.0" = self.by-version."duplexify"."3.3.0"; - "pump-1.0.0" = self.by-version."pump"."1.0.0"; + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "pump-1.0.1" = self.by-version."pump"."1.0.1"; }; optionalDependencies = { }; @@ -32830,7 +37078,7 @@ version = "1.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; + url = "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz"; name = "punycode-1.3.2.tgz"; sha1 = "9653a036fb7c1ee42342f2325cceefea3926c48d"; }; @@ -32842,18 +37090,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."punycode".">=0.2.0" = - self.by-version."punycode"."1.3.2"; - by-spec."punycode".">=1.0.0 <1.1.0" = - self.by-version."punycode"."1.0.0"; - by-version."punycode"."1.0.0" = self.buildNodePackage { - name = "punycode-1.0.0"; - version = "1.0.0"; + by-spec."punycode"."^1.2.4" = + self.by-version."punycode"."1.4.1"; + by-version."punycode"."1.4.1" = self.buildNodePackage { + name = "punycode-1.4.1"; + version = "1.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/punycode/-/punycode-1.0.0.tgz"; - name = "punycode-1.0.0.tgz"; - sha1 = "ce9e6c6e9c1db5827174fceb12ff4938700a1bd3"; + url = "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz"; + name = "punycode-1.4.1.tgz"; + sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; }; deps = { }; @@ -32863,16 +37109,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."punycode"."^1.2.4" = - self.by-version."punycode"."1.3.2"; - by-spec."punycode"."~1.2.3" = + by-spec."punycode"."^1.3.2" = + self.by-version."punycode"."1.4.1"; + by-spec."punycode"."~1.2.4" = self.by-version."punycode"."1.2.4"; by-version."punycode"."1.2.4" = self.buildNodePackage { name = "punycode-1.2.4"; version = "1.2.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/punycode/-/punycode-1.2.4.tgz"; + url = "https://registry.npmjs.org/punycode/-/punycode-1.2.4.tgz"; name = "punycode-1.2.4.tgz"; sha1 = "54008ac972aec74175def9cba6df7fa9d3918740"; }; @@ -32884,18 +37130,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."punycode"."~1.2.4" = - self.by-version."punycode"."1.2.4"; - by-spec."pure-css"."git://github.com/yui/pure.git#v0.5.0-rc-1" = - self.by-version."pure-css"."0.5.0-rc-1"; - by-version."pure"."0.5.0-rc-1" = self.buildNodePackage { - name = "pure-0.5.0-rc-1"; - version = "0.5.0-rc-1"; + by-spec."pure"."*" = + self.by-version."pure"."2.67.0"; + by-version."pure"."2.67.0" = self.buildNodePackage { + name = "pure-2.67.0"; + version = "2.67.0"; bin = false; - src = fetchgit { - url = "git://github.com/yui/pure.git"; - rev = "f5ce3ae4b48ce252adac7b6ddac50c9518729a2d"; - sha256 = "049ac2ef812771852978d11cd5aecac2dd561e97bb16ad89c79eb1e10aa57672"; + src = fetchurl { + url = "https://registry.npmjs.org/pure/-/pure-2.67.0.tgz"; + name = "pure-2.67.0.tgz"; + sha1 = "23c1503cf6e9eb8a08ba29c81fe9c8c372970710"; }; deps = { }; @@ -32905,22 +37149,23 @@ os = [ ]; cpu = [ ]; }; - "pure-css" = self.by-version."pure"."0.5.0-rc-1"; + "pure" = self.by-version."pure"."2.67.0"; by-spec."pusher"."^1.0.0" = - self.by-version."pusher"."1.0.4"; - by-version."pusher"."1.0.4" = self.buildNodePackage { - name = "pusher-1.0.4"; - version = "1.0.4"; + self.by-version."pusher"."1.2.1"; + by-version."pusher"."1.2.1" = self.buildNodePackage { + name = "pusher-1.2.1"; + version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/pusher/-/pusher-1.0.4.tgz"; - name = "pusher-1.0.4.tgz"; - sha1 = "bdf7a51a82c86fbdebe96602f1559b6ffea7450b"; + url = "https://registry.npmjs.org/pusher/-/pusher-1.2.1.tgz"; + name = "pusher-1.2.1.tgz"; + sha1 = "58b8c406e34373b7f46579854c445d09e2eacd6b"; }; deps = { - "request-2.45.0" = self.by-version."request"."2.45.0"; + "request-2.67.0" = self.by-version."request"."2.67.0"; }; optionalDependencies = { + "webpack-1.12.14" = self.by-version."webpack"."1.12.14"; }; peerDependencies = []; os = [ ]; @@ -32933,7 +37178,7 @@ version = "0.9.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-0.9.7.tgz"; + url = "https://registry.npmjs.org/q/-/q-0.9.7.tgz"; name = "q-0.9.7.tgz"; sha1 = "4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75"; }; @@ -32952,7 +37197,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-1.0.1.tgz"; + url = "https://registry.npmjs.org/q/-/q-1.0.1.tgz"; name = "q-1.0.1.tgz"; sha1 = "11872aeedee89268110b10a718448ffb10112a14"; }; @@ -32971,12 +37216,12 @@ version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-2.0.3.tgz"; + url = "https://registry.npmjs.org/q/-/q-2.0.3.tgz"; name = "q-2.0.3.tgz"; sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134"; }; deps = { - "asap-2.0.2" = self.by-version."asap"."2.0.2"; + "asap-2.0.3" = self.by-version."asap"."2.0.3"; "pop-iterate-1.0.1" = self.by-version."pop-iterate"."1.0.1"; "weak-map-1.0.5" = self.by-version."weak-map"."1.0.5"; }; @@ -32987,15 +37232,15 @@ cpu = [ ]; }; by-spec."q"."^1.0.1" = - self.by-version."q"."1.2.0"; - by-version."q"."1.2.0" = self.buildNodePackage { - name = "q-1.2.0"; - version = "1.2.0"; + self.by-version."q"."1.4.1"; + by-version."q"."1.4.1" = self.buildNodePackage { + name = "q-1.4.1"; + version = "1.4.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-1.2.0.tgz"; - name = "q-1.2.0.tgz"; - sha1 = "811705ce4a9802adff811ab0fcdbd01946e1fe22"; + url = "https://registry.npmjs.org/q/-/q-1.4.1.tgz"; + name = "q-1.4.1.tgz"; + sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; }; deps = { }; @@ -33006,13 +37251,9 @@ cpu = [ ]; }; by-spec."q"."^1.1.2" = - self.by-version."q"."1.2.0"; - by-spec."q"."~0.9.2" = - self.by-version."q"."0.9.7"; - by-spec."q"."~0.9.6" = - self.by-version."q"."0.9.7"; - by-spec."q"."~0.9.7" = - self.by-version."q"."0.9.7"; + self.by-version."q"."1.4.1"; + by-spec."q"."^1.4.1" = + self.by-version."q"."1.4.1"; by-spec."q"."~1.0.1" = self.by-version."q"."1.0.1"; by-spec."q"."~1.1.2" = @@ -33022,7 +37263,7 @@ version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-1.1.2.tgz"; + url = "https://registry.npmjs.org/q/-/q-1.1.2.tgz"; name = "q-1.1.2.tgz"; sha1 = "6357e291206701d99f197ab84e57e8ad196f2a89"; }; @@ -33034,6 +37275,8 @@ os = [ ]; cpu = [ ]; }; + by-spec."q"."~1.4.1" = + self.by-version."q"."1.4.1"; by-spec."qap"."^3.1.2" = self.by-version."qap"."3.1.3"; by-version."qap"."3.1.3" = self.buildNodePackage { @@ -33041,7 +37284,7 @@ version = "3.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qap/-/qap-3.1.3.tgz"; + url = "https://registry.npmjs.org/qap/-/qap-3.1.3.tgz"; name = "qap-3.1.3.tgz"; sha1 = "394288bf07c8fe16cf36bb2e40a3bb947ed24963"; }; @@ -33060,7 +37303,7 @@ version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.4.2.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.4.2.tgz"; name = "qs-0.4.2.tgz"; sha1 = "3cac4c861e371a8c9c4770ac23cda8de639b8e5f"; }; @@ -33081,7 +37324,7 @@ version = "0.5.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.5.1.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.5.1.tgz"; name = "qs-0.5.1.tgz"; sha1 = "9f6bf5d9ac6c76384e95d36d15b48980e5e4add0"; }; @@ -33093,25 +37336,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."qs"."0.5.x" = - self.by-version."qs"."0.5.6"; - by-version."qs"."0.5.6" = self.buildNodePackage { - name = "qs-0.5.6"; - version = "0.5.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.5.6.tgz"; - name = "qs-0.5.6.tgz"; - sha1 = "31b1ad058567651c526921506b9a8793911a0384"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."qs"."0.6.5" = self.by-version."qs"."0.6.5"; by-version."qs"."0.6.5" = self.buildNodePackage { @@ -33119,7 +37343,7 @@ version = "0.6.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.6.5.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.6.5.tgz"; name = "qs-0.6.5.tgz"; sha1 = "294b268e4b0d4250f6dde19b3b8b34935dff14ef"; }; @@ -33138,7 +37362,7 @@ version = "0.6.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-0.6.6.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-0.6.6.tgz"; name = "qs-0.6.6.tgz"; sha1 = "6e015098ff51968b8a3c819001d5f2c89bc4b107"; }; @@ -33157,7 +37381,7 @@ version = "1.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-1.2.0.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-1.2.0.tgz"; name = "qs-1.2.0.tgz"; sha1 = "ed079be28682147e6fd9a34cc2b0c1e0ec6453ee"; }; @@ -33176,7 +37400,7 @@ version = "1.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-1.2.2.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-1.2.2.tgz"; name = "qs-1.2.2.tgz"; sha1 = "19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88"; }; @@ -33188,16 +37412,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."qs"."2.2.3" = - self.by-version."qs"."2.2.3"; - by-version."qs"."2.2.3" = self.buildNodePackage { - name = "qs-2.2.3"; - version = "2.2.3"; + by-spec."qs"."1.x.x" = + self.by-version."qs"."1.2.2"; + by-spec."qs"."4.0.0" = + self.by-version."qs"."4.0.0"; + by-version."qs"."4.0.0" = self.buildNodePackage { + name = "qs-4.0.0"; + version = "4.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.2.3.tgz"; - name = "qs-2.2.3.tgz"; - sha1 = "6139c1f47960eff5655e56aab0ef9f6dd16d4eeb"; + url = "https://registry.npmjs.org/qs/-/qs-4.0.0.tgz"; + name = "qs-4.0.0.tgz"; + sha1 = "c31d9b74ec27df75e543a86c78728ed8d4623607"; }; deps = { }; @@ -33207,16 +37433,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."qs"."2.2.4" = - self.by-version."qs"."2.2.4"; - by-version."qs"."2.2.4" = self.buildNodePackage { - name = "qs-2.2.4"; - version = "2.2.4"; + by-spec."qs"."5.2.0" = + self.by-version."qs"."5.2.0"; + by-version."qs"."5.2.0" = self.buildNodePackage { + name = "qs-5.2.0"; + version = "5.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.2.4.tgz"; - name = "qs-2.2.4.tgz"; - sha1 = "2e9fbcd34b540e3421c924ecd01e90aa975319c8"; + url = "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz"; + name = "qs-5.2.0.tgz"; + sha1 = "a9f31142af468cb72b25b30136ba2456834916be"; }; deps = { }; @@ -33226,35 +37452,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."qs"."2.3.2" = - self.by-version."qs"."2.3.2"; - by-version."qs"."2.3.2" = self.buildNodePackage { - name = "qs-2.3.2"; - version = "2.3.2"; + by-spec."qs"."6.1.0" = + self.by-version."qs"."6.1.0"; + by-version."qs"."6.1.0" = self.buildNodePackage { + name = "qs-6.1.0"; + version = "6.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.3.2.tgz"; - name = "qs-2.3.2.tgz"; - sha1 = "d45ec249e4b9b029af008829a101d5ff7e972790"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."qs"."2.4.1" = - self.by-version."qs"."2.4.1"; - by-version."qs"."2.4.1" = self.buildNodePackage { - name = "qs-2.4.1"; - version = "2.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.4.1.tgz"; - name = "qs-2.4.1.tgz"; - sha1 = "68cbaea971013426a80c1404fad6b1a6b1175245"; + url = "https://registry.npmjs.org/qs/-/qs-6.1.0.tgz"; + name = "qs-6.1.0.tgz"; + sha1 = "ec1d1626b24278d99f0fdf4549e524e24eceeb26"; }; deps = { }; @@ -33265,11 +37472,45 @@ cpu = [ ]; }; by-spec."qs".">= 0.4.0" = - self.by-version."qs"."2.4.1"; - by-spec."qs"."^1.0.0" = - self.by-version."qs"."1.2.2"; + self.by-version."qs"."6.1.0"; + by-spec."qs"."^3.1.0" = + self.by-version."qs"."3.1.0"; + by-version."qs"."3.1.0" = self.buildNodePackage { + name = "qs-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-3.1.0.tgz"; + name = "qs-3.1.0.tgz"; + sha1 = "d0e9ae745233a12dc43fb4f3055bba446261153c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."qs"."~0.5.4" = self.by-version."qs"."0.5.6"; + by-version."qs"."0.5.6" = self.buildNodePackage { + name = "qs-0.5.6"; + version = "0.5.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz"; + name = "qs-0.5.6.tgz"; + sha1 = "31b1ad058567651c526921506b9a8793911a0384"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."qs"."~0.6.0" = self.by-version."qs"."0.6.6"; by-spec."qs"."~1.0.0" = @@ -33279,7 +37520,7 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-1.0.2.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-1.0.2.tgz"; name = "qs-1.0.2.tgz"; sha1 = "50a93e2b5af6691c31bcea5dae78ee6ea1903768"; }; @@ -33291,8 +37532,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."qs"."~1.2.0" = - self.by-version."qs"."1.2.2"; by-spec."qs"."~1.2.2" = self.by-version."qs"."1.2.2"; by-spec."qs"."~2.2.4" = @@ -33302,7 +37541,7 @@ version = "2.2.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.2.5.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-2.2.5.tgz"; name = "qs-2.2.5.tgz"; sha1 = "1088abaf9dcc0ae5ae45b709e6c6b5888b23923c"; }; @@ -33321,7 +37560,7 @@ version = "2.3.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-2.3.3.tgz"; + url = "https://registry.npmjs.org/qs/-/qs-2.3.3.tgz"; name = "qs-2.3.3.tgz"; sha1 = "e9e85adbe75da0bbe4c8e0476a086290f863b404"; }; @@ -33334,17 +37573,78 @@ cpu = [ ]; }; by-spec."qs"."~2.4.0" = - self.by-version."qs"."2.4.1"; - by-spec."query-string"."^1.0.0" = - self.by-version."query-string"."1.0.0"; - by-version."query-string"."1.0.0" = self.buildNodePackage { - name = "query-string-1.0.0"; - version = "1.0.0"; + self.by-version."qs"."2.4.2"; + by-version."qs"."2.4.2" = self.buildNodePackage { + name = "qs-2.4.2"; + version = "2.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/query-string/-/query-string-1.0.0.tgz"; - name = "query-string-1.0.0.tgz"; - sha1 = "c1bc6af99fa698a5395922ae5b3de3efe978c59b"; + url = "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz"; + name = "qs-2.4.2.tgz"; + sha1 = "f7ce788e5777df0b5010da7f7c4e73ba32470f5a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."qs"."~4.0.0" = + self.by-version."qs"."4.0.0"; + by-spec."qs"."~5.1.0" = + self.by-version."qs"."5.1.0"; + by-version."qs"."5.1.0" = self.buildNodePackage { + name = "qs-5.1.0"; + version = "5.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz"; + name = "qs-5.1.0.tgz"; + sha1 = "4d932e5c7ea411cca76a312d39a606200fd50cd9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."qs"."~5.2.0" = + self.by-version."qs"."5.2.0"; + by-spec."qs"."~6.0.2" = + self.by-version."qs"."6.0.2"; + by-version."qs"."6.0.2" = self.buildNodePackage { + name = "qs-6.0.2"; + version = "6.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/qs/-/qs-6.0.2.tgz"; + name = "qs-6.0.2.tgz"; + sha1 = "88c68d590e8ed56c76c79f352c17b982466abfcd"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."qs"."~6.1.0" = + self.by-version."qs"."6.1.0"; + by-spec."query-string"."^1.0.0" = + self.by-version."query-string"."1.0.1"; + by-version."query-string"."1.0.1" = self.buildNodePackage { + name = "query-string-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/query-string/-/query-string-1.0.1.tgz"; + name = "query-string-1.0.1.tgz"; + sha1 = "63ac953352499ad670a9681a75680f6bf3dd1faf"; }; deps = { }; @@ -33361,9 +37661,9 @@ version = "0.2.0"; bin = false; src = fetchurl { - url = "https://github.com/substack/querystring/archive/0.2.0-ie8.tar.gz"; + url = "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz"; name = "querystring-0.2.0.tgz"; - sha256 = "9476079402605957bae231ea3ec5ae83b454b2de68ddaa3450096821996be8f5"; + sha1 = "b209849203bb25df820da756e747005878521620"; }; deps = { }; @@ -33373,27 +37673,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."querystring".">=0.1.0 <0.2.0" = - self.by-version."querystring"."0.1.0"; - by-version."querystring"."0.1.0" = self.buildNodePackage { - name = "querystring-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/querystring/-/querystring-0.1.0.tgz"; - name = "querystring-0.1.0.tgz"; - sha1 = "cb76a26cda0a10a94163fcdb3e132827f04b7b10"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."querystring"."https://github.com/substack/querystring/archive/0.2.0-ie8.tar.gz" = - self.by-version."querystring"."0.2.0"; by-spec."querystring-es3"."~0.2.0" = self.by-version."querystring-es3"."0.2.1"; by-version."querystring-es3"."0.2.1" = self.buildNodePackage { @@ -33401,7 +37680,7 @@ version = "0.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"; + url = "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz"; name = "querystring-es3-0.2.1.tgz"; sha1 = "9ec61f79049875707d69414596fd907a4d711e73"; }; @@ -33420,7 +37699,7 @@ version = "0.1.12"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/rai/-/rai-0.1.12.tgz"; + url = "https://registry.npmjs.org/rai/-/rai-0.1.12.tgz"; name = "rai-0.1.12.tgz"; sha1 = "8ccfd014d0f9608630dd73c19b8e4b057754a6a6"; }; @@ -33432,36 +37711,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."rainbowsocks"."~0.1.2" = - self.by-version."rainbowsocks"."0.1.2"; - by-version."rainbowsocks"."0.1.2" = self.buildNodePackage { - name = "rainbowsocks-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rainbowsocks/-/rainbowsocks-0.1.2.tgz"; - name = "rainbowsocks-0.1.2.tgz"; - sha1 = "eebddb330eac4f178d79eadb12ff851c84ab97e1"; - }; - deps = { - "debug-1.0.4" = self.by-version."debug"."1.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."random-access-file"."^0.3.1" = - self.by-version."random-access-file"."0.3.1"; - by-version."random-access-file"."0.3.1" = self.buildNodePackage { - name = "random-access-file-0.3.1"; - version = "0.3.1"; + self.by-version."random-access-file"."0.3.2"; + by-version."random-access-file"."0.3.2" = self.buildNodePackage { + name = "random-access-file-0.3.2"; + version = "0.3.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/random-access-file/-/random-access-file-0.3.1.tgz"; - name = "random-access-file-0.3.1.tgz"; - sha1 = "8afffaac665de38feba00f371429648f057d5c16"; + url = "https://registry.npmjs.org/random-access-file/-/random-access-file-0.3.2.tgz"; + name = "random-access-file-0.3.2.tgz"; + sha1 = "cbca246e131db7b68a1c6bb6328dd4d0997100a0"; }; deps = { "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; @@ -33472,20 +37731,58 @@ os = [ ]; cpu = [ ]; }; - by-spec."randomatic"."^1.1.0" = - self.by-version."randomatic"."1.1.0"; - by-version."randomatic"."1.1.0" = self.buildNodePackage { - name = "randomatic-1.1.0"; - version = "1.1.0"; + by-spec."random-bytes"."~1.0.0" = + self.by-version."random-bytes"."1.0.0"; + by-version."random-bytes"."1.0.0" = self.buildNodePackage { + name = "random-bytes-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/randomatic/-/randomatic-1.1.0.tgz"; - name = "randomatic-1.1.0.tgz"; - sha1 = "2ca36b9f93747aac985eb242749af88b45d5d42d"; + url = "https://registry.npmjs.org/random-bytes/-/random-bytes-1.0.0.tgz"; + name = "random-bytes-1.0.0.tgz"; + sha1 = "4f68a1dc0ae58bd3fb95848c30324db75d64360b"; }; deps = { - "is-number-1.1.2" = self.by-version."is-number"."1.1.2"; - "kind-of-1.1.0" = self.by-version."kind-of"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."random-iterate"."^1.0.1" = + self.by-version."random-iterate"."1.0.1"; + by-version."random-iterate"."1.0.1" = self.buildNodePackage { + name = "random-iterate-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/random-iterate/-/random-iterate-1.0.1.tgz"; + name = "random-iterate-1.0.1.tgz"; + sha1 = "f7d97d92dee6665ec5f6da08c7f963cad4b2ac99"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."randomatic"."^1.1.3" = + self.by-version."randomatic"."1.1.5"; + by-version."randomatic"."1.1.5" = self.buildNodePackage { + name = "randomatic-1.1.5"; + version = "1.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz"; + name = "randomatic-1.1.5.tgz"; + sha1 = "5e9ef5f2d573c67bd2b8124ae90b5156e457840b"; + }; + deps = { + "is-number-2.1.0" = self.by-version."is-number"."2.1.0"; + "kind-of-3.0.2" = self.by-version."kind-of"."3.0.2"; }; optionalDependencies = { }; @@ -33494,15 +37791,15 @@ cpu = [ ]; }; by-spec."randombytes"."^2.0.0" = - self.by-version."randombytes"."2.0.1"; - by-version."randombytes"."2.0.1" = self.buildNodePackage { - name = "randombytes-2.0.1"; - version = "2.0.1"; + self.by-version."randombytes"."2.0.3"; + by-version."randombytes"."2.0.3" = self.buildNodePackage { + name = "randombytes-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/randombytes/-/randombytes-2.0.1.tgz"; - name = "randombytes-2.0.1.tgz"; - sha1 = "18f4a9ba0dd07bdb1580bc9156091fcf90eabc6f"; + url = "https://registry.npmjs.org/randombytes/-/randombytes-2.0.3.tgz"; + name = "randombytes-2.0.3.tgz"; + sha1 = "674c99760901c3c4112771a31e521dc349cc09ec"; }; deps = { }; @@ -33513,7 +37810,7 @@ cpu = [ ]; }; by-spec."randombytes"."^2.0.1" = - self.by-version."randombytes"."2.0.1"; + self.by-version."randombytes"."2.0.3"; by-spec."range-parser"."0.0.4" = self.by-version."range-parser"."0.0.4"; by-version."range-parser"."0.0.4" = self.buildNodePackage { @@ -33521,7 +37818,7 @@ version = "0.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz"; + url = "https://registry.npmjs.org/range-parser/-/range-parser-0.0.4.tgz"; name = "range-parser-0.0.4.tgz"; sha1 = "c0427ffef51c10acba0782a46c9602e744ff620b"; }; @@ -33540,7 +37837,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/range-parser/-/range-parser-1.0.0.tgz"; + url = "https://registry.npmjs.org/range-parser/-/range-parser-1.0.0.tgz"; name = "range-parser-1.0.0.tgz"; sha1 = "a4b264cfe0be5ce36abe3765ac9c2a248746dbc0"; }; @@ -33553,15 +37850,15 @@ cpu = [ ]; }; by-spec."range-parser"."^1.0.0" = - self.by-version."range-parser"."1.0.2"; - by-version."range-parser"."1.0.2" = self.buildNodePackage { - name = "range-parser-1.0.2"; - version = "1.0.2"; + self.by-version."range-parser"."1.0.3"; + by-version."range-parser"."1.0.3" = self.buildNodePackage { + name = "range-parser-1.0.3"; + version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/range-parser/-/range-parser-1.0.2.tgz"; - name = "range-parser-1.0.2.tgz"; - sha1 = "06a12a42e5131ba8e457cd892044867f2344e549"; + url = "https://registry.npmjs.org/range-parser/-/range-parser-1.0.3.tgz"; + name = "range-parser-1.0.3.tgz"; + sha1 = "6872823535c692e2c2a0103826afd82c2e0ff175"; }; deps = { }; @@ -33572,26 +37869,28 @@ cpu = [ ]; }; by-spec."range-parser"."^1.0.2" = - self.by-version."range-parser"."1.0.2"; + self.by-version."range-parser"."1.0.3"; by-spec."range-parser"."~1.0.0" = - self.by-version."range-parser"."1.0.2"; + self.by-version."range-parser"."1.0.3"; by-spec."range-parser"."~1.0.2" = - self.by-version."range-parser"."1.0.2"; - by-spec."raven"."~0.7.3" = - self.by-version."raven"."0.7.3"; - by-version."raven"."0.7.3" = self.buildNodePackage { - name = "raven-0.7.3"; - version = "0.7.3"; + self.by-version."range-parser"."1.0.3"; + by-spec."range-parser"."~1.0.3" = + self.by-version."range-parser"."1.0.3"; + by-spec."raven"."~0.10.0" = + self.by-version."raven"."0.10.0"; + by-version."raven"."0.10.0" = self.buildNodePackage { + name = "raven-0.10.0"; + version = "0.10.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/raven/-/raven-0.7.3.tgz"; - name = "raven-0.7.3.tgz"; - sha1 = "73fbf418a4363767ac50fdaf6e7d541f3b35f507"; + url = "https://registry.npmjs.org/raven/-/raven-0.10.0.tgz"; + name = "raven-0.10.0.tgz"; + sha1 = "2144346322955bd9e1519ac66081c63b178b452f"; }; deps = { "cookie-0.1.0" = self.by-version."cookie"."0.1.0"; "lsmod-0.0.3" = self.by-version."lsmod"."0.0.3"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "stack-trace-0.0.7" = self.by-version."stack-trace"."0.0.7"; }; optionalDependencies = { @@ -33607,7 +37906,7 @@ version = "0.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/raw-body/-/raw-body-0.0.3.tgz"; + url = "https://registry.npmjs.org/raw-body/-/raw-body-0.0.3.tgz"; name = "raw-body-0.0.3.tgz"; sha1 = "0cb3eb22ced1ca607d32dd8fd94a6eb383f3eb8a"; }; @@ -33626,7 +37925,7 @@ version = "1.1.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/raw-body/-/raw-body-1.1.4.tgz"; + url = "https://registry.npmjs.org/raw-body/-/raw-body-1.1.4.tgz"; name = "raw-body-1.1.4.tgz"; sha1 = "f0b5624388d031f63da07f870c86cb9ccadcb67d"; }; @@ -33646,7 +37945,7 @@ version = "1.3.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/raw-body/-/raw-body-1.3.0.tgz"; + url = "https://registry.npmjs.org/raw-body/-/raw-body-1.3.0.tgz"; name = "raw-body-1.3.0.tgz"; sha1 = "978230a156a5548f42eef14de22d0f4f610083d1"; }; @@ -33660,35 +37959,14 @@ os = [ ]; cpu = [ ]; }; - by-spec."raw-body"."1.3.2" = - self.by-version."raw-body"."1.3.2"; - by-version."raw-body"."1.3.2" = self.buildNodePackage { - name = "raw-body-1.3.2"; - version = "1.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/raw-body/-/raw-body-1.3.2.tgz"; - name = "raw-body-1.3.2.tgz"; - sha1 = "0e186f27c5fbfe326d8b3062774804564a0ecf93"; - }; - deps = { - "bytes-1.0.0" = self.by-version."bytes"."1.0.0"; - "iconv-lite-0.4.6" = self.by-version."iconv-lite"."0.4.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."raw-body"."1.3.4" = + by-spec."raw-body"."1.x" = self.by-version."raw-body"."1.3.4"; by-version."raw-body"."1.3.4" = self.buildNodePackage { name = "raw-body-1.3.4"; version = "1.3.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/raw-body/-/raw-body-1.3.4.tgz"; + url = "https://registry.npmjs.org/raw-body/-/raw-body-1.3.4.tgz"; name = "raw-body-1.3.4.tgz"; sha1 = "ccc7ddfc46b72861cdd5bb433c840b70b6f27f54"; }; @@ -33702,20 +37980,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."raw-body"."1.x" = - self.by-version."raw-body"."1.3.4"; - by-spec."raw-socket"."*" = - self.by-version."raw-socket"."1.2.2"; - by-version."raw-socket"."1.2.2" = self.buildNodePackage { - name = "raw-socket-1.2.2"; - version = "1.2.2"; + by-spec."raw-body"."2.1.6" = + self.by-version."raw-body"."2.1.6"; + by-version."raw-body"."2.1.6" = self.buildNodePackage { + name = "raw-body-2.1.6"; + version = "2.1.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/raw-socket/-/raw-socket-1.2.2.tgz"; - name = "raw-socket-1.2.2.tgz"; - sha1 = "c9be873878a1ef70497a27e40b6e55b563d8f886"; + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.1.6.tgz"; + name = "raw-body-2.1.6.tgz"; + sha1 = "9c050737fe07ced6d94a4fd09c61b6ad874d310f"; }; deps = { + "bytes-2.3.0" = self.by-version."bytes"."2.3.0"; + "iconv-lite-0.4.13" = self.by-version."iconv-lite"."0.4.13"; + "unpipe-1.0.0" = self.by-version."unpipe"."1.0.0"; }; optionalDependencies = { }; @@ -33723,22 +38002,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."rc"."0.5.2" = - self.by-version."rc"."0.5.2"; - by-version."rc"."0.5.2" = self.buildNodePackage { - name = "rc-0.5.2"; - version = "0.5.2"; - bin = true; + by-spec."raw-body"."~2.1.2" = + self.by-version."raw-body"."2.1.6"; + by-spec."raw-body"."~2.1.5" = + self.by-version."raw-body"."2.1.6"; + by-spec."raw-socket"."*" = + self.by-version."raw-socket"."1.4.0"; + by-version."raw-socket"."1.4.0" = self.buildNodePackage { + name = "raw-socket-1.4.0"; + version = "1.4.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-0.5.2.tgz"; - name = "rc-0.5.2.tgz"; - sha1 = "6b8e05894a158e3d4a15e7daddb970f4d15a024f"; + url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.4.0.tgz"; + name = "raw-socket-1.4.0.tgz"; + sha1 = "739c09259e5524d68024f0e13ea9e5e2702d2e8b"; }; deps = { - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "deep-extend-0.2.11" = self.by-version."deep-extend"."0.2.11"; - "strip-json-comments-0.1.3" = self.by-version."strip-json-comments"."0.1.3"; - "ini-1.1.0" = self.by-version."ini"."1.1.0"; + "nan-2.0.9" = self.by-version."nan"."2.0.9"; }; optionalDependencies = { }; @@ -33753,7 +38033,7 @@ version = "0.4.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-0.4.0.tgz"; + url = "https://registry.npmjs.org/rc/-/rc-0.4.0.tgz"; name = "rc-0.4.0.tgz"; sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3"; }; @@ -33770,21 +38050,21 @@ cpu = [ ]; }; by-spec."rc"."^1.0.1" = - self.by-version."rc"."1.0.1"; - by-version."rc"."1.0.1" = self.buildNodePackage { - name = "rc-1.0.1"; - version = "1.0.1"; + self.by-version."rc"."1.1.6"; + by-version."rc"."1.1.6" = self.buildNodePackage { + name = "rc-1.1.6"; + version = "1.1.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-1.0.1.tgz"; - name = "rc-1.0.1.tgz"; - sha1 = "f919c25e804cb0aa60f6fd92d929fc86b45013e8"; + url = "https://registry.npmjs.org/rc/-/rc-1.1.6.tgz"; + name = "rc-1.1.6.tgz"; + sha1 = "43651b76b6ae53b5c802f1151fa3fc3b059969c9"; }; deps = { - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "deep-extend-0.2.11" = self.by-version."deep-extend"."0.2.11"; - "strip-json-comments-0.1.3" = self.by-version."strip-json-comments"."0.1.3"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; + "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; + "ini-1.3.4" = self.by-version."ini"."1.3.4"; + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + "strip-json-comments-1.0.4" = self.by-version."strip-json-comments"."1.0.4"; }; optionalDependencies = { }; @@ -33792,22 +38072,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."rc"."~0.5.0" = - self.by-version."rc"."0.5.5"; - by-version."rc"."0.5.5" = self.buildNodePackage { - name = "rc-0.5.5"; - version = "0.5.5"; - bin = true; + by-spec."rc"."~1.1.0" = + self.by-version."rc"."1.1.6"; + by-spec."rc"."~1.1.6" = + self.by-version."rc"."1.1.6"; + by-spec."re-emitter"."^1.0.0" = + self.by-version."re-emitter"."1.1.3"; + by-version."re-emitter"."1.1.3" = self.buildNodePackage { + name = "re-emitter-1.1.3"; + version = "1.1.3"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-0.5.5.tgz"; - name = "rc-0.5.5.tgz"; - sha1 = "541cc3300f464b6dfe6432d756f0f2dd3e9eb199"; + url = "https://registry.npmjs.org/re-emitter/-/re-emitter-1.1.3.tgz"; + name = "re-emitter-1.1.3.tgz"; + sha1 = "fa9e319ffdeeeb35b27296ef0f3d374dac2f52a7"; }; deps = { - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "deep-extend-0.2.11" = self.by-version."deep-extend"."0.2.11"; - "strip-json-comments-0.1.3" = self.by-version."strip-json-comments"."0.1.3"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; }; optionalDependencies = { }; @@ -33815,46 +38095,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."rc"."~0.5.1" = - self.by-version."rc"."0.5.5"; - by-spec."rc"."~0.6.0" = - self.by-version."rc"."0.6.0"; - by-version."rc"."0.6.0" = self.buildNodePackage { - name = "rc-0.6.0"; - version = "0.6.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-0.6.0.tgz"; - name = "rc-0.6.0.tgz"; - sha1 = "e1c930059af831c85413fe275ae2f40f4e3c5371"; - }; - deps = { - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - "deep-extend-0.2.11" = self.by-version."deep-extend"."0.2.11"; - "strip-json-comments-0.1.3" = self.by-version."strip-json-comments"."0.1.3"; - "ini-1.3.3" = self.by-version."ini"."1.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rc"."~1.0.1" = - self.by-version."rc"."1.0.1"; by-spec."react"."*" = - self.by-version."react"."0.13.2"; - by-version."react"."0.13.2" = self.buildNodePackage { - name = "react-0.13.2"; - version = "0.13.2"; + self.by-version."react"."15.0.0"; + by-version."react"."15.0.0" = self.buildNodePackage { + name = "react-15.0.0"; + version = "15.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/react/-/react-0.13.2.tgz"; - name = "react-0.13.2.tgz"; - sha1 = "a1c7cec5e7be080c4e249b20740d4d4cd18880ca"; + url = "https://registry.npmjs.org/react/-/react-15.0.0.tgz"; + name = "react-15.0.0.tgz"; + sha1 = "3c7e16531d630e15c1a50a947f14ba61746af8a7"; }; deps = { - "envify-3.4.0" = self.by-version."envify"."3.4.0"; + "fbjs-0.8.0" = self.by-version."fbjs"."0.8.0"; + "loose-envify-1.1.0" = self.by-version."loose-envify"."1.1.0"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; }; optionalDependencies = { }; @@ -33862,21 +38117,21 @@ os = [ ]; cpu = [ ]; }; - "react" = self.by-version."react"."0.13.2"; + "react" = self.by-version."react"."15.0.0"; by-spec."react-tools"."*" = - self.by-version."react-tools"."0.13.2"; - by-version."react-tools"."0.13.2" = self.buildNodePackage { - name = "react-tools-0.13.2"; - version = "0.13.2"; + self.by-version."react-tools"."0.14.0-alpha3"; + by-version."react-tools"."0.14.0-alpha3" = self.buildNodePackage { + name = "react-tools-0.14.0-alpha3"; + version = "0.14.0-alpha3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/react-tools/-/react-tools-0.13.2.tgz"; - name = "react-tools-0.13.2.tgz"; - sha1 = "f96613c59576a7b04597b307bb8cd5b647c9ebbf"; + url = "https://registry.npmjs.org/react-tools/-/react-tools-0.14.0-alpha3.tgz"; + name = "react-tools-0.14.0-alpha3.tgz"; + sha1 = "e22664c10faee3200b1fa2b5c2b3bb7bfd72c8fd"; }; deps = { - "commoner-0.10.1" = self.by-version."commoner"."0.10.1"; - "jstransform-10.1.0" = self.by-version."jstransform"."10.1.0"; + "commoner-0.10.4" = self.by-version."commoner"."0.10.4"; + "jstransform-11.0.3" = self.by-version."jstransform"."11.0.3"; }; optionalDependencies = { }; @@ -33884,20 +38139,20 @@ os = [ ]; cpu = [ ]; }; - "react-tools" = self.by-version."react-tools"."0.13.2"; + "react-tools" = self.by-version."react-tools"."0.14.0-alpha3"; by-spec."read"."1" = - self.by-version."read"."1.0.5"; - by-version."read"."1.0.5" = self.buildNodePackage { - name = "read-1.0.5"; - version = "1.0.5"; + self.by-version."read"."1.0.7"; + by-version."read"."1.0.7" = self.buildNodePackage { + name = "read-1.0.7"; + version = "1.0.7"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read/-/read-1.0.5.tgz"; - name = "read-1.0.5.tgz"; - sha1 = "007a3d169478aa710a491727e453effb92e76203"; + url = "https://registry.npmjs.org/read/-/read-1.0.7.tgz"; + name = "read-1.0.7.tgz"; + sha1 = "b3da19bd052431a97671d44a42634adf710b40c4"; }; deps = { - "mute-stream-0.0.4" = self.by-version."mute-stream"."0.0.4"; + "mute-stream-0.0.6" = self.by-version."mute-stream"."0.0.6"; }; optionalDependencies = { }; @@ -33906,24 +38161,24 @@ cpu = [ ]; }; by-spec."read"."1.0.x" = - self.by-version."read"."1.0.5"; + self.by-version."read"."1.0.7"; by-spec."read"."~1.0.1" = - self.by-version."read"."1.0.5"; - by-spec."read"."~1.0.4" = - self.by-version."read"."1.0.5"; + self.by-version."read"."1.0.7"; + by-spec."read"."~1.0.7" = + self.by-version."read"."1.0.7"; by-spec."read-all-stream"."^2.0.0" = - self.by-version."read-all-stream"."2.1.2"; - by-version."read-all-stream"."2.1.2" = self.buildNodePackage { - name = "read-all-stream-2.1.2"; - version = "2.1.2"; + self.by-version."read-all-stream"."2.2.0"; + by-version."read-all-stream"."2.2.0" = self.buildNodePackage { + name = "read-all-stream-2.2.0"; + version = "2.2.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-all-stream/-/read-all-stream-2.1.2.tgz"; - name = "read-all-stream-2.1.2.tgz"; - sha1 = "0e80070eadd99712383e9f3c26762310900bda0a"; + url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-2.2.0.tgz"; + name = "read-all-stream-2.2.0.tgz"; + sha1 = "6b83370546c55ab6ade2bf75e83c66e45989bbf0"; }; deps = { - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -33931,50 +38186,88 @@ os = [ ]; cpu = [ ]; }; - by-spec."read-installed"."~0.2.2" = - self.by-version."read-installed"."0.2.5"; - by-version."read-installed"."0.2.5" = self.buildNodePackage { - name = "read-installed-0.2.5"; - version = "0.2.5"; + by-spec."read-all-stream"."^3.0.0" = + self.by-version."read-all-stream"."3.1.0"; + by-version."read-all-stream"."3.1.0" = self.buildNodePackage { + name = "read-all-stream-3.1.0"; + version = "3.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-installed/-/read-installed-0.2.5.tgz"; - name = "read-installed-0.2.5.tgz"; - sha1 = "134df8b326d8b54b11e18f7dd8c81bf5e976ef86"; + url = "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; + name = "read-all-stream-3.1.0.tgz"; + sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; }; deps = { - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "read-package-json-1.3.3" = self.by-version."read-package-json"."1.3.3"; + "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."read-installed"."~4.0.0" = - self.by-version."read-installed"."4.0.0"; - by-version."read-installed"."4.0.0" = self.buildNodePackage { - name = "read-installed-4.0.0"; - version = "4.0.0"; + by-spec."read-cmd-shim"."~1.0.1" = + self.by-version."read-cmd-shim"."1.0.1"; + by-version."read-cmd-shim"."1.0.1" = self.buildNodePackage { + name = "read-cmd-shim-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-installed/-/read-installed-4.0.0.tgz"; - name = "read-installed-4.0.0.tgz"; - sha1 = "dbca08d6bd83e2a3b93c962053ba4d839e0769ba"; + url = "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-1.0.1.tgz"; + name = "read-cmd-shim-1.0.1.tgz"; + sha1 = "2d5d157786a37c055d22077c32c53f8329e91c7b"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-installed"."~4.0.3" = + self.by-version."read-installed"."4.0.3"; + by-version."read-installed"."4.0.3" = self.buildNodePackage { + name = "read-installed-4.0.3"; + version = "4.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/read-installed/-/read-installed-4.0.3.tgz"; + name = "read-installed-4.0.3.tgz"; + sha1 = "ff9b8b67f187d1e4c29b9feb31f6b223acd19067"; }; deps = { "debuglog-1.0.1" = self.by-version."debuglog"."1.0.1"; - "read-package-json-2.0.0" = self.by-version."read-package-json"."2.0.0"; - "readdir-scoped-modules-1.0.1" = self.by-version."readdir-scoped-modules"."1.0.1"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; + "read-package-json-2.0.3" = self.by-version."read-package-json"."2.0.3"; + "readdir-scoped-modules-1.0.2" = self.by-version."readdir-scoped-modules"."1.0.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "util-extend-1.0.1" = self.by-version."util-extend"."1.0.1"; + "util-extend-1.0.3" = self.by-version."util-extend"."1.0.3"; + }; + optionalDependencies = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-json-sync"."^1.1.0" = + self.by-version."read-json-sync"."1.1.1"; + by-version."read-json-sync"."1.1.1" = self.buildNodePackage { + name = "read-json-sync-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/read-json-sync/-/read-json-sync-1.1.1.tgz"; + name = "read-json-sync-1.1.1.tgz"; + sha1 = "43c669ae864aae308dfbbb2721a67e295ec8fff6"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; }; optionalDependencies = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; }; peerDependencies = []; os = [ ]; @@ -33987,7 +38280,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-only-stream/-/read-only-stream-1.1.1.tgz"; + url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-1.1.1.tgz"; name = "read-only-stream-1.1.1.tgz"; sha1 = "5da77c799ed1388d3ef88a18471bb5924f8a0ba1"; }; @@ -34001,81 +38294,120 @@ os = [ ]; cpu = [ ]; }; - by-spec."read-package-json"."1" = - self.by-version."read-package-json"."1.3.3"; - by-version."read-package-json"."1.3.3" = self.buildNodePackage { - name = "read-package-json-1.3.3"; - version = "1.3.3"; + by-spec."read-only-stream"."^2.0.0" = + self.by-version."read-only-stream"."2.0.0"; + by-version."read-only-stream"."2.0.0" = self.buildNodePackage { + name = "read-only-stream-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-package-json/-/read-package-json-1.3.3.tgz"; - name = "read-package-json-1.3.3.tgz"; - sha1 = "ef79dfda46e165376ee8a57efbfedd4d1b029ba4"; + url = "https://registry.npmjs.org/read-only-stream/-/read-only-stream-2.0.0.tgz"; + name = "read-only-stream-2.0.0.tgz"; + sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0"; }; deps = { - "glob-5.0.5" = self.by-version."glob"."5.0.5"; - "json-parse-helpfulerror-1.0.3" = self.by-version."json-parse-helpfulerror"."1.0.3"; - "normalize-package-data-1.0.3" = self.by-version."normalize-package-data"."1.0.3"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; by-spec."read-package-json"."1 || 2" = - self.by-version."read-package-json"."2.0.0"; - by-version."read-package-json"."2.0.0" = self.buildNodePackage { - name = "read-package-json-2.0.0"; - version = "2.0.0"; + self.by-version."read-package-json"."2.0.3"; + by-version."read-package-json"."2.0.3" = self.buildNodePackage { + name = "read-package-json-2.0.3"; + version = "2.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-package-json/-/read-package-json-2.0.0.tgz"; - name = "read-package-json-2.0.0.tgz"; - sha1 = "ca7543298275028d27064b9118e6e501c9b3ae41"; + url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.3.tgz"; + name = "read-package-json-2.0.3.tgz"; + sha1 = "f8cec1627053b54f384b353224545e607554c5d2"; }; deps = { - "glob-5.0.5" = self.by-version."glob"."5.0.5"; + "glob-6.0.4" = self.by-version."glob"."6.0.4"; "json-parse-helpfulerror-1.0.3" = self.by-version."json-parse-helpfulerror"."1.0.3"; - "normalize-package-data-2.0.0" = self.by-version."normalize-package-data"."2.0.0"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; }; optionalDependencies = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."read-package-json"."^1.3.1" = - self.by-version."read-package-json"."1.3.3"; by-spec."read-package-json"."^2.0.0" = - self.by-version."read-package-json"."2.0.0"; - by-spec."read-package-json"."~1.1.0" = - self.by-version."read-package-json"."1.1.9"; - by-version."read-package-json"."1.1.9" = self.buildNodePackage { - name = "read-package-json-1.1.9"; - version = "1.1.9"; + self.by-version."read-package-json"."2.0.3"; + by-spec."read-package-json"."~2.0.3" = + self.by-version."read-package-json"."2.0.3"; + by-spec."read-package-tree"."~5.1.2" = + self.by-version."read-package-tree"."5.1.2"; + by-version."read-package-tree"."5.1.2" = self.buildNodePackage { + name = "read-package-tree-5.1.2"; + version = "5.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/read-package-json/-/read-package-json-1.1.9.tgz"; - name = "read-package-json-1.1.9.tgz"; - sha1 = "9c319185e5f8461661c01f8d4e5e80b468aa18ee"; + url = "https://registry.npmjs.org/read-package-tree/-/read-package-tree-5.1.2.tgz"; + name = "read-package-tree-5.1.2.tgz"; + sha1 = "e3a488792f40cf470819f01a610e719d64f09094"; }; deps = { - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "normalize-package-data-0.2.13" = self.by-version."normalize-package-data"."0.2.13"; + "debuglog-1.0.1" = self.by-version."debuglog"."1.0.1"; + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "read-package-json-2.0.3" = self.by-version."read-package-json"."2.0.3"; + "readdir-scoped-modules-1.0.2" = self.by-version."readdir-scoped-modules"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-pkg"."^1.0.0" = + self.by-version."read-pkg"."1.1.0"; + by-version."read-pkg"."1.1.0" = self.buildNodePackage { + name = "read-pkg-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; + name = "read-pkg-1.1.0.tgz"; + sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; + }; + deps = { + "load-json-file-1.1.0" = self.by-version."load-json-file"."1.1.0"; + "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; + "path-type-1.1.0" = self.by-version."path-type"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."read-pkg-up"."^1.0.1" = + self.by-version."read-pkg-up"."1.0.1"; + by-version."read-pkg-up"."1.0.1" = self.buildNodePackage { + name = "read-pkg-up-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; + name = "read-pkg-up-1.0.1.tgz"; + sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; + }; + deps = { + "find-up-1.1.2" = self.by-version."find-up"."1.1.2"; + "read-pkg-1.1.0" = self.by-version."read-pkg"."1.1.0"; }; optionalDependencies = { - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; }; peerDependencies = []; os = [ ]; cpu = [ ]; }; - by-spec."read-package-json"."~2.0.0" = - self.by-version."read-package-json"."2.0.0"; by-spec."read-torrent"."^1.0.0" = self.by-version."read-torrent"."1.3.0"; by-version."read-torrent"."1.3.0" = self.buildNodePackage { @@ -34083,15 +38415,15 @@ version = "1.3.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/read-torrent/-/read-torrent-1.3.0.tgz"; + url = "https://registry.npmjs.org/read-torrent/-/read-torrent-1.3.0.tgz"; name = "read-torrent-1.3.0.tgz"; sha1 = "4e0ef5bea6cb24d31843eb6fa8543ad0232ab9f4"; }; deps = { "magnet-uri-2.0.1" = self.by-version."magnet-uri"."2.0.1"; - "parse-torrent-4.0.0" = self.by-version."parse-torrent"."4.0.0"; + "parse-torrent-4.1.0" = self.by-version."parse-torrent"."4.1.0"; "request-2.16.6" = self.by-version."request"."2.16.6"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; }; optionalDependencies = { }; @@ -34101,44 +38433,26 @@ }; by-spec."read-torrent"."^1.1.0" = self.by-version."read-torrent"."1.3.0"; - by-spec."read-torrent"."~1.0.0" = - self.by-version."read-torrent"."1.0.0"; - by-version."read-torrent"."1.0.0" = self.buildNodePackage { - name = "read-torrent-1.0.0"; - version = "1.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/read-torrent/-/read-torrent-1.0.0.tgz"; - name = "read-torrent-1.0.0.tgz"; - sha1 = "d45427a10dbbf21479fdf7e1ce8ce4ad39770966"; - }; - deps = { - "request-2.16.6" = self.by-version."request"."2.16.6"; - "parse-torrent-1.0.0" = self.by-version."parse-torrent"."1.0.0"; - "magnet-uri-2.0.1" = self.by-version."magnet-uri"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."readable-stream"."*" = - self.by-version."readable-stream"."1.1.13"; - by-version."readable-stream"."1.1.13" = self.buildNodePackage { - name = "readable-stream-1.1.13"; - version = "1.1.13"; + by-spec."read-torrent"."^1.3.0" = + self.by-version."read-torrent"."1.3.0"; + by-spec."readable-stream"."1 || 2" = + self.by-version."readable-stream"."2.0.6"; + by-version."readable-stream"."2.0.6" = self.buildNodePackage { + name = "readable-stream-2.0.6"; + version = "2.0.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz"; - name = "readable-stream-1.1.13.tgz"; - sha1 = "f6eef764f514c89e2b9e23146a75ba106756d23e"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; + name = "readable-stream-2.0.6.tgz"; + sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; }; deps = { - "core-util-is-1.0.1" = self.by-version."core-util-is"."1.0.1"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; + "process-nextick-args-1.0.6" = self.by-version."process-nextick-args"."1.0.6"; + "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; + "util-deprecate-1.0.2" = self.by-version."util-deprecate"."1.0.2"; }; optionalDependencies = { }; @@ -34153,12 +38467,12 @@ version = "1.0.27-1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.27-1.tgz"; name = "readable-stream-1.0.27-1.tgz"; sha1 = "6b67983c20357cefd07f0165001a16d710d91078"; }; deps = { - "core-util-is-1.0.1" = self.by-version."core-util-is"."1.0.1"; + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -34176,12 +38490,12 @@ version = "1.0.31"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.31.tgz"; name = "readable-stream-1.0.31.tgz"; sha1 = "8f2502e0bc9e3b0da1b94520aabb4e2603ecafae"; }; deps = { - "core-util-is-1.0.1" = self.by-version."core-util-is"."1.0.1"; + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -34194,8 +38508,31 @@ }; by-spec."readable-stream"."1.1" = self.by-version."readable-stream"."1.1.13"; + by-version."readable-stream"."1.1.13" = self.buildNodePackage { + name = "readable-stream-1.1.13"; + version = "1.1.13"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz"; + name = "readable-stream-1.1.13.tgz"; + sha1 = "f6eef764f514c89e2b9e23146a75ba106756d23e"; + }; + deps = { + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."readable-stream"."1.1.x" = self.by-version."readable-stream"."1.1.13"; + by-spec."readable-stream"."2" = + self.by-version."readable-stream"."2.0.6"; by-spec."readable-stream".">=1.0.33-1 <1.1.0-0" = self.by-version."readable-stream"."1.0.33"; by-version."readable-stream"."1.0.33" = self.buildNodePackage { @@ -34203,12 +38540,12 @@ version = "1.0.33"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz"; + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz"; name = "readable-stream-1.0.33.tgz"; sha1 = "3a360dd66c1b1d7fd4705389860eda1d0f61126c"; }; deps = { - "core-util-is-1.0.1" = self.by-version."core-util-is"."1.0.1"; + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; @@ -34221,20 +38558,30 @@ }; by-spec."readable-stream".">=1.1.13-1 <1.2.0-0" = self.by-version."readable-stream"."1.1.13"; + by-spec."readable-stream".">=2.0.0 <3.0.0" = + self.by-version."readable-stream"."2.0.6"; by-spec."readable-stream"."^1.0.2" = self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."^1.0.27-1" = self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."^1.0.31" = self.by-version."readable-stream"."1.1.13"; - by-spec."readable-stream"."^1.0.33-1" = + by-spec."readable-stream"."^1.0.33" = self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."^1.1.13" = self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."^1.1.13-1" = self.by-version."readable-stream"."1.1.13"; - by-spec."readable-stream"."^1.1.8" = - self.by-version."readable-stream"."1.1.13"; + by-spec."readable-stream"."^2.0.0" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."^2.0.0 || ^1.1.13" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."^2.0.1" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."^2.0.2" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."^2.0.5" = + self.by-version."readable-stream"."2.0.6"; by-spec."readable-stream"."~1.0.17" = self.by-version."readable-stream"."1.0.33"; by-spec."readable-stream"."~1.0.2" = @@ -34245,11 +38592,9 @@ self.by-version."readable-stream"."1.0.33"; by-spec."readable-stream"."~1.0.26-2" = self.by-version."readable-stream"."1.0.33"; - by-spec."readable-stream"."~1.0.26-4" = - self.by-version."readable-stream"."1.0.33"; by-spec."readable-stream"."~1.0.33" = self.by-version."readable-stream"."1.0.33"; - by-spec."readable-stream"."~1.1" = + by-spec."readable-stream"."~1.1.0" = self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."~1.1.10" = self.by-version."readable-stream"."1.1.13"; @@ -34259,6 +38604,14 @@ self.by-version."readable-stream"."1.1.13"; by-spec."readable-stream"."~1.1.9" = self.by-version."readable-stream"."1.1.13"; + by-spec."readable-stream"."~2.0.0" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."~2.0.4" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."~2.0.5" = + self.by-version."readable-stream"."2.0.6"; + by-spec."readable-stream"."~2.0.6" = + self.by-version."readable-stream"."2.0.6"; by-spec."readable-wrap"."^1.0.0" = self.by-version."readable-wrap"."1.0.0"; by-version."readable-wrap"."1.0.0" = self.buildNodePackage { @@ -34266,7 +38619,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readable-wrap/-/readable-wrap-1.0.0.tgz"; + url = "https://registry.npmjs.org/readable-wrap/-/readable-wrap-1.0.0.tgz"; name = "readable-wrap-1.0.0.tgz"; sha1 = "3b5a211c631e12303a54991c806c17e7ae206bff"; }; @@ -34279,22 +38632,22 @@ os = [ ]; cpu = [ ]; }; - by-spec."readdir-scoped-modules"."^1.0.0" = - self.by-version."readdir-scoped-modules"."1.0.1"; - by-version."readdir-scoped-modules"."1.0.1" = self.buildNodePackage { - name = "readdir-scoped-modules-1.0.1"; - version = "1.0.1"; + by-spec."readdir-scoped-modules"."*" = + self.by-version."readdir-scoped-modules"."1.0.2"; + by-version."readdir-scoped-modules"."1.0.2" = self.buildNodePackage { + name = "readdir-scoped-modules-1.0.2"; + version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.1.tgz"; - name = "readdir-scoped-modules-1.0.1.tgz"; - sha1 = "5c2a77f3e08250a8fddf53fa58cdc17900b808b9"; + url = "https://registry.npmjs.org/readdir-scoped-modules/-/readdir-scoped-modules-1.0.2.tgz"; + name = "readdir-scoped-modules-1.0.2.tgz"; + sha1 = "9fafa37d286be5d92cbaebdee030dc9b5f406747"; }; deps = { "debuglog-1.0.1" = self.by-version."debuglog"."1.0.1"; - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "once-1.3.1" = self.by-version."once"."1.3.1"; + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; }; optionalDependencies = { }; @@ -34302,43 +38655,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."readdirp"."^1.2.0" = - self.by-version."readdirp"."1.3.0"; - by-version."readdirp"."1.3.0" = self.buildNodePackage { - name = "readdirp-1.3.0"; - version = "1.3.0"; + by-spec."readdir-scoped-modules"."^1.0.0" = + self.by-version."readdir-scoped-modules"."1.0.2"; + by-spec."readdirp"."^2.0.0" = + self.by-version."readdirp"."2.0.0"; + by-version."readdirp"."2.0.0" = self.buildNodePackage { + name = "readdirp-2.0.0"; + version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz"; - name = "readdirp-1.3.0.tgz"; - sha1 = "eaf1a9b463be9a8190fc9ae163aa1ac934aa340b"; + url = "https://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz"; + name = "readdirp-2.0.0.tgz"; + sha1 = "cc09ba5d12d8feb864bc75f6e2ebc137060cbd82"; }; deps = { - "graceful-fs-2.0.3" = self.by-version."graceful-fs"."2.0.3"; - "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."readdirp"."^1.3.0" = - self.by-version."readdirp"."1.3.0"; - by-spec."readdirp"."~0.2.3" = - self.by-version."readdirp"."0.2.5"; - by-version."readdirp"."0.2.5" = self.buildNodePackage { - name = "readdirp-0.2.5"; - version = "0.2.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/readdirp/-/readdirp-0.2.5.tgz"; - name = "readdirp-0.2.5.tgz"; - sha1 = "c4c276e52977ae25db5191fe51d008550f15d9bb"; - }; - deps = { - "minimatch-2.0.4" = self.by-version."minimatch"."2.0.4"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "minimatch-2.0.10" = self.by-version."minimatch"."2.0.10"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; }; optionalDependencies = { }; @@ -34353,7 +38686,7 @@ version = "0.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz"; + url = "https://registry.npmjs.org/readline2/-/readline2-0.1.1.tgz"; name = "readline2-0.1.1.tgz"; sha1 = "99443ba6e83b830ef3051bfd7dc241a82728d568"; }; @@ -34367,22 +38700,21 @@ os = [ ]; cpu = [ ]; }; - by-spec."readline2"."~0.1.0" = - self.by-version."readline2"."0.1.1"; - by-spec."realize-package-specifier"."~3.0.0" = - self.by-version."realize-package-specifier"."3.0.0"; - by-version."realize-package-specifier"."3.0.0" = self.buildNodePackage { - name = "realize-package-specifier-3.0.0"; - version = "3.0.0"; + by-spec."readline2"."^1.0.1" = + self.by-version."readline2"."1.0.1"; + by-version."readline2"."1.0.1" = self.buildNodePackage { + name = "readline2-1.0.1"; + version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/realize-package-specifier/-/realize-package-specifier-3.0.0.tgz"; - name = "realize-package-specifier-3.0.0.tgz"; - sha1 = "38224d63f546d4972f0a68cb6e91f6cf73ac67fa"; + url = "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz"; + name = "readline2-1.0.1.tgz"; + sha1 = "41059608ffc154757b715d9989d199ffbf372e35"; }; deps = { - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; - "npm-package-arg-4.0.0" = self.by-version."npm-package-arg"."4.0.0"; + "code-point-at-1.0.0" = self.by-version."code-point-at"."1.0.0"; + "is-fullwidth-code-point-1.0.0" = self.by-version."is-fullwidth-code-point"."1.0.0"; + "mute-stream-0.0.5" = self.by-version."mute-stream"."0.0.5"; }; optionalDependencies = { }; @@ -34390,22 +38722,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."recast"."~0.10.3" = - self.by-version."recast"."0.10.12"; - by-version."recast"."0.10.12" = self.buildNodePackage { - name = "recast-0.10.12"; - version = "0.10.12"; + by-spec."realize-package-specifier"."~3.0.1" = + self.by-version."realize-package-specifier"."3.0.1"; + by-version."realize-package-specifier"."3.0.1" = self.buildNodePackage { + name = "realize-package-specifier-3.0.1"; + version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/recast/-/recast-0.10.12.tgz"; - name = "recast-0.10.12.tgz"; - sha1 = "c616c1b7c4a82f0b9eb68734fc8f46ad2f5d2ac5"; + url = "https://registry.npmjs.org/realize-package-specifier/-/realize-package-specifier-3.0.1.tgz"; + name = "realize-package-specifier-3.0.1.tgz"; + sha1 = "fde32e926448e38f99334d95b7b08d51e3a98d9f"; }; deps = { - "esprima-fb-14001.1.0-dev-harmony-fb" = self.by-version."esprima-fb"."14001.1.0-dev-harmony-fb"; - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; - "private-0.1.6" = self.by-version."private"."0.1.6"; - "ast-types-0.7.6" = self.by-version."ast-types"."0.7.6"; + "dezalgo-1.0.3" = self.by-version."dezalgo"."1.0.3"; + "npm-package-arg-4.1.0" = self.by-version."npm-package-arg"."4.1.0"; }; optionalDependencies = { }; @@ -34413,22 +38743,65 @@ os = [ ]; cpu = [ ]; }; - by-spec."recast"."~0.9.5" = - self.by-version."recast"."0.9.18"; - by-version."recast"."0.9.18" = self.buildNodePackage { - name = "recast-0.9.18"; - version = "0.9.18"; + by-spec."recast"."0.10.33" = + self.by-version."recast"."0.10.33"; + by-version."recast"."0.10.33" = self.buildNodePackage { + name = "recast-0.10.33"; + version = "0.10.33"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/recast/-/recast-0.9.18.tgz"; - name = "recast-0.9.18.tgz"; - sha1 = "f70921bb9f737d8e1fb06a440315bd7ec14587c9"; + url = "https://registry.npmjs.org/recast/-/recast-0.10.33.tgz"; + name = "recast-0.10.33.tgz"; + sha1 = "942808f7aa016f1fa7142c461d7e5704aaa8d697"; }; deps = { - "esprima-fb-10001.1.0-dev-harmony-fb" = self.by-version."esprima-fb"."10001.1.0-dev-harmony-fb"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + "esprima-fb-15001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."15001.1001.0-dev-harmony-fb"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; "private-0.1.6" = self.by-version."private"."0.1.6"; - "ast-types-0.6.16" = self.by-version."ast-types"."0.6.16"; + "ast-types-0.8.12" = self.by-version."ast-types"."0.8.12"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."recast"."^0.10.0" = + self.by-version."recast"."0.10.43"; + by-version."recast"."0.10.43" = self.buildNodePackage { + name = "recast-0.10.43"; + version = "0.10.43"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/recast/-/recast-0.10.43.tgz"; + name = "recast-0.10.43.tgz"; + sha1 = "b95d50f6d60761a5f6252e15d80678168491ce7f"; + }; + deps = { + "esprima-fb-15001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."15001.1001.0-dev-harmony-fb"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + "private-0.1.6" = self.by-version."private"."0.1.6"; + "ast-types-0.8.15" = self.by-version."ast-types"."0.8.15"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rechoir"."^0.6.0" = + self.by-version."rechoir"."0.6.2"; + by-version."rechoir"."0.6.2" = self.buildNodePackage { + name = "rechoir-0.6.2"; + version = "0.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz"; + name = "rechoir-0.6.2.tgz"; + sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; + }; + deps = { + "resolve-1.1.7" = self.by-version."resolve"."1.1.7"; }; optionalDependencies = { }; @@ -34456,19 +38829,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."redeyed"."~0.4.0" = - self.by-version."redeyed"."0.4.4"; - by-version."redeyed"."0.4.4" = self.buildNodePackage { - name = "redeyed-0.4.4"; - version = "0.4.4"; + by-spec."redent"."^1.0.0" = + self.by-version."redent"."1.0.0"; + by-version."redent"."1.0.0" = self.buildNodePackage { + name = "redent-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/redeyed/-/redeyed-0.4.4.tgz"; - name = "redeyed-0.4.4.tgz"; - sha1 = "37e990a6f2b21b2a11c2e6a48fd4135698cba97f"; + url = "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz"; + name = "redent-1.0.0.tgz"; + sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; }; deps = { - "esprima-1.0.4" = self.by-version."esprima"."1.0.4"; + "indent-string-2.1.0" = self.by-version."indent-string"."2.1.0"; + "strip-indent-1.0.1" = self.by-version."strip-indent"."1.0.1"; }; optionalDependencies = { }; @@ -34477,17 +38851,20 @@ cpu = [ ]; }; by-spec."redis"."*" = - self.by-version."redis"."0.12.1"; - by-version."redis"."0.12.1" = self.buildNodePackage { - name = "redis-0.12.1"; - version = "0.12.1"; + self.by-version."redis"."2.6.0-1"; + by-version."redis"."2.6.0-1" = self.buildNodePackage { + name = "redis-2.6.0-1"; + version = "2.6.0-1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/redis/-/redis-0.12.1.tgz"; - name = "redis-0.12.1.tgz"; - sha1 = "64df76ad0fc8acebaebd2a0645e8a48fac49185e"; + url = "https://registry.npmjs.org/redis/-/redis-2.6.0-1.tgz"; + name = "redis-2.6.0-1.tgz"; + sha1 = "d6feb32cf08a734ba7f7f776699363ef69e3b9b4"; }; deps = { + "double-ended-queue-2.1.0-0" = self.by-version."double-ended-queue"."2.1.0-0"; + "redis-commands-1.1.0" = self.by-version."redis-commands"."1.1.0"; + "redis-parser-1.3.0" = self.by-version."redis-parser"."1.3.0"; }; optionalDependencies = { }; @@ -34495,7 +38872,7 @@ os = [ ]; cpu = [ ]; }; - "redis" = self.by-version."redis"."0.12.1"; + "redis" = self.by-version."redis"."2.6.0-1"; by-spec."redis"."0.10.x" = self.by-version."redis"."0.10.3"; by-version."redis"."0.10.3" = self.buildNodePackage { @@ -34503,7 +38880,7 @@ version = "0.10.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/redis/-/redis-0.10.3.tgz"; + url = "https://registry.npmjs.org/redis/-/redis-0.10.3.tgz"; name = "redis-0.10.3.tgz"; sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6"; }; @@ -34522,7 +38899,7 @@ version = "0.7.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/redis/-/redis-0.7.3.tgz"; + url = "https://registry.npmjs.org/redis/-/redis-0.7.3.tgz"; name = "redis-0.7.3.tgz"; sha1 = "ee57b7a44d25ec1594e44365d8165fa7d1d4811a"; }; @@ -34536,16 +38913,95 @@ }; by-spec."redis"."^0.12.1" = self.by-version."redis"."0.12.1"; - by-spec."redis"."~0.12.0" = - self.by-version."redis"."0.12.1"; - by-spec."reds"."~0.2.4" = + by-version."redis"."0.12.1" = self.buildNodePackage { + name = "redis-0.12.1"; + version = "0.12.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/redis/-/redis-0.12.1.tgz"; + name = "redis-0.12.1.tgz"; + sha1 = "64df76ad0fc8acebaebd2a0645e8a48fac49185e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."redis"."^2.4.2" = + self.by-version."redis"."2.5.3"; + by-version."redis"."2.5.3" = self.buildNodePackage { + name = "redis-2.5.3"; + version = "2.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/redis/-/redis-2.5.3.tgz"; + name = "redis-2.5.3.tgz"; + sha1 = "f61b036e118d21150a1085adef08bd97c8e13925"; + }; + deps = { + "double-ended-queue-2.1.0-0" = self.by-version."double-ended-queue"."2.1.0-0"; + "redis-commands-1.1.0" = self.by-version."redis-commands"."1.1.0"; + "redis-parser-1.3.0" = self.by-version."redis-parser"."1.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."redis-commands"."^1.0.1" = + self.by-version."redis-commands"."1.1.0"; + by-version."redis-commands"."1.1.0" = self.buildNodePackage { + name = "redis-commands-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/redis-commands/-/redis-commands-1.1.0.tgz"; + name = "redis-commands-1.1.0.tgz"; + sha1 = "aa5609a52213596816b6050384332ef631011272"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."redis-commands"."^1.1.0" = + self.by-version."redis-commands"."1.1.0"; + by-spec."redis-parser"."^1.1.0" = + self.by-version."redis-parser"."1.3.0"; + by-version."redis-parser"."1.3.0" = self.buildNodePackage { + name = "redis-parser-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/redis-parser/-/redis-parser-1.3.0.tgz"; + name = "redis-parser-1.3.0.tgz"; + sha1 = "806ebe7bbfb7d34e4d7c1e9ef282efcfad04126a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."redis-parser"."^1.2.0" = + self.by-version."redis-parser"."1.3.0"; + by-spec."reds"."~0.2.5" = self.by-version."reds"."0.2.5"; by-version."reds"."0.2.5" = self.buildNodePackage { name = "reds-0.2.5"; version = "0.2.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/reds/-/reds-0.2.5.tgz"; + url = "https://registry.npmjs.org/reds/-/reds-0.2.5.tgz"; name = "reds-0.2.5.tgz"; sha1 = "38a767f7663cd749036848697d82c74fd29bc01f"; }; @@ -34566,7 +39022,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz"; + url = "https://registry.npmjs.org/reduce-component/-/reduce-component-1.0.1.tgz"; name = "reduce-component-1.0.1.tgz"; sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da"; }; @@ -34578,24 +39034,20 @@ os = [ ]; cpu = [ ]; }; - by-spec."regenerator"."~0.8.13" = - self.by-version."regenerator"."0.8.22"; - by-version."regenerator"."0.8.22" = self.buildNodePackage { - name = "regenerator-0.8.22"; - version = "0.8.22"; - bin = true; + by-spec."reduplexer"."^1.1.0" = + self.by-version."reduplexer"."1.1.0"; + by-version."reduplexer"."1.1.0" = self.buildNodePackage { + name = "reduplexer-1.1.0"; + version = "1.1.0"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/regenerator/-/regenerator-0.8.22.tgz"; - name = "regenerator-0.8.22.tgz"; - sha1 = "6706f6f3abb9268c161f9f25a0520d0cdec250fc"; + url = "https://registry.npmjs.org/reduplexer/-/reduplexer-1.1.0.tgz"; + name = "reduplexer-1.1.0.tgz"; + sha1 = "7dfed18a679e749c1d7ad36de01acb515f08e140"; }; deps = { - "commoner-0.10.1" = self.by-version."commoner"."0.10.1"; - "esprima-fb-13001.1.0-dev-harmony-fb" = self.by-version."esprima-fb"."13001.1.0-dev-harmony-fb"; - "recast-0.10.12" = self.by-version."recast"."0.10.12"; - "private-0.1.6" = self.by-version."private"."0.1.6"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "defs-1.1.0" = self.by-version."defs"."1.1.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; }; optionalDependencies = { }; @@ -34603,19 +39055,44 @@ os = [ ]; cpu = [ ]; }; - by-spec."regex-cache"."^0.4.0" = - self.by-version."regex-cache"."0.4.2"; - by-version."regex-cache"."0.4.2" = self.buildNodePackage { - name = "regex-cache-0.4.2"; - version = "0.4.2"; - bin = false; + by-spec."regenerator"."~0.8.13" = + self.by-version."regenerator"."0.8.42"; + by-version."regenerator"."0.8.42" = self.buildNodePackage { + name = "regenerator-0.8.42"; + version = "0.8.42"; + bin = true; src = fetchurl { - url = "http://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz"; - name = "regex-cache-0.4.2.tgz"; - sha1 = "6e4f89c266bc03c33fd129c062184687f4663487"; + url = "https://registry.npmjs.org/regenerator/-/regenerator-0.8.42.tgz"; + name = "regenerator-0.8.42.tgz"; + sha1 = "17957424df24db002208f1498f62b9a40231cfc9"; }; deps = { - "is-equal-shallow-0.1.2" = self.by-version."is-equal-shallow"."0.1.2"; + "commoner-0.10.4" = self.by-version."commoner"."0.10.4"; + "defs-1.1.1" = self.by-version."defs"."1.1.1"; + "esprima-fb-15001.1001.0-dev-harmony-fb" = self.by-version."esprima-fb"."15001.1001.0-dev-harmony-fb"; + "private-0.1.6" = self.by-version."private"."0.1.6"; + "recast-0.10.33" = self.by-version."recast"."0.10.33"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."regex-cache"."^0.4.2" = + self.by-version."regex-cache"."0.4.3"; + by-version."regex-cache"."0.4.3" = self.buildNodePackage { + name = "regex-cache-0.4.3"; + version = "0.4.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.3.tgz"; + name = "regex-cache-0.4.3.tgz"; + sha1 = "9b1a6c35d4d0dfcef5711ae651e8e9d3d7114145"; + }; + deps = { + "is-equal-shallow-0.1.3" = self.by-version."is-equal-shallow"."0.1.3"; "is-primitive-2.0.0" = self.by-version."is-primitive"."2.0.0"; }; optionalDependencies = { @@ -34631,7 +39108,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/regexp-clone/-/regexp-clone-0.0.1.tgz"; + url = "https://registry.npmjs.org/regexp-clone/-/regexp-clone-0.0.1.tgz"; name = "regexp-clone-0.0.1.tgz"; sha1 = "a7c2e09891fdbf38fbb10d376fb73003e68ac589"; }; @@ -34650,7 +39127,7 @@ version = "0.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/regexp-quote/-/regexp-quote-0.0.0.tgz"; + url = "https://registry.npmjs.org/regexp-quote/-/regexp-quote-0.0.0.tgz"; name = "regexp-quote-0.0.0.tgz"; sha1 = "1e0f4650c862dcbfed54fd42b148e9bb1721fcf2"; }; @@ -34663,18 +39140,37 @@ cpu = [ ]; }; by-spec."registry-url"."^3.0.0" = - self.by-version."registry-url"."3.0.3"; - by-version."registry-url"."3.0.3" = self.buildNodePackage { - name = "registry-url-3.0.3"; - version = "3.0.3"; + self.by-version."registry-url"."3.1.0"; + by-version."registry-url"."3.1.0" = self.buildNodePackage { + name = "registry-url-3.1.0"; + version = "3.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/registry-url/-/registry-url-3.0.3.tgz"; - name = "registry-url-3.0.3.tgz"; - sha1 = "c9f5102e0fd9c9f250522a7f19f68672c84ccc96"; + url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; + name = "registry-url-3.1.0.tgz"; + sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; + }; + deps = { + "rc-1.1.6" = self.by-version."rc"."1.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."reinterval"."^1.0.1" = + self.by-version."reinterval"."1.0.2"; + by-version."reinterval"."1.0.2" = self.buildNodePackage { + name = "reinterval-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/reinterval/-/reinterval-1.0.2.tgz"; + name = "reinterval-1.0.2.tgz"; + sha1 = "029056fb7637844bec872f36f2c07b0d7c112e6d"; }; deps = { - "rc-1.0.1" = self.by-version."rc"."1.0.1"; }; optionalDependencies = { }; @@ -34683,15 +39179,15 @@ cpu = [ ]; }; by-spec."relative-date"."^1.1.1" = - self.by-version."relative-date"."1.1.2"; - by-version."relative-date"."1.1.2" = self.buildNodePackage { - name = "relative-date-1.1.2"; - version = "1.1.2"; + self.by-version."relative-date"."1.1.3"; + by-version."relative-date"."1.1.3" = self.buildNodePackage { + name = "relative-date-1.1.3"; + version = "1.1.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/relative-date/-/relative-date-1.1.2.tgz"; - name = "relative-date-1.1.2.tgz"; - sha1 = "89b990c49bc543052929f34bc76d263605edb964"; + url = "https://registry.npmjs.org/relative-date/-/relative-date-1.1.3.tgz"; + name = "relative-date-1.1.3.tgz"; + sha1 = "120903040588ec7a4a399c6547fd01d0e3d2dc63"; }; deps = { }; @@ -34702,21 +39198,21 @@ cpu = [ ]; }; by-spec."render-readme".">=0.2.1" = - self.by-version."render-readme"."1.3.0"; - by-version."render-readme"."1.3.0" = self.buildNodePackage { - name = "render-readme-1.3.0"; - version = "1.3.0"; + self.by-version."render-readme"."1.3.1"; + by-version."render-readme"."1.3.1" = self.buildNodePackage { + name = "render-readme-1.3.1"; + version = "1.3.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/render-readme/-/render-readme-1.3.0.tgz"; - name = "render-readme-1.3.0.tgz"; - sha1 = "b3c766ba8688cb46005e0fd7233aa5a236a09501"; + url = "https://registry.npmjs.org/render-readme/-/render-readme-1.3.1.tgz"; + name = "render-readme-1.3.1.tgz"; + sha1 = "d2a98f9a87dd64fa73c6877ac5c45b0f6341a797"; }; deps = { - "markdown-it-4.1.2" = self.by-version."markdown-it"."4.1.2"; - "sanitize-html-1.6.1" = self.by-version."sanitize-html"."1.6.1"; - "js-yaml-3.2.7" = self.by-version."js-yaml"."3.2.7"; - "highlight.js-8.5.0" = self.by-version."highlight.js"."8.5.0"; + "markdown-it-4.4.0" = self.by-version."markdown-it"."4.4.0"; + "sanitize-html-1.11.4" = self.by-version."sanitize-html"."1.11.4"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "highlight.js-8.9.1" = self.by-version."highlight.js"."8.9.1"; }; optionalDependencies = { }; @@ -34724,16 +39220,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."repeat-element"."^1.1.0" = - self.by-version."repeat-element"."1.1.0"; - by-version."repeat-element"."1.1.0" = self.buildNodePackage { - name = "repeat-element-1.1.0"; - version = "1.1.0"; + by-spec."repeat-element"."^1.1.2" = + self.by-version."repeat-element"."1.1.2"; + by-version."repeat-element"."1.1.2" = self.buildNodePackage { + name = "repeat-element-1.1.2"; + version = "1.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/repeat-element/-/repeat-element-1.1.0.tgz"; - name = "repeat-element-1.1.0.tgz"; - sha1 = "3307c041c52bb36a36e380de2d252ef61a907cca"; + url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz"; + name = "repeat-element-1.1.2.tgz"; + sha1 = "ef089a178d1483baae4d93eb98b4f9e4e11d990a"; }; deps = { }; @@ -34750,7 +39246,7 @@ version = "0.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz"; + url = "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz"; name = "repeat-string-0.2.2.tgz"; sha1 = "c7a8d3236068362059a7e4651fc6884e8b1fb4ae"; }; @@ -34763,15 +39259,15 @@ cpu = [ ]; }; by-spec."repeat-string"."^1.5.2" = - self.by-version."repeat-string"."1.5.2"; - by-version."repeat-string"."1.5.2" = self.buildNodePackage { - name = "repeat-string-1.5.2"; - version = "1.5.2"; + self.by-version."repeat-string"."1.5.4"; + by-version."repeat-string"."1.5.4" = self.buildNodePackage { + name = "repeat-string-1.5.4"; + version = "1.5.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz"; - name = "repeat-string-1.5.2.tgz"; - sha1 = "21065f70727ad053a0dd5e957ac9e00c7560d90a"; + url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.4.tgz"; + name = "repeat-string-1.5.4.tgz"; + sha1 = "64ec0c91e0f4b475f90d5b643651e3e6e5b6c2d5"; }; deps = { }; @@ -34782,19 +39278,40 @@ cpu = [ ]; }; by-spec."repeating"."^1.1.0" = - self.by-version."repeating"."1.1.2"; - by-version."repeating"."1.1.2" = self.buildNodePackage { - name = "repeating-1.1.2"; - version = "1.1.2"; + self.by-version."repeating"."1.1.3"; + by-version."repeating"."1.1.3" = self.buildNodePackage { + name = "repeating-1.1.3"; + version = "1.1.3"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/repeating/-/repeating-1.1.2.tgz"; - name = "repeating-1.1.2.tgz"; - sha1 = "dcced290c4d22df9818746eb5257679d27fe0283"; + url = "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz"; + name = "repeating-1.1.3.tgz"; + sha1 = "3d4114218877537494f97f77f9785fab810fa4ac"; }; deps = { - "is-finite-1.0.0" = self.by-version."is-finite"."1.0.0"; - "meow-3.1.0" = self.by-version."meow"."3.1.0"; + "is-finite-1.0.1" = self.by-version."is-finite"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."repeating"."^1.1.2" = + self.by-version."repeating"."1.1.3"; + by-spec."repeating"."^2.0.0" = + self.by-version."repeating"."2.0.0"; + by-version."repeating"."2.0.0" = self.buildNodePackage { + name = "repeating-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz"; + name = "repeating-2.0.0.tgz"; + sha1 = "fd27d6d264d18fbebfaa56553dd7b82535a5034e"; + }; + deps = { + "is-finite-1.0.1" = self.by-version."is-finite"."1.0.1"; }; optionalDependencies = { }; @@ -34809,7 +39326,7 @@ version = "0.2.10"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/replace/-/replace-0.2.10.tgz"; + url = "https://registry.npmjs.org/replace/-/replace-0.2.10.tgz"; name = "replace-0.2.10.tgz"; sha1 = "1123397e995b3bfef9985fc63cddcf79a014fd64"; }; @@ -34831,7 +39348,7 @@ version = "0.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; + url = "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz"; name = "replace-ext-0.0.1.tgz"; sha1 = "29bbd92078a739f0bcce2b4ee41e837953522924"; }; @@ -34844,35 +39361,38 @@ cpu = [ ]; }; by-spec."request"."2" = - self.by-version."request"."2.55.0"; - by-version."request"."2.55.0" = self.buildNodePackage { - name = "request-2.55.0"; - version = "2.55.0"; + self.by-version."request"."2.70.0"; + by-version."request"."2.70.0" = self.buildNodePackage { + name = "request-2.70.0"; + version = "2.70.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.55.0.tgz"; - name = "request-2.55.0.tgz"; - sha1 = "d75c1cdf679d76bb100f9bffe1fe551b5c24e93d"; + url = "https://registry.npmjs.org/request/-/request-2.70.0.tgz"; + name = "request-2.70.0.tgz"; + sha1 = "7ecf8437d6fb553e92e2981a411b9ee2aadd7cce"; }; deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "caseless-0.9.0" = self.by-version."caseless"."0.9.0"; + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "aws4-1.3.2" = self.by-version."aws4"."1.3.2"; + "bl-1.1.2" = self.by-version."bl"."1.1.2"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; - "form-data-0.2.0" = self.by-version."form-data"."0.2.0"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "qs-2.4.1" = self.by-version."qs"."2.4.1"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.6.0" = self.by-version."oauth-sign"."0.6.0"; - "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; - "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "har-validator-1.6.1" = self.by-version."har-validator"."1.6.1"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "qs-6.1.0" = self.by-version."qs"."6.1.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; }; optionalDependencies = { }; @@ -34881,9 +39401,9 @@ cpu = [ ]; }; by-spec."request"."2 >=2.20.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."2 >=2.25.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."2.16.x" = self.by-version."request"."2.16.6"; by-version."request"."2.16.6" = self.buildNodePackage { @@ -34891,7 +39411,7 @@ version = "2.16.6"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.16.6.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.16.6.tgz"; name = "request-2.16.6.tgz"; sha1 = "872fe445ae72de266b37879d6ad7dc948fa01cad"; }; @@ -34899,7 +39419,7 @@ "form-data-0.0.10" = self.by-version."form-data"."0.0.10"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; "hawk-0.10.2" = self.by-version."hawk"."0.10.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "cookie-jar-0.2.0" = self.by-version."cookie-jar"."0.2.0"; "aws-sign-0.2.0" = self.by-version."aws-sign"."0.2.0"; "oauth-sign-0.2.0" = self.by-version."oauth-sign"."0.2.0"; @@ -34921,13 +39441,13 @@ version = "2.26.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.26.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.26.0.tgz"; name = "request-2.26.0.tgz"; sha1 = "79b03075cbac2e22ebe41aa7fca884e869c1c212"; }; deps = { "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; "tunnel-agent-0.3.0" = self.by-version."tunnel-agent"."0.3.0"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; @@ -34935,7 +39455,7 @@ "aws-sign-0.3.0" = self.by-version."aws-sign"."0.3.0"; "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; "cookie-jar-0.3.0" = self.by-version."cookie-jar"."0.3.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; }; @@ -34945,68 +39465,6 @@ os = [ ]; cpu = [ ]; }; - by-spec."request"."2.27.x" = - self.by-version."request"."2.27.0"; - by-version."request"."2.27.0" = self.buildNodePackage { - name = "request-2.27.0"; - version = "2.27.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.27.0.tgz"; - name = "request-2.27.0.tgz"; - sha1 = "dfb1a224dd3a5a9bade4337012503d710e538668"; - }; - deps = { - "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "tunnel-agent-0.3.0" = self.by-version."tunnel-agent"."0.3.0"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "hawk-1.0.0" = self.by-version."hawk"."1.0.0"; - "aws-sign-0.3.0" = self.by-version."aws-sign"."0.3.0"; - "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; - "cookie-jar-0.3.0" = self.by-version."cookie-jar"."0.3.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."request"."2.29.0" = - self.by-version."request"."2.29.0"; - by-version."request"."2.29.0" = self.buildNodePackage { - name = "request-2.29.0"; - version = "2.29.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.29.0.tgz"; - name = "request-2.29.0.tgz"; - sha1 = "0d4b8de70d26a9911a8344af9a0e8edab81ff1c3"; - }; - deps = { - "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - }; - optionalDependencies = { - "tough-cookie-0.9.15" = self.by-version."tough-cookie"."0.9.15"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "tunnel-agent-0.3.0" = self.by-version."tunnel-agent"."0.3.0"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; - "hawk-1.0.0" = self.by-version."hawk"."1.0.0"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."request"."2.36.0" = self.by-version."request"."2.36.0"; by-version."request"."2.36.0" = self.buildNodePackage { @@ -35014,21 +39472,21 @@ version = "2.36.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.36.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.36.0.tgz"; name = "request-2.36.0.tgz"; sha1 = "28c6c04262c7b9ffdd21b9255374517ee6d943f5"; }; deps = { "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; }; optionalDependencies = { - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; "hawk-1.0.0" = self.by-version."hawk"."1.0.0"; @@ -35038,69 +39496,33 @@ os = [ ]; cpu = [ ]; }; - by-spec."request"."2.40.0" = + by-spec."request"."2.40.x" = self.by-version."request"."2.40.0"; by-version."request"."2.40.0" = self.buildNodePackage { name = "request-2.40.0"; version = "2.40.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.40.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.40.0.tgz"; name = "request-2.40.0.tgz"; sha1 = "4dd670f696f1e6e842e66b4b5e839301ab9beb67"; }; deps = { "qs-1.0.2" = self.by-version."qs"."1.0.2"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; }; optionalDependencies = { - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."request"."2.40.x" = - self.by-version."request"."2.40.0"; - by-spec."request"."2.42.0" = - self.by-version."request"."2.42.0"; - by-version."request"."2.42.0" = self.buildNodePackage { - name = "request-2.42.0"; - version = "2.42.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.42.0.tgz"; - name = "request-2.42.0.tgz"; - sha1 = "572bd0148938564040ac7ab148b96423a063304a"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "caseless-0.6.0" = self.by-version."caseless"."0.6.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "qs-1.2.2" = self.by-version."qs"."1.2.2"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - }; - optionalDependencies = { - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; - "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; }; peerDependencies = []; os = [ ]; @@ -35113,26 +39535,26 @@ version = "2.47.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.47.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.47.0.tgz"; name = "request-2.47.0.tgz"; sha1 = "09e9fd1a4fed6593a805ef8202b20f0c5ecb485f"; }; deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; + "bl-0.9.5" = self.by-version."bl"."0.9.5"; "caseless-0.6.0" = self.by-version."caseless"."0.6.0"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-2.3.3" = self.by-version."qs"."2.3.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; }; optionalDependencies = { @@ -35141,35 +39563,189 @@ os = [ ]; cpu = [ ]; }; - by-spec."request"."2.53.0" = - self.by-version."request"."2.53.0"; - by-version."request"."2.53.0" = self.buildNodePackage { - name = "request-2.53.0"; - version = "2.53.0"; + by-spec."request"."2.55.x" = + self.by-version."request"."2.55.0"; + by-version."request"."2.55.0" = self.buildNodePackage { + name = "request-2.55.0"; + version = "2.55.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.53.0.tgz"; - name = "request-2.53.0.tgz"; - sha1 = "180a3ae92b7b639802e4f9545dd8fcdeb71d760c"; + url = "https://registry.npmjs.org/request/-/request-2.55.0.tgz"; + name = "request-2.55.0.tgz"; + sha1 = "d75c1cdf679d76bb100f9bffe1fe551b5c24e93d"; }; deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; + "bl-0.9.5" = self.by-version."bl"."0.9.5"; "caseless-0.9.0" = self.by-version."caseless"."0.9.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; "form-data-0.2.0" = self.by-version."form-data"."0.2.0"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "qs-2.3.3" = self.by-version."qs"."2.3.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.0.14" = self.by-version."mime-types"."2.0.14"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-2.4.2" = self.by-version."qs"."2.4.2"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.6.0" = self.by-version."oauth-sign"."0.6.0"; "hawk-2.3.1" = self.by-version."hawk"."2.3.1"; "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "har-validator-1.8.0" = self.by-version."har-validator"."1.8.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request"."2.61.0" = + self.by-version."request"."2.61.0"; + by-version."request"."2.61.0" = self.buildNodePackage { + name = "request-2.61.0"; + version = "2.61.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request/-/request-2.61.0.tgz"; + name = "request-2.61.0.tgz"; + sha1 = "6973cb2ac94885f02693f554eec64481d6013f9f"; + }; + deps = { + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "har-validator-1.8.0" = self.by-version."har-validator"."1.8.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request"."2.62.0" = + self.by-version."request"."2.62.0"; + by-version."request"."2.62.0" = self.buildNodePackage { + name = "request-2.62.0"; + version = "2.62.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request/-/request-2.62.0.tgz"; + name = "request-2.62.0.tgz"; + sha1 = "55c165f702a146f1e21e0725c0b75e1136487b0f"; + }; + deps = { + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-5.1.0" = self.by-version."qs"."5.1.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "har-validator-1.8.0" = self.by-version."har-validator"."1.8.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request"."2.65.0" = + self.by-version."request"."2.65.0"; + by-version."request"."2.65.0" = self.buildNodePackage { + name = "request-2.65.0"; + version = "2.65.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request/-/request-2.65.0.tgz"; + name = "request-2.65.0.tgz"; + sha1 = "cc1a3bc72b96254734fc34296da322f9486ddeba"; + }; + deps = { + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-5.2.0" = self.by-version."qs"."5.2.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request"."2.67.0" = + self.by-version."request"."2.67.0"; + by-version."request"."2.67.0" = self.buildNodePackage { + name = "request-2.67.0"; + version = "2.67.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request/-/request-2.67.0.tgz"; + name = "request-2.67.0.tgz"; + sha1 = "8af74780e2bf11ea0ae9aa965c11f11afd272742"; + }; + deps = { + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-5.2.0" = self.by-version."qs"."5.2.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "aws-sign2-0.6.0" = self.by-version."aws-sign2"."0.6.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "is-typedarray-1.0.0" = self.by-version."is-typedarray"."1.0.0"; + "har-validator-2.0.6" = self.by-version."har-validator"."2.0.6"; }; optionalDependencies = { }; @@ -35184,7 +39760,7 @@ version = "2.9.203"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.9.203.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.9.203.tgz"; name = "request-2.9.203.tgz"; sha1 = "6c1711a5407fb94a114219563e44145bcbf4723a"; }; @@ -35197,106 +39773,51 @@ cpu = [ ]; }; by-spec."request"."2.x" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."2.x.x" = - self.by-version."request"."2.55.0"; - by-spec."request"."=2.45.0" = - self.by-version."request"."2.45.0"; - by-version."request"."2.45.0" = self.buildNodePackage { - name = "request-2.45.0"; - version = "2.45.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.45.0.tgz"; - name = "request-2.45.0.tgz"; - sha1 = "29d713a0a07f17fb2e7b61815d2010681718e93c"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "caseless-0.6.0" = self.by-version."caseless"."0.6.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "qs-1.2.2" = self.by-version."qs"."1.2.2"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - }; - optionalDependencies = { - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; - "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + self.by-version."request"."2.70.0"; + by-spec."request"."=2.67.0" = + self.by-version."request"."2.67.0"; by-spec."request".">= 2.2.9" = - self.by-version."request"."2.55.0"; - by-spec."request".">= 2.9.153" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; + by-spec."request".">= 2.44.0 < 3.0.0" = + self.by-version."request"."2.70.0"; by-spec."request".">=2.2.9" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request".">=2.27.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request".">=2.29.1" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request".">=2.30.1" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request".">=2.31.0 <3.0.0-0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; + by-spec."request".">=2.55" = + self.by-version."request"."2.70.0"; by-spec."request"."^2.34.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."^2.39.0" = - self.by-version."request"."2.55.0"; - by-spec."request"."^2.40.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."^2.47.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."^2.51.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."^2.54.0" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; + by-spec."request"."^2.55.0" = + self.by-version."request"."2.70.0"; + by-spec."request"."^2.61.0" = + self.by-version."request"."2.70.0"; + by-spec."request"."^2.62.0" = + self.by-version."request"."2.70.0"; + by-spec."request"."^2.65.0" = + self.by-version."request"."2.70.0"; + by-spec."request"."^2.67.0" = + self.by-version."request"."2.70.0"; by-spec."request"."~2" = - self.by-version."request"."2.55.0"; + self.by-version."request"."2.70.0"; by-spec."request"."~2.16.2" = self.by-version."request"."2.16.6"; - by-spec."request"."~2.21.0" = - self.by-version."request"."2.21.0"; - by-version."request"."2.21.0" = self.buildNodePackage { - name = "request-2.21.0"; - version = "2.21.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.21.0.tgz"; - name = "request-2.21.0.tgz"; - sha1 = "5728ab9c45e5a87c99daccd530298b6673a868d7"; - }; - deps = { - "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-4.0.0" = self.by-version."json-stringify-safe"."4.0.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "tunnel-agent-0.3.0" = self.by-version."tunnel-agent"."0.3.0"; - "http-signature-0.9.11" = self.by-version."http-signature"."0.9.11"; - "hawk-0.13.1" = self.by-version."hawk"."0.13.1"; - "aws-sign-0.3.0" = self.by-version."aws-sign"."0.3.0"; - "oauth-sign-0.3.0" = self.by-version."oauth-sign"."0.3.0"; - "cookie-jar-0.3.0" = self.by-version."cookie-jar"."0.3.0"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "form-data-0.0.8" = self.by-version."form-data"."0.0.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."request"."~2.27.0" = - self.by-version."request"."2.27.0"; by-spec."request"."~2.34.0" = self.by-version."request"."2.34.0"; by-version."request"."2.34.0" = self.buildNodePackage { @@ -35304,19 +39825,19 @@ version = "2.34.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.34.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.34.0.tgz"; name = "request-2.34.0.tgz"; sha1 = "b5d8b9526add4a2d4629f4d417124573996445ae"; }; deps = { "qs-0.6.6" = self.by-version."qs"."0.6.6"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "mime-1.2.11" = self.by-version."mime"."1.2.11"; }; optionalDependencies = { - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; "tunnel-agent-0.3.0" = self.by-version."tunnel-agent"."0.3.0"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; @@ -35330,75 +39851,6 @@ }; by-spec."request"."~2.40.0" = self.by-version."request"."2.40.0"; - by-spec."request"."~2.46.0" = - self.by-version."request"."2.46.0"; - by-version."request"."2.46.0" = self.buildNodePackage { - name = "request-2.46.0"; - version = "2.46.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.46.0.tgz"; - name = "request-2.46.0.tgz"; - sha1 = "359195d52eaf720bc69742579d04ad6d265a8274"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "caseless-0.6.0" = self.by-version."caseless"."0.6.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "qs-1.2.2" = self.by-version."qs"."1.2.2"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.4.0" = self.by-version."oauth-sign"."0.4.0"; - "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."request"."~2.48.0" = - self.by-version."request"."2.48.0"; - by-version."request"."2.48.0" = self.buildNodePackage { - name = "request-2.48.0"; - version = "2.48.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.48.0.tgz"; - name = "request-2.48.0.tgz"; - sha1 = "3ae2e091c9698282d58a0e6989ece2638f0f1f28"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "caseless-0.7.0" = self.by-version."caseless"."0.7.0"; - "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; - "form-data-0.1.4" = self.by-version."form-data"."0.1.4"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; - "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "qs-2.3.3" = self.by-version."qs"."2.3.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "oauth-sign-0.5.0" = self.by-version."oauth-sign"."0.5.0"; - "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; - "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; - "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; by-spec."request"."~2.51.0" = self.by-version."request"."2.51.0"; by-version."request"."2.51.0" = self.buildNodePackage { @@ -35406,26 +39858,26 @@ version = "2.51.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.51.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.51.0.tgz"; name = "request-2.51.0.tgz"; sha1 = "35d00bbecc012e55f907b1bd9e0dbd577bfef26e"; }; deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; + "bl-0.9.5" = self.by-version."bl"."0.9.5"; "caseless-0.8.0" = self.by-version."caseless"."0.8.0"; "forever-agent-0.5.2" = self.by-version."forever-agent"."0.5.2"; "form-data-0.2.0" = self.by-version."form-data"."0.2.0"; - "json-stringify-safe-5.0.0" = self.by-version."json-stringify-safe"."5.0.0"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; "qs-2.3.3" = self.by-version."qs"."2.3.3"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "tough-cookie-0.12.1" = self.by-version."tough-cookie"."0.12.1"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; "oauth-sign-0.5.0" = self.by-version."oauth-sign"."0.5.0"; "hawk-1.1.1" = self.by-version."hawk"."1.1.1"; "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; - "stringstream-0.0.4" = self.by-version."stringstream"."0.0.4"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; "combined-stream-0.0.7" = self.by-version."combined-stream"."0.0.7"; }; optionalDependencies = { @@ -35436,11142 +39888,37 @@ }; by-spec."request"."~2.55.0" = self.by-version."request"."2.55.0"; - by-spec."request-progress"."0.3.1" = - self.by-version."request-progress"."0.3.1"; - by-version."request-progress"."0.3.1" = self.buildNodePackage { - name = "request-progress-0.3.1"; - version = "0.3.1"; + by-spec."request"."~2.60.0" = + self.by-version."request"."2.60.0"; + by-version."request"."2.60.0" = self.buildNodePackage { + name = "request-2.60.0"; + version = "2.60.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request-progress/-/request-progress-0.3.1.tgz"; - name = "request-progress-0.3.1.tgz"; - sha1 = "0721c105d8a96ac6b2ce8b2c89ae2d5ecfcf6b3a"; + url = "https://registry.npmjs.org/request/-/request-2.60.0.tgz"; + name = "request-2.60.0.tgz"; + sha1 = "498820957fcdded1d37749069610c85f61a29f2d"; }; deps = { - "throttleit-0.0.2" = self.by-version."throttleit"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."request-replay"."~0.2.0" = - self.by-version."request-replay"."0.2.0"; - by-version."request-replay"."0.2.0" = self.buildNodePackage { - name = "request-replay-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/request-replay/-/request-replay-0.2.0.tgz"; - name = "request-replay-0.2.0.tgz"; - sha1 = "9b693a5d118b39f5c596ead5ed91a26444057f60"; - }; - deps = { - "retry-0.6.1" = self.by-version."retry"."0.6.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."requirejs"."~2.1" = - self.by-version."requirejs"."2.1.17"; - by-version."requirejs"."2.1.17" = self.buildNodePackage { - name = "requirejs-2.1.17"; - version = "2.1.17"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/requirejs/-/requirejs-2.1.17.tgz"; - name = "requirejs-2.1.17.tgz"; - sha1 = "d812203a34f7fd571f52e459d7748fc0f8717f27"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."requirejs"."~2.1.0" = - self.by-version."requirejs"."2.1.17"; - by-spec."resanitize"."~0.3.0" = - self.by-version."resanitize"."0.3.0"; - by-version."resanitize"."0.3.0" = self.buildNodePackage { - name = "resanitize-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resanitize/-/resanitize-0.3.0.tgz"; - name = "resanitize-0.3.0.tgz"; - sha1 = "dfcb2bf2ae1df2838439ed6cd04c78845c532353"; - }; - deps = { - "validator-1.5.1" = self.by-version."validator"."1.5.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resolve"."0.6.3" = - self.by-version."resolve"."0.6.3"; - by-version."resolve"."0.6.3" = self.buildNodePackage { - name = "resolve-0.6.3"; - version = "0.6.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-0.6.3.tgz"; - name = "resolve-0.6.3.tgz"; - sha1 = "dd957982e7e736debdf53b58a4dd91754575dd46"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resolve"."1.1.6" = - self.by-version."resolve"."1.1.6"; - by-version."resolve"."1.1.6" = self.buildNodePackage { - name = "resolve-1.1.6"; - version = "1.1.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-1.1.6.tgz"; - name = "resolve-1.1.6.tgz"; - sha1 = "d3492ad054ca800f5befa612e61beac1eec98f8f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resolve"."1.1.x" = - self.by-version."resolve"."1.1.6"; - by-spec."resolve"."^1.1.3" = - self.by-version."resolve"."1.1.6"; - by-spec."resolve"."^1.1.4" = - self.by-version."resolve"."1.1.6"; - by-spec."resolve"."~0.3.0" = - self.by-version."resolve"."0.3.1"; - by-version."resolve"."0.3.1" = self.buildNodePackage { - name = "resolve-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-0.3.1.tgz"; - name = "resolve-0.3.1.tgz"; - sha1 = "34c63447c664c70598d1c9b126fc43b2a24310a4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resolve"."~0.3.1" = - self.by-version."resolve"."0.3.1"; - by-spec."resolve"."~0.6.0" = - self.by-version."resolve"."0.6.3"; - by-spec."resolve"."~0.7.1" = - self.by-version."resolve"."0.7.4"; - by-version."resolve"."0.7.4" = self.buildNodePackage { - name = "resolve-0.7.4"; - version = "0.7.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resolve/-/resolve-0.7.4.tgz"; - name = "resolve-0.7.4.tgz"; - sha1 = "395a9ef9e873fbfe12bd14408bd91bb936003d69"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resolve"."~1.1.0" = - self.by-version."resolve"."1.1.6"; - by-spec."response-time"."1.0.0" = - self.by-version."response-time"."1.0.0"; - by-version."response-time"."1.0.0" = self.buildNodePackage { - name = "response-time-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/response-time/-/response-time-1.0.0.tgz"; - name = "response-time-1.0.0.tgz"; - sha1 = "c2bc8d08f3c359f97eae1d6da86eead175fabdc9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."response-time"."~2.0.1" = - self.by-version."response-time"."2.0.1"; - by-version."response-time"."2.0.1" = self.buildNodePackage { - name = "response-time-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/response-time/-/response-time-2.0.1.tgz"; - name = "response-time-2.0.1.tgz"; - sha1 = "c6d2cbadeac4cb251b21016fe182640c02aff343"; - }; - deps = { - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."response-time"."~2.3.0" = - self.by-version."response-time"."2.3.0"; - by-version."response-time"."2.3.0" = self.buildNodePackage { - name = "response-time-2.3.0"; - version = "2.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/response-time/-/response-time-2.3.0.tgz"; - name = "response-time-2.3.0.tgz"; - sha1 = "27cf2194fa373ef02c04781287416a3138060b68"; - }; - deps = { - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "on-headers-1.0.0" = self.by-version."on-headers"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."restify"."2.8.5" = - self.by-version."restify"."2.8.5"; - by-version."restify"."2.8.5" = self.buildNodePackage { - name = "restify-2.8.5"; - version = "2.8.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/restify/-/restify-2.8.5.tgz"; - name = "restify-2.8.5.tgz"; - sha1 = "a28ac9d690e88db60937309942efc735010b1329"; - }; - deps = { - "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; - "backoff-2.4.1" = self.by-version."backoff"."2.4.1"; - "bunyan-1.3.5" = self.by-version."bunyan"."1.3.5"; - "csv-0.4.1" = self.by-version."csv"."0.4.1"; - "deep-equal-0.2.2" = self.by-version."deep-equal"."0.2.2"; - "escape-regexp-component-1.0.2" = self.by-version."escape-regexp-component"."1.0.2"; - "formidable-1.0.17" = self.by-version."formidable"."1.0.17"; - "http-signature-0.10.1" = self.by-version."http-signature"."0.10.1"; - "keep-alive-agent-0.0.1" = self.by-version."keep-alive-agent"."0.0.1"; - "lru-cache-2.6.1" = self.by-version."lru-cache"."2.6.1"; - "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "negotiator-0.4.9" = self.by-version."negotiator"."0.4.9"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - "once-1.3.1" = self.by-version."once"."1.3.1"; - "qs-1.2.2" = self.by-version."qs"."1.2.2"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - "spdy-1.32.0" = self.by-version."spdy"."1.32.0"; - "tunnel-agent-0.4.0" = self.by-version."tunnel-agent"."0.4.0"; - "verror-1.6.0" = self.by-version."verror"."1.6.0"; - }; - optionalDependencies = { - "dtrace-provider-0.3.2" = self.by-version."dtrace-provider"."0.3.2"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."resumer"."~0.0.0" = - self.by-version."resumer"."0.0.0"; - by-version."resumer"."0.0.0" = self.buildNodePackage { - name = "resumer-0.0.0"; - version = "0.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; - name = "resumer-0.0.0.tgz"; - sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; - }; - deps = { - "through-2.3.7" = self.by-version."through"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ret"."~0.1.6" = - self.by-version."ret"."0.1.10"; - by-version."ret"."0.1.10" = self.buildNodePackage { - name = "ret-0.1.10"; - version = "0.1.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ret/-/ret-0.1.10.tgz"; - name = "ret-0.1.10.tgz"; - sha1 = "7bda7048cb6b0566617d3b15a3345f712060a1a4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rethinkdb"."*" = - self.by-version."rethinkdb"."2.0.0"; - by-version."rethinkdb"."2.0.0" = self.buildNodePackage { - name = "rethinkdb-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rethinkdb/-/rethinkdb-2.0.0.tgz"; - name = "rethinkdb-2.0.0.tgz"; - sha1 = "5d46f58a843d4dfc028193b497b56130784eea95"; - }; - deps = { - "bluebird-2.9.24" = self.by-version."bluebird"."2.9.24"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "rethinkdb" = self.by-version."rethinkdb"."2.0.0"; - by-spec."retry"."0.6.0" = - self.by-version."retry"."0.6.0"; - by-version."retry"."0.6.0" = self.buildNodePackage { - name = "retry-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/retry/-/retry-0.6.0.tgz"; - name = "retry-0.6.0.tgz"; - sha1 = "1c010713279a6fd1e8def28af0c3ff1871caa537"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."retry"."0.6.1" = - self.by-version."retry"."0.6.1"; - by-version."retry"."0.6.1" = self.buildNodePackage { - name = "retry-0.6.1"; - version = "0.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/retry/-/retry-0.6.1.tgz"; - name = "retry-0.6.1.tgz"; - sha1 = "fdc90eed943fde11b893554b8cc63d0e899ba918"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."retry"."^0.6.1" = - self.by-version."retry"."0.6.1"; - by-spec."retry"."~0.6.0" = - self.by-version."retry"."0.6.1"; - by-spec."retry"."~0.6.1" = - self.by-version."retry"."0.6.1"; - by-spec."revalidator"."0.1.x" = - self.by-version."revalidator"."0.1.8"; - by-version."revalidator"."0.1.8" = self.buildNodePackage { - name = "revalidator-0.1.8"; - version = "0.1.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz"; - name = "revalidator-0.1.8.tgz"; - sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rfile"."~1.0" = - self.by-version."rfile"."1.0.0"; - by-version."rfile"."1.0.0" = self.buildNodePackage { - name = "rfile-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rfile/-/rfile-1.0.0.tgz"; - name = "rfile-1.0.0.tgz"; - sha1 = "59708cf90ca1e74c54c3cfc5c36fdb9810435261"; - }; - deps = { - "callsite-1.0.0" = self.by-version."callsite"."1.0.0"; - "resolve-0.3.1" = self.by-version."resolve"."0.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rfile"."~1.0.0" = - self.by-version."rfile"."1.0.0"; - by-spec."rimraf"."2" = - self.by-version."rimraf"."2.3.2"; - by-version."rimraf"."2.3.2" = self.buildNodePackage { - name = "rimraf-2.3.2"; - version = "2.3.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.3.2.tgz"; - name = "rimraf-2.3.2.tgz"; - sha1 = "7304bd9275c401b89103b106b3531c1ef0c02fe9"; - }; - deps = { - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rimraf"."2.2.6" = - self.by-version."rimraf"."2.2.6"; - by-version."rimraf"."2.2.6" = self.buildNodePackage { - name = "rimraf-2.2.6"; - version = "2.2.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.2.6.tgz"; - name = "rimraf-2.2.6.tgz"; - sha1 = "c59597569b14d956ad29cacc42bdddf5f0ea4f4c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rimraf"."2.x.x" = - self.by-version."rimraf"."2.3.2"; - by-spec."rimraf".">=2.2.6" = - self.by-version."rimraf"."2.3.2"; - by-spec."rimraf"."^2.2.5" = - self.by-version."rimraf"."2.3.2"; - by-spec."rimraf"."^2.2.8" = - self.by-version."rimraf"."2.3.2"; - by-spec."rimraf"."~2" = - self.by-version."rimraf"."2.3.2"; - by-spec."rimraf"."~2.1.4" = - self.by-version."rimraf"."2.1.4"; - by-version."rimraf"."2.1.4" = self.buildNodePackage { - name = "rimraf-2.1.4"; - version = "2.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"; - name = "rimraf-2.1.4.tgz"; - sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2"; - }; - deps = { - }; - optionalDependencies = { - "graceful-fs-1.2.3" = self.by-version."graceful-fs"."1.2.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rimraf"."~2.2.0" = - self.by-version."rimraf"."2.2.8"; - by-version."rimraf"."2.2.8" = self.buildNodePackage { - name = "rimraf-2.2.8"; - version = "2.2.8"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; - name = "rimraf-2.2.8.tgz"; - sha1 = "e439be2aaee327321952730f99a8929e4fc50582"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rimraf"."~2.2.5" = - self.by-version."rimraf"."2.2.8"; - by-spec."rimraf"."~2.2.6" = - self.by-version."rimraf"."2.2.8"; - by-spec."rimraf"."~2.2.8" = - self.by-version."rimraf"."2.2.8"; - by-spec."rimraf"."~2.3.2" = - self.by-version."rimraf"."2.3.2"; - by-spec."ripemd160"."0.2.0" = - self.by-version."ripemd160"."0.2.0"; - by-version."ripemd160"."0.2.0" = self.buildNodePackage { - name = "ripemd160-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz"; - name = "ripemd160-0.2.0.tgz"; - sha1 = "2bf198bde167cacfa51c0a928e84b68bbe171fce"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ripemd160"."^1.0.0" = - self.by-version."ripemd160"."1.0.0"; - by-version."ripemd160"."1.0.0" = self.buildNodePackage { - name = "ripemd160-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ripemd160/-/ripemd160-1.0.0.tgz"; - name = "ripemd160-1.0.0.tgz"; - sha1 = "15fd251d56e58848840f3d5864a5cfbb259114c7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rndm"."~1.1.0" = - self.by-version."rndm"."1.1.0"; - by-version."rndm"."1.1.0" = self.buildNodePackage { - name = "rndm-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rndm/-/rndm-1.1.0.tgz"; - name = "rndm-1.1.0.tgz"; - sha1 = "01d1a8f1fb9b471181925b627b9049bf33074574"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."root"."^2.0.0" = - self.by-version."root"."2.0.0"; - by-version."root"."2.0.0" = self.buildNodePackage { - name = "root-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/root/-/root-2.0.0.tgz"; - name = "root-2.0.0.tgz"; - sha1 = "5cde3bc4ee9eb314c9dc64f97d9b9787df22e2f7"; - }; - deps = { - "murl-0.4.1" = self.by-version."murl"."0.4.1"; - "protein-0.5.0" = self.by-version."protein"."0.5.0"; - "network-address-0.0.5" = self.by-version."network-address"."0.0.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."router"."^0.6.2" = - self.by-version."router"."0.6.2"; - by-version."router"."0.6.2" = self.buildNodePackage { - name = "router-0.6.2"; - version = "0.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/router/-/router-0.6.2.tgz"; - name = "router-0.6.2.tgz"; - sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rrecur".">=2.0.0" = - self.by-version."rrecur"."2.0.0"; - by-version."rrecur"."2.0.0" = self.buildNodePackage { - name = "rrecur-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rrecur/-/rrecur-2.0.0.tgz"; - name = "rrecur-2.0.0.tgz"; - sha1 = "d4bcce601cb0e15be6ee8489a54474a6af97811c"; - }; - deps = { - "rrule-2.0.1" = self.by-version."rrule"."2.0.1"; - "moment-2.5.1" = self.by-version."moment"."2.5.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rrule"."~2.0.0" = - self.by-version."rrule"."2.0.1"; - by-version."rrule"."2.0.1" = self.buildNodePackage { - name = "rrule-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rrule/-/rrule-2.0.1.tgz"; - name = "rrule-2.0.1.tgz"; - sha1 = "360fc68e4391896c4c329f85073d2f5e1f41310b"; - }; - deps = { - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rss".">=0.2.1" = - self.by-version."rss"."1.1.1"; - by-version."rss"."1.1.1" = self.buildNodePackage { - name = "rss-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rss/-/rss-1.1.1.tgz"; - name = "rss-1.1.1.tgz"; - sha1 = "eb240f55e48bda42b9f546be5fc659221a95c72c"; - }; - deps = { - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "xml-1.0.0" = self.by-version."xml"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ruglify"."~1.0.0" = - self.by-version."ruglify"."1.0.0"; - by-version."ruglify"."1.0.0" = self.buildNodePackage { - name = "ruglify-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ruglify/-/ruglify-1.0.0.tgz"; - name = "ruglify-1.0.0.tgz"; - sha1 = "dc8930e2a9544a274301cc9972574c0d0986b675"; - }; - deps = { - "rfile-1.0.0" = self.by-version."rfile"."1.0.0"; - "uglify-js-2.2.5" = self.by-version."uglify-js"."2.2.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."run-applescript"."^1.0.0" = - self.by-version."run-applescript"."1.0.1"; - by-version."run-applescript"."1.0.1" = self.buildNodePackage { - name = "run-applescript-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/run-applescript/-/run-applescript-1.0.1.tgz"; - name = "run-applescript-1.0.1.tgz"; - sha1 = "9f0be74a910dcea702caba65f747563706e86fe2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."run-applescript"."^1.0.1" = - self.by-version."run-applescript"."1.0.1"; - by-spec."run-parallel"."^1.0.0" = - self.by-version."run-parallel"."1.1.0"; - by-version."run-parallel"."1.1.0" = self.buildNodePackage { - name = "run-parallel-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/run-parallel/-/run-parallel-1.1.0.tgz"; - name = "run-parallel-1.1.0.tgz"; - sha1 = "6c51c3b7e06400a39f38e34aa1e76463a015e67f"; - }; - deps = { - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."run-series"."^1.0.2" = - self.by-version."run-series"."1.1.0"; - by-version."run-series"."1.1.0" = self.buildNodePackage { - name = "run-series-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/run-series/-/run-series-1.1.0.tgz"; - name = "run-series-1.1.0.tgz"; - sha1 = "f2c3a60ad91078220d1c06bccb5124cc1f02748b"; - }; - deps = { - "dezalgo-1.0.1" = self.by-version."dezalgo"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."runforcover"."~0.0.2" = - self.by-version."runforcover"."0.0.2"; - by-version."runforcover"."0.0.2" = self.buildNodePackage { - name = "runforcover-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/runforcover/-/runforcover-0.0.2.tgz"; - name = "runforcover-0.0.2.tgz"; - sha1 = "344f057d8d45d33aebc6cc82204678f69c4857cc"; - }; - deps = { - "bunker-0.1.2" = self.by-version."bunker"."0.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rusha"."^0.8.1" = - self.by-version."rusha"."0.8.2"; - by-version."rusha"."0.8.2" = self.buildNodePackage { - name = "rusha-0.8.2"; - version = "0.8.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rusha/-/rusha-0.8.2.tgz"; - name = "rusha-0.8.2.tgz"; - sha1 = "05f3196df37b166bc080db1bbd69c84d64fa1c1f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rusha-browserify"."^0.7.3" = - self.by-version."rusha-browserify"."0.7.3"; - by-version."rusha-browserify"."0.7.3" = self.buildNodePackage { - name = "rusha-browserify-0.7.3"; - version = "0.7.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rusha-browserify/-/rusha-browserify-0.7.3.tgz"; - name = "rusha-browserify-0.7.3.tgz"; - sha1 = "03b313892e287021cc2fc391e2c154fd7d79aef2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rx"."^2.2.27" = - self.by-version."rx"."2.5.2"; - by-version."rx"."2.5.2" = self.buildNodePackage { - name = "rx-2.5.2"; - version = "2.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/rx/-/rx-2.5.2.tgz"; - name = "rx-2.5.2.tgz"; - sha1 = "52f236b5a6d24e538aa1fba88152909322a02886"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."rx"."^2.4.3" = - self.by-version."rx"."2.5.2"; - by-spec."s3-upload-stream"."~1.0.0" = - self.by-version."s3-upload-stream"."1.0.7"; - by-version."s3-upload-stream"."1.0.7" = self.buildNodePackage { - name = "s3-upload-stream-1.0.7"; - version = "1.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/s3-upload-stream/-/s3-upload-stream-1.0.7.tgz"; - name = "s3-upload-stream-1.0.7.tgz"; - sha1 = "e3f80253141c569f105a62aa50ca9b45760e481d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = [ - self.by-version."aws-sdk"."2.1.24"]; - os = [ ]; - cpu = [ ]; - }; - by-spec."s3http"."*" = - self.by-version."s3http"."0.0.5"; - by-version."s3http"."0.0.5" = self.buildNodePackage { - name = "s3http-0.0.5"; - version = "0.0.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/s3http/-/s3http-0.0.5.tgz"; - name = "s3http-0.0.5.tgz"; - sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198"; - }; - deps = { - "aws-sdk-1.18.0" = self.by-version."aws-sdk"."1.18.0"; - "commander-2.0.0" = self.by-version."commander"."2.0.0"; - "http-auth-2.0.7" = self.by-version."http-auth"."2.0.7"; - "express-3.4.4" = self.by-version."express"."3.4.4"; - "everyauth-0.4.5" = self.by-version."everyauth"."0.4.5"; - "string-1.6.1" = self.by-version."string"."1.6.1"; - "util-0.4.9" = self.by-version."util"."0.4.9"; - "crypto-0.0.3" = self.by-version."crypto"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "s3http" = self.by-version."s3http"."0.0.5"; - by-spec."safe-json-stringify"."~1" = - self.by-version."safe-json-stringify"."1.0.3"; - by-version."safe-json-stringify"."1.0.3" = self.buildNodePackage { - name = "safe-json-stringify-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.3.tgz"; - name = "safe-json-stringify-1.0.3.tgz"; - sha1 = "3cb6717660a086d07cb5bd9b7a6875bcf67bd05e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."safe-regex"."0.0.1" = - self.by-version."safe-regex"."0.0.1"; - by-version."safe-regex"."0.0.1" = self.buildNodePackage { - name = "safe-regex-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/safe-regex/-/safe-regex-0.0.1.tgz"; - name = "safe-regex-0.0.1.tgz"; - sha1 = "350ae32b49b7dc75d1cac3a18cb8b375a94ef15c"; - }; - deps = { - "ret-0.1.10" = self.by-version."ret"."0.1.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."samsam"."~1.1" = - self.by-version."samsam"."1.1.2"; - by-version."samsam"."1.1.2" = self.buildNodePackage { - name = "samsam-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz"; - name = "samsam-1.1.2.tgz"; - sha1 = "bec11fdc83a9fda063401210e40176c3024d1567"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sanitize-html"."1.x >=1.4" = - self.by-version."sanitize-html"."1.6.1"; - by-version."sanitize-html"."1.6.1" = self.buildNodePackage { - name = "sanitize-html-1.6.1"; - version = "1.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sanitize-html/-/sanitize-html-1.6.1.tgz"; - name = "sanitize-html-1.6.1.tgz"; - sha1 = "05c53fa54e919b4f4b77feb6dc2000fc5bdb4141"; - }; - deps = { - "htmlparser2-3.8.2" = self.by-version."htmlparser2"."3.8.2"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "regexp-quote-0.0.0" = self.by-version."regexp-quote"."0.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sauce-connect-launcher"."~0.6.0" = - self.by-version."sauce-connect-launcher"."0.6.1"; - by-version."sauce-connect-launcher"."0.6.1" = self.buildNodePackage { - name = "sauce-connect-launcher-0.6.1"; - version = "0.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sauce-connect-launcher/-/sauce-connect-launcher-0.6.1.tgz"; - name = "sauce-connect-launcher-0.6.1.tgz"; - sha1 = "a770184d8d9860cbb1e76c344af28cdf5d0e247a"; - }; - deps = { - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "adm-zip-0.4.7" = self.by-version."adm-zip"."0.4.7"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."saucelabs"."~0.1.0" = - self.by-version."saucelabs"."0.1.1"; - by-version."saucelabs"."0.1.1" = self.buildNodePackage { - name = "saucelabs-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/saucelabs/-/saucelabs-0.1.1.tgz"; - name = "saucelabs-0.1.1.tgz"; - sha1 = "5e0ea1cf3d735d6ea15fde94b5bda6bc15d2c06d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax"."0.3.5" = - self.by-version."sax"."0.3.5"; - by-version."sax"."0.3.5" = self.buildNodePackage { - name = "sax-0.3.5"; - version = "0.3.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.3.5.tgz"; - name = "sax-0.3.5.tgz"; - sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax"."0.4.2" = - self.by-version."sax"."0.4.2"; - by-version."sax"."0.4.2" = self.buildNodePackage { - name = "sax-0.4.2"; - version = "0.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.4.2.tgz"; - name = "sax-0.4.2.tgz"; - sha1 = "39f3b601733d6bec97105b242a2a40fd6978ac3c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax"."0.5.3" = - self.by-version."sax"."0.5.3"; - by-version."sax"."0.5.3" = self.buildNodePackage { - name = "sax-0.5.3"; - version = "0.5.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.5.3.tgz"; - name = "sax-0.5.3.tgz"; - sha1 = "3773714a0d9157caaa7302971efa5c6dcda552d6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax"."0.5.x" = - self.by-version."sax"."0.5.8"; - by-version."sax"."0.5.8" = self.buildNodePackage { - name = "sax-0.5.8"; - version = "0.5.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; - name = "sax-0.5.8.tgz"; - sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax"."0.6.x" = - self.by-version."sax"."0.6.1"; - by-version."sax"."0.6.1" = self.buildNodePackage { - name = "sax-0.6.1"; - version = "0.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sax/-/sax-0.6.1.tgz"; - name = "sax-0.6.1.tgz"; - sha1 = "563b19c7c1de892e09bfc4f2fc30e3c27f0952b9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sax".">=0.1.1" = - self.by-version."sax"."0.6.1"; - by-spec."sax".">=0.4.2" = - self.by-version."sax"."0.6.1"; - by-spec."sax"."~0.6.0" = - self.by-version."sax"."0.6.1"; - by-spec."scmp"."0.0.3" = - self.by-version."scmp"."0.0.3"; - by-version."scmp"."0.0.3" = self.buildNodePackage { - name = "scmp-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/scmp/-/scmp-0.0.3.tgz"; - name = "scmp-0.0.3.tgz"; - sha1 = "3648df2d7294641e7f78673ffc29681d9bad9073"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."scmp"."1.0.0" = - self.by-version."scmp"."1.0.0"; - by-version."scmp"."1.0.0" = self.buildNodePackage { - name = "scmp-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/scmp/-/scmp-1.0.0.tgz"; - name = "scmp-1.0.0.tgz"; - sha1 = "a0b272c3fc7292f77115646f00618b0262514e04"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."scmp"."~0.0.3" = - self.by-version."scmp"."0.0.3"; - by-spec."scmp"."~1.0.0" = - self.by-version."scmp"."1.0.0"; - by-spec."selenium-webdriver"."*" = - self.by-version."selenium-webdriver"."2.45.1"; - by-version."selenium-webdriver"."2.45.1" = self.buildNodePackage { - name = "selenium-webdriver-2.45.1"; - version = "2.45.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-2.45.1.tgz"; - name = "selenium-webdriver-2.45.1.tgz"; - sha1 = "6fc6a8ce385085a7b670edd36a379b2eddadf2c9"; - }; - deps = { - "adm-zip-0.4.4" = self.by-version."adm-zip"."0.4.4"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "tmp-0.0.24" = self.by-version."tmp"."0.0.24"; - "ws-0.7.1" = self.by-version."ws"."0.7.1"; - "xml2js-0.4.4" = self.by-version."xml2js"."0.4.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "selenium-webdriver" = self.by-version."selenium-webdriver"."2.45.1"; - by-spec."semver"."*" = - self.by-version."semver"."4.3.3"; - by-version."semver"."4.3.3" = self.buildNodePackage { - name = "semver-4.3.3"; - version = "4.3.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-4.3.3.tgz"; - name = "semver-4.3.3.tgz"; - sha1 = "15466b61220bc371cd8f0e666a9f785329ea8228"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "semver" = self.by-version."semver"."4.3.3"; - by-spec."semver"."1.1.0" = - self.by-version."semver"."1.1.0"; - by-version."semver"."1.1.0" = self.buildNodePackage { - name = "semver-1.1.0"; - version = "1.1.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-1.1.0.tgz"; - name = "semver-1.1.0.tgz"; - sha1 = "da9b9c837e31550a7c928622bc2381de7dd7a53e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."2" = - self.by-version."semver"."2.3.2"; - by-version."semver"."2.3.2" = self.buildNodePackage { - name = "semver-2.3.2"; - version = "2.3.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.3.2.tgz"; - name = "semver-2.3.2.tgz"; - sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."2 >=2.2.1 || 3.x || 4" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."2 || 3 || 4" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."2.1.0" = - self.by-version."semver"."2.1.0"; - by-version."semver"."2.1.0" = self.buildNodePackage { - name = "semver-2.1.0"; - version = "2.1.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.1.0.tgz"; - name = "semver-2.1.0.tgz"; - sha1 = "356294a90690b698774d62cf35d7c91f983e728a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."2.x" = - self.by-version."semver"."2.3.2"; - by-spec."semver"."2.x || 3.x || 4" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."4" = - self.by-version."semver"."4.3.3"; - by-spec."semver".">=2.2.1 <3" = - self.by-version."semver"."2.3.2"; - by-spec."semver".">=2.2.1 <5.0.0-0" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."^2.2.1" = - self.by-version."semver"."2.3.2"; - by-spec."semver"."^2.3.0" = - self.by-version."semver"."2.3.2"; - by-spec."semver"."^2.3.0 || 3.x || 4" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."^3.0.1" = - self.by-version."semver"."3.0.1"; - by-version."semver"."3.0.1" = self.buildNodePackage { - name = "semver-3.0.1"; - version = "3.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-3.0.1.tgz"; - name = "semver-3.0.1.tgz"; - sha1 = "720ac012515a252f91fb0dd2e99a56a70d6cf078"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."^4.0.0" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."^4.1.0" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."^4.3.0" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."^4.3.1" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."~2.0.5" = - self.by-version."semver"."2.0.11"; - by-version."semver"."2.0.11" = self.buildNodePackage { - name = "semver-2.0.11"; - version = "2.0.11"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.0.11.tgz"; - name = "semver-2.0.11.tgz"; - sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."~2.0.8" = - self.by-version."semver"."2.0.11"; - by-spec."semver"."~2.1" = - self.by-version."semver"."2.1.0"; - by-spec."semver"."~2.2.1" = - self.by-version."semver"."2.2.1"; - by-version."semver"."2.2.1" = self.buildNodePackage { - name = "semver-2.2.1"; - version = "2.2.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-2.2.1.tgz"; - name = "semver-2.2.1.tgz"; - sha1 = "7941182b3ffcc580bff1c17942acdf7951c0d213"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."~2.3.1" = - self.by-version."semver"."2.3.2"; - by-spec."semver"."~3.0.1" = - self.by-version."semver"."3.0.1"; - by-spec."semver"."~4.1.0" = - self.by-version."semver"."4.1.1"; - by-version."semver"."4.1.1" = self.buildNodePackage { - name = "semver-4.1.1"; - version = "4.1.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-4.1.1.tgz"; - name = "semver-4.1.1.tgz"; - sha1 = "8d63e2e90df847e626d48ae068cd65786b0ed3d3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."semver"."~4.3.0" = - self.by-version."semver"."4.3.3"; - by-spec."semver"."~4.3.3" = - self.by-version."semver"."4.3.3"; - by-spec."semver-diff"."^2.0.0" = - self.by-version."semver-diff"."2.0.0"; - by-version."semver-diff"."2.0.0" = self.buildNodePackage { - name = "semver-diff-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/semver-diff/-/semver-diff-2.0.0.tgz"; - name = "semver-diff-2.0.0.tgz"; - sha1 = "d43024f91aa7843937dc1379002766809f7480d2"; - }; - deps = { - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."*" = - self.by-version."send"."0.12.2"; - by-version."send"."0.12.2" = self.buildNodePackage { - name = "send-0.12.2"; - version = "0.12.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.12.2.tgz"; - name = "send-0.12.2.tgz"; - sha1 = "ba6785e47ab41aa0358b9da401ab22ff0f58eab6"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "mime-1.3.4" = self.by-version."mime"."1.3.4"; - "ms-0.7.0" = self.by-version."ms"."0.7.0"; - "on-finished-2.2.0" = self.by-version."on-finished"."2.2.0"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.0.3" = - self.by-version."send"."0.0.3"; - by-version."send"."0.0.3" = self.buildNodePackage { - name = "send-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.0.3.tgz"; - name = "send-0.0.3.tgz"; - sha1 = "4d5f843edf9d65dac31c8a5d2672c179ecb67184"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "mime-1.2.6" = self.by-version."mime"."1.2.6"; - "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; - "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.1.0" = - self.by-version."send"."0.1.0"; - by-version."send"."0.1.0" = self.buildNodePackage { - name = "send-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.1.0.tgz"; - name = "send-0.1.0.tgz"; - sha1 = "cfb08ebd3cec9b7fc1a37d9ff9e875a971cf4640"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "mime-1.2.6" = self.by-version."mime"."1.2.6"; - "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; - "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.1.4" = - self.by-version."send"."0.1.4"; - by-version."send"."0.1.4" = self.buildNodePackage { - name = "send-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.1.4.tgz"; - name = "send-0.1.4.tgz"; - sha1 = "be70d8d1be01de61821af13780b50345a4f71abd"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "fresh-0.2.0" = self.by-version."fresh"."0.2.0"; - "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.10.1" = - self.by-version."send"."0.10.1"; - by-version."send"."0.10.1" = self.buildNodePackage { - name = "send-0.10.1"; - version = "0.10.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.10.1.tgz"; - name = "send-0.10.1.tgz"; - sha1 = "7745c50ec72f115115980e8fb179aec01900e08a"; - }; - deps = { - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "depd-1.0.1" = self.by-version."depd"."1.0.1"; - "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - "on-finished-2.1.1" = self.by-version."on-finished"."2.1.1"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.12.2" = - self.by-version."send"."0.12.2"; - by-spec."send"."0.3.0" = - self.by-version."send"."0.3.0"; - by-version."send"."0.3.0" = self.buildNodePackage { - name = "send-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.3.0.tgz"; - name = "send-0.3.0.tgz"; - sha1 = "9718324634806fc75bc4f8f5e51f57d9d66606e7"; - }; - deps = { - "buffer-crc32-0.2.1" = self.by-version."buffer-crc32"."0.2.1"; - "debug-0.8.0" = self.by-version."debug"."0.8.0"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.6.0" = - self.by-version."send"."0.6.0"; - by-version."send"."0.6.0" = self.buildNodePackage { - name = "send-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.6.0.tgz"; - name = "send-0.6.0.tgz"; - sha1 = "a59da9265db7c35141e1079cf1f368ee0d59b3ab"; - }; - deps = { - "debug-1.0.3" = self.by-version."debug"."1.0.3"; - "depd-0.3.0" = self.by-version."depd"."0.3.0"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "finished-1.2.2" = self.by-version."finished"."1.2.2"; - "fresh-0.2.2" = self.by-version."fresh"."0.2.2"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.9.2" = - self.by-version."send"."0.9.2"; - by-version."send"."0.9.2" = self.buildNodePackage { - name = "send-0.9.2"; - version = "0.9.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.9.2.tgz"; - name = "send-0.9.2.tgz"; - sha1 = "77d22a0f462604451917075c6f52e69c2b3b6e25"; - }; - deps = { - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.3.1" = self.by-version."etag"."1.3.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - "on-finished-2.1.0" = self.by-version."on-finished"."2.1.0"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."0.9.3" = - self.by-version."send"."0.9.3"; - by-version."send"."0.9.3" = self.buildNodePackage { - name = "send-0.9.3"; - version = "0.9.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/send/-/send-0.9.3.tgz"; - name = "send-0.9.3.tgz"; - sha1 = "b43a7414cd089b7fbec9b755246f7c37b7b85cc0"; - }; - deps = { - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "depd-0.4.5" = self.by-version."depd"."0.4.5"; - "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "etag-1.4.0" = self.by-version."etag"."1.4.0"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - "on-finished-2.1.0" = self.by-version."on-finished"."2.1.0"; - "range-parser-1.0.2" = self.by-version."range-parser"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."send"."^0.9.2" = - self.by-version."send"."0.9.3"; - by-spec."sentiment"."0.2.3" = - self.by-version."sentiment"."0.2.3"; - by-version."sentiment"."0.2.3" = self.buildNodePackage { - name = "sentiment-0.2.3"; - version = "0.2.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sentiment/-/sentiment-0.2.3.tgz"; - name = "sentiment-0.2.3.tgz"; - sha1 = "aa3e8581268b5c384746aa3ac7218f302cff3b2a"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "lodash-1.3.1" = self.by-version."lodash"."1.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sequence"."2.2.1" = - self.by-version."sequence"."2.2.1"; - by-version."sequence"."2.2.1" = self.buildNodePackage { - name = "sequence-2.2.1"; - version = "2.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sequence/-/sequence-2.2.1.tgz"; - name = "sequence-2.2.1.tgz"; - sha1 = "7f5617895d44351c0a047e764467690490a16b03"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sequencify"."~0.0.7" = - self.by-version."sequencify"."0.0.7"; - by-version."sequencify"."0.0.7" = self.buildNodePackage { - name = "sequencify-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz"; - name = "sequencify-0.0.7.tgz"; - sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serialport"."1.4.10" = - self.by-version."serialport"."1.4.10"; - by-version."serialport"."1.4.10" = self.buildNodePackage { - name = "serialport-1.4.10"; - version = "1.4.10"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/serialport/-/serialport-1.4.10.tgz"; - name = "serialport-1.4.10.tgz"; - sha1 = "dcefd2cea7a351685716b8ccb43b93822480fb93"; - }; - deps = { - "node-pre-gyp-0.5.31" = self.by-version."node-pre-gyp"."0.5.31"; - "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "sf-0.1.7" = self.by-version."sf"."0.1.7"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "nan-1.3.0" = self.by-version."nan"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-favicon"."^2.1.1" = - self.by-version."serve-favicon"."2.2.0"; - by-version."serve-favicon"."2.2.0" = self.buildNodePackage { - name = "serve-favicon-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-favicon/-/serve-favicon-2.2.0.tgz"; - name = "serve-favicon-2.2.0.tgz"; - sha1 = "a0c25ee8a652e1a638a67db46269cd52a8705858"; - }; - deps = { - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "ms-0.7.0" = self.by-version."ms"."0.7.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-favicon"."^2.2.0" = - self.by-version."serve-favicon"."2.2.0"; - by-spec."serve-favicon"."~2.1.4" = - self.by-version."serve-favicon"."2.1.7"; - by-version."serve-favicon"."2.1.7" = self.buildNodePackage { - name = "serve-favicon-2.1.7"; - version = "2.1.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-favicon/-/serve-favicon-2.1.7.tgz"; - name = "serve-favicon-2.1.7.tgz"; - sha1 = "7b911c0ea4c0f9a2ad686daa5222766f7bc7db79"; - }; - deps = { - "etag-1.5.1" = self.by-version."etag"."1.5.1"; - "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; - "ms-0.6.2" = self.by-version."ms"."0.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-favicon"."~2.1.5" = - self.by-version."serve-favicon"."2.1.7"; - by-spec."serve-favicon"."~2.2.0" = - self.by-version."serve-favicon"."2.2.0"; - by-spec."serve-index"."1.0.1" = - self.by-version."serve-index"."1.0.1"; - by-version."serve-index"."1.0.1" = self.buildNodePackage { - name = "serve-index-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-index/-/serve-index-1.0.1.tgz"; - name = "serve-index-1.0.1.tgz"; - sha1 = "2782ee8ede6cccaae54957962c4715e8ce1921a6"; - }; - deps = { - "batch-0.5.0" = self.by-version."batch"."0.5.0"; - "negotiator-0.4.2" = self.by-version."negotiator"."0.4.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-index"."~1.2.1" = - self.by-version."serve-index"."1.2.1"; - by-version."serve-index"."1.2.1" = self.buildNodePackage { - name = "serve-index-1.2.1"; - version = "1.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-index/-/serve-index-1.2.1.tgz"; - name = "serve-index-1.2.1.tgz"; - sha1 = "854daef00ac9ff2f5bfda1c019b78fb0ed6d2e6f"; - }; - deps = { - "accepts-1.1.4" = self.by-version."accepts"."1.1.4"; - "batch-0.5.1" = self.by-version."batch"."0.5.1"; - "debug-2.0.0" = self.by-version."debug"."2.0.0"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-index"."~1.6.3" = - self.by-version."serve-index"."1.6.3"; - by-version."serve-index"."1.6.3" = self.buildNodePackage { - name = "serve-index-1.6.3"; - version = "1.6.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-index/-/serve-index-1.6.3.tgz"; - name = "serve-index-1.6.3.tgz"; - sha1 = "639056494ea59470a2c9518c28e7f225a342fd79"; - }; - deps = { - "accepts-1.2.5" = self.by-version."accepts"."1.2.5"; - "batch-0.5.2" = self.by-version."batch"."0.5.2"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-static"."1.1.0" = - self.by-version."serve-static"."1.1.0"; - by-version."serve-static"."1.1.0" = self.buildNodePackage { - name = "serve-static-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-static/-/serve-static-1.1.0.tgz"; - name = "serve-static-1.1.0.tgz"; - sha1 = "454dfa05bb3ddd4e701a8915b83a278aa91c5643"; - }; - deps = { - "parseurl-1.0.1" = self.by-version."parseurl"."1.0.1"; - "send-0.3.0" = self.by-version."send"."0.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-static"."~1.3.2" = - self.by-version."serve-static"."1.3.2"; - by-version."serve-static"."1.3.2" = self.buildNodePackage { - name = "serve-static-1.3.2"; - version = "1.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-static/-/serve-static-1.3.2.tgz"; - name = "serve-static-1.3.2.tgz"; - sha1 = "d904a6cbf55f511c78138f6f45ee6e69d9d105ca"; - }; - deps = { - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "parseurl-1.1.3" = self.by-version."parseurl"."1.1.3"; - "send-0.6.0" = self.by-version."send"."0.6.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-static"."~1.6.2" = - self.by-version."serve-static"."1.6.5"; - by-version."serve-static"."1.6.5" = self.buildNodePackage { - name = "serve-static-1.6.5"; - version = "1.6.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-static/-/serve-static-1.6.5.tgz"; - name = "serve-static-1.6.5.tgz"; - sha1 = "aca17e0deac4a87729f6078781b7d27f63aa3d9c"; - }; - deps = { - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "send-0.9.3" = self.by-version."send"."0.9.3"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-static"."~1.6.4" = - self.by-version."serve-static"."1.6.5"; - by-spec."serve-static"."~1.7.1" = - self.by-version."serve-static"."1.7.2"; - by-version."serve-static"."1.7.2" = self.buildNodePackage { - name = "serve-static-1.7.2"; - version = "1.7.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-static/-/serve-static-1.7.2.tgz"; - name = "serve-static-1.7.2.tgz"; - sha1 = "3164ce06d4e6c3459bdcc9d6018fb4fb35e84b39"; - }; - deps = { - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "send-0.10.1" = self.by-version."send"."0.10.1"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."serve-static"."~1.9.2" = - self.by-version."serve-static"."1.9.2"; - by-version."serve-static"."1.9.2" = self.buildNodePackage { - name = "serve-static-1.9.2"; - version = "1.9.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/serve-static/-/serve-static-1.9.2.tgz"; - name = "serve-static-1.9.2.tgz"; - sha1 = "069fa32453557b218ec2e39140c82d8905d5672c"; - }; - deps = { - "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; - "parseurl-1.3.0" = self.by-version."parseurl"."1.3.0"; - "send-0.12.2" = self.by-version."send"."0.12.2"; - "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."set-immediate-shim"."^1.0.0" = - self.by-version."set-immediate-shim"."1.0.1"; - by-version."set-immediate-shim"."1.0.1" = self.buildNodePackage { - name = "set-immediate-shim-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/set-immediate-shim/-/set-immediate-shim-1.0.1.tgz"; - name = "set-immediate-shim-1.0.1.tgz"; - sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."setimmediate"."1.0.1" = - self.by-version."setimmediate"."1.0.1"; - by-version."setimmediate"."1.0.1" = self.buildNodePackage { - name = "setimmediate-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/setimmediate/-/setimmediate-1.0.1.tgz"; - name = "setimmediate-1.0.1.tgz"; - sha1 = "a9ca56ccbd6a4c3334855f060abcdece5c42ebb7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sf"."0.1.7" = - self.by-version."sf"."0.1.7"; - by-version."sf"."0.1.7" = self.buildNodePackage { - name = "sf-0.1.7"; - version = "0.1.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sf/-/sf-0.1.7.tgz"; - name = "sf-0.1.7.tgz"; - sha1 = "806ed032d7225c7fb6394b0bdbfe1ea936fe6d74"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sha"."~1.0.1" = - self.by-version."sha"."1.0.1"; - by-version."sha"."1.0.1" = self.buildNodePackage { - name = "sha-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sha/-/sha-1.0.1.tgz"; - name = "sha-1.0.1.tgz"; - sha1 = "9b87a92113103e7406f7e7ef00006f3fa1975122"; - }; - deps = { - }; - optionalDependencies = { - "graceful-fs-1.2.3" = self.by-version."graceful-fs"."1.2.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sha"."~1.3.0" = - self.by-version."sha"."1.3.0"; - by-version."sha"."1.3.0" = self.buildNodePackage { - name = "sha-1.3.0"; - version = "1.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sha/-/sha-1.3.0.tgz"; - name = "sha-1.3.0.tgz"; - sha1 = "79f4787045d0ede7327d702c25c443460dbc6764"; - }; - deps = { - }; - optionalDependencies = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sha.js"."2.2.6" = - self.by-version."sha.js"."2.2.6"; - by-version."sha.js"."2.2.6" = self.buildNodePackage { - name = "sha.js-2.2.6"; - version = "2.2.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz"; - name = "sha.js-2.2.6.tgz"; - sha1 = "17ddeddc5f722fb66501658895461977867315ba"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sha.js"."^2.3.6" = - self.by-version."sha.js"."2.4.0"; - by-version."sha.js"."2.4.0" = self.buildNodePackage { - name = "sha.js-2.4.0"; - version = "2.4.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/sha.js/-/sha.js-2.4.0.tgz"; - name = "sha.js-2.4.0.tgz"; - sha1 = "ba7f1a4fe312a88b90dab80f228ab24ef31a7ac3"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sha.js"."~2.3.0" = - self.by-version."sha.js"."2.3.6"; - by-version."sha.js"."2.3.6" = self.buildNodePackage { - name = "sha.js-2.3.6"; - version = "2.3.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/sha.js/-/sha.js-2.3.6.tgz"; - name = "sha.js-2.3.6.tgz"; - sha1 = "10585a3f7fd8f1da715adac6f9d54516da0670cc"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shallow-copy"."0.0.1" = - self.by-version."shallow-copy"."0.0.1"; - by-version."shallow-copy"."0.0.1" = self.buildNodePackage { - name = "shallow-copy-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz"; - name = "shallow-copy-0.0.1.tgz"; - sha1 = "415f42702d73d810330292cc5ee86eae1a11a170"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shasum"."^1.0.0" = - self.by-version."shasum"."1.0.1"; - by-version."shasum"."1.0.1" = self.buildNodePackage { - name = "shasum-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/shasum/-/shasum-1.0.1.tgz"; - name = "shasum-1.0.1.tgz"; - sha1 = "0e0e8506a3b9e6c371ad9173845d04ff9126587f"; - }; - deps = { - "json-stable-stringify-0.0.1" = self.by-version."json-stable-stringify"."0.0.1"; - "sha.js-2.3.6" = self.by-version."sha.js"."2.3.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shell-quote"."^1.4.2" = - self.by-version."shell-quote"."1.4.3"; - by-version."shell-quote"."1.4.3" = self.buildNodePackage { - name = "shell-quote-1.4.3"; - version = "1.4.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/shell-quote/-/shell-quote-1.4.3.tgz"; - name = "shell-quote-1.4.3.tgz"; - sha1 = "952c44e0b1ed9013ef53958179cc643e8777466b"; - }; - deps = { - "jsonify-0.0.0" = self.by-version."jsonify"."0.0.0"; - "array-filter-0.0.1" = self.by-version."array-filter"."0.0.1"; - "array-reduce-0.0.0" = self.by-version."array-reduce"."0.0.0"; - "array-map-0.0.0" = self.by-version."array-map"."0.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shell-quote"."~0.0.1" = - self.by-version."shell-quote"."0.0.1"; - by-version."shell-quote"."0.0.1" = self.buildNodePackage { - name = "shell-quote-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/shell-quote/-/shell-quote-0.0.1.tgz"; - name = "shell-quote-0.0.1.tgz"; - sha1 = "1a41196f3c0333c482323593d6886ecf153dd986"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shelljs"."*" = - self.by-version."shelljs"."0.4.0"; - by-version."shelljs"."0.4.0" = self.buildNodePackage { - name = "shelljs-0.4.0"; - version = "0.4.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/shelljs/-/shelljs-0.4.0.tgz"; - name = "shelljs-0.4.0.tgz"; - sha1 = "199fe9e2de379efd03d345ff14062525e4b31ec2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "shelljs" = self.by-version."shelljs"."0.4.0"; - by-spec."shelljs"."0.3.0" = - self.by-version."shelljs"."0.3.0"; - by-version."shelljs"."0.3.0" = self.buildNodePackage { - name = "shelljs-0.3.0"; - version = "0.3.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; - name = "shelljs-0.3.0.tgz"; - sha1 = "3596e6307a781544f591f37da618360f31db57b1"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."shelljs"."0.3.x" = - self.by-version."shelljs"."0.3.0"; - by-spec."should"."*" = - self.by-version."should"."6.0.1"; - by-version."should"."6.0.1" = self.buildNodePackage { - name = "should-6.0.1"; - version = "6.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/should/-/should-6.0.1.tgz"; - name = "should-6.0.1.tgz"; - sha1 = "3d93d1be4a2576797a695bc9335d985b75ff751d"; - }; - deps = { - "should-equal-0.3.1" = self.by-version."should-equal"."0.3.1"; - "should-format-0.0.7" = self.by-version."should-format"."0.0.7"; - "should-type-0.0.4" = self.by-version."should-type"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "should" = self.by-version."should"."6.0.1"; - by-spec."should-equal"."0.3.1" = - self.by-version."should-equal"."0.3.1"; - by-version."should-equal"."0.3.1" = self.buildNodePackage { - name = "should-equal-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/should-equal/-/should-equal-0.3.1.tgz"; - name = "should-equal-0.3.1.tgz"; - sha1 = "bd8ea97a6748e39fad476a3be6fd72ebc2e72bf0"; - }; - deps = { - "should-type-0.0.4" = self.by-version."should-type"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."should-format"."0.0.7" = - self.by-version."should-format"."0.0.7"; - by-version."should-format"."0.0.7" = self.buildNodePackage { - name = "should-format-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/should-format/-/should-format-0.0.7.tgz"; - name = "should-format-0.0.7.tgz"; - sha1 = "1e2ef86bd91da9c2e0412335b56ababd9a2fde12"; - }; - deps = { - "should-type-0.0.4" = self.by-version."should-type"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."should-type"."0.0.4" = - self.by-version."should-type"."0.0.4"; - by-version."should-type"."0.0.4" = self.buildNodePackage { - name = "should-type-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/should-type/-/should-type-0.0.4.tgz"; - name = "should-type-0.0.4.tgz"; - sha1 = "0132a05417a6126866426acf116f1ed5623a5cd0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sigmund"."~1.0.0" = - self.by-version."sigmund"."1.0.0"; - by-version."sigmund"."1.0.0" = self.buildNodePackage { - name = "sigmund-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz"; - name = "sigmund-1.0.0.tgz"; - sha1 = "66a2b3a749ae8b5fb89efd4fcc01dc94fbe02296"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."signals"."<2.0" = - self.by-version."signals"."1.0.0"; - by-version."signals"."1.0.0" = self.buildNodePackage { - name = "signals-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/signals/-/signals-1.0.0.tgz"; - name = "signals-1.0.0.tgz"; - sha1 = "65f0c1599352b35372ecaae5a250e6107376ed69"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."signals".">0.7 <2.0" = - self.by-version."signals"."1.0.0"; - by-spec."signals"."~1.0.0" = - self.by-version."signals"."1.0.0"; - by-spec."simple-fmt"."~0.1.0" = - self.by-version."simple-fmt"."0.1.0"; - by-version."simple-fmt"."0.1.0" = self.buildNodePackage { - name = "simple-fmt-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz"; - name = "simple-fmt-0.1.0.tgz"; - sha1 = "191bf566a59e6530482cb25ab53b4a8dc85c3a6b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simple-get"."^1.3.0" = - self.by-version."simple-get"."1.3.3"; - by-version."simple-get"."1.3.3" = self.buildNodePackage { - name = "simple-get-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simple-get/-/simple-get-1.3.3.tgz"; - name = "simple-get-1.3.3.tgz"; - sha1 = "03e4102ff8372034dbc92c2630a78f8440dbf81a"; - }; - deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simple-get"."^1.3.1" = - self.by-version."simple-get"."1.3.3"; - by-spec."simple-is"."~0.2.0" = - self.by-version."simple-is"."0.2.0"; - by-version."simple-is"."0.2.0" = self.buildNodePackage { - name = "simple-is-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz"; - name = "simple-is-0.2.0.tgz"; - sha1 = "2abb75aade39deb5cc815ce10e6191164850baf0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simple-lru-cache"."0.0.x" = - self.by-version."simple-lru-cache"."0.0.2"; - by-version."simple-lru-cache"."0.0.2" = self.buildNodePackage { - name = "simple-lru-cache-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simple-lru-cache/-/simple-lru-cache-0.0.2.tgz"; - name = "simple-lru-cache-0.0.2.tgz"; - sha1 = "d59cc3a193c1a5d0320f84ee732f6e4713e511dd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simple-sha1"."^2.0.0" = - self.by-version."simple-sha1"."2.0.7"; - by-version."simple-sha1"."2.0.7" = self.buildNodePackage { - name = "simple-sha1-2.0.7"; - version = "2.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simple-sha1/-/simple-sha1-2.0.7.tgz"; - name = "simple-sha1-2.0.7.tgz"; - sha1 = "765ef3f6a9ef4bf9b734e973cbd63a7a82f887b6"; - }; - deps = { - "rusha-0.8.2" = self.by-version."rusha"."0.8.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simplediff"."~0.1.1" = - self.by-version."simplediff"."0.1.1"; - by-version."simplediff"."0.1.1" = self.buildNodePackage { - name = "simplediff-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz"; - name = "simplediff-0.1.1.tgz"; - sha1 = "b0caeeb093223370033c6c3aa1130dc86c6a087c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simplesmtp".">= 0.1.22" = - self.by-version."simplesmtp"."0.3.35"; - by-version."simplesmtp"."0.3.35" = self.buildNodePackage { - name = "simplesmtp-0.3.35"; - version = "0.3.35"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/simplesmtp/-/simplesmtp-0.3.35.tgz"; - name = "simplesmtp-0.3.35.tgz"; - sha1 = "017b1eb8b26317ac36d2a2a8a932631880736a03"; - }; - deps = { - "rai-0.1.12" = self.by-version."rai"."0.1.12"; - "xoauth2-0.1.8" = self.by-version."xoauth2"."0.1.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."simplesmtp"."~0.2 || ~0.3.30" = - self.by-version."simplesmtp"."0.3.35"; - by-spec."simplesmtp"."~0.3.30" = - self.by-version."simplesmtp"."0.3.35"; - by-spec."single-line-log"."^0.4.1" = - self.by-version."single-line-log"."0.4.1"; - by-version."single-line-log"."0.4.1" = self.buildNodePackage { - name = "single-line-log-0.4.1"; - version = "0.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/single-line-log/-/single-line-log-0.4.1.tgz"; - name = "single-line-log-0.4.1.tgz"; - sha1 = "87a55649f749d783ec0dcd804e8140d9873c7cee"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sinon"."*" = - self.by-version."sinon"."1.14.1"; - by-version."sinon"."1.14.1" = self.buildNodePackage { - name = "sinon-1.14.1"; - version = "1.14.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sinon/-/sinon-1.14.1.tgz"; - name = "sinon-1.14.1.tgz"; - sha1 = "d82797841918734507c94b7a73e3f560904578ad"; - }; - deps = { - "formatio-1.1.1" = self.by-version."formatio"."1.1.1"; - "util-0.10.3" = self.by-version."util"."0.10.3"; - "lolex-1.1.0" = self.by-version."lolex"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "sinon" = self.by-version."sinon"."1.14.1"; - by-spec."sinopia"."*" = - self.by-version."sinopia"."1.2.1"; - by-version."sinopia"."1.2.1" = self.buildNodePackage { - name = "sinopia-1.2.1"; - version = "1.2.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/sinopia/-/sinopia-1.2.1.tgz"; - name = "sinopia-1.2.1.tgz"; - sha1 = "3469d1b72607e70d213d12caafeefef473bbb231"; - }; - deps = { - "express-5.0.0-alpha.1" = self.by-version."express"."5.0.0-alpha.1"; - "express-json5-0.1.0" = self.by-version."express-json5"."0.1.0"; - "body-parser-1.12.3" = self.by-version."body-parser"."1.12.3"; - "compression-1.4.3" = self.by-version."compression"."1.4.3"; - "commander-2.8.0" = self.by-version."commander"."2.8.0"; - "js-yaml-3.2.7" = self.by-version."js-yaml"."3.2.7"; - "cookies-0.5.0" = self.by-version."cookies"."0.5.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "es6-shim-0.21.1" = self.by-version."es6-shim"."0.21.1"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; - "bunyan-1.3.5" = self.by-version."bunyan"."1.3.5"; - "handlebars-2.0.0" = self.by-version."handlebars"."2.0.0"; - "highlight.js-8.5.0" = self.by-version."highlight.js"."8.5.0"; - "lunr-0.5.8" = self.by-version."lunr"."0.5.8"; - "render-readme-1.3.0" = self.by-version."render-readme"."1.3.0"; - "jju-1.2.0" = self.by-version."jju"."1.2.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "sinopia-htpasswd-0.4.5" = self.by-version."sinopia-htpasswd"."0.4.5"; - "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; - }; - optionalDependencies = { - "fs-ext-0.4.4" = self.by-version."fs-ext"."0.4.4"; - "crypt3-0.1.8" = self.by-version."crypt3"."0.1.8"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "sinopia" = self.by-version."sinopia"."1.2.1"; - by-spec."sinopia-htpasswd".">= 0.4.3" = - self.by-version."sinopia-htpasswd"."0.4.5"; - by-version."sinopia-htpasswd"."0.4.5" = self.buildNodePackage { - name = "sinopia-htpasswd-0.4.5"; - version = "0.4.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sinopia-htpasswd/-/sinopia-htpasswd-0.4.5.tgz"; - name = "sinopia-htpasswd-0.4.5.tgz"; - sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9"; - }; - deps = { - }; - optionalDependencies = { - "crypt3-0.1.8" = self.by-version."crypt3"."0.1.8"; - "fs-ext-0.4.4" = self.by-version."fs-ext"."0.4.4"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."slasp"."*" = - self.by-version."slasp"."0.0.4"; - by-version."slasp"."0.0.4" = self.buildNodePackage { - name = "slasp-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz"; - name = "slasp-0.0.4.tgz"; - sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "slasp" = self.by-version."slasp"."0.0.4"; - by-spec."slasp"."0.0.4" = - self.by-version."slasp"."0.0.4"; - by-spec."sleep"."*" = - self.by-version."sleep"."2.0.0"; - by-version."sleep"."2.0.0" = self.buildNodePackage { - name = "sleep-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sleep/-/sleep-2.0.0.tgz"; - name = "sleep-2.0.0.tgz"; - sha1 = "96d8ef97970ecad464b146ea5e86dd5d6ceb65bc"; - }; - deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "sleep" = self.by-version."sleep"."2.0.0"; - by-spec."sleep"."^1.2.0" = - self.by-version."sleep"."1.2.0"; - by-version."sleep"."1.2.0" = self.buildNodePackage { - name = "sleep-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sleep/-/sleep-1.2.0.tgz"; - name = "sleep-1.2.0.tgz"; - sha1 = "5d99de85b8c9819ed2f66251a04ec462da8c66dc"; - }; - deps = { - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sliced"."0.0.3" = - self.by-version."sliced"."0.0.3"; - by-version."sliced"."0.0.3" = self.buildNodePackage { - name = "sliced-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sliced/-/sliced-0.0.3.tgz"; - name = "sliced-0.0.3.tgz"; - sha1 = "4f0bac2171eb17162c3ba6df81f5cf040f7c7e50"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sliced"."0.0.4" = - self.by-version."sliced"."0.0.4"; - by-version."sliced"."0.0.4" = self.buildNodePackage { - name = "sliced-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sliced/-/sliced-0.0.4.tgz"; - name = "sliced-0.0.4.tgz"; - sha1 = "34f89a6db1f31fa525f5a570f5bcf877cf0955ee"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sliced"."0.0.5" = - self.by-version."sliced"."0.0.5"; - by-version."sliced"."0.0.5" = self.buildNodePackage { - name = "sliced-0.0.5"; - version = "0.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sliced/-/sliced-0.0.5.tgz"; - name = "sliced-0.0.5.tgz"; - sha1 = "5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."slide"."*" = - self.by-version."slide"."1.1.6"; - by-version."slide"."1.1.6" = self.buildNodePackage { - name = "slide-1.1.6"; - version = "1.1.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; - name = "slide-1.1.6.tgz"; - sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."slide"."^1.1.3" = - self.by-version."slide"."1.1.6"; - by-spec."slide"."^1.1.5" = - self.by-version."slide"."1.1.6"; - by-spec."slide"."~1.1.3" = - self.by-version."slide"."1.1.6"; - by-spec."slide"."~1.1.4" = - self.by-version."slide"."1.1.6"; - by-spec."slide"."~1.1.6" = - self.by-version."slide"."1.1.6"; - by-spec."sloc"."*" = - self.by-version."sloc"."0.1.9"; - by-version."sloc"."0.1.9" = self.buildNodePackage { - name = "sloc-0.1.9"; - version = "0.1.9"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/sloc/-/sloc-0.1.9.tgz"; - name = "sloc-0.1.9.tgz"; - sha1 = "af12b4f713d079c65056435fe67ff11580770873"; - }; - deps = { - "commander-2.5.1" = self.by-version."commander"."2.5.1"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "cli-table-0.3.1" = self.by-version."cli-table"."0.3.1"; - "readdirp-1.3.0" = self.by-version."readdirp"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "sloc" = self.by-version."sloc"."0.1.9"; - by-spec."smartdc"."*" = - self.by-version."smartdc"."7.3.1"; - by-version."smartdc"."7.3.1" = self.buildNodePackage { - name = "smartdc-7.3.1"; - version = "7.3.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/smartdc/-/smartdc-7.3.1.tgz"; - name = "smartdc-7.3.1.tgz"; - sha1 = "c0edc6bd75dc63393d0bbfb8554f0f1136f1689c"; - }; - deps = { - "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; - "lru-cache-2.2.0" = self.by-version."lru-cache"."2.2.0"; - "nopt-2.0.0" = self.by-version."nopt"."2.0.0"; - "restify-2.8.5" = self.by-version."restify"."2.8.5"; - "bunyan-1.3.4" = self.by-version."bunyan"."1.3.4"; - "clone-0.1.6" = self.by-version."clone"."0.1.6"; - "smartdc-auth-1.0.3" = self.by-version."smartdc-auth"."1.0.3"; - "cmdln-1.3.2" = self.by-version."cmdln"."1.3.2"; - "dashdash-1.5.0" = self.by-version."dashdash"."1.5.0"; - "vasync-1.6.2" = self.by-version."vasync"."1.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "smartdc" = self.by-version."smartdc"."7.3.1"; - by-spec."smartdc-auth"."1.0.3" = - self.by-version."smartdc-auth"."1.0.3"; - by-version."smartdc-auth"."1.0.3" = self.buildNodePackage { - name = "smartdc-auth-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/smartdc-auth/-/smartdc-auth-1.0.3.tgz"; - name = "smartdc-auth-1.0.3.tgz"; - sha1 = "cc14286b2dc74d0a4e3abb6351e083b40b98c1ad"; - }; - deps = { - "assert-plus-0.1.2" = self.by-version."assert-plus"."0.1.2"; - "clone-0.1.5" = self.by-version."clone"."0.1.5"; - "ssh-agent-0.2.3" = self.by-version."ssh-agent"."0.2.3"; - "once-1.3.0" = self.by-version."once"."1.3.0"; - "vasync-1.4.3" = self.by-version."vasync"."1.4.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."smtp-connection"."^1.0.0" = - self.by-version."smtp-connection"."1.2.0"; - by-version."smtp-connection"."1.2.0" = self.buildNodePackage { - name = "smtp-connection-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/smtp-connection/-/smtp-connection-1.2.0.tgz"; - name = "smtp-connection-1.2.0.tgz"; - sha1 = "04bf0bcfc4a7417a201595781d2439dddbf0cd19"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."smtp-connection"."^1.2.0" = - self.by-version."smtp-connection"."1.2.0"; - by-spec."sntp"."0.1.x" = - self.by-version."sntp"."0.1.4"; - by-version."sntp"."0.1.4" = self.buildNodePackage { - name = "sntp-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz"; - name = "sntp-0.1.4.tgz"; - sha1 = "5ef481b951a7b29affdf4afd7f26838fc1120f84"; - }; - deps = { - "hoek-0.7.6" = self.by-version."hoek"."0.7.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sntp"."0.2.x" = - self.by-version."sntp"."0.2.4"; - by-version."sntp"."0.2.4" = self.buildNodePackage { - name = "sntp-0.2.4"; - version = "0.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz"; - name = "sntp-0.2.4.tgz"; - sha1 = "fb885f18b0f3aad189f824862536bceeec750900"; - }; - deps = { - "hoek-0.9.1" = self.by-version."hoek"."0.9.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sntp"."1.x.x" = - self.by-version."sntp"."1.0.9"; - by-version."sntp"."1.0.9" = self.buildNodePackage { - name = "sntp-1.0.9"; - version = "1.0.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; - name = "sntp-1.0.9.tgz"; - sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; - }; - deps = { - "hoek-2.12.0" = self.by-version."hoek"."2.12.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io"."0.9.14" = - self.by-version."socket.io"."0.9.14"; - by-version."socket.io"."0.9.14" = self.buildNodePackage { - name = "socket.io-0.9.14"; - version = "0.9.14"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io/-/socket.io-0.9.14.tgz"; - name = "socket.io-0.9.14.tgz"; - sha1 = "81af80ebf3ee8f7f6e71b1495db91f8fa53ff667"; - }; - deps = { - "socket.io-client-0.9.11" = self.by-version."socket.io-client"."0.9.11"; - "policyfile-0.0.4" = self.by-version."policyfile"."0.0.4"; - "base64id-0.1.0" = self.by-version."base64id"."0.1.0"; - }; - optionalDependencies = { - "redis-0.7.3" = self.by-version."redis"."0.7.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io"."1.0.6" = - self.by-version."socket.io"."1.0.6"; - by-version."socket.io"."1.0.6" = self.buildNodePackage { - name = "socket.io-1.0.6"; - version = "1.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz"; - name = "socket.io-1.0.6.tgz"; - sha1 = "b566532888dae3ac9058a12f294015ebdfa8084a"; - }; - deps = { - "engine.io-1.3.1" = self.by-version."engine.io"."1.3.1"; - "socket.io-parser-2.2.0" = self.by-version."socket.io-parser"."2.2.0"; - "socket.io-client-1.0.6" = self.by-version."socket.io-client"."1.0.6"; - "socket.io-adapter-0.2.0" = self.by-version."socket.io-adapter"."0.2.0"; - "has-binary-data-0.1.1" = self.by-version."has-binary-data"."0.1.1"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io"."~0.9.16" = - self.by-version."socket.io"."0.9.17"; - by-version."socket.io"."0.9.17" = self.buildNodePackage { - name = "socket.io-0.9.17"; - version = "0.9.17"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io/-/socket.io-0.9.17.tgz"; - name = "socket.io-0.9.17.tgz"; - sha1 = "ca389268fb2cd5df4b59218490a08c907581c9ec"; - }; - deps = { - "socket.io-client-0.9.16" = self.by-version."socket.io-client"."0.9.16"; - "policyfile-0.0.4" = self.by-version."policyfile"."0.0.4"; - "base64id-0.1.0" = self.by-version."base64id"."0.1.0"; - }; - optionalDependencies = { - "redis-0.7.3" = self.by-version."redis"."0.7.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io"."~0.9.17" = - self.by-version."socket.io"."0.9.17"; - by-spec."socket.io"."~1.3.0" = - self.by-version."socket.io"."1.3.5"; - by-version."socket.io"."1.3.5" = self.buildNodePackage { - name = "socket.io-1.3.5"; - version = "1.3.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io/-/socket.io-1.3.5.tgz"; - name = "socket.io-1.3.5.tgz"; - sha1 = "bfd609f37626889e94df9d3526db79a84255f1d8"; - }; - deps = { - "engine.io-1.5.1" = self.by-version."engine.io"."1.5.1"; - "socket.io-parser-2.2.4" = self.by-version."socket.io-parser"."2.2.4"; - "socket.io-client-1.3.5" = self.by-version."socket.io-client"."1.3.5"; - "socket.io-adapter-0.3.1" = self.by-version."socket.io-adapter"."0.3.1"; - "has-binary-data-0.1.3" = self.by-version."has-binary-data"."0.1.3"; - "debug-2.1.0" = self.by-version."debug"."2.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-adapter"."0.2.0" = - self.by-version."socket.io-adapter"."0.2.0"; - by-version."socket.io-adapter"."0.2.0" = self.buildNodePackage { - name = "socket.io-adapter-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.2.0.tgz"; - name = "socket.io-adapter-0.2.0.tgz"; - sha1 = "bd39329b8961371787e24f345b074ec9cf000e33"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "socket.io-parser-2.1.2" = self.by-version."socket.io-parser"."2.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-adapter"."0.3.1" = - self.by-version."socket.io-adapter"."0.3.1"; - by-version."socket.io-adapter"."0.3.1" = self.buildNodePackage { - name = "socket.io-adapter-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.3.1.tgz"; - name = "socket.io-adapter-0.3.1.tgz"; - sha1 = "df81f970b4df6493902d93e519c7b72755c3a958"; - }; - deps = { - "debug-1.0.2" = self.by-version."debug"."1.0.2"; - "socket.io-parser-2.2.2" = self.by-version."socket.io-parser"."2.2.2"; - "object-keys-1.0.1" = self.by-version."object-keys"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-client"."0.9.11" = - self.by-version."socket.io-client"."0.9.11"; - by-version."socket.io-client"."0.9.11" = self.buildNodePackage { - name = "socket.io-client-0.9.11"; - version = "0.9.11"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.11.tgz"; - name = "socket.io-client-0.9.11.tgz"; - sha1 = "94defc1b29e0d8a8fe958c1cf33300f68d8a19c7"; - }; - deps = { - "uglify-js-1.2.5" = self.by-version."uglify-js"."1.2.5"; - "ws-0.4.32" = self.by-version."ws"."0.4.32"; - "xmlhttprequest-1.4.2" = self.by-version."xmlhttprequest"."1.4.2"; - "active-x-obfuscator-0.0.1" = self.by-version."active-x-obfuscator"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-client"."0.9.16" = - self.by-version."socket.io-client"."0.9.16"; - by-version."socket.io-client"."0.9.16" = self.buildNodePackage { - name = "socket.io-client-0.9.16"; - version = "0.9.16"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.16.tgz"; - name = "socket.io-client-0.9.16.tgz"; - sha1 = "4da7515c5e773041d1b423970415bcc430f35fc6"; - }; - deps = { - "uglify-js-1.2.5" = self.by-version."uglify-js"."1.2.5"; - "ws-0.4.32" = self.by-version."ws"."0.4.32"; - "xmlhttprequest-1.4.2" = self.by-version."xmlhttprequest"."1.4.2"; - "active-x-obfuscator-0.0.1" = self.by-version."active-x-obfuscator"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-client"."1.0.6" = - self.by-version."socket.io-client"."1.0.6"; - by-version."socket.io-client"."1.0.6" = self.buildNodePackage { - name = "socket.io-client-1.0.6"; - version = "1.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz"; - name = "socket.io-client-1.0.6.tgz"; - sha1 = "c86cb3e507ab2f96da4500bd34fcf46a1e9dfe5e"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "engine.io-client-1.3.1" = self.by-version."engine.io-client"."1.3.1"; - "component-bind-1.0.0" = self.by-version."component-bind"."1.0.0"; - "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; - "object-component-0.0.3" = self.by-version."object-component"."0.0.3"; - "socket.io-parser-2.2.0" = self.by-version."socket.io-parser"."2.2.0"; - "has-binary-data-0.1.1" = self.by-version."has-binary-data"."0.1.1"; - "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; - "parseuri-0.0.2" = self.by-version."parseuri"."0.0.2"; - "to-array-0.1.3" = self.by-version."to-array"."0.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-client"."1.3.5" = - self.by-version."socket.io-client"."1.3.5"; - by-version."socket.io-client"."1.3.5" = self.buildNodePackage { - name = "socket.io-client-1.3.5"; - version = "1.3.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-client/-/socket.io-client-1.3.5.tgz"; - name = "socket.io-client-1.3.5.tgz"; - sha1 = "9c3a6fbdbd99420c3633a16b4e2543e73f1303ea"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "engine.io-client-1.5.1" = self.by-version."engine.io-client"."1.5.1"; - "component-bind-1.0.0" = self.by-version."component-bind"."1.0.0"; - "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; - "object-component-0.0.3" = self.by-version."object-component"."0.0.3"; - "socket.io-parser-2.2.4" = self.by-version."socket.io-parser"."2.2.4"; - "has-binary-0.1.6" = self.by-version."has-binary"."0.1.6"; - "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; - "parseuri-0.0.2" = self.by-version."parseuri"."0.0.2"; - "to-array-0.1.3" = self.by-version."to-array"."0.1.3"; - "backo2-1.0.2" = self.by-version."backo2"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-parser"."2.1.2" = - self.by-version."socket.io-parser"."2.1.2"; - by-version."socket.io-parser"."2.1.2" = self.buildNodePackage { - name = "socket.io-parser-2.1.2"; - version = "2.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz"; - name = "socket.io-parser-2.1.2.tgz"; - sha1 = "876655b9edd555c5bdf7301cedf30a436c67b8b0"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "json3-3.2.6" = self.by-version."json3"."3.2.6"; - "emitter-1.0.1" = self.by-version."emitter"."1.0.1"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-parser"."2.2.0" = - self.by-version."socket.io-parser"."2.2.0"; - by-version."socket.io-parser"."2.2.0" = self.buildNodePackage { - name = "socket.io-parser-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz"; - name = "socket.io-parser-2.2.0.tgz"; - sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "json3-3.2.6" = self.by-version."json3"."3.2.6"; - "emitter-1.0.1" = self.by-version."emitter"."1.0.1"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-parser"."2.2.2" = - self.by-version."socket.io-parser"."2.2.2"; - by-version."socket.io-parser"."2.2.2" = self.buildNodePackage { - name = "socket.io-parser-2.2.2"; - version = "2.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.2.tgz"; - name = "socket.io-parser-2.2.2.tgz"; - sha1 = "3d7af6b64497e956b7d9fe775f999716027f9417"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "json3-3.2.6" = self.by-version."json3"."3.2.6"; - "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "benchmark-1.0.0" = self.by-version."benchmark"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."socket.io-parser"."2.2.4" = - self.by-version."socket.io-parser"."2.2.4"; - by-version."socket.io-parser"."2.2.4" = self.buildNodePackage { - name = "socket.io-parser-2.2.4"; - version = "2.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.4.tgz"; - name = "socket.io-parser-2.2.4.tgz"; - sha1 = "f9ce19bf1909608ceb15d97721e23bfdd1e7cf65"; - }; - deps = { - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "json3-3.2.6" = self.by-version."json3"."3.2.6"; - "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "benchmark-1.0.0" = self.by-version."benchmark"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sockjs"."*" = - self.by-version."sockjs"."0.3.15"; - by-version."sockjs"."0.3.15" = self.buildNodePackage { - name = "sockjs-0.3.15"; - version = "0.3.15"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sockjs/-/sockjs-0.3.15.tgz"; - name = "sockjs-0.3.15.tgz"; - sha1 = "e19b577e59e0fbdb21a0ae4f46203ca24cad8db8"; - }; - deps = { - "faye-websocket-0.9.4" = self.by-version."faye-websocket"."0.9.4"; - "node-uuid-1.4.3" = self.by-version."node-uuid"."1.4.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "sockjs" = self.by-version."sockjs"."0.3.15"; - by-spec."socks-proxy-agent"."0" = - self.by-version."socks-proxy-agent"."0.1.2"; - by-version."socks-proxy-agent"."0.1.2" = self.buildNodePackage { - name = "socks-proxy-agent-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-0.1.2.tgz"; - name = "socks-proxy-agent-0.1.2.tgz"; - sha1 = "e8981486360896f692f600ba52a974c8b23dc121"; - }; - deps = { - "agent-base-1.0.1" = self.by-version."agent-base"."1.0.1"; - "rainbowsocks-0.1.2" = self.by-version."rainbowsocks"."0.1.2"; - "extend-1.2.1" = self.by-version."extend"."1.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sorted-object"."~1.0.0" = - self.by-version."sorted-object"."1.0.0"; - by-version."sorted-object"."1.0.0" = self.buildNodePackage { - name = "sorted-object-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sorted-object/-/sorted-object-1.0.0.tgz"; - name = "sorted-object-1.0.0.tgz"; - sha1 = "5d1f4f9c1fb2cd48965967304e212eb44cfb6d05"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sorted-union-stream"."^1.0.1" = - self.by-version."sorted-union-stream"."1.0.2"; - by-version."sorted-union-stream"."1.0.2" = self.buildNodePackage { - name = "sorted-union-stream-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-1.0.2.tgz"; - name = "sorted-union-stream-1.0.2.tgz"; - sha1 = "558e7f57a5bf6baf6501baf2ae2c9076c4502006"; - }; - deps = { - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-list-map"."~0.1.0" = - self.by-version."source-list-map"."0.1.5"; - by-version."source-list-map"."0.1.5" = self.buildNodePackage { - name = "source-list-map-0.1.5"; - version = "0.1.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-list-map/-/source-list-map-0.1.5.tgz"; - name = "source-list-map-0.1.5.tgz"; - sha1 = "ddf32f5173faeca3010561dd7e9a682c027f459e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."*" = - self.by-version."source-map"."0.4.2"; - by-version."source-map"."0.4.2" = self.buildNodePackage { - name = "source-map-0.4.2"; - version = "0.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.4.2.tgz"; - name = "source-map-0.4.2.tgz"; - sha1 = "dc9f3114394ab7c1f9782972f3d11820fff06f1f"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "source-map" = self.by-version."source-map"."0.4.2"; - by-spec."source-map"."0.1.31" = - self.by-version."source-map"."0.1.31"; - by-version."source-map"."0.1.31" = self.buildNodePackage { - name = "source-map-0.1.31"; - version = "0.1.31"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.1.31.tgz"; - name = "source-map-0.1.31.tgz"; - sha1 = "9f704d0d69d9e138a81badf6ebb4fde33d151c61"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."0.1.34" = - self.by-version."source-map"."0.1.34"; - by-version."source-map"."0.1.34" = self.buildNodePackage { - name = "source-map-0.1.34"; - version = "0.1.34"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.1.34.tgz"; - name = "source-map-0.1.34.tgz"; - sha1 = "a7cfe89aec7b1682c3b198d0acfb47d7d090566b"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."0.1.x" = - self.by-version."source-map"."0.1.43"; - by-version."source-map"."0.1.43" = self.buildNodePackage { - name = "source-map-0.1.43"; - version = "0.1.43"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz"; - name = "source-map-0.1.43.tgz"; - sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."0.4.x" = - self.by-version."source-map"."0.4.2"; - by-spec."source-map".">= 0.1.2" = - self.by-version."source-map"."0.4.2"; - by-spec."source-map"."^0.1.40" = - self.by-version."source-map"."0.1.43"; - by-spec."source-map"."^0.2.0" = - self.by-version."source-map"."0.2.0"; - by-version."source-map"."0.2.0" = self.buildNodePackage { - name = "source-map-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz"; - name = "source-map-0.2.0.tgz"; - sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."^0.4.2" = - self.by-version."source-map"."0.4.2"; - by-spec."source-map"."~0.1.31" = - self.by-version."source-map"."0.1.43"; - by-spec."source-map"."~0.1.33" = - self.by-version."source-map"."0.1.43"; - by-spec."source-map"."~0.1.40" = - self.by-version."source-map"."0.1.43"; - by-spec."source-map"."~0.1.7" = - self.by-version."source-map"."0.1.43"; - by-spec."source-map"."~0.3.0" = - self.by-version."source-map"."0.3.0"; - by-version."source-map"."0.3.0" = self.buildNodePackage { - name = "source-map-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz"; - name = "source-map-0.3.0.tgz"; - sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9"; - }; - deps = { - "amdefine-0.1.0" = self.by-version."amdefine"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."source-map"."~0.4.1" = - self.by-version."source-map"."0.4.2"; - by-spec."spdy"."^1.26.5" = - self.by-version."spdy"."1.32.0"; - by-version."spdy"."1.32.0" = self.buildNodePackage { - name = "spdy-1.32.0"; - version = "1.32.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/spdy/-/spdy-1.32.0.tgz"; - name = "spdy-1.32.0.tgz"; - sha1 = "3cd51f08734d441ef7122456638945a19ef18d3f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."speedometer"."^0.1.2" = - self.by-version."speedometer"."0.1.4"; - by-version."speedometer"."0.1.4" = self.buildNodePackage { - name = "speedometer-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz"; - name = "speedometer-0.1.4.tgz"; - sha1 = "9876dbd2a169d3115402d48e6ea6329c8816a50d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."split2"."^0.2.1" = - self.by-version."split2"."0.2.1"; - by-version."split2"."0.2.1" = self.buildNodePackage { - name = "split2-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/split2/-/split2-0.2.1.tgz"; - name = "split2-0.2.1.tgz"; - sha1 = "02ddac9adc03ec0bb78c1282ec079ca6e85ae900"; - }; - deps = { - "through2-0.6.5" = self.by-version."through2"."0.6.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sprintf"."0.1.1" = - self.by-version."sprintf"."0.1.1"; - by-version."sprintf"."0.1.1" = self.buildNodePackage { - name = "sprintf-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sprintf/-/sprintf-0.1.1.tgz"; - name = "sprintf-0.1.1.tgz"; - sha1 = "e8925fc9894e1aa6899e9091c7f2a12130b70de5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sprintf".">=0.1.1" = - self.by-version."sprintf"."0.1.5"; - by-version."sprintf"."0.1.5" = self.buildNodePackage { - name = "sprintf-0.1.5"; - version = "0.1.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz"; - name = "sprintf-0.1.5.tgz"; - sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sprintf"."~0.1.3" = - self.by-version."sprintf"."0.1.5"; - by-spec."sprintf"."~0.1.4" = - self.by-version."sprintf"."0.1.5"; - by-spec."sprintf-js"."~1.0.2" = - self.by-version."sprintf-js"."1.0.2"; - by-version."sprintf-js"."1.0.2" = self.buildNodePackage { - name = "sprintf-js-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.2.tgz"; - name = "sprintf-js-1.0.2.tgz"; - sha1 = "11e4d84ff32144e35b0bf3a66f8587f38d8f9978"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."srt2vtt"."^1.2.0" = - self.by-version."srt2vtt"."1.2.0"; - by-version."srt2vtt"."1.2.0" = self.buildNodePackage { - name = "srt2vtt-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/srt2vtt/-/srt2vtt-1.2.0.tgz"; - name = "srt2vtt-1.2.0.tgz"; - sha1 = "f17bbae66d3a0368b1e3d8e1e547e7aad794e70a"; - }; - deps = { - "codepage-1.3.8" = self.by-version."codepage"."1.3.8"; - "utfx-1.0.0" = self.by-version."utfx"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ssh-agent"."0.2.3" = - self.by-version."ssh-agent"."0.2.3"; - by-version."ssh-agent"."0.2.3" = self.buildNodePackage { - name = "ssh-agent-0.2.3"; - version = "0.2.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/ssh-agent/-/ssh-agent-0.2.3.tgz"; - name = "ssh-agent-0.2.3.tgz"; - sha1 = "74ac9ffad6b7eca3c1674686b5613824243f86a9"; - }; - deps = { - "ctype-0.5.4" = self.by-version."ctype"."0.5.4"; - "posix-getopt-1.1.0" = self.by-version."posix-getopt"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ssl-root-cas"."^1.1.7" = - self.by-version."ssl-root-cas"."1.1.10"; - by-version."ssl-root-cas"."1.1.10" = self.buildNodePackage { - name = "ssl-root-cas-1.1.10"; - version = "1.1.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ssl-root-cas/-/ssl-root-cas-1.1.10.tgz"; - name = "ssl-root-cas-1.1.10.tgz"; - sha1 = "00b238105568f60b1bb98621e52f94efb7b7acad"; - }; - deps = { - "es6-promise-2.1.0" = self.by-version."es6-promise"."2.1.0"; - "request-2.55.0" = self.by-version."request"."2.55.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stable"."~0.1.3" = - self.by-version."stable"."0.1.5"; - by-version."stable"."0.1.5" = self.buildNodePackage { - name = "stable-0.1.5"; - version = "0.1.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stable/-/stable-0.1.5.tgz"; - name = "stable-0.1.5.tgz"; - sha1 = "08232f60c732e9890784b5bed0734f8b32a887b9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stack-trace"."0.0.7" = - self.by-version."stack-trace"."0.0.7"; - by-version."stack-trace"."0.0.7" = self.buildNodePackage { - name = "stack-trace-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.7.tgz"; - name = "stack-trace-0.0.7.tgz"; - sha1 = "c72e089744fc3659f508cdce3621af5634ec0fff"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stack-trace"."0.0.x" = - self.by-version."stack-trace"."0.0.9"; - by-version."stack-trace"."0.0.9" = self.buildNodePackage { - name = "stack-trace-0.0.9"; - version = "0.0.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz"; - name = "stack-trace-0.0.9.tgz"; - sha1 = "a8f6eaeca90674c333e7c43953f275b451510695"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stackdriver-statsd-backend"."*" = - self.by-version."stackdriver-statsd-backend"."0.2.3"; - by-version."stackdriver-statsd-backend"."0.2.3" = self.buildNodePackage { - name = "stackdriver-statsd-backend-0.2.3"; - version = "0.2.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stackdriver-statsd-backend/-/stackdriver-statsd-backend-0.2.3.tgz"; - name = "stackdriver-statsd-backend-0.2.3.tgz"; - sha1 = "6ffead71e5655d4d787c39da8d1c9eaaa59c91d7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "stackdriver-statsd-backend" = self.by-version."stackdriver-statsd-backend"."0.2.3"; - by-spec."static-favicon"."1.0.2" = - self.by-version."static-favicon"."1.0.2"; - by-version."static-favicon"."1.0.2" = self.buildNodePackage { - name = "static-favicon-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/static-favicon/-/static-favicon-1.0.2.tgz"; - name = "static-favicon-1.0.2.tgz"; - sha1 = "7c15920dda2bf33f414b0e60aebbd65cdd2a1d2f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."statsd"."https://github.com/etsy/statsd/tarball/23b331895cc4b22b64a19fd0e7b6def6f6f30d9e" = - self.by-version."statsd"."0.7.2"; - by-version."statsd"."0.7.2" = self.buildNodePackage { - name = "statsd-0.7.2"; - version = "0.7.2"; - bin = true; - src = fetchurl { - url = "https://github.com/etsy/statsd/tarball/23b331895cc4b22b64a19fd0e7b6def6f6f30d9e"; - name = "statsd-0.7.2.tgz"; - sha256 = "ddfbd70fb5f54281cd1cb4b339ebdb16bde8a657c4876d477396275f8cf05670"; - }; - deps = { - }; - optionalDependencies = { - "node-syslog-1.1.7" = self.by-version."node-syslog"."1.1.7"; - "hashring-3.1.0" = self.by-version."hashring"."3.1.0"; - "winser-0.1.6" = self.by-version."winser"."0.1.6"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "statsd" = self.by-version."statsd"."0.7.2"; - by-spec."statsd-influxdb-backend"."*" = - self.by-version."statsd-influxdb-backend"."0.5.0"; - by-version."statsd-influxdb-backend"."0.5.0" = self.buildNodePackage { - name = "statsd-influxdb-backend-0.5.0"; - version = "0.5.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/statsd-influxdb-backend/-/statsd-influxdb-backend-0.5.0.tgz"; - name = "statsd-influxdb-backend-0.5.0.tgz"; - sha1 = "7e62819f5c2e0438e9225b231478d776f1c2e461"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "statsd-influxdb-backend" = self.by-version."statsd-influxdb-backend"."0.5.0"; - by-spec."statsd-librato-backend"."*" = - self.by-version."statsd-librato-backend"."0.1.6"; - by-version."statsd-librato-backend"."0.1.6" = self.buildNodePackage { - name = "statsd-librato-backend-0.1.6"; - version = "0.1.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/statsd-librato-backend/-/statsd-librato-backend-0.1.6.tgz"; - name = "statsd-librato-backend-0.1.6.tgz"; - sha1 = "04467674959cf61986fe16896f9a62f38d0e12f3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "statsd-librato-backend" = self.by-version."statsd-librato-backend"."0.1.6"; - by-spec."statuses"."1" = - self.by-version."statuses"."1.2.1"; - by-version."statuses"."1.2.1" = self.buildNodePackage { - name = "statuses-1.2.1"; - version = "1.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz"; - name = "statuses-1.2.1.tgz"; - sha1 = "dded45cc18256d51ed40aec142489d5c61026d28"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."statuses"."^1.2.1" = - self.by-version."statuses"."1.2.1"; - by-spec."stream-browserify"."^1.0.0" = - self.by-version."stream-browserify"."1.0.0"; - by-version."stream-browserify"."1.0.0" = self.buildNodePackage { - name = "stream-browserify-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-browserify/-/stream-browserify-1.0.0.tgz"; - name = "stream-browserify-1.0.0.tgz"; - sha1 = "bf9b4abfb42b274d751479e44e0ff2656b6f1193"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-browserify"."~0.1.0" = - self.by-version."stream-browserify"."0.1.3"; - by-version."stream-browserify"."0.1.3" = self.buildNodePackage { - name = "stream-browserify-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-browserify/-/stream-browserify-0.1.3.tgz"; - name = "stream-browserify-0.1.3.tgz"; - sha1 = "95cf1b369772e27adaf46352265152689c6c4be9"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "process-0.5.2" = self.by-version."process"."0.5.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-collector"."^1.0.1" = - self.by-version."stream-collector"."1.0.1"; - by-version."stream-collector"."1.0.1" = self.buildNodePackage { - name = "stream-collector-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz"; - name = "stream-collector-1.0.1.tgz"; - sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15"; - }; - deps = { - "once-1.3.1" = self.by-version."once"."1.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-combiner"."~0.0.2" = - self.by-version."stream-combiner"."0.0.4"; - by-version."stream-combiner"."0.0.4" = self.buildNodePackage { - name = "stream-combiner-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; - name = "stream-combiner-0.0.4.tgz"; - sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; - }; - deps = { - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-combiner2"."~1.0.0" = - self.by-version."stream-combiner2"."1.0.2"; - by-version."stream-combiner2"."1.0.2" = self.buildNodePackage { - name = "stream-combiner2-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.0.2.tgz"; - name = "stream-combiner2-1.0.2.tgz"; - sha1 = "ba72a6b50cbfabfa950fc8bc87604bd01eb60671"; - }; - deps = { - "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; - "through2-0.5.1" = self.by-version."through2"."0.5.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-consume"."~0.1.0" = - self.by-version."stream-consume"."0.1.0"; - by-version."stream-consume"."0.1.0" = self.buildNodePackage { - name = "stream-consume-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz"; - name = "stream-consume-0.1.0.tgz"; - sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-counter"."^1.0.0" = - self.by-version."stream-counter"."1.0.0"; - by-version."stream-counter"."1.0.0" = self.buildNodePackage { - name = "stream-counter-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-counter/-/stream-counter-1.0.0.tgz"; - name = "stream-counter-1.0.0.tgz"; - sha1 = "91cf2569ce4dc5061febcd7acb26394a5a114751"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-counter"."~0.2.0" = - self.by-version."stream-counter"."0.2.0"; - by-version."stream-counter"."0.2.0" = self.buildNodePackage { - name = "stream-counter-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz"; - name = "stream-counter-0.2.0.tgz"; - sha1 = "ded266556319c8b0e222812b9cf3b26fa7d947de"; - }; - deps = { - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-events"."^1.0.1" = - self.by-version."stream-events"."1.0.1"; - by-version."stream-events"."1.0.1" = self.buildNodePackage { - name = "stream-events-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-events/-/stream-events-1.0.1.tgz"; - name = "stream-events-1.0.1.tgz"; - sha1 = "4fe7b2bbfcc53e6af31087e8c540483f412ce8c6"; - }; - deps = { - "stubs-1.1.2" = self.by-version."stubs"."1.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-splicer"."^1.1.0" = - self.by-version."stream-splicer"."1.3.1"; - by-version."stream-splicer"."1.3.1" = self.buildNodePackage { - name = "stream-splicer-1.3.1"; - version = "1.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-splicer/-/stream-splicer-1.3.1.tgz"; - name = "stream-splicer-1.3.1.tgz"; - sha1 = "87737a08777aa00d6a27d92562e7bc88070c081d"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "readable-wrap-1.0.0" = self.by-version."readable-wrap"."1.0.0"; - "through2-1.1.1" = self.by-version."through2"."1.1.1"; - "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-to-array"."~1.0.0" = - self.by-version."stream-to-array"."1.0.0"; - by-version."stream-to-array"."1.0.0" = self.buildNodePackage { - name = "stream-to-array-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-to-array/-/stream-to-array-1.0.0.tgz"; - name = "stream-to-array-1.0.0.tgz"; - sha1 = "94166bb29f3ea24f082d2f8cd3ebb2cc0d6eca2c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-transcoder"."0.0.5" = - self.by-version."stream-transcoder"."0.0.5"; - by-version."stream-transcoder"."0.0.5" = self.buildNodePackage { - name = "stream-transcoder-0.0.5"; - version = "0.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-transcoder/-/stream-transcoder-0.0.5.tgz"; - name = "stream-transcoder-0.0.5.tgz"; - sha1 = "68261be4efb48840239b5791af23ee3b8bd79808"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stream-transform"."*" = - self.by-version."stream-transform"."0.0.7"; - by-version."stream-transform"."0.0.7" = self.buildNodePackage { - name = "stream-transform-0.0.7"; - version = "0.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stream-transform/-/stream-transform-0.0.7.tgz"; - name = "stream-transform-0.0.7.tgz"; - sha1 = "f7f1dd009de4db7eb772f116b33341003d461907"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."streamsearch"."0.1.2" = - self.by-version."streamsearch"."0.1.2"; - by-version."streamsearch"."0.1.2" = self.buildNodePackage { - name = "streamsearch-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"; - name = "streamsearch-0.1.2.tgz"; - sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string"."1.6.1" = - self.by-version."string"."1.6.1"; - by-version."string"."1.6.1" = self.buildNodePackage { - name = "string-1.6.1"; - version = "1.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string/-/string-1.6.1.tgz"; - name = "string-1.6.1.tgz"; - sha1 = "eabe0956da7a8291c6de7486f7b35e58d031cd55"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string-length"."^1.0.0" = - self.by-version."string-length"."1.0.0"; - by-version."string-length"."1.0.0" = self.buildNodePackage { - name = "string-length-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string-length/-/string-length-1.0.0.tgz"; - name = "string-length-1.0.0.tgz"; - sha1 = "5f0564b174feb299595a763da71513266370d3a9"; - }; - deps = { - "strip-ansi-2.0.1" = self.by-version."strip-ansi"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string-template"."~0.2.0" = - self.by-version."string-template"."0.2.0"; - by-version."string-template"."0.2.0" = self.buildNodePackage { - name = "string-template-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string-template/-/string-template-0.2.0.tgz"; - name = "string-template-0.2.0.tgz"; - sha1 = "7fd73e64316666552808af4508956987addc5f5b"; - }; - deps = { - "js-string-escape-1.0.0" = self.by-version."js-string-escape"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string2compact"."^1.1.1" = - self.by-version."string2compact"."1.2.1"; - by-version."string2compact"."1.2.1" = self.buildNodePackage { - name = "string2compact-1.2.1"; - version = "1.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string2compact/-/string2compact-1.2.1.tgz"; - name = "string2compact-1.2.1.tgz"; - sha1 = "a560cd737415e380f2518b83c38bb97093e981af"; - }; - deps = { - "addr-to-ip-port-1.4.1" = self.by-version."addr-to-ip-port"."1.4.1"; - "ipaddr.js-0.1.9" = self.by-version."ipaddr.js"."0.1.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string_decoder"."~0.0.0" = - self.by-version."string_decoder"."0.0.1"; - by-version."string_decoder"."0.0.1" = self.buildNodePackage { - name = "string_decoder-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string_decoder/-/string_decoder-0.0.1.tgz"; - name = "string_decoder-0.0.1.tgz"; - sha1 = "f5472d0a8d1650ec823752d24e6fd627b39bf141"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string_decoder"."~0.10.0" = - self.by-version."string_decoder"."0.10.31"; - by-version."string_decoder"."0.10.31" = self.buildNodePackage { - name = "string_decoder-0.10.31"; - version = "0.10.31"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; - name = "string_decoder-0.10.31.tgz"; - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."string_decoder"."~0.10.25" = - self.by-version."string_decoder"."0.10.31"; - by-spec."string_decoder"."~0.10.x" = - self.by-version."string_decoder"."0.10.31"; - by-spec."stringify-object"."^1.0.0" = - self.by-version."stringify-object"."1.0.1"; - by-version."stringify-object"."1.0.1" = self.buildNodePackage { - name = "stringify-object-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stringify-object/-/stringify-object-1.0.1.tgz"; - name = "stringify-object-1.0.1.tgz"; - sha1 = "86d35e7dbfbce9aa45637d7ecdd7847e159db8a2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stringmap"."~0.2.2" = - self.by-version."stringmap"."0.2.2"; - by-version."stringmap"."0.2.2" = self.buildNodePackage { - name = "stringmap-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stringmap/-/stringmap-0.2.2.tgz"; - name = "stringmap-0.2.2.tgz"; - sha1 = "556c137b258f942b8776f5b2ef582aa069d7d1b1"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stringset"."~0.2.1" = - self.by-version."stringset"."0.2.1"; - by-version."stringset"."0.2.1" = self.buildNodePackage { - name = "stringset-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz"; - name = "stringset-0.2.1.tgz"; - sha1 = "ef259c4e349344377fcd1c913dd2e848c9c042b5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stringstream"."~0.0.4" = - self.by-version."stringstream"."0.0.4"; - by-version."stringstream"."0.0.4" = self.buildNodePackage { - name = "stringstream-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stringstream/-/stringstream-0.0.4.tgz"; - name = "stringstream-0.0.4.tgz"; - sha1 = "0f0e3423f942960b5692ac324a57dd093bc41a92"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strip-ansi"."^0.3.0" = - self.by-version."strip-ansi"."0.3.0"; - by-version."strip-ansi"."0.3.0" = self.buildNodePackage { - name = "strip-ansi-0.3.0"; - version = "0.3.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; - name = "strip-ansi-0.3.0.tgz"; - sha1 = "25f48ea22ca79187f3174a4db8759347bb126220"; - }; - deps = { - "ansi-regex-0.2.1" = self.by-version."ansi-regex"."0.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strip-ansi"."^2.0.0" = - self.by-version."strip-ansi"."2.0.1"; - by-version."strip-ansi"."2.0.1" = self.buildNodePackage { - name = "strip-ansi-2.0.1"; - version = "2.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz"; - name = "strip-ansi-2.0.1.tgz"; - sha1 = "df62c1aa94ed2f114e1d0f21fd1d50482b79a60e"; - }; - deps = { - "ansi-regex-1.1.1" = self.by-version."ansi-regex"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strip-ansi"."^2.0.1" = - self.by-version."strip-ansi"."2.0.1"; - by-spec."strip-ansi"."~2.0.1" = - self.by-version."strip-ansi"."2.0.1"; - by-spec."strip-bom"."^1.0.0" = - self.by-version."strip-bom"."1.0.0"; - by-version."strip-bom"."1.0.0" = self.buildNodePackage { - name = "strip-bom-1.0.0"; - version = "1.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz"; - name = "strip-bom-1.0.0.tgz"; - sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794"; - }; - deps = { - "first-chunk-stream-1.0.0" = self.by-version."first-chunk-stream"."1.0.0"; - "is-utf8-0.2.0" = self.by-version."is-utf8"."0.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strip-json-comments"."0.1.x" = - self.by-version."strip-json-comments"."0.1.3"; - by-version."strip-json-comments"."0.1.3" = self.buildNodePackage { - name = "strip-json-comments-0.1.3"; - version = "0.1.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz"; - name = "strip-json-comments-0.1.3.tgz"; - sha1 = "164c64e370a8a3cc00c9e01b539e569823f0ee54"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strip-json-comments"."1.0.x" = - self.by-version."strip-json-comments"."1.0.2"; - by-version."strip-json-comments"."1.0.2" = self.buildNodePackage { - name = "strip-json-comments-1.0.2"; - version = "1.0.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.2.tgz"; - name = "strip-json-comments-1.0.2.tgz"; - sha1 = "5a48ab96023dbac1b7b8d0ffabf6f63f1677be9f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."strong-data-uri"."~0.1.0" = - self.by-version."strong-data-uri"."0.1.1"; - by-version."strong-data-uri"."0.1.1" = self.buildNodePackage { - name = "strong-data-uri-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/strong-data-uri/-/strong-data-uri-0.1.1.tgz"; - name = "strong-data-uri-0.1.1.tgz"; - sha1 = "8660241807461d1d2dd247c70563f2f33e66c8ab"; - }; - deps = { - "truncate-1.0.4" = self.by-version."truncate"."1.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stubs"."^1.1.0" = - self.by-version."stubs"."1.1.2"; - by-version."stubs"."1.1.2" = self.buildNodePackage { - name = "stubs-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/stubs/-/stubs-1.1.2.tgz"; - name = "stubs-1.1.2.tgz"; - sha1 = "945a08975016318762f8f7060731002ab2a0960c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stylus"."*" = - self.by-version."stylus"."0.50.0"; - by-version."stylus"."0.50.0" = self.buildNodePackage { - name = "stylus-0.50.0"; - version = "0.50.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/stylus/-/stylus-0.50.0.tgz"; - name = "stylus-0.50.0.tgz"; - sha1 = "2391f0df1ce1dde55a5a8df26b6906a9425ced05"; - }; - deps = { - "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "sax-0.5.8" = self.by-version."sax"."0.5.8"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "stylus" = self.by-version."stylus"."0.50.0"; - by-spec."stylus"."0.42.2" = - self.by-version."stylus"."0.42.2"; - by-version."stylus"."0.42.2" = self.buildNodePackage { - name = "stylus-0.42.2"; - version = "0.42.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/stylus/-/stylus-0.42.2.tgz"; - name = "stylus-0.42.2.tgz"; - sha1 = "bed29107803129bed1983efc4c7e33f4fd34fee7"; - }; - deps = { - "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "sax-0.5.8" = self.by-version."sax"."0.5.8"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."stylus"."0.49.x" = - self.by-version."stylus"."0.49.3"; - by-version."stylus"."0.49.3" = self.buildNodePackage { - name = "stylus-0.49.3"; - version = "0.49.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/stylus/-/stylus-0.49.3.tgz"; - name = "stylus-0.49.3.tgz"; - sha1 = "1fbdabe479ed460872c71a6252a67f95040ba511"; - }; - deps = { - "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "sax-0.5.8" = self.by-version."sax"."0.5.8"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."subarg"."0.0.1" = - self.by-version."subarg"."0.0.1"; - by-version."subarg"."0.0.1" = self.buildNodePackage { - name = "subarg-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/subarg/-/subarg-0.0.1.tgz"; - name = "subarg-0.0.1.tgz"; - sha1 = "3d56b07dacfbc45bbb63f7672b43b63e46368e3a"; - }; - deps = { - "minimist-0.0.10" = self.by-version."minimist"."0.0.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."subarg"."^1.0.0" = - self.by-version."subarg"."1.0.0"; - by-version."subarg"."1.0.0" = self.buildNodePackage { - name = "subarg-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz"; - name = "subarg-1.0.0.tgz"; - sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2"; - }; - deps = { - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sugar"."^1.4.1" = - self.by-version."sugar"."1.4.1"; - by-version."sugar"."1.4.1" = self.buildNodePackage { - name = "sugar-1.4.1"; - version = "1.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sugar/-/sugar-1.4.1.tgz"; - name = "sugar-1.4.1.tgz"; - sha1 = "1310d4dedc699e5a173183718541b0d7844a7598"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."superagent"."0.21.0" = - self.by-version."superagent"."0.21.0"; - by-version."superagent"."0.21.0" = self.buildNodePackage { - name = "superagent-0.21.0"; - version = "0.21.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz"; - name = "superagent-0.21.0.tgz"; - sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87"; - }; - deps = { - "qs-1.2.0" = self.by-version."qs"."1.2.0"; - "formidable-1.0.14" = self.by-version."formidable"."1.0.14"; - "mime-1.2.11" = self.by-version."mime"."1.2.11"; - "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; - "methods-1.0.1" = self.by-version."methods"."1.0.1"; - "cookiejar-2.0.1" = self.by-version."cookiejar"."2.0.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "reduce-component-1.0.1" = self.by-version."reduce-component"."1.0.1"; - "extend-1.2.1" = self.by-version."extend"."1.2.1"; - "form-data-0.1.3" = self.by-version."form-data"."0.1.3"; - "readable-stream-1.0.27-1" = self.by-version."readable-stream"."1.0.27-1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."superagent"."^0.21.0" = - self.by-version."superagent"."0.21.0"; - by-spec."superagent"."~0.21.0" = - self.by-version."superagent"."0.21.0"; - by-spec."supertest"."*" = - self.by-version."supertest"."0.15.0"; - by-version."supertest"."0.15.0" = self.buildNodePackage { - name = "supertest-0.15.0"; - version = "0.15.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/supertest/-/supertest-0.15.0.tgz"; - name = "supertest-0.15.0.tgz"; - sha1 = "86118695de4be58869b3ee94c45e1d084ca7fac5"; - }; - deps = { - "superagent-0.21.0" = self.by-version."superagent"."0.21.0"; - "methods-1.1.1" = self.by-version."methods"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "supertest" = self.by-version."supertest"."0.15.0"; - by-spec."supports-color"."1.3.x" = - self.by-version."supports-color"."1.3.1"; - by-version."supports-color"."1.3.1" = self.buildNodePackage { - name = "supports-color-1.3.1"; - version = "1.3.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz"; - name = "supports-color-1.3.1.tgz"; - sha1 = "15758df09d8ff3b4acc307539fabe27095e1042d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."supports-color"."^0.2.0" = - self.by-version."supports-color"."0.2.0"; - by-version."supports-color"."0.2.0" = self.buildNodePackage { - name = "supports-color-0.2.0"; - version = "0.2.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"; - name = "supports-color-0.2.0.tgz"; - sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."supports-color"."^1.2.0" = - self.by-version."supports-color"."1.3.1"; - by-spec."supports-color"."^1.3.0" = - self.by-version."supports-color"."1.3.1"; - by-spec."supports-color"."~1.2.0" = - self.by-version."supports-color"."1.2.1"; - by-version."supports-color"."1.2.1" = self.buildNodePackage { - name = "supports-color-1.2.1"; - version = "1.2.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/supports-color/-/supports-color-1.2.1.tgz"; - name = "supports-color-1.2.1.tgz"; - sha1 = "12ee21507086cd98c1058d9ec0f4ac476b7af3b2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."swig"."0.14.x" = - self.by-version."swig"."0.14.0"; - by-version."swig"."0.14.0" = self.buildNodePackage { - name = "swig-0.14.0"; - version = "0.14.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/swig/-/swig-0.14.0.tgz"; - name = "swig-0.14.0.tgz"; - sha1 = "544bfb3bd837608873eed6a72c672a28cb1f1b3f"; - }; - deps = { - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "swig" = self.by-version."swig"."0.14.0"; - by-spec."sylvester".">= 0.0.12" = - self.by-version."sylvester"."0.0.21"; - by-version."sylvester"."0.0.21" = self.buildNodePackage { - name = "sylvester-0.0.21"; - version = "0.0.21"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/sylvester/-/sylvester-0.0.21.tgz"; - name = "sylvester-0.0.21.tgz"; - sha1 = "2987b1ce2bd2f38b0dce2a34388884bfa4400ea7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."sylvester".">= 0.0.8" = - self.by-version."sylvester"."0.0.21"; - by-spec."syntax-error"."^1.1.1" = - self.by-version."syntax-error"."1.1.2"; - by-version."syntax-error"."1.1.2" = self.buildNodePackage { - name = "syntax-error-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/syntax-error/-/syntax-error-1.1.2.tgz"; - name = "syntax-error-1.1.2.tgz"; - sha1 = "660f025b170b7eb944efc2a889d451312bcef451"; - }; - deps = { - "acorn-0.9.0" = self.by-version."acorn"."0.9.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."syntax-error"."~0.0.0" = - self.by-version."syntax-error"."0.0.1"; - by-version."syntax-error"."0.0.1" = self.buildNodePackage { - name = "syntax-error-0.0.1"; - version = "0.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/syntax-error/-/syntax-error-0.0.1.tgz"; - name = "syntax-error-0.0.1.tgz"; - sha1 = "019d075348cd8c5b79f0603c73e53891a7c5235d"; - }; - deps = { - "esprima-0.9.9" = self.by-version."esprima"."0.9.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."syntax-error"."~0.1.0" = - self.by-version."syntax-error"."0.1.0"; - by-version."syntax-error"."0.1.0" = self.buildNodePackage { - name = "syntax-error-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/syntax-error/-/syntax-error-0.1.0.tgz"; - name = "syntax-error-0.1.0.tgz"; - sha1 = "8cb515e730fe4f19d3a887035f8630e6494aac65"; - }; - deps = { - "esprima-six-0.0.3" = self.by-version."esprima-six"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tabtab"."git+https://github.com/mixu/node-tabtab.git" = - self.by-version."tabtab"."0.0.2"; - by-version."tabtab"."0.0.2" = self.buildNodePackage { - name = "tabtab-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchgit { - url = "https://github.com/mixu/node-tabtab.git"; - rev = "94af2b878b174527b6636aec88acd46979247755"; - sha256 = "7be2daa2fe7893478d38d90b213de359c9a662a7ef06ad9cbfaac11ad399a149"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tap"."~0.3.3" = - self.by-version."tap"."0.3.3"; - by-version."tap"."0.3.3" = self.buildNodePackage { - name = "tap-0.3.3"; - version = "0.3.3"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/tap/-/tap-0.3.3.tgz"; - name = "tap-0.3.3.tgz"; - sha1 = "c862237af0a213f97fff46594bd1d44eca705d63"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "yamlish-0.0.6" = self.by-version."yamlish"."0.0.6"; - "slide-1.1.6" = self.by-version."slide"."1.1.6"; - "runforcover-0.0.2" = self.by-version."runforcover"."0.0.2"; - "nopt-2.2.1" = self.by-version."nopt"."2.2.1"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "difflet-0.2.6" = self.by-version."difflet"."0.2.6"; - "deep-equal-0.0.0" = self.by-version."deep-equal"."0.0.0"; - "buffer-equal-0.0.1" = self.by-version."buffer-equal"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tapable"."^0.1.8" = - self.by-version."tapable"."0.1.9"; - by-version."tapable"."0.1.9" = self.buildNodePackage { - name = "tapable-0.1.9"; - version = "0.1.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tapable/-/tapable-0.1.9.tgz"; - name = "tapable-0.1.9.tgz"; - sha1 = "1003d9499c344ba238cb32329c8d2c8babc92e54"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tapable"."~0.1.8" = - self.by-version."tapable"."0.1.9"; - by-spec."tape"."^3.5.0" = - self.by-version."tape"."3.5.0"; - by-version."tape"."3.5.0" = self.buildNodePackage { - name = "tape-3.5.0"; - version = "3.5.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/tape/-/tape-3.5.0.tgz"; - name = "tape-3.5.0.tgz"; - sha1 = "aebb061388104ad0cb407be842782049d64624f8"; - }; - deps = { - "deep-equal-0.2.2" = self.by-version."deep-equal"."0.2.2"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - "glob-3.2.11" = self.by-version."glob"."3.2.11"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "object-inspect-0.4.0" = self.by-version."object-inspect"."0.4.0"; - "resumer-0.0.0" = self.by-version."resumer"."0.0.0"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tape"."~0.2.2" = - self.by-version."tape"."0.2.2"; - by-version."tape"."0.2.2" = self.buildNodePackage { - name = "tape-0.2.2"; - version = "0.2.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/tape/-/tape-0.2.2.tgz"; - name = "tape-0.2.2.tgz"; - sha1 = "64ccfa4b7ecf4a0060007e61716d424781671637"; - }; - deps = { - "jsonify-0.0.0" = self.by-version."jsonify"."0.0.0"; - "deep-equal-0.0.0" = self.by-version."deep-equal"."0.0.0"; - "defined-0.0.0" = self.by-version."defined"."0.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar"."*" = - self.by-version."tar"."2.1.0"; - by-version."tar"."2.1.0" = self.buildNodePackage { - name = "tar-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-2.1.0.tgz"; - name = "tar-2.1.0.tgz"; - sha1 = "d287aad12e947c766e319ac364f3c234900f65ec"; - }; - deps = { - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "tar" = self.by-version."tar"."2.1.0"; - by-spec."tar"."0" = - self.by-version."tar"."0.1.20"; - by-version."tar"."0.1.20" = self.buildNodePackage { - name = "tar-0.1.20"; - version = "0.1.20"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-0.1.20.tgz"; - name = "tar-0.1.20.tgz"; - sha1 = "42940bae5b5f22c74483699126f9f3f27449cb13"; - }; - deps = { - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar"."0.1.17" = - self.by-version."tar"."0.1.17"; - by-version."tar"."0.1.17" = self.buildNodePackage { - name = "tar-0.1.17"; - version = "0.1.17"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-0.1.17.tgz"; - name = "tar-0.1.17.tgz"; - sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc"; - }; - deps = { - "inherits-1.0.0" = self.by-version."inherits"."1.0.0"; - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar"."1.0.2" = - self.by-version."tar"."1.0.2"; - by-version."tar"."1.0.2" = self.buildNodePackage { - name = "tar-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-1.0.2.tgz"; - name = "tar-1.0.2.tgz"; - sha1 = "8b0f6740f9946259de26a3ed9c9a22890dff023f"; - }; - deps = { - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar"."^1.0.0" = - self.by-version."tar"."1.0.3"; - by-version."tar"."1.0.3" = self.buildNodePackage { - name = "tar-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar/-/tar-1.0.3.tgz"; - name = "tar-1.0.3.tgz"; - sha1 = "15bcdab244fa4add44e4244a0176edb8aa9a2b44"; - }; - deps = { - "block-stream-0.0.7" = self.by-version."block-stream"."0.0.7"; - "fstream-1.0.4" = self.by-version."fstream"."1.0.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar"."~0.1.17" = - self.by-version."tar"."0.1.20"; - by-spec."tar"."~1.0.1" = - self.by-version."tar"."1.0.3"; - by-spec."tar"."~1.0.2" = - self.by-version."tar"."1.0.3"; - by-spec."tar"."~2.1.0" = - self.by-version."tar"."2.1.0"; - by-spec."tar-fs"."^1.4.1" = - self.by-version."tar-fs"."1.5.0"; - by-version."tar-fs"."1.5.0" = self.buildNodePackage { - name = "tar-fs-1.5.0"; - version = "1.5.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar-fs/-/tar-fs-1.5.0.tgz"; - name = "tar-fs-1.5.0.tgz"; - sha1 = "461da12f3a756adcfe781afbc0c13694d9c5d613"; - }; - deps = { - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "pump-1.0.0" = self.by-version."pump"."1.0.0"; - "tar-stream-1.1.4" = self.by-version."tar-stream"."1.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar-pack"."~2.0.0" = - self.by-version."tar-pack"."2.0.0"; - by-version."tar-pack"."2.0.0" = self.buildNodePackage { - name = "tar-pack-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar-pack/-/tar-pack-2.0.0.tgz"; - name = "tar-pack-2.0.0.tgz"; - sha1 = "c2c401c02dd366138645e917b3a6baa256a9dcab"; - }; - deps = { - "uid-number-0.0.3" = self.by-version."uid-number"."0.0.3"; - "once-1.1.1" = self.by-version."once"."1.1.1"; - "debug-0.7.4" = self.by-version."debug"."0.7.4"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; - "tar-0.1.20" = self.by-version."tar"."0.1.20"; - "fstream-ignore-0.0.7" = self.by-version."fstream-ignore"."0.0.7"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - }; - optionalDependencies = { - "graceful-fs-1.2.3" = self.by-version."graceful-fs"."1.2.3"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar-stream"."^1.0.0" = - self.by-version."tar-stream"."1.1.4"; - by-version."tar-stream"."1.1.4" = self.buildNodePackage { - name = "tar-stream-1.1.4"; - version = "1.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar-stream/-/tar-stream-1.1.4.tgz"; - name = "tar-stream-1.1.4.tgz"; - sha1 = "e6c3ffc4305f7d537b6ec697823dd86e4d61ca63"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tar-stream"."^1.1.2" = - self.by-version."tar-stream"."1.1.4"; - by-spec."tar-stream"."~1.0.0" = - self.by-version."tar-stream"."1.0.2"; - by-version."tar-stream"."1.0.2" = self.buildNodePackage { - name = "tar-stream-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tar-stream/-/tar-stream-1.0.2.tgz"; - name = "tar-stream-1.0.2.tgz"; - sha1 = "fd19b4a17900fa704f6a133e3045aead0562ab95"; - }; - deps = { - "bl-0.9.4" = self.by-version."bl"."0.9.4"; - "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."temp"."*" = - self.by-version."temp"."0.8.1"; - by-version."temp"."0.8.1" = self.buildNodePackage { - name = "temp-0.8.1"; - version = "0.8.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/temp/-/temp-0.8.1.tgz"; - name = "temp-0.8.1.tgz"; - sha1 = "4b7b4ffde85bb09f2dd6ba6cc43b44213c94fd3a"; - }; - deps = { - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "temp" = self.by-version."temp"."0.8.1"; - by-spec."temp"."0.6.0" = - self.by-version."temp"."0.6.0"; - by-version."temp"."0.6.0" = self.buildNodePackage { - name = "temp-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/temp/-/temp-0.6.0.tgz"; - name = "temp-0.6.0.tgz"; - sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07"; - }; - deps = { - "rimraf-2.1.4" = self.by-version."rimraf"."2.1.4"; - "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."temp".">=0.5.0" = - self.by-version."temp"."0.8.1"; - by-spec."temp"."~0.5.1" = - self.by-version."temp"."0.5.1"; - by-version."temp"."0.5.1" = self.buildNodePackage { - name = "temp-0.5.1"; - version = "0.5.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/temp/-/temp-0.5.1.tgz"; - name = "temp-0.5.1.tgz"; - sha1 = "77ab19c79aa7b593cbe4fac2441768cad987b8df"; - }; - deps = { - "rimraf-2.1.4" = self.by-version."rimraf"."2.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."temp"."~0.6.0" = - self.by-version."temp"."0.6.0"; - by-spec."temp"."~0.8.1" = - self.by-version."temp"."0.8.1"; - by-spec."text-table"."~0.2.0" = - self.by-version."text-table"."0.2.0"; - by-version."text-table"."0.2.0" = self.buildNodePackage { - name = "text-table-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; - name = "text-table-0.2.0.tgz"; - sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thenify"."3" = - self.by-version."thenify"."3.1.0"; - by-version."thenify"."3.1.0" = self.buildNodePackage { - name = "thenify-3.1.0"; - version = "3.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/thenify/-/thenify-3.1.0.tgz"; - name = "thenify-3.1.0.tgz"; - sha1 = "c27cbbc62b7c287edf1a1a3d5cc8426d8aed49f0"; - }; - deps = { - "native-or-bluebird-1.2.0" = self.by-version."native-or-bluebird"."1.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thenify".">= 3.1.0 < 4" = - self.by-version."thenify"."3.1.0"; - by-spec."thenify-all"."1" = - self.by-version."thenify-all"."1.6.0"; - by-version."thenify-all"."1.6.0" = self.buildNodePackage { - name = "thenify-all-1.6.0"; - version = "1.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz"; - name = "thenify-all-1.6.0.tgz"; - sha1 = "1a1918d402d8fc3f98fbf234db0bcc8cc10e9726"; - }; - deps = { - "thenify-3.1.0" = self.by-version."thenify"."3.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thirty-two"."^0.0.2" = - self.by-version."thirty-two"."0.0.2"; - by-version."thirty-two"."0.0.2" = self.buildNodePackage { - name = "thirty-two-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/thirty-two/-/thirty-two-0.0.2.tgz"; - name = "thirty-two-0.0.2.tgz"; - sha1 = "4253e29d8cb058f0480267c5698c0e4927e54b6a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thirty-two"."~0.0.1" = - self.by-version."thirty-two"."0.0.2"; - by-spec."throttleit"."~0.0.2" = - self.by-version."throttleit"."0.0.2"; - by-version."throttleit"."0.0.2" = self.buildNodePackage { - name = "throttleit-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz"; - name = "throttleit-0.0.2.tgz"; - sha1 = "cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through"."2.3.4" = - self.by-version."through"."2.3.4"; - by-version."through"."2.3.4" = self.buildNodePackage { - name = "through-2.3.4"; - version = "2.3.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.3.4.tgz"; - name = "through-2.3.4.tgz"; - sha1 = "495e40e8d8a8eaebc7c275ea88c2b8fc14c56455"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through".">=2.2.7 <3" = - self.by-version."through"."2.3.7"; - by-version."through"."2.3.7" = self.buildNodePackage { - name = "through-2.3.7"; - version = "2.3.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.3.7.tgz"; - name = "through-2.3.7.tgz"; - sha1 = "5fcc3690fed2fdf98c6fc88b4d207a4624ac3b87"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through"."^2.3.6" = - self.by-version."through"."2.3.7"; - by-spec."through"."~2.2.0" = - self.by-version."through"."2.2.7"; - by-version."through"."2.2.7" = self.buildNodePackage { - name = "through-2.2.7"; - version = "2.2.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.2.7.tgz"; - name = "through-2.2.7.tgz"; - sha1 = "6e8e21200191d4eb6a99f6f010df46aa1c6eb2bd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through"."~2.2.7" = - self.by-version."through"."2.2.7"; - by-spec."through"."~2.3.4" = - self.by-version."through"."2.3.7"; - by-spec."through"."~2.3.6" = - self.by-version."through"."2.3.7"; - by-spec."through2"."0.6.3" = - self.by-version."through2"."0.6.3"; - by-version."through2"."0.6.3" = self.buildNodePackage { - name = "through2-0.6.3"; - version = "0.6.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-0.6.3.tgz"; - name = "through2-0.6.3.tgz"; - sha1 = "795292fde9f254c2a368b38f9cc5d1bd4663afb6"; - }; - deps = { - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through2"."0.6.x" = - self.by-version."through2"."0.6.5"; - by-version."through2"."0.6.5" = self.buildNodePackage { - name = "through2-0.6.5"; - version = "0.6.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; - name = "through2-0.6.5.tgz"; - sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; - }; - deps = { - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through2"."^0.6.1" = - self.by-version."through2"."0.6.5"; - by-spec."through2"."^0.6.2" = - self.by-version."through2"."0.6.5"; - by-spec."through2"."^0.6.3" = - self.by-version."through2"."0.6.5"; - by-spec."through2"."^1.0.0" = - self.by-version."through2"."1.1.1"; - by-version."through2"."1.1.1" = self.buildNodePackage { - name = "through2-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-1.1.1.tgz"; - name = "through2-1.1.1.tgz"; - sha1 = "0847cbc4449f3405574dbdccd9bb841b83ac3545"; - }; - deps = { - "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through2"."~0.4.1" = - self.by-version."through2"."0.4.2"; - by-version."through2"."0.4.2" = self.buildNodePackage { - name = "through2-0.4.2"; - version = "0.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-0.4.2.tgz"; - name = "through2-0.4.2.tgz"; - sha1 = "dbf5866031151ec8352bb6c4db64a2292a840b9b"; - }; - deps = { - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "xtend-2.1.2" = self.by-version."xtend"."2.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through2"."~0.5.1" = - self.by-version."through2"."0.5.1"; - by-version."through2"."0.5.1" = self.buildNodePackage { - name = "through2-0.5.1"; - version = "0.5.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/through2/-/through2-0.5.1.tgz"; - name = "through2-0.5.1.tgz"; - sha1 = "dfdd012eb9c700e2323fd334f38ac622ab372da7"; - }; - deps = { - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."through2"."~0.6.1" = - self.by-version."through2"."0.6.5"; - by-spec."through2"."~0.6.3" = - self.by-version."through2"."0.6.5"; - by-spec."thunkify"."~2.1.1" = - self.by-version."thunkify"."2.1.2"; - by-version."thunkify"."2.1.2" = self.buildNodePackage { - name = "thunkify-2.1.2"; - version = "2.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz"; - name = "thunkify-2.1.2.tgz"; - sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thunky"."^0.1.0" = - self.by-version."thunky"."0.1.0"; - by-version."thunky"."0.1.0" = self.buildNodePackage { - name = "thunky-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz"; - name = "thunky-0.1.0.tgz"; - sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."thunky"."~0.1.0" = - self.by-version."thunky"."0.1.0"; - by-spec."tildify"."^1.0.0" = - self.by-version."tildify"."1.0.0"; - by-version."tildify"."1.0.0" = self.buildNodePackage { - name = "tildify-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tildify/-/tildify-1.0.0.tgz"; - name = "tildify-1.0.0.tgz"; - sha1 = "2a021db5e8fbde0a8f8b4df37adaa8fb1d39d7dd"; - }; - deps = { - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."time".">=0.9.2" = - self.by-version."time"."0.11.2"; - by-version."time"."0.11.2" = self.buildNodePackage { - name = "time-0.11.2"; - version = "0.11.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/time/-/time-0.11.2.tgz"; - name = "time-0.11.2.tgz"; - sha1 = "6fb23a1df2267db88366fc640f894f33f10424d4"; - }; - deps = { - "bindings-1.2.0" = self.by-version."bindings"."1.2.0"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."time-line"."^1.0.1" = - self.by-version."time-line"."1.0.1"; - by-version."time-line"."1.0.1" = self.buildNodePackage { - name = "time-line-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/time-line/-/time-line-1.0.1.tgz"; - name = "time-line-1.0.1.tgz"; - sha1 = "afb89542301c3b5010d118c66b5d63920f5e9a7a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timed-out"."^2.0.0" = - self.by-version."timed-out"."2.0.0"; - by-version."timed-out"."2.0.0" = self.buildNodePackage { - name = "timed-out-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz"; - name = "timed-out-2.0.0.tgz"; - sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timers-browserify"."^1.0.1" = - self.by-version."timers-browserify"."1.4.0"; - by-version."timers-browserify"."1.4.0" = self.buildNodePackage { - name = "timers-browserify-1.4.0"; - version = "1.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.0.tgz"; - name = "timers-browserify-1.4.0.tgz"; - sha1 = "6b424b07688cd1978c2a3333ee618c46036d6ddb"; - }; - deps = { - "process-0.10.1" = self.by-version."process"."0.10.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timers-browserify"."~1.0.1" = - self.by-version."timers-browserify"."1.0.3"; - by-version."timers-browserify"."1.0.3" = self.buildNodePackage { - name = "timers-browserify-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timers-browserify/-/timers-browserify-1.0.3.tgz"; - name = "timers-browserify-1.0.3.tgz"; - sha1 = "ffba70c9c12eed916fd67318e629ac6f32295551"; - }; - deps = { - "process-0.5.2" = self.by-version."process"."0.5.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timers-ext"."0.1" = - self.by-version."timers-ext"."0.1.0"; - by-version."timers-ext"."0.1.0" = self.buildNodePackage { - name = "timers-ext-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timers-ext/-/timers-ext-0.1.0.tgz"; - name = "timers-ext-0.1.0.tgz"; - sha1 = "00345a2ca93089d1251322054389d263e27b77e2"; - }; - deps = { - "es5-ext-0.10.6" = self.by-version."es5-ext"."0.10.6"; - "next-tick-0.2.2" = self.by-version."next-tick"."0.2.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timespan"."2.x.x" = - self.by-version."timespan"."2.3.0"; - by-version."timespan"."2.3.0" = self.buildNodePackage { - name = "timespan-2.3.0"; - version = "2.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz"; - name = "timespan-2.3.0.tgz"; - sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."timespan"."~2.3.0" = - self.by-version."timespan"."2.3.0"; - by-spec."timezone"."*" = - self.by-version."timezone"."0.0.41"; - by-version."timezone"."0.0.41" = self.buildNodePackage { - name = "timezone-0.0.41"; - version = "0.0.41"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/timezone/-/timezone-0.0.41.tgz"; - name = "timezone-0.0.41.tgz"; - sha1 = "e32c7eb54932e29949d44e4e7ca91199cb345c0a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "timezone" = self.by-version."timezone"."0.0.41"; - by-spec."tinycolor"."0.x" = - self.by-version."tinycolor"."0.0.1"; - by-version."tinycolor"."0.0.1" = self.buildNodePackage { - name = "tinycolor-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz"; - name = "tinycolor-0.0.1.tgz"; - sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."titanium"."*" = - self.by-version."titanium"."4.0.0-beta7"; - by-version."titanium"."4.0.0-beta7" = self.buildNodePackage { - name = "titanium-4.0.0-beta7"; - version = "4.0.0-beta7"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/titanium/-/titanium-4.0.0-beta7.tgz"; - name = "titanium-4.0.0-beta7.tgz"; - sha1 = "966a1eb3170fe377e1144d7b93e4e4b9bb4a9848"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "fields-0.1.23" = self.by-version."fields"."0.1.23"; - "humanize-0.0.9" = self.by-version."humanize"."0.0.9"; - "jade-0.35.0" = self.by-version."jade"."0.35.0"; - "longjohn-0.2.4" = self.by-version."longjohn"."0.2.4"; - "moment-2.4.0" = self.by-version."moment"."2.4.0"; - "node-appc-0.2.26" = self.by-version."node-appc"."0.2.26"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "request-2.27.0" = self.by-version."request"."2.27.0"; - "semver-2.2.1" = self.by-version."semver"."2.2.1"; - "sprintf-0.1.5" = self.by-version."sprintf"."0.1.5"; - "temp-0.6.0" = self.by-version."temp"."0.6.0"; - "winston-0.6.2" = self.by-version."winston"."0.6.2"; - "wrench-1.5.8" = self.by-version."wrench"."1.5.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "titanium" = self.by-version."titanium"."4.0.0-beta7"; - by-spec."tldtools"."0.0.19" = - self.by-version."tldtools"."0.0.19"; - by-version."tldtools"."0.0.19" = self.buildNodePackage { - name = "tldtools-0.0.19"; - version = "0.0.19"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tldtools/-/tldtools-0.0.19.tgz"; - name = "tldtools-0.0.19.tgz"; - sha1 = "1df2277a43e291fd0a929c0e096a0a0917d75b1b"; - }; - deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tldtools".">=0.0.19" = - self.by-version."tldtools"."0.0.24"; - by-version."tldtools"."0.0.24" = self.buildNodePackage { - name = "tldtools-0.0.24"; - version = "0.0.24"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tldtools/-/tldtools-0.0.24.tgz"; - name = "tldtools-0.0.24.tgz"; - sha1 = "c9c793d04d7fbdccb90b1c02c019f7259375d612"; - }; - deps = { - "request-2.55.0" = self.by-version."request"."2.55.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tldtools".">=0.0.6" = - self.by-version."tldtools"."0.0.24"; - by-spec."tls-connect"."^0.2.2" = - self.by-version."tls-connect"."0.2.2"; - by-version."tls-connect"."0.2.2" = self.buildNodePackage { - name = "tls-connect-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tls-connect/-/tls-connect-0.2.2.tgz"; - name = "tls-connect-0.2.2.tgz"; - sha1 = "1d88d4f4cb829a0741b6acd05d1df73e0d566fd0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tls-connect"."~0.x" = - self.by-version."tls-connect"."0.2.2"; - by-spec."tmp"."0.0.24" = - self.by-version."tmp"."0.0.24"; - by-version."tmp"."0.0.24" = self.buildNodePackage { - name = "tmp-0.0.24"; - version = "0.0.24"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tmp/-/tmp-0.0.24.tgz"; - name = "tmp-0.0.24.tgz"; - sha1 = "d6a5e198d14a9835cc6f2d7c3d9e302428c8cf12"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tmp"."~0.0.20" = - self.by-version."tmp"."0.0.25"; - by-version."tmp"."0.0.25" = self.buildNodePackage { - name = "tmp-0.0.25"; - version = "0.0.25"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tmp/-/tmp-0.0.25.tgz"; - name = "tmp-0.0.25.tgz"; - sha1 = "b29629768c55f38df0bff33f6dfde052443da27d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."to-array"."0.1.3" = - self.by-version."to-array"."0.1.3"; - by-version."to-array"."0.1.3" = self.buildNodePackage { - name = "to-array-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz"; - name = "to-array-0.1.3.tgz"; - sha1 = "d45dadc6363417f60f28474fea50ecddbb4f4991"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."to-utf8"."0.0.1" = - self.by-version."to-utf8"."0.0.1"; - by-version."to-utf8"."0.0.1" = self.buildNodePackage { - name = "to-utf8-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/to-utf8/-/to-utf8-0.0.1.tgz"; - name = "to-utf8-0.0.1.tgz"; - sha1 = "d17aea72ff2fba39b9e43601be7b3ff72e089852"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tomahawk"."0.1.6" = - self.by-version."tomahawk"."0.1.6"; - by-version."tomahawk"."0.1.6" = self.buildNodePackage { - name = "tomahawk-0.1.6"; - version = "0.1.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/tomahawk/-/tomahawk-0.1.6.tgz"; - name = "tomahawk-0.1.6.tgz"; - sha1 = "9726580ec9f51c148cf2030c6255c110243d49a5"; - }; - deps = { - "body-parser-1.5.0" = self.by-version."body-parser"."1.5.0"; - "connect-3.0.2" = self.by-version."connect"."3.0.2"; - "errorhandler-1.1.1" = self.by-version."errorhandler"."1.1.1"; - "express-4.6.1" = self.by-version."express"."4.6.1"; - "morgan-1.2.0" = self.by-version."morgan"."1.2.0"; - "node-options-0.0.6" = self.by-version."node-options"."0.0.6"; - "socket.io-1.0.6" = self.by-version."socket.io"."1.0.6"; - "winston-0.7.3" = self.by-version."winston"."0.7.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tomahawk-plugin-kv-memory-store"."0.0.3" = - self.by-version."tomahawk-plugin-kv-memory-store"."0.0.3"; - by-version."tomahawk-plugin-kv-memory-store"."0.0.3" = self.buildNodePackage { - name = "tomahawk-plugin-kv-memory-store-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tomahawk-plugin-kv-memory-store/-/tomahawk-plugin-kv-memory-store-0.0.3.tgz"; - name = "tomahawk-plugin-kv-memory-store-0.0.3.tgz"; - sha1 = "120547598bd72ca72bd2eedb0ee03ae85c667b02"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."toobusy-js"."^0.4.1" = - self.by-version."toobusy-js"."0.4.1"; - by-version."toobusy-js"."0.4.1" = self.buildNodePackage { - name = "toobusy-js-0.4.1"; - version = "0.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/toobusy-js/-/toobusy-js-0.4.1.tgz"; - name = "toobusy-js-0.4.1.tgz"; - sha1 = "272be860c2302dbb56c63b77069b58ef620c18e9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."torrent-stream"."^0.18.1" = - self.by-version."torrent-stream"."0.18.1"; - by-version."torrent-stream"."0.18.1" = self.buildNodePackage { - name = "torrent-stream-0.18.1"; - version = "0.18.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/torrent-stream/-/torrent-stream-0.18.1.tgz"; - name = "torrent-stream-0.18.1.tgz"; - sha1 = "e2e8ca44d81f16fbe5646e0ebb05f5418fea9bf6"; - }; - deps = { - "bitfield-0.1.0" = self.by-version."bitfield"."0.1.0"; - "bittorrent-dht-3.0.8" = self.by-version."bittorrent-dht"."3.0.8"; - "bittorrent-tracker-2.12.1" = self.by-version."bittorrent-tracker"."2.12.1"; - "bncode-0.5.3" = self.by-version."bncode"."0.5.3"; - "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; - "end-of-stream-0.1.5" = self.by-version."end-of-stream"."0.1.5"; - "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "ip-0.3.2" = self.by-version."ip"."0.3.2"; - "ip-set-1.0.0" = self.by-version."ip-set"."1.0.0"; - "magnet-uri-2.0.1" = self.by-version."magnet-uri"."2.0.1"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "parse-torrent-4.0.0" = self.by-version."parse-torrent"."4.0.0"; - "peer-wire-swarm-0.9.2" = self.by-version."peer-wire-swarm"."0.9.2"; - "random-access-file-0.3.1" = self.by-version."random-access-file"."0.3.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."torrent-stream"."~0.13.3" = - self.by-version."torrent-stream"."0.13.5"; - by-version."torrent-stream"."0.13.5" = self.buildNodePackage { - name = "torrent-stream-0.13.5"; - version = "0.13.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/torrent-stream/-/torrent-stream-0.13.5.tgz"; - name = "torrent-stream-0.13.5.tgz"; - sha1 = "13127bc81f668ad4dbd26cf3e984c3dd1cd70d40"; - }; - deps = { - "bitfield-0.1.0" = self.by-version."bitfield"."0.1.0"; - "bittorrent-dht-1.5.0" = self.by-version."bittorrent-dht"."1.5.0"; - "bittorrent-tracker-2.12.1" = self.by-version."bittorrent-tracker"."2.12.1"; - "bncode-0.5.3" = self.by-version."bncode"."0.5.3"; - "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; - "end-of-stream-0.1.5" = self.by-version."end-of-stream"."0.1.5"; - "hat-0.0.3" = self.by-version."hat"."0.0.3"; - "ip-0.3.2" = self.by-version."ip"."0.3.2"; - "magnet-uri-2.0.1" = self.by-version."magnet-uri"."2.0.1"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "parse-torrent-1.7.0" = self.by-version."parse-torrent"."1.7.0"; - "peer-wire-swarm-0.9.2" = self.by-version."peer-wire-swarm"."0.9.2"; - "random-access-file-0.3.1" = self.by-version."random-access-file"."0.3.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."touch"."0.0.3" = - self.by-version."touch"."0.0.3"; - by-version."touch"."0.0.3" = self.buildNodePackage { - name = "touch-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/touch/-/touch-0.0.3.tgz"; - name = "touch-0.0.3.tgz"; - sha1 = "51aef3d449571d4f287a5d87c9c8b49181a0db1d"; - }; - deps = { - "nopt-1.0.10" = self.by-version."nopt"."1.0.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."touch"."~0.0.3" = - self.by-version."touch"."0.0.3"; - by-spec."tough-cookie".">=0.12.0" = - self.by-version."tough-cookie"."0.12.1"; - by-version."tough-cookie"."0.12.1" = self.buildNodePackage { - name = "tough-cookie-0.12.1"; - version = "0.12.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.12.1.tgz"; - name = "tough-cookie-0.12.1.tgz"; - sha1 = "8220c7e21abd5b13d96804254bd5a81ebf2c7d62"; - }; - deps = { - "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tough-cookie"."^0.12.1" = - self.by-version."tough-cookie"."0.12.1"; - by-spec."tough-cookie"."~0.9.15" = - self.by-version."tough-cookie"."0.9.15"; - by-version."tough-cookie"."0.9.15" = self.buildNodePackage { - name = "tough-cookie-0.9.15"; - version = "0.9.15"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-0.9.15.tgz"; - name = "tough-cookie-0.9.15.tgz"; - sha1 = "75617ac347e3659052b0350131885829677399f6"; - }; - deps = { - "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."traceur"."0.0.55" = - self.by-version."traceur"."0.0.55"; - by-version."traceur"."0.0.55" = self.buildNodePackage { - name = "traceur-0.0.55"; - version = "0.0.55"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/traceur/-/traceur-0.0.55.tgz"; - name = "traceur-0.0.55.tgz"; - sha1 = "b1a44b69bfbabb9db2c7c284713f4ebacf46f733"; - }; - deps = { - "commander-2.8.0" = self.by-version."commander"."2.8.0"; - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "semver-2.3.2" = self.by-version."semver"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."transformers"."2.1.0" = - self.by-version."transformers"."2.1.0"; - by-version."transformers"."2.1.0" = self.buildNodePackage { - name = "transformers-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz"; - name = "transformers-2.1.0.tgz"; - sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7"; - }; - deps = { - "promise-2.0.0" = self.by-version."promise"."2.0.0"; - "css-1.0.8" = self.by-version."css"."1.0.8"; - "uglify-js-2.2.5" = self.by-version."uglify-js"."2.2.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."trash"."*" = - self.by-version."trash"."1.4.1"; - by-version."trash"."1.4.1" = self.buildNodePackage { - name = "trash-1.4.1"; - version = "1.4.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/trash/-/trash-1.4.1.tgz"; - name = "trash-1.4.1.tgz"; - sha1 = "aa8e0ae39c9764ea1b2dcb9ebc324cbcd8d1a928"; - }; - deps = { - "meow-3.1.0" = self.by-version."meow"."3.1.0"; - "osx-trash-1.0.0" = self.by-version."osx-trash"."1.0.0"; - "update-notifier-0.3.2" = self.by-version."update-notifier"."0.3.2"; - "win-trash-1.0.0" = self.by-version."win-trash"."1.0.0"; - "xdg-trash-1.1.0" = self.by-version."xdg-trash"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "trash" = self.by-version."trash"."1.4.1"; - by-spec."traverse"."0.6.x" = - self.by-version."traverse"."0.6.6"; - by-version."traverse"."0.6.6" = self.buildNodePackage { - name = "traverse-0.6.6"; - version = "0.6.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; - name = "traverse-0.6.6.tgz"; - sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."traverse".">=0.2.4" = - self.by-version."traverse"."0.6.6"; - by-spec."traverse".">=0.3.0 <0.4" = - self.by-version."traverse"."0.3.9"; - by-version."traverse"."0.3.9" = self.buildNodePackage { - name = "traverse-0.3.9"; - version = "0.3.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz"; - name = "traverse-0.3.9.tgz"; - sha1 = "717b8f220cc0bb7b44e40514c22b2e8bbc70d8b9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."traverse"."~0.5.1" = - self.by-version."traverse"."0.5.2"; - by-version."traverse"."0.5.2" = self.buildNodePackage { - name = "traverse-0.5.2"; - version = "0.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/traverse/-/traverse-0.5.2.tgz"; - name = "traverse-0.5.2.tgz"; - sha1 = "e203c58d5f7f0e37db6e74c0acb929bb09b61d85"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."truncate"."~1.0.2" = - self.by-version."truncate"."1.0.4"; - by-version."truncate"."1.0.4" = self.buildNodePackage { - name = "truncate-1.0.4"; - version = "1.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/truncate/-/truncate-1.0.4.tgz"; - name = "truncate-1.0.4.tgz"; - sha1 = "2bcfbbff4a97b9089b693c1ae37c5105ec8775aa"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tryor"."~0.1.2" = - self.by-version."tryor"."0.1.2"; - by-version."tryor"."0.1.2" = self.buildNodePackage { - name = "tryor-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz"; - name = "tryor-0.1.2.tgz"; - sha1 = "8145e4ca7caff40acde3ccf946e8b8bb75b4172b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tty-browserify"."0.0.0" = - self.by-version."tty-browserify"."0.0.0"; - by-version."tty-browserify"."0.0.0" = self.buildNodePackage { - name = "tty-browserify-0.0.0"; - version = "0.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"; - name = "tty-browserify-0.0.0.tgz"; - sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tty-browserify"."~0.0.0" = - self.by-version."tty-browserify"."0.0.0"; - by-spec."tunnel-agent"."^0.4.0" = - self.by-version."tunnel-agent"."0.4.0"; - by-version."tunnel-agent"."0.4.0" = self.buildNodePackage { - name = "tunnel-agent-0.4.0"; - version = "0.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.0.tgz"; - name = "tunnel-agent-0.4.0.tgz"; - sha1 = "b1184e312ffbcf70b3b4c78e8c219de7ebb1c550"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tunnel-agent"."~0.2.0" = - self.by-version."tunnel-agent"."0.2.0"; - by-version."tunnel-agent"."0.2.0" = self.buildNodePackage { - name = "tunnel-agent-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz"; - name = "tunnel-agent-0.2.0.tgz"; - sha1 = "6853c2afb1b2109e45629e492bde35f459ea69e8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tunnel-agent"."~0.3.0" = - self.by-version."tunnel-agent"."0.3.0"; - by-version."tunnel-agent"."0.3.0" = self.buildNodePackage { - name = "tunnel-agent-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.3.0.tgz"; - name = "tunnel-agent-0.3.0.tgz"; - sha1 = "ad681b68f5321ad2827c4cfb1b7d5df2cfe942ee"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."tunnel-agent"."~0.4.0" = - self.by-version."tunnel-agent"."0.4.0"; - by-spec."twilio".">=1.1.4" = - self.by-version."twilio"."2.0.0"; - by-version."twilio"."2.0.0" = self.buildNodePackage { - name = "twilio-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/twilio/-/twilio-2.0.0.tgz"; - name = "twilio-2.0.0.tgz"; - sha1 = "2b762e4890509514c295d152c22a596924f37bdd"; - }; - deps = { - "request-2.27.0" = self.by-version."request"."2.27.0"; - "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "jwt-simple-0.1.0" = self.by-version."jwt-simple"."0.1.0"; - "q-0.9.7" = self.by-version."q"."0.9.7"; - "scmp-0.0.3" = self.by-version."scmp"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."twitter-ng"."0.6.2" = - self.by-version."twitter-ng"."0.6.2"; - by-version."twitter-ng"."0.6.2" = self.buildNodePackage { - name = "twitter-ng-0.6.2"; - version = "0.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/twitter-ng/-/twitter-ng-0.6.2.tgz"; - name = "twitter-ng-0.6.2.tgz"; - sha1 = "13707115dd04c9bd1f2c646da976589be4d64bc4"; - }; - deps = { - "oauth-0.9.12" = self.by-version."oauth"."0.9.12"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."type-check"."~0.3.1" = - self.by-version."type-check"."0.3.1"; - by-version."type-check"."0.3.1" = self.buildNodePackage { - name = "type-check-0.3.1"; - version = "0.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/type-check/-/type-check-0.3.1.tgz"; - name = "type-check-0.3.1.tgz"; - sha1 = "9233923c4da174d0ac5480ecfd6ef84c349eb58d"; - }; - deps = { - "prelude-ls-1.1.1" = self.by-version."prelude-ls"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."type-detect"."0.1.1" = - self.by-version."type-detect"."0.1.1"; - by-version."type-detect"."0.1.1" = self.buildNodePackage { - name = "type-detect-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz"; - name = "type-detect-0.1.1.tgz"; - sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."type-is"."~1.3.2" = - self.by-version."type-is"."1.3.2"; - by-version."type-is"."1.3.2" = self.buildNodePackage { - name = "type-is-1.3.2"; - version = "1.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/type-is/-/type-is-1.3.2.tgz"; - name = "type-is-1.3.2.tgz"; - sha1 = "4f2a5dc58775ca1630250afc7186f8b36309d1bb"; - }; - deps = { - "media-typer-0.2.0" = self.by-version."media-typer"."0.2.0"; - "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."type-is"."~1.5.1" = - self.by-version."type-is"."1.5.7"; - by-version."type-is"."1.5.7" = self.buildNodePackage { - name = "type-is-1.5.7"; - version = "1.5.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/type-is/-/type-is-1.5.7.tgz"; - name = "type-is-1.5.7.tgz"; - sha1 = "b9368a593cc6ef7d0645e78b2f4c64cbecd05e90"; - }; - deps = { - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."type-is"."~1.5.2" = - self.by-version."type-is"."1.5.7"; - by-spec."type-is"."~1.6.1" = - self.by-version."type-is"."1.6.1"; - by-version."type-is"."1.6.1" = self.buildNodePackage { - name = "type-is-1.6.1"; - version = "1.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/type-is/-/type-is-1.6.1.tgz"; - name = "type-is-1.6.1.tgz"; - sha1 = "49addecb0f6831cbc1d34ba929f0f3a4f21b0f2e"; - }; - deps = { - "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; - "mime-types-2.0.10" = self.by-version."mime-types"."2.0.10"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."typechecker"."~2.0.1" = - self.by-version."typechecker"."2.0.8"; - by-version."typechecker"."2.0.8" = self.buildNodePackage { - name = "typechecker-2.0.8"; - version = "2.0.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/typechecker/-/typechecker-2.0.8.tgz"; - name = "typechecker-2.0.8.tgz"; - sha1 = "e83da84bb64c584ccb345838576c40b0337db82e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."typedarray"."~0.0.5" = - self.by-version."typedarray"."0.0.6"; - by-version."typedarray"."0.0.6" = self.buildNodePackage { - name = "typedarray-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; - name = "typedarray-0.0.6.tgz"; - sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."typescript"."1.5.0-alpha" = self.buildNodePackage { - name = "typescript-1.5.0-alpha"; - version = "1.5.0-alpha"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/typescript/-/typescript-1.5.0-alpha.tgz"; - name = "typescript-1.5.0-alpha.tgz"; - sha1 = "3186ae01d409d9dd924eb35c57e90c2013b97497"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."typescript"."1.8.9" = self.buildNodePackage { - name = "typescript-1.8.9"; - version = "1.8.9"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/typescript/-/typescript-1.8.9.tgz"; - name = "typescript-1.8.9.tgz"; - sha1 = "b3b3a74059fd31cbd3ecad95d62465939e7ed5fa"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."typescript"."*" = - self.by-version."typescript"."1.8.9"; - by-spec."typescript"."~1.8.9" = - self.by-version."typescript"."1.8.9"; - "typescript" = self.by-version."typescript"."1.8.9"; - by-spec."typewiselite"."~1.0.0" = - self.by-version."typewiselite"."1.0.0"; - by-version."typewiselite"."1.0.0" = self.buildNodePackage { - name = "typewiselite-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/typewiselite/-/typewiselite-1.0.0.tgz"; - name = "typewiselite-1.0.0.tgz"; - sha1 = "c8882fa1bb1092c06005a97f34ef5c8508e3664e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uc.micro"."^1.0.0" = - self.by-version."uc.micro"."1.0.0"; - by-version."uc.micro"."1.0.0" = self.buildNodePackage { - name = "uc.micro-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uc.micro/-/uc.micro-1.0.0.tgz"; - name = "uc.micro-1.0.0.tgz"; - sha1 = "4c5a6dee941b515a5bd5cf5d05b121e0e49c5fb7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."*" = - self.by-version."uglify-js"."2.4.20"; - by-version."uglify-js"."2.4.20" = self.buildNodePackage { - name = "uglify-js-2.4.20"; - version = "2.4.20"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-2.4.20.tgz"; - name = "uglify-js-2.4.20.tgz"; - sha1 = "f4e9c0ac1d61c0a71d7eb85b3477c3af4cf4a3f2"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "source-map-0.1.34" = self.by-version."source-map"."0.1.34"; - "yargs-3.5.4" = self.by-version."yargs"."3.5.4"; - "uglify-to-browserify-1.0.2" = self.by-version."uglify-to-browserify"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "uglify-js" = self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-js"."1.2.5" = - self.by-version."uglify-js"."1.2.5"; - by-version."uglify-js"."1.2.5" = self.buildNodePackage { - name = "uglify-js-1.2.5"; - version = "1.2.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-1.2.5.tgz"; - name = "uglify-js-1.2.5.tgz"; - sha1 = "b542c2c76f78efb34b200b20177634330ff702b6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."2.4.0" = - self.by-version."uglify-js"."2.4.0"; - by-version."uglify-js"."2.4.0" = self.buildNodePackage { - name = "uglify-js-2.4.0"; - version = "2.4.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-2.4.0.tgz"; - name = "uglify-js-2.4.0.tgz"; - sha1 = "a5f2b6b1b817fb34c16a04234328c89ba1e77137"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; - "uglify-to-browserify-1.0.2" = self.by-version."uglify-to-browserify"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."2.4.16" = - self.by-version."uglify-js"."2.4.16"; - by-version."uglify-js"."2.4.16" = self.buildNodePackage { - name = "uglify-js-2.4.16"; - version = "2.4.16"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-2.4.16.tgz"; - name = "uglify-js-2.4.16.tgz"; - sha1 = "84143487eb480efd7d0789c7ecfbd48a695839f9"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "source-map-0.1.34" = self.by-version."source-map"."0.1.34"; - "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; - "uglify-to-browserify-1.0.2" = self.by-version."uglify-to-browserify"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."^2.4.15" = - self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-js"."^2.4.19" = - self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-js"."~1.1.1" = - self.by-version."uglify-js"."1.1.1"; - by-version."uglify-js"."1.1.1" = self.buildNodePackage { - name = "uglify-js-1.1.1"; - version = "1.1.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-1.1.1.tgz"; - name = "uglify-js-1.1.1.tgz"; - sha1 = "ee71a97c4cefd06a1a9b20437f34118982aa035b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."~2.2" = - self.by-version."uglify-js"."2.2.5"; - by-version."uglify-js"."2.2.5" = self.buildNodePackage { - name = "uglify-js-2.2.5"; - version = "2.2.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz"; - name = "uglify-js-2.2.5.tgz"; - sha1 = "a6e02a70d839792b9780488b7b8b184c095c99c7"; - }; - deps = { - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."~2.2.5" = - self.by-version."uglify-js"."2.2.5"; - by-spec."uglify-js"."~2.3" = - self.by-version."uglify-js"."2.3.6"; - by-version."uglify-js"."2.3.6" = self.buildNodePackage { - name = "uglify-js-2.3.6"; - version = "2.3.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz"; - name = "uglify-js-2.3.6.tgz"; - sha1 = "fa0984770b428b7a9b2a8058f46355d14fef211a"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; - "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uglify-js"."~2.4.0" = - self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-js"."~2.4.13" = - self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-js"."~2.4.15" = - self.by-version."uglify-js"."2.4.20"; - by-spec."uglify-to-browserify"."~1.0.0" = - self.by-version."uglify-to-browserify"."1.0.2"; - by-version."uglify-to-browserify"."1.0.2" = self.buildNodePackage { - name = "uglify-to-browserify-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; - name = "uglify-to-browserify-1.0.2.tgz"; - sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid"."0.0.2" = - self.by-version."uid"."0.0.2"; - by-version."uid"."0.0.2" = self.buildNodePackage { - name = "uid-0.0.2"; - version = "0.0.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/uid/-/uid-0.0.2.tgz"; - name = "uid-0.0.2.tgz"; - sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-number"."0" = - self.by-version."uid-number"."0.0.6"; - by-version."uid-number"."0.0.6" = self.buildNodePackage { - name = "uid-number-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz"; - name = "uid-number-0.0.6.tgz"; - sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-number"."0.0.3" = - self.by-version."uid-number"."0.0.3"; - by-version."uid-number"."0.0.3" = self.buildNodePackage { - name = "uid-number-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid-number/-/uid-number-0.0.3.tgz"; - name = "uid-number-0.0.3.tgz"; - sha1 = "cefb0fa138d8d8098da71a40a0d04a8327d6e1cc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-number"."0.0.5" = - self.by-version."uid-number"."0.0.5"; - by-version."uid-number"."0.0.5" = self.buildNodePackage { - name = "uid-number-0.0.5"; - version = "0.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid-number/-/uid-number-0.0.5.tgz"; - name = "uid-number-0.0.5.tgz"; - sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-number"."0.0.6" = - self.by-version."uid-number"."0.0.6"; - by-spec."uid-safe"."1.0.1" = - self.by-version."uid-safe"."1.0.1"; - by-version."uid-safe"."1.0.1" = self.buildNodePackage { - name = "uid-safe-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid-safe/-/uid-safe-1.0.1.tgz"; - name = "uid-safe-1.0.1.tgz"; - sha1 = "5bd148460a2e84f54f193fd20352c8c3d7de6ac8"; - }; - deps = { - "mz-1.3.0" = self.by-version."mz"."1.3.0"; - "base64-url-1.2.1" = self.by-version."base64-url"."1.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-safe"."1.1.0" = - self.by-version."uid-safe"."1.1.0"; - by-version."uid-safe"."1.1.0" = self.buildNodePackage { - name = "uid-safe-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid-safe/-/uid-safe-1.1.0.tgz"; - name = "uid-safe-1.1.0.tgz"; - sha1 = "58d6c5dabf8dfbd8d52834839806c03fd6143232"; - }; - deps = { - "base64-url-1.2.1" = self.by-version."base64-url"."1.2.1"; - "native-or-bluebird-1.1.2" = self.by-version."native-or-bluebird"."1.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid-safe"."~1.1.0" = - self.by-version."uid-safe"."1.1.0"; - by-spec."uid2"."0.0.3" = - self.by-version."uid2"."0.0.3"; - by-version."uid2"."0.0.3" = self.buildNodePackage { - name = "uid2-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; - name = "uid2-0.0.3.tgz"; - sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uid2"."0.0.x" = - self.by-version."uid2"."0.0.3"; - by-spec."uid2"."~0.0.2" = - self.by-version."uid2"."0.0.3"; - by-spec."ultron"."1.0.x" = - self.by-version."ultron"."1.0.1"; - by-version."ultron"."1.0.1" = self.buildNodePackage { - name = "ultron-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ultron/-/ultron-1.0.1.tgz"; - name = "ultron-1.0.1.tgz"; - sha1 = "c9d8d86c9cf2823028eb45629ab725897dd65dc5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."umask"."~1.1.0" = - self.by-version."umask"."1.1.0"; - by-version."umask"."1.1.0" = self.buildNodePackage { - name = "umask-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/umask/-/umask-1.1.0.tgz"; - name = "umask-1.1.0.tgz"; - sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."umd"."^2.1.0" = - self.by-version."umd"."2.1.0"; - by-version."umd"."2.1.0" = self.buildNodePackage { - name = "umd-2.1.0"; - version = "2.1.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/umd/-/umd-2.1.0.tgz"; - name = "umd-2.1.0.tgz"; - sha1 = "4a6307b762f17f02d201b5fa154e673396c263cf"; - }; - deps = { - "rfile-1.0.0" = self.by-version."rfile"."1.0.0"; - "ruglify-1.0.0" = self.by-version."ruglify"."1.0.0"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."umd"."^3.0.0" = - self.by-version."umd"."3.0.0"; - by-version."umd"."3.0.0" = self.buildNodePackage { - name = "umd-3.0.0"; - version = "3.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/umd/-/umd-3.0.0.tgz"; - name = "umd-3.0.0.tgz"; - sha1 = "328de29bf1004abb4d6309d7fff1b84b9f823b83"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."umd"."~2.0.0" = - self.by-version."umd"."2.0.0"; - by-version."umd"."2.0.0" = self.buildNodePackage { - name = "umd-2.0.0"; - version = "2.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/umd/-/umd-2.0.0.tgz"; - name = "umd-2.0.0.tgz"; - sha1 = "749683b0d514728ae0e1b6195f5774afc0ad4f8f"; - }; - deps = { - "rfile-1.0.0" = self.by-version."rfile"."1.0.0"; - "ruglify-1.0.0" = self.by-version."ruglify"."1.0.0"; - "through-2.3.7" = self.by-version."through"."2.3.7"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."umd"."~2.1.0" = - self.by-version."umd"."2.1.0"; - by-spec."underscore"."*" = - self.by-version."underscore"."1.8.3"; - by-version."underscore"."1.8.3" = self.buildNodePackage { - name = "underscore-1.8.3"; - version = "1.8.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; - name = "underscore-1.8.3.tgz"; - sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "underscore" = self.by-version."underscore"."1.8.3"; - by-spec."underscore"."1.2.1" = - self.by-version."underscore"."1.2.1"; - by-version."underscore"."1.2.1" = self.buildNodePackage { - name = "underscore-1.2.1"; - version = "1.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz"; - name = "underscore-1.2.1.tgz"; - sha1 = "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."1.3.3" = - self.by-version."underscore"."1.3.3"; - by-version."underscore"."1.3.3" = self.buildNodePackage { - name = "underscore-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.3.3.tgz"; - name = "underscore-1.3.3.tgz"; - sha1 = "47ac53683daf832bfa952e1774417da47817ae42"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."1.6.x" = - self.by-version."underscore"."1.6.0"; - by-version."underscore"."1.6.0" = self.buildNodePackage { - name = "underscore-1.6.0"; - version = "1.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; - name = "underscore-1.6.0.tgz"; - sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."1.7.0" = - self.by-version."underscore"."1.7.0"; - by-version."underscore"."1.7.0" = self.buildNodePackage { - name = "underscore-1.7.0"; - version = "1.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz"; - name = "underscore-1.7.0.tgz"; - sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."1.8.2" = - self.by-version."underscore"."1.8.2"; - by-version."underscore"."1.8.2" = self.buildNodePackage { - name = "underscore-1.8.2"; - version = "1.8.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.8.2.tgz"; - name = "underscore-1.8.2.tgz"; - sha1 = "64df2eb590899de950782f3735190ba42ebf311d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."1.x" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore".">= 1.3.3" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore".">=1.1.7" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore".">=1.3.1" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore".">=1.5.0" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore".">=1.5.2" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore"."^1.6.0" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore"."^1.7.0" = - self.by-version."underscore"."1.8.3"; - by-spec."underscore"."~1.4.3" = - self.by-version."underscore"."1.4.4"; - by-version."underscore"."1.4.4" = self.buildNodePackage { - name = "underscore-1.4.4"; - version = "1.4.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"; - name = "underscore-1.4.4.tgz"; - sha1 = "61a6a32010622afa07963bf325203cf12239d604"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."~1.4.4" = - self.by-version."underscore"."1.4.4"; - by-spec."underscore"."~1.5.2" = - self.by-version."underscore"."1.5.2"; - by-version."underscore"."1.5.2" = self.buildNodePackage { - name = "underscore-1.5.2"; - version = "1.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz"; - name = "underscore-1.5.2.tgz"; - sha1 = "1335c5e4f5e6d33bbb4b006ba8c86a00f556de08"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore"."~1.7.0" = - self.by-version."underscore"."1.7.0"; - by-spec."underscore.string"."~2.2.1" = - self.by-version."underscore.string"."2.2.1"; - by-version."underscore.string"."2.2.1" = self.buildNodePackage { - name = "underscore.string-2.2.1"; - version = "2.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz"; - name = "underscore.string-2.2.1.tgz"; - sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore.string"."~2.3.1" = - self.by-version."underscore.string"."2.3.3"; - by-version."underscore.string"."2.3.3" = self.buildNodePackage { - name = "underscore.string-2.3.3"; - version = "2.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"; - name = "underscore.string-2.3.3.tgz"; - sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."underscore.string"."~2.3.3" = - self.by-version."underscore.string"."2.3.3"; - by-spec."underscore.string"."~2.4.0" = - self.by-version."underscore.string"."2.4.0"; - by-version."underscore.string"."2.4.0" = self.buildNodePackage { - name = "underscore.string-2.4.0"; - version = "2.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz"; - name = "underscore.string-2.4.0.tgz"; - sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."unfunk-diff"."~0.0.1" = - self.by-version."unfunk-diff"."0.0.2"; - by-version."unfunk-diff"."0.0.2" = self.buildNodePackage { - name = "unfunk-diff-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/unfunk-diff/-/unfunk-diff-0.0.2.tgz"; - name = "unfunk-diff-0.0.2.tgz"; - sha1 = "8560d6b5cb3dcb1ed4d541e7fe59cea514697578"; - }; - deps = { - "diff-1.0.8" = self.by-version."diff"."1.0.8"; - "jsesc-0.4.3" = self.by-version."jsesc"."0.4.3"; - "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ungit"."*" = - self.by-version."ungit"."0.9.1"; - by-version."ungit"."0.9.1" = self.buildNodePackage { - name = "ungit-0.9.1"; - version = "0.9.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/ungit/-/ungit-0.9.1.tgz"; - name = "ungit-0.9.1.tgz"; - sha1 = "e2148e21aa8c488aaecab0c293f97134aca6c348"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "blueimp-md5-1.1.0" = self.by-version."blueimp-md5"."1.1.0"; - "body-parser-1.12.3" = self.by-version."body-parser"."1.12.3"; - "color-0.8.0" = self.by-version."color"."0.8.0"; - "cookie-parser-1.3.4" = self.by-version."cookie-parser"."1.3.4"; - "crossroads-0.12.0" = self.by-version."crossroads"."0.12.0"; - "diff2html-0.1.9" = self.by-version."diff2html"."0.1.9"; - "express-4.12.3" = self.by-version."express"."4.12.3"; - "express-session-1.10.4" = self.by-version."express-session"."1.10.4"; - "forever-monitor-1.5.2" = self.by-version."forever-monitor"."1.5.2"; - "getmac-1.0.7" = self.by-version."getmac"."1.0.7"; - "hasher-1.2.0" = self.by-version."hasher"."1.2.0"; - "keen.io-0.1.3" = self.by-version."keen.io"."0.1.3"; - "knockout-3.3.0" = self.by-version."knockout"."3.3.0"; - "lodash-3.6.0" = self.by-version."lodash"."3.6.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "moment-2.9.0" = self.by-version."moment"."2.9.0"; - "npm-registry-client-6.1.2" = self.by-version."npm-registry-client"."6.1.2"; - "npmconf-2.1.1" = self.by-version."npmconf"."2.1.1"; - "open-0.0.5" = self.by-version."open"."0.0.5"; - "passport-0.2.1" = self.by-version."passport"."0.2.1"; - "passport-local-1.0.0" = self.by-version."passport-local"."1.0.0"; - "raven-0.7.3" = self.by-version."raven"."0.7.3"; - "rc-1.0.1" = self.by-version."rc"."1.0.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - "semver-4.3.3" = self.by-version."semver"."4.3.3"; - "serve-static-1.9.2" = self.by-version."serve-static"."1.9.2"; - "signals-1.0.0" = self.by-version."signals"."1.0.0"; - "socket.io-0.9.17" = self.by-version."socket.io"."0.9.17"; - "superagent-0.21.0" = self.by-version."superagent"."0.21.0"; - "temp-0.8.1" = self.by-version."temp"."0.8.1"; - "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; - "winston-0.9.0" = self.by-version."winston"."0.9.0"; - "yargs-3.6.0" = self.by-version."yargs"."3.6.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "ungit" = self.by-version."ungit"."0.9.1"; - by-spec."unique-stream"."^1.0.0" = - self.by-version."unique-stream"."1.0.0"; - by-version."unique-stream"."1.0.0" = self.buildNodePackage { - name = "unique-stream-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz"; - name = "unique-stream-1.0.0.tgz"; - sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."unorm"."1.3.3" = - self.by-version."unorm"."1.3.3"; - by-version."unorm"."1.3.3" = self.buildNodePackage { - name = "unorm-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/unorm/-/unorm-1.3.3.tgz"; - name = "unorm-1.3.3.tgz"; - sha1 = "16a8772671ebd6f7cde6f8c5e49bb60ac47dba93"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."untildify"."^1.0.0" = - self.by-version."untildify"."1.0.0"; - by-version."untildify"."1.0.0" = self.buildNodePackage { - name = "untildify-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/untildify/-/untildify-1.0.0.tgz"; - name = "untildify-1.0.0.tgz"; - sha1 = "4d8031d1806f4fbd7c42b0237aaf213686262635"; - }; - deps = { - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."update-notifier"."^0.3.0" = - self.by-version."update-notifier"."0.3.2"; - by-version."update-notifier"."0.3.2" = self.buildNodePackage { - name = "update-notifier-0.3.2"; - version = "0.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/update-notifier/-/update-notifier-0.3.2.tgz"; - name = "update-notifier-0.3.2.tgz"; - sha1 = "22a8735baadef3320e2db928f693da898dc87777"; - }; - deps = { - "chalk-1.0.0" = self.by-version."chalk"."1.0.0"; - "configstore-0.3.2" = self.by-version."configstore"."0.3.2"; - "is-npm-1.0.0" = self.by-version."is-npm"."1.0.0"; - "latest-version-1.0.0" = self.by-version."latest-version"."1.0.0"; - "semver-diff-2.0.0" = self.by-version."semver-diff"."2.0.0"; - "string-length-1.0.0" = self.by-version."string-length"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uri-path"."0.0.2" = - self.by-version."uri-path"."0.0.2"; - by-version."uri-path"."0.0.2" = self.buildNodePackage { - name = "uri-path-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uri-path/-/uri-path-0.0.2.tgz"; - name = "uri-path-0.0.2.tgz"; - sha1 = "803eb01f2feb17927dcce0f6187e72b75f53f554"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."url"."~0.10.1" = - self.by-version."url"."0.10.3"; - by-version."url"."0.10.3" = self.buildNodePackage { - name = "url-0.10.3"; - version = "0.10.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/url/-/url-0.10.3.tgz"; - name = "url-0.10.3.tgz"; - sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; - }; - deps = { - "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; - "querystring-0.2.0" = self.by-version."querystring"."0.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."url"."~0.7.9" = - self.by-version."url"."0.7.9"; - by-version."url"."0.7.9" = self.buildNodePackage { - name = "url-0.7.9"; - version = "0.7.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/url/-/url-0.7.9.tgz"; - name = "url-0.7.9.tgz"; - sha1 = "1959b1a8b361fc017b59513a7c7fa9827f5e4ed0"; - }; - deps = { - "querystring-0.1.0" = self.by-version."querystring"."0.1.0"; - "punycode-1.0.0" = self.by-version."punycode"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."url-join"."0.0.x" = - self.by-version."url-join"."0.0.1"; - by-version."url-join"."0.0.1" = self.buildNodePackage { - name = "url-join-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/url-join/-/url-join-0.0.1.tgz"; - name = "url-join-0.0.1.tgz"; - sha1 = "1db48ad422d3402469a87f7d97bdebfe4fb1e3c8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."user-home"."^1.0.0" = - self.by-version."user-home"."1.1.1"; - by-version."user-home"."1.1.1" = self.buildNodePackage { - name = "user-home-1.1.1"; - version = "1.1.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz"; - name = "user-home-1.1.1.tgz"; - sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."user-home"."^1.1.0" = - self.by-version."user-home"."1.1.1"; - by-spec."user-home"."^1.1.1" = - self.by-version."user-home"."1.1.1"; - by-spec."useragent"."~2.0.4" = - self.by-version."useragent"."2.0.10"; - by-version."useragent"."2.0.10" = self.buildNodePackage { - name = "useragent-2.0.10"; - version = "2.0.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/useragent/-/useragent-2.0.10.tgz"; - name = "useragent-2.0.10.tgz"; - sha1 = "af2c1cc641159361e4d830866eb716ba4679de33"; - }; - deps = { - "lru-cache-2.2.4" = self.by-version."lru-cache"."2.2.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utf-8-validate"."1.0.x" = - self.by-version."utf-8-validate"."1.0.1"; - by-version."utf-8-validate"."1.0.1" = self.buildNodePackage { - name = "utf-8-validate-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.0.1.tgz"; - name = "utf-8-validate-1.0.1.tgz"; - sha1 = "d15eb67e28f6bb93c9401eeb7eac7030a183e8d1"; - }; - deps = { - "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; - "nan-1.6.2" = self.by-version."nan"."1.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utf7"."1.0.0" = - self.by-version."utf7"."1.0.0"; - by-version."utf7"."1.0.0" = self.buildNodePackage { - name = "utf7-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utf7/-/utf7-1.0.0.tgz"; - name = "utf7-1.0.0.tgz"; - sha1 = "70c895de9d85b8ee7ef5a1fa8e169241c46e72cc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utf8"."2.0.0" = - self.by-version."utf8"."2.0.0"; - by-version."utf8"."2.0.0" = self.buildNodePackage { - name = "utf8-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz"; - name = "utf8-2.0.0.tgz"; - sha1 = "79ce59eced874809cab9a71fc7102c7d45d4118d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utfx"."~1.0.0" = - self.by-version."utfx"."1.0.0"; - by-version."utfx"."1.0.0" = self.buildNodePackage { - name = "utfx-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utfx/-/utfx-1.0.0.tgz"; - name = "utfx-1.0.0.tgz"; - sha1 = "a6ecdd5c70b2bf1f7fe2381afd1a806d0343b6e1"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."util"."0.10.3" = - self.by-version."util"."0.10.3"; - by-version."util"."0.10.3" = self.buildNodePackage { - name = "util-0.10.3"; - version = "0.10.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/util/-/util-0.10.3.tgz"; - name = "util-0.10.3.tgz"; - sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."util"."0.4.9" = - self.by-version."util"."0.4.9"; - by-version."util"."0.4.9" = self.buildNodePackage { - name = "util-0.4.9"; - version = "0.4.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/util/-/util-0.4.9.tgz"; - name = "util-0.4.9.tgz"; - sha1 = "d95d5830d2328ec17dee3c80bfc50c33562b75a3"; - }; - deps = { - "events.node-0.4.9" = self.by-version."events.node"."0.4.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."util".">=0.10.3 <1" = - self.by-version."util"."0.10.3"; - by-spec."util"."~0.10.1" = - self.by-version."util"."0.10.3"; - by-spec."util"."~0.10.3" = - self.by-version."util"."0.10.3"; - by-spec."util-deprecate"."1.0.0" = - self.by-version."util-deprecate"."1.0.0"; - by-version."util-deprecate"."1.0.0" = self.buildNodePackage { - name = "util-deprecate-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.0.tgz"; - name = "util-deprecate-1.0.0.tgz"; - sha1 = "3007af012c140eae26de05576ec22785cac3abf2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."util-extend"."^1.0.1" = - self.by-version."util-extend"."1.0.1"; - by-version."util-extend"."1.0.1" = self.buildNodePackage { - name = "util-extend-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/util-extend/-/util-extend-1.0.1.tgz"; - name = "util-extend-1.0.1.tgz"; - sha1 = "bb703b79480293ddcdcfb3c6a9fea20f483415bc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utile"."0.2.1" = - self.by-version."utile"."0.2.1"; - by-version."utile"."0.2.1" = self.buildNodePackage { - name = "utile-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utile/-/utile-0.2.1.tgz"; - name = "utile-0.2.1.tgz"; - sha1 = "930c88e99098d6220834c356cbd9a770522d90d7"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "deep-equal-1.0.0" = self.by-version."deep-equal"."1.0.0"; - "i-0.3.3" = self.by-version."i"."0.3.3"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "ncp-0.4.2" = self.by-version."ncp"."0.4.2"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utile"."0.2.x" = - self.by-version."utile"."0.2.1"; - by-spec."utile"."~0.2.1" = - self.by-version."utile"."0.2.1"; - by-spec."utils-merge"."1.0.0" = - self.by-version."utils-merge"."1.0.0"; - by-version."utils-merge"."1.0.0" = self.buildNodePackage { - name = "utils-merge-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz"; - name = "utils-merge-1.0.0.tgz"; - sha1 = "0294fb922bb9375153541c4f7096231f287c8af8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."utils-merge"."1.x.x" = - self.by-version."utils-merge"."1.0.0"; - by-spec."uuid"."^2.0.1" = - self.by-version."uuid"."2.0.1"; - by-version."uuid"."2.0.1" = self.buildNodePackage { - name = "uuid-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz"; - name = "uuid-2.0.1.tgz"; - sha1 = "c2a30dedb3e535d72ccf82e343941a50ba8533ac"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."uuid"."~2.0.1" = - self.by-version."uuid"."2.0.1"; - by-spec."v8-debug"."~0.4.2" = - self.by-version."v8-debug"."0.4.2"; - by-version."v8-debug"."0.4.2" = self.buildNodePackage { - name = "v8-debug-0.4.2"; - version = "0.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/v8-debug/-/v8-debug-0.4.2.tgz"; - name = "v8-debug-0.4.2.tgz"; - sha1 = "a43ec4699f7760828bcd6520f9d7938ccf612dfe"; - }; - deps = { - "node-pre-gyp-0.6.4" = self.by-version."node-pre-gyp"."0.6.4"; - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."v8-profiler"."~5.2.4" = - self.by-version."v8-profiler"."5.2.4"; - by-version."v8-profiler"."5.2.4" = self.buildNodePackage { - name = "v8-profiler-5.2.4"; - version = "5.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/v8-profiler/-/v8-profiler-5.2.4.tgz"; - name = "v8-profiler-5.2.4.tgz"; - sha1 = "858df0a98dffb79f5df5de74c21a05f57051d977"; - }; - deps = { - "node-pre-gyp-0.6.4" = self.by-version."node-pre-gyp"."0.6.4"; - "nan-1.5.3" = self.by-version."nan"."1.5.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."v8flags"."^2.0.2" = - self.by-version."v8flags"."2.0.5"; - by-version."v8flags"."2.0.5" = self.buildNodePackage { - name = "v8flags-2.0.5"; - version = "2.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/v8flags/-/v8flags-2.0.5.tgz"; - name = "v8flags-2.0.5.tgz"; - sha1 = "006e90eeba5f9c861f34a3b75fdb1fa26f8da629"; - }; - deps = { - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."valid-identifier"."0.0.1" = - self.by-version."valid-identifier"."0.0.1"; - by-version."valid-identifier"."0.0.1" = self.buildNodePackage { - name = "valid-identifier-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/valid-identifier/-/valid-identifier-0.0.1.tgz"; - name = "valid-identifier-0.0.1.tgz"; - sha1 = "ef1d7093a9d3287e3fce92df916f8616b23f90b4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."validate-npm-package-name"."^2.0.1" = - self.by-version."validate-npm-package-name"."2.0.1"; - by-version."validate-npm-package-name"."2.0.1" = self.buildNodePackage { - name = "validate-npm-package-name-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-2.0.1.tgz"; - name = "validate-npm-package-name-2.0.1.tgz"; - sha1 = "ca006761b2b325f107fab172fb0cfcfc5e412c58"; - }; - deps = { - "builtins-0.0.7" = self.by-version."builtins"."0.0.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."validator"."1.5.1" = - self.by-version."validator"."1.5.1"; - by-version."validator"."1.5.1" = self.buildNodePackage { - name = "validator-1.5.1"; - version = "1.5.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/validator/-/validator-1.5.1.tgz"; - name = "validator-1.5.1.tgz"; - sha1 = "7ab356cbbcbbb000ab85c43b8cda12621b1344c0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."validator"."^2.1.0" = - self.by-version."validator"."2.1.0"; - by-version."validator"."2.1.0" = self.buildNodePackage { - name = "validator-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/validator/-/validator-2.1.0.tgz"; - name = "validator-2.1.0.tgz"; - sha1 = "63276570def208adcf1c032c1f4e6a17d2bd8d8b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."validator"."~1.5.1" = - self.by-version."validator"."1.5.1"; - by-spec."vargs"."~0.1.0" = - self.by-version."vargs"."0.1.0"; - by-version."vargs"."0.1.0" = self.buildNodePackage { - name = "vargs-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vargs/-/vargs-0.1.0.tgz"; - name = "vargs-0.1.0.tgz"; - sha1 = "6b6184da6520cc3204ce1b407cac26d92609ebff"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vary"."0.1.0" = - self.by-version."vary"."0.1.0"; - by-version."vary"."0.1.0" = self.buildNodePackage { - name = "vary-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vary/-/vary-0.1.0.tgz"; - name = "vary-0.1.0.tgz"; - sha1 = "df0945899e93c0cc5bd18cc8321d9d21e74f6176"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vary"."^1" = - self.by-version."vary"."1.0.0"; - by-version."vary"."1.0.0" = self.buildNodePackage { - name = "vary-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vary/-/vary-1.0.0.tgz"; - name = "vary-1.0.0.tgz"; - sha1 = "c5e76cec20d3820d8f2a96e7bee38731c34da1e7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vary"."~1.0.0" = - self.by-version."vary"."1.0.0"; - by-spec."vasync"."1.4.0" = - self.by-version."vasync"."1.4.0"; - by-version."vasync"."1.4.0" = self.buildNodePackage { - name = "vasync-1.4.0"; - version = "1.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vasync/-/vasync-1.4.0.tgz"; - name = "vasync-1.4.0.tgz"; - sha1 = "6ea5a63582358868d8743cbdd6ffadc9083b910f"; - }; - deps = { - "jsprim-0.3.0" = self.by-version."jsprim"."0.3.0"; - "verror-1.1.0" = self.by-version."verror"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vasync"."1.4.3" = - self.by-version."vasync"."1.4.3"; - by-version."vasync"."1.4.3" = self.buildNodePackage { - name = "vasync-1.4.3"; - version = "1.4.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz"; - name = "vasync-1.4.3.tgz"; - sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37"; - }; - deps = { - "jsprim-0.3.0" = self.by-version."jsprim"."0.3.0"; - "verror-1.1.0" = self.by-version."verror"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vasync"."1.6.2" = - self.by-version."vasync"."1.6.2"; - by-version."vasync"."1.6.2" = self.buildNodePackage { - name = "vasync-1.6.2"; - version = "1.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz"; - name = "vasync-1.6.2.tgz"; - sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb"; - }; - deps = { - "verror-1.1.0" = self.by-version."verror"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."verror"."1.1.0" = - self.by-version."verror"."1.1.0"; - by-version."verror"."1.1.0" = self.buildNodePackage { - name = "verror-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/verror/-/verror-1.1.0.tgz"; - name = "verror-1.1.0.tgz"; - sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0"; - }; - deps = { - "extsprintf-1.0.0" = self.by-version."extsprintf"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."verror"."1.3.3" = - self.by-version."verror"."1.3.3"; - by-version."verror"."1.3.3" = self.buildNodePackage { - name = "verror-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/verror/-/verror-1.3.3.tgz"; - name = "verror-1.3.3.tgz"; - sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd"; - }; - deps = { - "extsprintf-1.0.0" = self.by-version."extsprintf"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."verror"."1.3.6" = - self.by-version."verror"."1.3.6"; - by-version."verror"."1.3.6" = self.buildNodePackage { - name = "verror-1.3.6"; - version = "1.3.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; - name = "verror-1.3.6.tgz"; - sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; - }; - deps = { - "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."verror"."^1.4.0" = - self.by-version."verror"."1.6.0"; - by-version."verror"."1.6.0" = self.buildNodePackage { - name = "verror-1.6.0"; - version = "1.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; - name = "verror-1.6.0.tgz"; - sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; - }; - deps = { - "extsprintf-1.2.0" = self.by-version."extsprintf"."1.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vhost"."1.0.0" = - self.by-version."vhost"."1.0.0"; - by-version."vhost"."1.0.0" = self.buildNodePackage { - name = "vhost-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vhost/-/vhost-1.0.0.tgz"; - name = "vhost-1.0.0.tgz"; - sha1 = "654513f289a4f898aab745bbd633e40180c9c4c0"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vhost"."~3.0.0" = - self.by-version."vhost"."3.0.0"; - by-version."vhost"."3.0.0" = self.buildNodePackage { - name = "vhost-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vhost/-/vhost-3.0.0.tgz"; - name = "vhost-3.0.0.tgz"; - sha1 = "2d0ec59a3e012278b65adbe17c1717a5a5023045"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."view-helpers"."*" = - self.by-version."view-helpers"."0.1.5"; - by-version."view-helpers"."0.1.5" = self.buildNodePackage { - name = "view-helpers-0.1.5"; - version = "0.1.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/view-helpers/-/view-helpers-0.1.5.tgz"; - name = "view-helpers-0.1.5.tgz"; - sha1 = "175d220a6afeca8e3b497b003e2337bcc596f761"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "view-helpers" = self.by-version."view-helpers"."0.1.5"; - by-spec."vinyl"."^0.4.0" = - self.by-version."vinyl"."0.4.6"; - by-version."vinyl"."0.4.6" = self.buildNodePackage { - name = "vinyl-0.4.6"; - version = "0.4.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz"; - name = "vinyl-0.4.6.tgz"; - sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; - }; - deps = { - "clone-0.2.0" = self.by-version."clone"."0.2.0"; - "clone-stats-0.0.1" = self.by-version."clone-stats"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vinyl"."^0.4.3" = - self.by-version."vinyl"."0.4.6"; - by-spec."vinyl"."^0.4.6" = - self.by-version."vinyl"."0.4.6"; - by-spec."vinyl-fs"."^0.3.0" = - self.by-version."vinyl-fs"."0.3.13"; - by-version."vinyl-fs"."0.3.13" = self.buildNodePackage { - name = "vinyl-fs-0.3.13"; - version = "0.3.13"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.13.tgz"; - name = "vinyl-fs-0.3.13.tgz"; - sha1 = "3d384c5b3032e356cd388023e3a085303382ac23"; - }; - deps = { - "defaults-1.0.2" = self.by-version."defaults"."1.0.2"; - "glob-stream-3.1.18" = self.by-version."glob-stream"."3.1.18"; - "glob-watcher-0.0.6" = self.by-version."glob-watcher"."0.0.6"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "strip-bom-1.0.0" = self.by-version."strip-bom"."1.0.0"; - "through2-0.6.5" = self.by-version."through2"."0.6.5"; - "vinyl-0.4.6" = self.by-version."vinyl"."0.4.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vinyl-fs"."^0.3.13" = - self.by-version."vinyl-fs"."0.3.13"; - by-spec."vm-browserify"."0.0.4" = - self.by-version."vm-browserify"."0.0.4"; - by-version."vm-browserify"."0.0.4" = self.buildNodePackage { - name = "vm-browserify-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz"; - name = "vm-browserify-0.0.4.tgz"; - sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; - }; - deps = { - "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vm-browserify"."~0.0.1" = - self.by-version."vm-browserify"."0.0.4"; - by-spec."voc"."*" = - self.by-version."voc"."0.5.0"; - by-version."voc"."0.5.0" = self.buildNodePackage { - name = "voc-0.5.0"; - version = "0.5.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/voc/-/voc-0.5.0.tgz"; - name = "voc-0.5.0.tgz"; - sha1 = "be6ca7c76e4a57d930cc80f6b31fbd80ca86045c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."void-elements"."~2.0.1" = - self.by-version."void-elements"."2.0.1"; - by-version."void-elements"."2.0.1" = self.buildNodePackage { - name = "void-elements-2.0.1"; - version = "2.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz"; - name = "void-elements-2.0.1.tgz"; - sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vows".">=0.5.13" = - self.by-version."vows"."0.8.1"; - by-version."vows"."0.8.1" = self.buildNodePackage { - name = "vows-0.8.1"; - version = "0.8.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/vows/-/vows-0.8.1.tgz"; - name = "vows-0.8.1.tgz"; - sha1 = "e09e988ce594ca05a08d72abcca34e88db559131"; - }; - deps = { - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "diff-1.0.8" = self.by-version."diff"."1.0.8"; - "glob-4.0.6" = self.by-version."glob"."4.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."vows".">=0.5.2" = - self.by-version."vows"."0.8.1"; - by-spec."walk"."*" = - self.by-version."walk"."2.3.9"; - by-version."walk"."2.3.9" = self.buildNodePackage { - name = "walk-2.3.9"; - version = "2.3.9"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/walk/-/walk-2.3.9.tgz"; - name = "walk-2.3.9.tgz"; - sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b"; - }; - deps = { - "foreachasync-3.0.0" = self.by-version."foreachasync"."3.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "walk" = self.by-version."walk"."2.3.9"; - by-spec."walk"."^2.3.9" = - self.by-version."walk"."2.3.9"; - by-spec."ware"."^1.2.0" = - self.by-version."ware"."1.2.0"; - by-version."ware"."1.2.0" = self.buildNodePackage { - name = "ware-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ware/-/ware-1.2.0.tgz"; - name = "ware-1.2.0.tgz"; - sha1 = "6c18d599312ca1d0fa8065f0d5a6b651313d9974"; - }; - deps = { - "wrap-fn-0.1.4" = self.by-version."wrap-fn"."0.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."watch"."~0.13.0" = - self.by-version."watch"."0.13.0"; - by-version."watch"."0.13.0" = self.buildNodePackage { - name = "watch-0.13.0"; - version = "0.13.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/watch/-/watch-0.13.0.tgz"; - name = "watch-0.13.0.tgz"; - sha1 = "fcc6d2b3f0e8c73482eb54239a19fd5bcf9a753c"; - }; - deps = { - "minimist-1.1.1" = self.by-version."minimist"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."watchpack"."^0.2.1" = - self.by-version."watchpack"."0.2.4"; - by-version."watchpack"."0.2.4" = self.buildNodePackage { - name = "watchpack-0.2.4"; - version = "0.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/watchpack/-/watchpack-0.2.4.tgz"; - name = "watchpack-0.2.4.tgz"; - sha1 = "4af6c10f756e731b001645d34e637aa9201e97e8"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "chokidar-1.0.1" = self.by-version."chokidar"."1.0.1"; - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wcwidth"."^1.0.0" = - self.by-version."wcwidth"."1.0.0"; - by-version."wcwidth"."1.0.0" = self.buildNodePackage { - name = "wcwidth-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wcwidth/-/wcwidth-1.0.0.tgz"; - name = "wcwidth-1.0.0.tgz"; - sha1 = "02d059ff7a8fc741e0f6b5da1e69b2b40daeca6f"; - }; - deps = { - "defaults-1.0.2" = self.by-version."defaults"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wd"."~0.3.4" = - self.by-version."wd"."0.3.11"; - by-version."wd"."0.3.11" = self.buildNodePackage { - name = "wd-0.3.11"; - version = "0.3.11"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/wd/-/wd-0.3.11.tgz"; - name = "wd-0.3.11.tgz"; - sha1 = "522716c79a7a10e781acbb2c6cafe588f701fcc0"; - }; - deps = { - "archiver-0.12.0" = self.by-version."archiver"."0.12.0"; - "async-0.9.0" = self.by-version."async"."0.9.0"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "q-1.0.1" = self.by-version."q"."1.0.1"; - "request-2.46.0" = self.by-version."request"."2.46.0"; - "underscore.string-2.3.3" = self.by-version."underscore.string"."2.3.3"; - "vargs-0.1.0" = self.by-version."vargs"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."weak-map"."^1.0.5" = - self.by-version."weak-map"."1.0.5"; - by-version."weak-map"."1.0.5" = self.buildNodePackage { - name = "weak-map-1.0.5"; - version = "1.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz"; - name = "weak-map-1.0.5.tgz"; - sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."webdrvr"."*" = - self.by-version."webdrvr"."2.43.0-1"; - by-version."webdrvr"."2.43.0-1" = self.buildNodePackage { - name = "webdrvr-2.43.0-1"; - version = "2.43.0-1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/webdrvr/-/webdrvr-2.43.0-1.tgz"; - name = "webdrvr-2.43.0-1.tgz"; - sha1 = "17c442b94c0a6a3a68293d6ea4deb408f8cb9225"; - }; - deps = { - "adm-zip-0.4.7" = self.by-version."adm-zip"."0.4.7"; - "kew-0.1.7" = self.by-version."kew"."0.1.7"; - "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; - "npmconf-0.1.16" = self.by-version."npmconf"."0.1.16"; - "phantomjs-1.9.16" = self.by-version."phantomjs"."1.9.16"; - "tmp-0.0.25" = self.by-version."tmp"."0.0.25"; - "follow-redirects-0.0.3" = self.by-version."follow-redirects"."0.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "webdrvr" = self.by-version."webdrvr"."2.43.0-1"; - by-spec."webkit-devtools-agent"."^0.2.4" = - self.by-version."webkit-devtools-agent"."0.2.5"; - by-version."webkit-devtools-agent"."0.2.5" = self.buildNodePackage { - name = "webkit-devtools-agent-0.2.5"; - version = "0.2.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/webkit-devtools-agent/-/webkit-devtools-agent-0.2.5.tgz"; - name = "webkit-devtools-agent-0.2.5.tgz"; - sha1 = "f93e2948bd1a5171d368be65b3676604104c4f90"; - }; - deps = { - "ws-0.4.31" = self.by-version."ws"."0.4.31"; - "underscore-1.3.3" = self.by-version."underscore"."1.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."webpack"."*" = - self.by-version."webpack"."1.8.5"; - by-version."webpack"."1.8.5" = self.buildNodePackage { - name = "webpack-1.8.5"; - version = "1.8.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/webpack/-/webpack-1.8.5.tgz"; - name = "webpack-1.8.5.tgz"; - sha1 = "d08873b8ca10c54a7aa4513a363ee21244752a9e"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "clone-0.1.19" = self.by-version."clone"."0.1.19"; - "enhanced-resolve-0.8.5" = self.by-version."enhanced-resolve"."0.8.5"; - "esprima-1.2.5" = self.by-version."esprima"."1.2.5"; - "interpret-0.5.2" = self.by-version."interpret"."0.5.2"; - "memory-fs-0.2.0" = self.by-version."memory-fs"."0.2.0"; - "mkdirp-0.5.0" = self.by-version."mkdirp"."0.5.0"; - "node-libs-browser-0.4.3" = self.by-version."node-libs-browser"."0.4.3"; - "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; - "supports-color-1.3.1" = self.by-version."supports-color"."1.3.1"; - "tapable-0.1.9" = self.by-version."tapable"."0.1.9"; - "uglify-js-2.4.20" = self.by-version."uglify-js"."2.4.20"; - "watchpack-0.2.4" = self.by-version."watchpack"."0.2.4"; - "webpack-core-0.6.3" = self.by-version."webpack-core"."0.6.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "webpack" = self.by-version."webpack"."1.8.5"; - by-spec."webpack-core"."~0.6.0" = - self.by-version."webpack-core"."0.6.3"; - by-version."webpack-core"."0.6.3" = self.buildNodePackage { - name = "webpack-core-0.6.3"; - version = "0.6.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/webpack-core/-/webpack-core-0.6.3.tgz"; - name = "webpack-core-0.6.3.tgz"; - sha1 = "a47283b688f66504797173d8eacb1df7ba6f0c5f"; - }; - deps = { - "source-map-0.4.2" = self.by-version."source-map"."0.4.2"; - "source-list-map-0.1.5" = self.by-version."source-list-map"."0.1.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."websocket-driver".">=0.3.6" = - self.by-version."websocket-driver"."0.5.4"; - by-version."websocket-driver"."0.5.4" = self.buildNodePackage { - name = "websocket-driver-0.5.4"; - version = "0.5.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/websocket-driver/-/websocket-driver-0.5.4.tgz"; - name = "websocket-driver-0.5.4.tgz"; - sha1 = "4c65278c92929384eacfcd908d3e9e0a5691c29e"; - }; - deps = { - "websocket-extensions-0.1.1" = self.by-version."websocket-extensions"."0.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."websocket-driver".">=0.5.1" = - self.by-version."websocket-driver"."0.5.4"; - by-spec."websocket-extensions".">=0.1.1" = - self.by-version."websocket-extensions"."0.1.1"; - by-version."websocket-extensions"."0.1.1" = self.buildNodePackage { - name = "websocket-extensions-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz"; - name = "websocket-extensions-0.1.1.tgz"; - sha1 = "76899499c184b6ef754377c2dbb0cd6cb55d29e7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."when"."3.7.2" = - self.by-version."when"."3.7.2"; - by-version."when"."3.7.2" = self.buildNodePackage { - name = "when-3.7.2"; - version = "3.7.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/when/-/when-3.7.2.tgz"; - name = "when-3.7.2.tgz"; - sha1 = "06bed1296df3a0bfd83f7f31c5e1d779bd97eae8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."when"."~3.4.6" = - self.by-version."when"."3.4.6"; - by-version."when"."3.4.6" = self.buildNodePackage { - name = "when-3.4.6"; - version = "3.4.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/when/-/when-3.4.6.tgz"; - name = "when-3.4.6.tgz"; - sha1 = "8fbcb7cc1439d2c3a68c431f1516e6dcce9ad28c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."which"."1" = - self.by-version."which"."1.0.9"; - by-version."which"."1.0.9" = self.buildNodePackage { - name = "which-1.0.9"; - version = "1.0.9"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/which/-/which-1.0.9.tgz"; - name = "which-1.0.9.tgz"; - sha1 = "460c1da0f810103d0321a9b633af9e575e64486f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."which"."1.0.x" = - self.by-version."which"."1.0.9"; - by-spec."which"."^1.0.5" = - self.by-version."which"."1.0.9"; - by-spec."which"."^1.0.7" = - self.by-version."which"."1.0.9"; - by-spec."which"."^1.0.8" = - self.by-version."which"."1.0.9"; - by-spec."which"."^1.0.9" = - self.by-version."which"."1.0.9"; - by-spec."which"."~1.0.5" = - self.by-version."which"."1.0.9"; - by-spec."which"."~1.0.9" = - self.by-version."which"."1.0.9"; - by-spec."win-detect-browsers"."^1.0.1" = - self.by-version."win-detect-browsers"."1.0.1"; - by-version."win-detect-browsers"."1.0.1" = self.buildNodePackage { - name = "win-detect-browsers-1.0.1"; - version = "1.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.1.tgz"; - name = "win-detect-browsers-1.0.1.tgz"; - sha1 = "fd85b27aa8c7af8573a6aa7dbc10ff9692642b99"; - }; - deps = { - "after-0.8.1" = self.by-version."after"."0.8.1"; - "debug-2.1.3" = self.by-version."debug"."2.1.3"; - "which-1.0.9" = self.by-version."which"."1.0.9"; - "xtend-4.0.0" = self.by-version."xtend"."4.0.0"; - "yargs-1.3.3" = self.by-version."yargs"."1.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."win-release"."^1.0.0" = - self.by-version."win-release"."1.0.0"; - by-version."win-release"."1.0.0" = self.buildNodePackage { - name = "win-release-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/win-release/-/win-release-1.0.0.tgz"; - name = "win-release-1.0.0.tgz"; - sha1 = "8993308dedbd8d30ad5594b6b7382a8c1d96ae5a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."win-trash"."^1.0.0" = - self.by-version."win-trash"."1.0.0"; - by-version."win-trash"."1.0.0" = self.buildNodePackage { - name = "win-trash-1.0.0"; - version = "1.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/win-trash/-/win-trash-1.0.0.tgz"; - name = "win-trash-1.0.0.tgz"; - sha1 = "1153a7a5e1aa703f4b449458674312de2fa3589c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."window-size"."0.1.0" = - self.by-version."window-size"."0.1.0"; - by-version."window-size"."0.1.0" = self.buildNodePackage { - name = "window-size-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; - name = "window-size-0.1.0.tgz"; - sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."windows-no-runnable"."~0.0.6" = - self.by-version."windows-no-runnable"."0.0.6"; - by-version."windows-no-runnable"."0.0.6" = self.buildNodePackage { - name = "windows-no-runnable-0.0.6"; - version = "0.0.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz"; - name = "windows-no-runnable-0.0.6.tgz"; - sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winser"."=0.1.6" = - self.by-version."winser"."0.1.6"; - by-version."winser"."0.1.6" = self.buildNodePackage { - name = "winser-0.1.6"; - version = "0.1.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/winser/-/winser-0.1.6.tgz"; - name = "winser-0.1.6.tgz"; - sha1 = "08663dc32878a12bbce162d840da5097b48466c9"; - }; - deps = { - "sequence-2.2.1" = self.by-version."sequence"."2.2.1"; - "commander-1.3.1" = self.by-version."commander"."1.3.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."*" = - self.by-version."winston"."1.0.0"; - by-version."winston"."1.0.0" = self.buildNodePackage { - name = "winston-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-1.0.0.tgz"; - name = "winston-1.0.0.tgz"; - sha1 = "30e36e0041fc0a864b0029565719e4dc41d026a4"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "colors-1.0.3" = self.by-version."colors"."1.0.3"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "winston" = self.by-version."winston"."1.0.0"; - by-spec."winston"."0.5.1" = - self.by-version."winston"."0.5.1"; - by-version."winston"."0.5.1" = self.buildNodePackage { - name = "winston-0.5.1"; - version = "0.5.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.5.1.tgz"; - name = "winston-0.5.1.tgz"; - sha1 = "2b2f40cdbf469b60f1885cc549757c4b9973e5ea"; - }; - deps = { - "async-0.1.22" = self.by-version."async"."0.1.22"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "loggly-0.3.11" = self.by-version."loggly"."0.3.11"; - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."0.6.2" = - self.by-version."winston"."0.6.2"; - by-version."winston"."0.6.2" = self.buildNodePackage { - name = "winston-0.6.2"; - version = "0.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.6.2.tgz"; - name = "winston-0.6.2.tgz"; - sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2"; - }; - deps = { - "async-0.1.22" = self.by-version."async"."0.1.22"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; - "request-2.9.203" = self.by-version."request"."2.9.203"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."0.6.x" = - self.by-version."winston"."0.6.2"; - by-spec."winston"."0.7.3" = - self.by-version."winston"."0.7.3"; - by-version."winston"."0.7.3" = self.buildNodePackage { - name = "winston-0.7.3"; - version = "0.7.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.7.3.tgz"; - name = "winston-0.7.3.tgz"; - sha1 = "7ae313ba73fcdc2ecb4aa2f9cd446e8298677266"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "request-2.16.6" = self.by-version."request"."2.16.6"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."0.8.0" = - self.by-version."winston"."0.8.0"; - by-version."winston"."0.8.0" = self.buildNodePackage { - name = "winston-0.8.0"; - version = "0.8.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.8.0.tgz"; - name = "winston-0.8.0.tgz"; - sha1 = "61d0830fa699706212206b0a2b5ca69a93043668"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."0.8.x" = - self.by-version."winston"."0.8.3"; - by-version."winston"."0.8.3" = self.buildNodePackage { - name = "winston-0.8.3"; - version = "0.8.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; - name = "winston-0.8.3.tgz"; - sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; - }; - deps = { - "async-0.2.10" = self.by-version."async"."0.2.10"; - "colors-0.6.2" = self.by-version."colors"."0.6.2"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."winston"."~0.8.1" = - self.by-version."winston"."0.8.3"; - by-spec."winston"."~0.9.0" = - self.by-version."winston"."0.9.0"; - by-version."winston"."0.9.0" = self.buildNodePackage { - name = "winston-0.9.0"; - version = "0.9.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/winston/-/winston-0.9.0.tgz"; - name = "winston-0.9.0.tgz"; - sha1 = "b5726e6c42291e305e36286ce7ae9f3b74a527a8"; - }; - deps = { - "async-0.9.0" = self.by-version."async"."0.9.0"; - "colors-1.0.3" = self.by-version."colors"."1.0.3"; - "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; - "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; - "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; - "pkginfo-0.3.0" = self.by-version."pkginfo"."0.3.0"; - "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."with"."~1.1.0" = - self.by-version."with"."1.1.1"; - by-version."with"."1.1.1" = self.buildNodePackage { - name = "with-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/with/-/with-1.1.1.tgz"; - name = "with-1.1.1.tgz"; - sha1 = "66bd6664deb318b2482dd0424ccdebe822434ac0"; - }; - deps = { - "uglify-js-2.4.0" = self.by-version."uglify-js"."2.4.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."with"."~2.0.0" = - self.by-version."with"."2.0.0"; - by-version."with"."2.0.0" = self.buildNodePackage { - name = "with-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/with/-/with-2.0.0.tgz"; - name = "with-2.0.0.tgz"; - sha1 = "ec01ff021db9df05639047147ede012f5e6d0afd"; - }; - deps = { - "uglify-js-2.4.0" = self.by-version."uglify-js"."2.4.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."with"."~4.0.0" = - self.by-version."with"."4.0.3"; - by-version."with"."4.0.3" = self.buildNodePackage { - name = "with-4.0.3"; - version = "4.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/with/-/with-4.0.3.tgz"; - name = "with-4.0.3.tgz"; - sha1 = "eefd154e9e79d2c8d3417b647a8f14d9fecce14e"; - }; - deps = { - "acorn-1.0.3" = self.by-version."acorn"."1.0.3"; - "acorn-globals-1.0.4" = self.by-version."acorn-globals"."1.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wordwrap"."0.0.2" = - self.by-version."wordwrap"."0.0.2"; - by-version."wordwrap"."0.0.2" = self.buildNodePackage { - name = "wordwrap-0.0.2"; - version = "0.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; - name = "wordwrap-0.0.2.tgz"; - sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wordwrap"."0.0.x" = - self.by-version."wordwrap"."0.0.2"; - by-spec."wordwrap".">=0.0.1 <0.1.0" = - self.by-version."wordwrap"."0.0.2"; - by-spec."wordwrap"."~0.0.2" = - self.by-version."wordwrap"."0.0.2"; - by-spec."wrap-fn"."^0.1.0" = - self.by-version."wrap-fn"."0.1.4"; - by-version."wrap-fn"."0.1.4" = self.buildNodePackage { - name = "wrap-fn-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.4.tgz"; - name = "wrap-fn-0.1.4.tgz"; - sha1 = "03eba5d07ac55c2a93fa2d37a2b01f81c07bddb2"; - }; - deps = { - "co-3.1.0" = self.by-version."co"."3.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wrappy"."1" = - self.by-version."wrappy"."1.0.1"; - by-version."wrappy"."1.0.1" = self.buildNodePackage { - name = "wrappy-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"; - name = "wrappy-1.0.1.tgz"; - sha1 = "1e65969965ccbc2db4548c6b84a6f2c5aedd4739"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wrappy"."~1.0.1" = - self.by-version."wrappy"."1.0.1"; - by-spec."wrench"."~1.5.4" = - self.by-version."wrench"."1.5.8"; - by-version."wrench"."1.5.8" = self.buildNodePackage { - name = "wrench-1.5.8"; - version = "1.5.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wrench/-/wrench-1.5.8.tgz"; - name = "wrench-1.5.8.tgz"; - sha1 = "7a31c97f7869246d76c5cf2f5c977a1c4c8e5ab5"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."wrench"."~1.5.8" = - self.by-version."wrench"."1.5.8"; - by-spec."write-file-atomic"."~1.1.0" = - self.by-version."write-file-atomic"."1.1.0"; - by-version."write-file-atomic"."1.1.0" = self.buildNodePackage { - name = "write-file-atomic-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.1.0.tgz"; - name = "write-file-atomic-1.1.0.tgz"; - sha1 = "e114cfb8f82188353f98217c5945451c9b4dc060"; - }; - deps = { - "graceful-fs-3.0.6" = self.by-version."graceful-fs"."3.0.6"; - "slide-1.1.6" = self.by-version."slide"."1.1.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ws"."0.4.31" = - self.by-version."ws"."0.4.31"; - by-version."ws"."0.4.31" = self.buildNodePackage { - name = "ws-0.4.31"; - version = "0.4.31"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/ws/-/ws-0.4.31.tgz"; - name = "ws-0.4.31.tgz"; - sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927"; - }; - deps = { - "commander-0.6.1" = self.by-version."commander"."0.6.1"; - "nan-0.3.2" = self.by-version."nan"."0.3.2"; - "tinycolor-0.0.1" = self.by-version."tinycolor"."0.0.1"; - "options-0.0.6" = self.by-version."options"."0.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ws"."0.4.x" = - self.by-version."ws"."0.4.32"; - by-version."ws"."0.4.32" = self.buildNodePackage { - name = "ws-0.4.32"; - version = "0.4.32"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/ws/-/ws-0.4.32.tgz"; - name = "ws-0.4.32.tgz"; - sha1 = "787a6154414f3c99ed83c5772153b20feb0cec32"; - }; - deps = { - "commander-2.1.0" = self.by-version."commander"."2.1.0"; - "nan-1.0.0" = self.by-version."nan"."1.0.0"; - "tinycolor-0.0.1" = self.by-version."tinycolor"."0.0.1"; - "options-0.0.6" = self.by-version."options"."0.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ws"."0.5.0" = - self.by-version."ws"."0.5.0"; - by-version."ws"."0.5.0" = self.buildNodePackage { - name = "ws-0.5.0"; - version = "0.5.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ws/-/ws-0.5.0.tgz"; - name = "ws-0.5.0.tgz"; - sha1 = "b3980391dc4777d83974718aa361e808d86cf9ca"; - }; - deps = { - "nan-1.4.3" = self.by-version."nan"."1.4.3"; - "options-0.0.6" = self.by-version."options"."0.0.6"; - "ultron-1.0.1" = self.by-version."ultron"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ws"."0.7.1" = - self.by-version."ws"."0.7.1"; - by-version."ws"."0.7.1" = self.buildNodePackage { - name = "ws-0.7.1"; - version = "0.7.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ws/-/ws-0.7.1.tgz"; - name = "ws-0.7.1.tgz"; - sha1 = "8f1c7864ca08081be3cd0ac330df0d29c5fcd0da"; - }; - deps = { - "options-0.0.6" = self.by-version."options"."0.0.6"; - "ultron-1.0.1" = self.by-version."ultron"."1.0.1"; - }; - optionalDependencies = { - "bufferutil-1.0.1" = self.by-version."bufferutil"."1.0.1"; - "utf-8-validate-1.0.1" = self.by-version."utf-8-validate"."1.0.1"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ws"."^0.7.1" = - self.by-version."ws"."0.7.1"; - by-spec."ws"."~0.4.31" = - self.by-version."ws"."0.4.32"; - by-spec."ws"."~0.7.1" = - self.by-version."ws"."0.7.1"; - by-spec."wu"."*" = - self.by-version."wu"."2.0.0"; - by-version."wu"."2.0.0" = self.buildNodePackage { - name = "wu-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/wu/-/wu-2.0.0.tgz"; - name = "wu-2.0.0.tgz"; - sha1 = "abda06a014dd1c54c2163862f5c2c5230721bc27"; - }; - deps = { - "traceur-0.0.55" = self.by-version."traceur"."0.0.55"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "wu" = self.by-version."wu"."2.0.0"; - by-spec."x-default-browser"."0.3.0" = - self.by-version."x-default-browser"."0.3.0"; - by-version."x-default-browser"."0.3.0" = self.buildNodePackage { - name = "x-default-browser-0.3.0"; - version = "0.3.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.0.tgz"; - name = "x-default-browser-0.3.0.tgz"; - sha1 = "850d5137bc97b78176e69ae916417fe3d4e97d5d"; - }; - deps = { - }; - optionalDependencies = { - "default-browser-id-1.0.2" = self.by-version."default-browser-id"."1.0.2"; - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."x509"."*" = - self.by-version."x509"."0.1.4"; - by-version."x509"."0.1.4" = self.buildNodePackage { - name = "x509-0.1.4"; - version = "0.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/x509/-/x509-0.1.4.tgz"; - name = "x509-0.1.4.tgz"; - sha1 = "08d016ed165db0c68a192edeb1cdca0f5d43cb22"; - }; - deps = { - "nan-1.7.0" = self.by-version."nan"."1.7.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "x509" = self.by-version."x509"."0.1.4"; - by-spec."xcode"."0.6.7" = - self.by-version."xcode"."0.6.7"; - by-version."xcode"."0.6.7" = self.buildNodePackage { - name = "xcode-0.6.7"; - version = "0.6.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xcode/-/xcode-0.6.7.tgz"; - name = "xcode-0.6.7.tgz"; - sha1 = "df11a8615e43dfa397cbf593b0fd14ebeadf4e7a"; - }; - deps = { - "pegjs-0.6.2" = self.by-version."pegjs"."0.6.2"; - "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xdg-basedir"."^1.0.0" = - self.by-version."xdg-basedir"."1.0.1"; - by-version."xdg-basedir"."1.0.1" = self.buildNodePackage { - name = "xdg-basedir-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xdg-basedir/-/xdg-basedir-1.0.1.tgz"; - name = "xdg-basedir-1.0.1.tgz"; - sha1 = "14ff8f63a4fdbcb05d5b6eea22b36f3033b9f04e"; - }; - deps = { - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xdg-empty-trash"."^1.0.0" = - self.by-version."xdg-empty-trash"."1.0.0"; - by-version."xdg-empty-trash"."1.0.0" = self.buildNodePackage { - name = "xdg-empty-trash-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xdg-empty-trash/-/xdg-empty-trash-1.0.0.tgz"; - name = "xdg-empty-trash-1.0.0.tgz"; - sha1 = "007ec95403863f705ec09335b8c9166858021959"; - }; - deps = { - "each-async-1.1.1" = self.by-version."each-async"."1.1.1"; - "rimraf-2.3.2" = self.by-version."rimraf"."2.3.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xdg-trash"."^1.0.0" = - self.by-version."xdg-trash"."1.1.0"; - by-version."xdg-trash"."1.1.0" = self.buildNodePackage { - name = "xdg-trash-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xdg-trash/-/xdg-trash-1.1.0.tgz"; - name = "xdg-trash-1.1.0.tgz"; - sha1 = "219d24c1417ead112d875131e6cde303cb44c51a"; - }; - deps = { - "each-async-1.1.1" = self.by-version."each-async"."1.1.1"; - "fs-extra-0.18.2" = self.by-version."fs-extra"."0.18.2"; - "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; - "xdg-trashdir-1.1.1" = self.by-version."xdg-trashdir"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xdg-trashdir"."^1.0.0" = - self.by-version."xdg-trashdir"."1.1.1"; - by-version."xdg-trashdir"."1.1.1" = self.buildNodePackage { - name = "xdg-trashdir-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xdg-trashdir/-/xdg-trashdir-1.1.1.tgz"; - name = "xdg-trashdir-1.1.1.tgz"; - sha1 = "3cbdc8de596642396725de40a20bcf402b6d5db5"; - }; - deps = { - "mount-point-1.0.3" = self.by-version."mount-point"."1.0.3"; - "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; - "xdg-basedir-1.0.1" = self.by-version."xdg-basedir"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xhr2".">= 0.0.5" = - self.by-version."xhr2"."0.1.2"; - by-version."xhr2"."0.1.2" = self.buildNodePackage { - name = "xhr2-0.1.2"; - version = "0.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xhr2/-/xhr2-0.1.2.tgz"; - name = "xhr2-0.1.2.tgz"; - sha1 = "5f9f78c042e5ad1c0dbfcf0deb3aae7c95defc6f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml"."^1.0.0" = - self.by-version."xml"."1.0.0"; - by-version."xml"."1.0.0" = self.buildNodePackage { - name = "xml-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml/-/xml-1.0.0.tgz"; - name = "xml-1.0.0.tgz"; - sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."*" = - self.by-version."xml2js"."0.4.8"; - by-version."xml2js"."0.4.8" = self.buildNodePackage { - name = "xml2js-0.4.8"; - version = "0.4.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.4.8.tgz"; - name = "xml2js-0.4.8.tgz"; - sha1 = "9fe56bdb2a4931fdfcefb4cedfdb29d89c32f5a1"; - }; - deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - "xmlbuilder-2.6.2" = self.by-version."xmlbuilder"."2.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."0.1.x" = - self.by-version."xml2js"."0.1.14"; - by-version."xml2js"."0.1.14" = self.buildNodePackage { - name = "xml2js-0.1.14"; - version = "0.1.14"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz"; - name = "xml2js-0.1.14.tgz"; - sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; - }; - deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."0.2.4" = - self.by-version."xml2js"."0.2.4"; - by-version."xml2js"."0.2.4" = self.buildNodePackage { - name = "xml2js-0.2.4"; - version = "0.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz"; - name = "xml2js-0.2.4.tgz"; - sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d"; - }; - deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."0.2.6" = - self.by-version."xml2js"."0.2.6"; - by-version."xml2js"."0.2.6" = self.buildNodePackage { - name = "xml2js-0.2.6"; - version = "0.2.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.2.6.tgz"; - name = "xml2js-0.2.6.tgz"; - sha1 = "d209c4e4dda1fc9c452141ef41c077f5adfdf6c4"; - }; - deps = { - "sax-0.4.2" = self.by-version."sax"."0.4.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."0.2.8" = - self.by-version."xml2js"."0.2.8"; - by-version."xml2js"."0.2.8" = self.buildNodePackage { - name = "xml2js-0.2.8"; - version = "0.2.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.2.8.tgz"; - name = "xml2js-0.2.8.tgz"; - sha1 = "9b81690931631ff09d1957549faf54f4f980b3c2"; - }; - deps = { - "sax-0.5.8" = self.by-version."sax"."0.5.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js"."0.4.4" = - self.by-version."xml2js"."0.4.4"; - by-version."xml2js"."0.4.4" = self.buildNodePackage { - name = "xml2js-0.4.4"; - version = "0.4.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xml2js/-/xml2js-0.4.4.tgz"; - name = "xml2js-0.4.4.tgz"; - sha1 = "3111010003008ae19240eba17497b57c729c555d"; - }; - deps = { - "sax-0.6.1" = self.by-version."sax"."0.6.1"; - "xmlbuilder-2.6.2" = self.by-version."xmlbuilder"."2.6.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2js".">= 0.0.1" = - self.by-version."xml2js"."0.4.8"; - by-spec."xml2js".">=0.1.7" = - self.by-version."xml2js"."0.4.8"; - by-spec."xml2js"."^0.4.4" = - self.by-version."xml2js"."0.4.8"; - by-spec."xml2json".">=0.3.2" = - self.by-version."xml2json"."0.6.1"; - by-version."xml2json"."0.6.1" = self.buildNodePackage { - name = "xml2json-0.6.1"; - version = "0.6.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/xml2json/-/xml2json-0.6.1.tgz"; - name = "xml2json-0.6.1.tgz"; - sha1 = "43883d09e4369f96b83316df833cf1fc20d6c3f1"; - }; - deps = { - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xml2json"."^0.5.1" = - self.by-version."xml2json"."0.5.1"; - by-version."xml2json"."0.5.1" = self.buildNodePackage { - name = "xml2json-0.5.1"; - version = "0.5.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/xml2json/-/xml2json-0.5.1.tgz"; - name = "xml2json-0.5.1.tgz"; - sha1 = "4667011bf0b34e8ec9830cf83e9476659a94d9ba"; - }; - deps = { - "node-expat-2.3.7" = self.by-version."node-expat"."2.3.7"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlbuilder"."0.4.2" = - self.by-version."xmlbuilder"."0.4.2"; - by-version."xmlbuilder"."0.4.2" = self.buildNodePackage { - name = "xmlbuilder-0.4.2"; - version = "0.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz"; - name = "xmlbuilder-0.4.2.tgz"; - sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlbuilder"."0.4.x" = - self.by-version."xmlbuilder"."0.4.3"; - by-version."xmlbuilder"."0.4.3" = self.buildNodePackage { - name = "xmlbuilder-0.4.3"; - version = "0.4.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.3.tgz"; - name = "xmlbuilder-0.4.3.tgz"; - sha1 = "c4614ba74e0ad196e609c9272cd9e1ddb28a8a58"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlbuilder"."2.2.1" = - self.by-version."xmlbuilder"."2.2.1"; - by-version."xmlbuilder"."2.2.1" = self.buildNodePackage { - name = "xmlbuilder-2.2.1"; - version = "2.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.2.1.tgz"; - name = "xmlbuilder-2.2.1.tgz"; - sha1 = "9326430f130d87435d4c4086643aa2926e105a32"; - }; - deps = { - "lodash-node-2.4.1" = self.by-version."lodash-node"."2.4.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlbuilder".">=1.0.0" = - self.by-version."xmlbuilder"."2.6.2"; - by-version."xmlbuilder"."2.6.2" = self.buildNodePackage { - name = "xmlbuilder-2.6.2"; - version = "2.6.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.6.2.tgz"; - name = "xmlbuilder-2.6.2.tgz"; - sha1 = "f916f6d10d45dc171b1be2e6e673fb6e0cc35d0a"; - }; - deps = { - "lodash-3.5.0" = self.by-version."lodash"."3.5.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlbuilder".">=2.4.6" = - self.by-version."xmlbuilder"."2.6.2"; - by-spec."xmldom"."0.1.x" = - self.by-version."xmldom"."0.1.19"; - by-version."xmldom"."0.1.19" = self.buildNodePackage { - name = "xmldom-0.1.19"; - version = "0.1.19"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; - name = "xmldom-0.1.19.tgz"; - sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmldom"."~0.1.19" = - self.by-version."xmldom"."0.1.19"; - by-spec."xmlhttprequest"."1.4.2" = - self.by-version."xmlhttprequest"."1.4.2"; - by-version."xmlhttprequest"."1.4.2" = self.buildNodePackage { - name = "xmlhttprequest-1.4.2"; - version = "1.4.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.4.2.tgz"; - name = "xmlhttprequest-1.4.2.tgz"; - sha1 = "01453a1d9bed1e8f172f6495bbf4c8c426321500"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlhttprequest".">=1.5.0" = - self.by-version."xmlhttprequest"."1.7.0"; - by-version."xmlhttprequest"."1.7.0" = self.buildNodePackage { - name = "xmlhttprequest-1.7.0"; - version = "1.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.7.0.tgz"; - name = "xmlhttprequest-1.7.0.tgz"; - sha1 = "dc697a8df0258afacad526c1c296b1bdd12c4ab3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlhttprequest"."https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = - self.by-version."xmlhttprequest"."1.5.0"; - by-version."xmlhttprequest"."1.5.0" = self.buildNodePackage { - name = "xmlhttprequest-1.5.0"; - version = "1.5.0"; - bin = false; - src = fetchurl { - url = "https://github.com/rase-/node-XMLHttpRequest/archive/a6b6f2.tar.gz"; - name = "xmlhttprequest-1.5.0.tgz"; - sha256 = "f29574bb6dad260b7856b8dcfd432fc9ceb52161b8ee02f387440bb7f6e39f92"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xmlhttprequest"."https://github.com/rase-/node-XMLHttpRequest/archive/a6b6f2.tar.gz" = - self.by-version."xmlhttprequest"."1.5.0"; - by-spec."xoauth2"."~0.1.8" = - self.by-version."xoauth2"."0.1.8"; - by-version."xoauth2"."0.1.8" = self.buildNodePackage { - name = "xoauth2-0.1.8"; - version = "0.1.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xoauth2/-/xoauth2-0.1.8.tgz"; - name = "xoauth2-0.1.8.tgz"; - sha1 = "b916ff10ecfb54320f16f24a3e975120653ab0d2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xregexp"."2.0.0" = - self.by-version."xregexp"."2.0.0"; - by-version."xregexp"."2.0.0" = self.buildNodePackage { - name = "xregexp-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"; - name = "xregexp-2.0.0.tgz"; - sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xtend".">=4.0.0 <4.1.0-0" = - self.by-version."xtend"."4.0.0"; - by-version."xtend"."4.0.0" = self.buildNodePackage { - name = "xtend-4.0.0"; - version = "4.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz"; - name = "xtend-4.0.0.tgz"; - sha1 = "8bc36ff87aedbe7ce9eaf0bca36b2354a743840f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xtend"."^3.0.0" = - self.by-version."xtend"."3.0.0"; - by-version."xtend"."3.0.0" = self.buildNodePackage { - name = "xtend-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"; - name = "xtend-3.0.0.tgz"; - sha1 = "5cce7407baf642cba7becda568111c493f59665a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xtend"."^4.0.0" = - self.by-version."xtend"."4.0.0"; - by-spec."xtend"."~2.1.1" = - self.by-version."xtend"."2.1.2"; - by-version."xtend"."2.1.2" = self.buildNodePackage { - name = "xtend-2.1.2"; - version = "2.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xtend/-/xtend-2.1.2.tgz"; - name = "xtend-2.1.2.tgz"; - sha1 = "6efecc2a4dad8e6962c4901b337ce7ba87b5d28b"; - }; - deps = { - "object-keys-0.4.0" = self.by-version."object-keys"."0.4.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."xtend"."~3.0.0" = - self.by-version."xtend"."3.0.0"; - by-spec."xtend"."~4.0.0" = - self.by-version."xtend"."4.0.0"; - by-spec."xtraverse"."0.1.x" = - self.by-version."xtraverse"."0.1.0"; - by-version."xtraverse"."0.1.0" = self.buildNodePackage { - name = "xtraverse-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/xtraverse/-/xtraverse-0.1.0.tgz"; - name = "xtraverse-0.1.0.tgz"; - sha1 = "b741bad018ef78d8a9d2e83ade007b3f7959c732"; - }; - deps = { - "xmldom-0.1.19" = self.by-version."xmldom"."0.1.19"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."yamlish"."*" = - self.by-version."yamlish"."0.0.6"; - by-version."yamlish"."0.0.6" = self.buildNodePackage { - name = "yamlish-0.0.6"; - version = "0.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/yamlish/-/yamlish-0.0.6.tgz"; - name = "yamlish-0.0.6.tgz"; - sha1 = "c5df8f7661731351e39eb52223f83a46659452e3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."yargs"."^1.2.1" = - self.by-version."yargs"."1.3.3"; - by-version."yargs"."1.3.3" = self.buildNodePackage { - name = "yargs-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz"; - name = "yargs-1.3.3.tgz"; - sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."yargs"."^1.3.3" = - self.by-version."yargs"."1.3.3"; - by-spec."yargs"."~1.3.1" = - self.by-version."yargs"."1.3.3"; - by-spec."yargs"."~1.3.2" = - self.by-version."yargs"."1.3.3"; - by-spec."yargs"."~3.5.4" = - self.by-version."yargs"."3.5.4"; - by-version."yargs"."3.5.4" = self.buildNodePackage { - name = "yargs-3.5.4"; - version = "3.5.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-3.5.4.tgz"; - name = "yargs-3.5.4.tgz"; - sha1 = "d8aff8f665e94c34bd259bdebd1bfaf0ddd35361"; - }; - deps = { - "camelcase-1.0.2" = self.by-version."camelcase"."1.0.2"; - "decamelize-1.0.0" = self.by-version."decamelize"."1.0.0"; - "window-size-0.1.0" = self.by-version."window-size"."0.1.0"; - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."yargs"."~3.6.0" = - self.by-version."yargs"."3.6.0"; - by-version."yargs"."3.6.0" = self.buildNodePackage { - name = "yargs-3.6.0"; - version = "3.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/yargs/-/yargs-3.6.0.tgz"; - name = "yargs-3.6.0.tgz"; - sha1 = "587e098615d8f627ffbf53ebb61eac827268e51a"; - }; - deps = { - "camelcase-1.0.2" = self.by-version."camelcase"."1.0.2"; - "decamelize-1.0.0" = self.by-version."decamelize"."1.0.0"; - "window-size-0.1.0" = self.by-version."window-size"."0.1.0"; - "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."zeparser"."0.0.5" = - self.by-version."zeparser"."0.0.5"; - by-version."zeparser"."0.0.5" = self.buildNodePackage { - name = "zeparser-0.0.5"; - version = "0.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz"; - name = "zeparser-0.0.5.tgz"; - sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."zip-stream"."~0.4.0" = - self.by-version."zip-stream"."0.4.1"; - by-version."zip-stream"."0.4.1" = self.buildNodePackage { - name = "zip-stream-0.4.1"; - version = "0.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/zip-stream/-/zip-stream-0.4.1.tgz"; - name = "zip-stream-0.4.1.tgz"; - sha1 = "4ea795a8ce19e9fab49a31d1d0877214159f03a3"; - }; - deps = { - "compress-commons-0.1.6" = self.by-version."compress-commons"."0.1.6"; - "lodash-2.4.1" = self.by-version."lodash"."2.4.1"; - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."zlib-browserify"."~0.0.3" = - self.by-version."zlib-browserify"."0.0.3"; - by-version."zlib-browserify"."0.0.3" = self.buildNodePackage { - name = "zlib-browserify-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/zlib-browserify/-/zlib-browserify-0.0.3.tgz"; - name = "zlib-browserify-0.0.3.tgz"; - sha1 = "240ccdbfd0203fa842b130deefb1414122c8cc50"; - }; - deps = { - "tape-0.2.2" = self.by-version."tape"."0.2.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ansi-regex"."^2.0.0" = - self.by-version."ansi-regex"."2.0.0"; - by-version."ansi-regex"."2.0.0" = self.buildNodePackage { - name = "ansi-regex-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz"; - name = "ansi-regex-2.0.0.tgz"; - sha1 = "c5061b6e0ef8a81775e50f5d66151bf6bf371107"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ansi-styles"."^2.1.0" = - self.by-version."ansi-styles"."2.2.0"; - by-version."ansi-styles"."2.2.0" = self.buildNodePackage { - name = "ansi-styles-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.0.tgz"; - name = "ansi-styles-2.2.0.tgz"; - sha1 = "c59191936e6ed1c1315a4b6b6b97f3acfbfa68b0"; - }; - deps = { - "color-convert-1.0.0" = self.by-version."color-convert"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."argparse"."1.0.4" = - self.by-version."argparse"."1.0.4"; - by-version."argparse"."1.0.4" = self.buildNodePackage { - name = "argparse-1.0.4"; - version = "1.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz"; - name = "argparse-1.0.4.tgz"; - sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; - }; - deps = { - "lodash-4.6.1" = self.by-version."lodash"."4.6.1"; - "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "argparse" = self.by-version."argparse"."1.0.4"; - by-spec."argparse"."^1.0.2" = - self.by-version."argparse"."1.0.7"; - by-version."argparse"."1.0.7" = self.buildNodePackage { - name = "argparse-1.0.7"; - version = "1.0.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/argparse/-/argparse-1.0.7.tgz"; - name = "argparse-1.0.7.tgz"; - sha1 = "c289506480557810f14a8bc62d7a06f63ed7f951"; - }; - deps = { - "sprintf-js-1.0.3" = self.by-version."sprintf-js"."1.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."array-find-index"."^1.0.0" = - self.by-version."array-find-index"."1.0.1"; - by-version."array-find-index"."1.0.1" = self.buildNodePackage { - name = "array-find-index-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/array-find-index/-/array-find-index-1.0.1.tgz"; - name = "array-find-index-1.0.1.tgz"; - sha1 = "0bc25ddac941ec8a496ae258fd4ac188003ef3af"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."asn1".">=0.2.3 <0.3.0" = - self.by-version."asn1"."0.2.3"; - by-version."asn1"."0.2.3" = self.buildNodePackage { - name = "asn1-0.2.3"; - version = "0.2.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz"; - name = "asn1-0.2.3.tgz"; - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."assert-plus".">=0.2.0 <0.3.0" = - self.by-version."assert-plus"."0.2.0"; - by-version."assert-plus"."0.2.0" = self.buildNodePackage { - name = "assert-plus-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/assert-plus/-/assert-plus-0.2.0.tgz"; - name = "assert-plus-0.2.0.tgz"; - sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."assert-plus"."^0.2.0" = - self.by-version."assert-plus"."0.2.0"; - by-spec."assert-plus"."^1.0.0" = - self.by-version."assert-plus"."1.0.0"; - by-version."assert-plus"."1.0.0" = self.buildNodePackage { - name = "assert-plus-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; - name = "assert-plus-1.0.0.tgz"; - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."assertion-error"."^1.0.0" = - self.by-version."assertion-error"."1.0.1"; - by-version."assertion-error"."1.0.1" = self.buildNodePackage { - name = "assertion-error-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/assertion-error/-/assertion-error-1.0.1.tgz"; - name = "assertion-error-1.0.1.tgz"; - sha1 = "35aaeec33097f11f42399ecadf33faccd27f5c4c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."async"."^1.5.2" = - self.by-version."async"."1.5.2"; - by-version."async"."1.5.2" = self.buildNodePackage { - name = "async-1.5.2"; - version = "1.5.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/async/-/async-1.5.2.tgz"; - name = "async-1.5.2.tgz"; - sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."aws-sign2"."~0.6.0" = - self.by-version."aws-sign2"."0.6.0"; - by-version."aws-sign2"."0.6.0" = self.buildNodePackage { - name = "aws-sign2-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/aws-sign2/-/aws-sign2-0.6.0.tgz"; - name = "aws-sign2-0.6.0.tgz"; - sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."aws4"."^1.2.1" = - self.by-version."aws4"."1.3.2"; - by-version."aws4"."1.3.2" = self.buildNodePackage { - name = "aws4-1.3.2"; - version = "1.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/aws4/-/aws4-1.3.2.tgz"; - name = "aws4-1.3.2.tgz"; - sha1 = "d39e0bee412ced0e8ed94a23e314f313a95b9fd1"; - }; - deps = { - "lru-cache-4.0.1" = self.by-version."lru-cache"."4.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."balanced-match"."^0.3.0" = - self.by-version."balanced-match"."0.3.0"; - by-version."balanced-match"."0.3.0" = self.buildNodePackage { - name = "balanced-match-0.3.0"; - version = "0.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz"; - name = "balanced-match-0.3.0.tgz"; - sha1 = "a91cdd1ebef1a86659e70ff4def01625fc2d6756"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bl"."^0.9.3" = - self.by-version."bl"."0.9.5"; - by-version."bl"."0.9.5" = self.buildNodePackage { - name = "bl-0.9.5"; - version = "0.9.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-0.9.5.tgz"; - name = "bl-0.9.5.tgz"; - sha1 = "c06b797af085ea00bc527afc8efcf11de2232054"; - }; - deps = { - "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bl"."~1.0.0" = - self.by-version."bl"."1.0.3"; - by-version."bl"."1.0.3" = self.buildNodePackage { - name = "bl-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bl/-/bl-1.0.3.tgz"; - name = "bl-1.0.3.tgz"; - sha1 = "fc5421a28fd4226036c3b3891a66a25bc64d226e"; - }; - deps = { - "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."bluebird"."~1.2.4" = - self.by-version."bluebird"."1.2.4"; - by-version."bluebird"."1.2.4" = self.buildNodePackage { - name = "bluebird-1.2.4"; - version = "1.2.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bluebird/-/bluebird-1.2.4.tgz"; - name = "bluebird-1.2.4.tgz"; - sha1 = "5985ec23cb6ff1a5834cc6447b3c5ef010fd321a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."boom"."2.10.1" = self.buildNodePackage { - name = "boom-2.10.1"; - version = "2.10.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/boom/-/boom-2.10.1.tgz"; - name = "boom-2.10.1.tgz"; - sha1 = "39c8918ceff5799f83f9492a848f625add0c766f"; - }; - deps = { - "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bower-endpoint-parser" = self.by-version."bower-endpoint-parser"."0.2.1"; - by-spec."bower-json"."0.6.0" = - self.by-version."bower-json"."0.6.0"; - by-version."bower-json"."0.6.0" = self.buildNodePackage { - name = "bower-json-0.6.0"; - version = "0.6.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/bower-json/-/bower-json-0.6.0.tgz"; - name = "bower-json-0.6.0.tgz"; - sha1 = "326579b23c33e4ea828e4763c55cd81fd7650329"; - }; - deps = { - "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; - "ext-name-3.0.0" = self.by-version."ext-name"."3.0.0"; - "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; - "intersect-1.0.1" = self.by-version."intersect"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "bower-json" = self.by-version."bower-json"."0.6.0"; - "bower-logger" = self.by-version."bower-logger"."0.2.1"; - by-version."brace-expansion"."1.1.3" = self.buildNodePackage { - name = "brace-expansion-1.1.3"; - version = "1.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.3.tgz"; - name = "brace-expansion-1.1.3.tgz"; - sha1 = "46bff50115d47fc9ab89854abb87d98078a10991"; - }; - deps = { - "balanced-match-0.3.0" = self.by-version."balanced-match"."0.3.0"; - "concat-map-0.0.1" = self.by-version."concat-map"."0.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."builtin-modules"."^1.0.0" = - self.by-version."builtin-modules"."1.1.1"; - by-version."builtin-modules"."1.1.1" = self.buildNodePackage { - name = "builtin-modules-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz"; - name = "builtin-modules-1.1.1.tgz"; - sha1 = "270f076c5a72c02f5b65a47df94c5fe3a278892f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."camelcase"."^2.0.0" = - self.by-version."camelcase"."2.1.1"; - by-version."camelcase"."2.1.1" = self.buildNodePackage { - name = "camelcase-2.1.1"; - version = "2.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz"; - name = "camelcase-2.1.1.tgz"; - sha1 = "7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."camelcase-keys"."^2.0.0" = - self.by-version."camelcase-keys"."2.1.0"; - by-version."camelcase-keys"."2.1.0" = self.buildNodePackage { - name = "camelcase-keys-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz"; - name = "camelcase-keys-2.1.0.tgz"; - sha1 = "308beeaffdf28119051efa1d932213c91b8f92e7"; - }; - deps = { - "camelcase-2.1.1" = self.by-version."camelcase"."2.1.1"; - "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."caseless"."~0.11.0" = - self.by-version."caseless"."0.11.0"; - by-version."caseless"."0.11.0" = self.buildNodePackage { - name = "caseless-0.11.0"; - version = "0.11.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz"; - name = "caseless-0.11.0.tgz"; - sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."chalk"."1.1.1" = self.buildNodePackage { - name = "chalk-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz"; - name = "chalk-1.1.1.tgz"; - sha1 = "509afb67066e7499f7eb3535c77445772ae2d019"; - }; - deps = { - "ansi-styles-2.2.0" = self.by-version."ansi-styles"."2.2.0"; - "escape-string-regexp-1.0.5" = self.by-version."escape-string-regexp"."1.0.5"; - "has-ansi-2.0.0" = self.by-version."has-ansi"."2.0.0"; - "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; - "supports-color-2.0.0" = self.by-version."supports-color"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."chalk"."^1.1.1" = - self.by-version."chalk"."1.1.1"; - by-spec."color-convert"."^1.0.0" = - self.by-version."color-convert"."1.0.0"; - by-version."color-convert"."1.0.0" = self.buildNodePackage { - name = "color-convert-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/color-convert/-/color-convert-1.0.0.tgz"; - name = "color-convert-1.0.0.tgz"; - sha1 = "3c26fcd885d272d45beacf6e41baba75c89a8579"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."colors"."^1.1.0" = - self.by-version."colors"."1.1.2"; - by-version."colors"."1.1.2" = self.buildNodePackage { - name = "colors-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/colors/-/colors-1.1.2.tgz"; - name = "colors-1.1.2.tgz"; - sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."combined-stream"."^1.0.5" = - self.by-version."combined-stream"."1.0.5"; - by-version."combined-stream"."1.0.5" = self.buildNodePackage { - name = "combined-stream-1.0.5"; - version = "1.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz"; - name = "combined-stream-1.0.5.tgz"; - sha1 = "938370a57b4a51dea2c77c15d5c5fdf895164009"; - }; - deps = { - "delayed-stream-1.0.0" = self.by-version."delayed-stream"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."combined-stream"."~1.0.5" = - self.by-version."combined-stream"."1.0.5"; - by-spec."commander"."^2.9.0" = - self.by-version."commander"."2.9.0"; - by-version."commander"."2.9.0" = self.buildNodePackage { - name = "commander-2.9.0"; - version = "2.9.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; - name = "commander-2.9.0.tgz"; - sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; - }; - deps = { - "graceful-readlink-1.0.1" = self.by-version."graceful-readlink"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."core-util-is"."1.0.2" = self.buildNodePackage { - name = "core-util-is-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz"; - name = "core-util-is-1.0.2.tgz"; - sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."cryptiles"."2.0.5" = self.buildNodePackage { - name = "cryptiles-2.0.5"; - version = "2.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz"; - name = "cryptiles-2.0.5.tgz"; - sha1 = "3bdfecdc608147c1c67202fa291e7dca59eaa3b8"; - }; - deps = { - "boom-2.10.1" = self.by-version."boom"."2.10.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."dashdash".">=1.10.1 <2.0.0" = - self.by-version."dashdash"."1.13.0"; - by-version."dashdash"."1.13.0" = self.buildNodePackage { - name = "dashdash-1.13.0"; - version = "1.13.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/dashdash/-/dashdash-1.13.0.tgz"; - name = "dashdash-1.13.0.tgz"; - sha1 = "a5aae6fd9d8e156624eb0dd9259eb12ba245385a"; - }; - deps = { - "assert-plus-1.0.0" = self.by-version."assert-plus"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."debug"."2.2.0" = self.buildNodePackage { - name = "debug-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/debug/-/debug-2.2.0.tgz"; - name = "debug-2.2.0.tgz"; - sha1 = "f87057e995b1a1f6ae6a4960664137bc56f039da"; - }; - deps = { - "ms-0.7.1" = self.by-version."ms"."0.7.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."decamelize"."^1.1.2" = - self.by-version."decamelize"."1.2.0"; - by-version."decamelize"."1.2.0" = self.buildNodePackage { - name = "decamelize-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; - name = "decamelize-1.2.0.tgz"; - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."deep-extend"."^0.4.0" = - self.by-version."deep-extend"."0.4.1"; - by-version."deep-extend"."0.4.1" = self.buildNodePackage { - name = "deep-extend-0.4.1"; - version = "0.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/deep-extend/-/deep-extend-0.4.1.tgz"; - name = "deep-extend-0.4.1.tgz"; - sha1 = "efe4113d08085f4e6f9687759810f807469e2253"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."deep-extend"."~0.4.0" = - self.by-version."deep-extend"."0.4.1"; - by-spec."deep-freeze"."0.0.1" = - self.by-version."deep-freeze"."0.0.1"; - by-version."deep-freeze"."0.0.1" = self.buildNodePackage { - name = "deep-freeze-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/deep-freeze/-/deep-freeze-0.0.1.tgz"; - name = "deep-freeze-0.0.1.tgz"; - sha1 = "3a0b0005de18672819dfd38cd31f91179c893e84"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."definition-header"."~0.1.0" = - self.by-version."definition-header"."0.1.0"; - by-version."definition-header"."0.1.0" = self.buildNodePackage { - name = "definition-header-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/definition-header/-/definition-header-0.1.0.tgz"; - name = "definition-header-0.1.0.tgz"; - sha1 = "01445ff4ca663114cbf2c5a1131f13bb544eb5dd"; - }; - deps = { - "joi-4.9.0" = self.by-version."joi"."4.9.0"; - "joi-assert-0.0.3" = self.by-version."joi-assert"."0.0.3"; - "parsimmon-0.5.1" = self.by-version."parsimmon"."0.5.1"; - "xregexp-2.0.0" = self.by-version."xregexp"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."delayed-stream"."~1.0.0" = - self.by-version."delayed-stream"."1.0.0"; - by-version."delayed-stream"."1.0.0" = self.buildNodePackage { - name = "delayed-stream-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz"; - name = "delayed-stream-1.0.0.tgz"; - sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."detect-indent"."^0.2.0" = - self.by-version."detect-indent"."0.2.0"; - by-version."detect-indent"."0.2.0" = self.buildNodePackage { - name = "detect-indent-0.2.0"; - version = "0.2.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/detect-indent/-/detect-indent-0.2.0.tgz"; - name = "detect-indent-0.2.0.tgz"; - sha1 = "042914498979ac2d9f3c73e4ff3e6877d3bc92b6"; - }; - deps = { - "get-stdin-0.1.0" = self.by-version."get-stdin"."0.1.0"; - "minimist-0.1.0" = self.by-version."minimist"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."diff"."^1.4.0" = - self.by-version."diff"."1.4.0"; - by-version."diff"."1.4.0" = self.buildNodePackage { - name = "diff-1.4.0"; - version = "1.4.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/diff/-/diff-1.4.0.tgz"; - name = "diff-1.4.0.tgz"; - sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."duplexify"."3.4.3" = self.buildNodePackage { - name = "duplexify-3.4.3"; - version = "3.4.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/duplexify/-/duplexify-3.4.3.tgz"; - name = "duplexify-3.4.3.tgz"; - sha1 = "af6a7b10d928b095f8ad854d072bb90998db850d"; - }; - deps = { - "end-of-stream-1.0.0" = self.by-version."end-of-stream"."1.0.0"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ecc-jsbn".">=0.0.1 <1.0.0" = - self.by-version."ecc-jsbn"."0.1.1"; - by-version."ecc-jsbn"."0.1.1" = self.buildNodePackage { - name = "ecc-jsbn-0.1.1"; - version = "0.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.1.tgz"; - name = "ecc-jsbn-0.1.1.tgz"; - sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505"; - }; - deps = { - "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ends-with"."^0.2.0" = - self.by-version."ends-with"."0.2.0"; - by-version."ends-with"."0.2.0" = self.buildNodePackage { - name = "ends-with-0.2.0"; - version = "0.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ends-with/-/ends-with-0.2.0.tgz"; - name = "ends-with-0.2.0.tgz"; - sha1 = "2f9da98d57a50cfda4571ce4339000500f4e6b8a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."error-ex"."^1.2.0" = - self.by-version."error-ex"."1.3.0"; - by-version."error-ex"."1.3.0" = self.buildNodePackage { - name = "error-ex-1.3.0"; - version = "1.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz"; - name = "error-ex-1.3.0.tgz"; - sha1 = "e67b43f3e82c96ea3a584ffee0b9fc3325d802d9"; - }; - deps = { - "is-arrayish-0.2.1" = self.by-version."is-arrayish"."0.2.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."escape-string-regexp"."1.0.5" = self.buildNodePackage { - name = "escape-string-regexp-1.0.5"; - version = "1.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; - name = "escape-string-regexp-1.0.5.tgz"; - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."esprima"."^2.6.0" = - self.by-version."esprima"."2.7.2"; - by-version."esprima"."2.7.2" = self.buildNodePackage { - name = "esprima-2.7.2"; - version = "2.7.2"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/esprima/-/esprima-2.7.2.tgz"; - name = "esprima-2.7.2.tgz"; - sha1 = "f43be543609984eae44c933ac63352a6af35f339"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."event-stream"."~3.1.5" = - self.by-version."event-stream"."3.1.7"; - by-version."event-stream"."3.1.7" = self.buildNodePackage { - name = "event-stream-3.1.7"; - version = "3.1.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/event-stream/-/event-stream-3.1.7.tgz"; - name = "event-stream-3.1.7.tgz"; - sha1 = "b4c540012d0fe1498420f3d8946008db6393c37a"; - }; - deps = { - "through-2.3.8" = self.by-version."through"."2.3.8"; - "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; - "from-0.1.3" = self.by-version."from"."0.1.3"; - "map-stream-0.1.0" = self.by-version."map-stream"."0.1.0"; - "pause-stream-0.0.11" = self.by-version."pause-stream"."0.0.11"; - "split-0.2.10" = self.by-version."split"."0.2.10"; - "stream-combiner-0.0.4" = self.by-version."stream-combiner"."0.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ext-list"."^2.0.0" = - self.by-version."ext-list"."2.2.0"; - by-version."ext-list"."2.2.0" = self.buildNodePackage { - name = "ext-list-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ext-list/-/ext-list-2.2.0.tgz"; - name = "ext-list-2.2.0.tgz"; - sha1 = "a3e6fdeab978bca7a320c7e786f537083fc30055"; - }; - deps = { - "got-2.9.2" = self.by-version."got"."2.9.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ext-name"."^3.0.0" = - self.by-version."ext-name"."3.0.0"; - by-version."ext-name"."3.0.0" = self.buildNodePackage { - name = "ext-name-3.0.0"; - version = "3.0.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/ext-name/-/ext-name-3.0.0.tgz"; - name = "ext-name-3.0.0.tgz"; - sha1 = "07e4418737cb1f513c32c6ea48d8b8c8e0471abb"; - }; - deps = { - "ends-with-0.2.0" = self.by-version."ends-with"."0.2.0"; - "ext-list-2.2.0" = self.by-version."ext-list"."2.2.0"; - "meow-3.7.0" = self.by-version."meow"."3.7.0"; - "sort-keys-length-1.0.1" = self.by-version."sort-keys-length"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."extend"."~3.0.0" = - self.by-version."extend"."3.0.0"; - by-version."extend"."3.0.0" = self.buildNodePackage { - name = "extend-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/extend/-/extend-3.0.0.tgz"; - name = "extend-3.0.0.tgz"; - sha1 = "5a474353b9f3353ddd8176dfd37b91c83a46f1d4"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."extsprintf"."1.0.3" = - self.by-version."extsprintf"."1.0.3"; - by-version."extsprintf"."1.0.3" = self.buildNodePackage { - name = "extsprintf-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/extsprintf/-/extsprintf-1.0.3.tgz"; - name = "extsprintf-1.0.3.tgz"; - sha1 = "3310ca8ced5205e5234766b0b2744ea5b2788d67"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."find-up"."^1.0.0" = - self.by-version."find-up"."1.1.2"; - by-version."find-up"."1.1.2" = self.buildNodePackage { - name = "find-up-1.1.2"; - version = "1.1.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz"; - name = "find-up-1.1.2.tgz"; - sha1 = "6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"; - }; - deps = { - "path-exists-2.1.0" = self.by-version."path-exists"."2.1.0"; - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."foreach"."^2.0.4" = - self.by-version."foreach"."2.0.5"; - by-version."foreach"."2.0.5" = self.buildNodePackage { - name = "foreach-2.0.5"; - version = "2.0.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/foreach/-/foreach-2.0.5.tgz"; - name = "foreach-2.0.5.tgz"; - sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."form-data"."~1.0.0-rc3" = - self.by-version."form-data"."1.0.0-rc4"; - by-version."form-data"."1.0.0-rc4" = self.buildNodePackage { - name = "form-data-1.0.0-rc4"; - version = "1.0.0-rc4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/form-data/-/form-data-1.0.0-rc4.tgz"; - name = "form-data-1.0.0-rc4.tgz"; - sha1 = "05ac6bc22227b43e4461f488161554699d4f8b5e"; - }; - deps = { - "async-1.5.2" = self.by-version."async"."1.5.2"; - "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "bl-1.0.3" = self.by-version."bl"."1.0.3"; + "caseless-0.11.0" = self.by-version."caseless"."0.11.0"; + "extend-3.0.0" = self.by-version."extend"."3.0.0"; + "forever-agent-0.6.1" = self.by-version."forever-agent"."0.6.1"; + "form-data-1.0.0-rc4" = self.by-version."form-data"."1.0.0-rc4"; + "json-stringify-safe-5.0.1" = self.by-version."json-stringify-safe"."5.0.1"; "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "qs-4.0.0" = self.by-version."qs"."4.0.0"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "tough-cookie-2.2.2" = self.by-version."tough-cookie"."2.2.2"; + "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; + "oauth-sign-0.8.1" = self.by-version."oauth-sign"."0.8.1"; + "hawk-3.1.3" = self.by-version."hawk"."3.1.3"; + "aws-sign2-0.5.0" = self.by-version."aws-sign2"."0.5.0"; + "stringstream-0.0.5" = self.by-version."stringstream"."0.0.5"; + "combined-stream-1.0.5" = self.by-version."combined-stream"."1.0.5"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "har-validator-1.8.0" = self.by-version."har-validator"."1.8.0"; }; optionalDependencies = { }; @@ -46579,2039 +39926,16 @@ os = [ ]; cpu = [ ]; }; - by-spec."from"."~0" = - self.by-version."from"."0.1.3"; - by-version."from"."0.1.3" = self.buildNodePackage { - name = "from-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/from/-/from-0.1.3.tgz"; - name = "from-0.1.3.tgz"; - sha1 = "ef63ac2062ac32acf7862e0d40b44b896f22f3bc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."fs-extra"."~0.26.5" = - self.by-version."fs-extra"."0.26.7"; - by-version."fs-extra"."0.26.7" = self.buildNodePackage { - name = "fs-extra-0.26.7"; - version = "0.26.7"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/fs-extra/-/fs-extra-0.26.7.tgz"; - name = "fs-extra-0.26.7.tgz"; - sha1 = "9ae1fdd94897798edab76d0918cf42d0c3184fa9"; - }; - deps = { - "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; - "jsonfile-2.2.3" = self.by-version."jsonfile"."2.2.3"; - "klaw-1.1.3" = self.by-version."klaw"."1.1.3"; - "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; - "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "fs-extra" = self.by-version."fs-extra"."0.26.7"; - by-version."generate-object-property"."1.2.0" = self.buildNodePackage { - name = "generate-object-property-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz"; - name = "generate-object-property-1.2.0.tgz"; - sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0"; - }; - deps = { - "is-property-1.0.2" = self.by-version."is-property"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."get-stdin"."^0.1.0" = - self.by-version."get-stdin"."0.1.0"; - by-version."get-stdin"."0.1.0" = self.buildNodePackage { - name = "get-stdin-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/get-stdin/-/get-stdin-0.1.0.tgz"; - name = "get-stdin-0.1.0.tgz"; - sha1 = "5998af24aafc802d15c82c685657eeb8b10d4a91"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."glob"."6.0.4" = - self.by-version."glob"."6.0.4"; - by-version."glob"."6.0.4" = self.buildNodePackage { - name = "glob-6.0.4"; - version = "6.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-6.0.4.tgz"; - name = "glob-6.0.4.tgz"; - sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; - }; - deps = { - "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; - "once-1.3.3" = self.by-version."once"."1.3.3"; - "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "glob" = self.by-version."glob"."6.0.4"; - by-spec."glob"."^4.0.6" = - self.by-version."glob"."4.5.3"; - by-spec."glob"."^7.0.0" = - self.by-version."glob"."7.0.3"; - by-version."glob"."7.0.3" = self.buildNodePackage { - name = "glob-7.0.3"; - version = "7.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/glob/-/glob-7.0.3.tgz"; - name = "glob-7.0.3.tgz"; - sha1 = "0aa235931a4a96ac13d60ffac2fb877bd6ed4f58"; - }; - deps = { - "inflight-1.0.4" = self.by-version."inflight"."1.0.4"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "minimatch-3.0.0" = self.by-version."minimatch"."3.0.0"; - "once-1.3.3" = self.by-version."once"."1.3.3"; - "path-is-absolute-1.0.0" = self.by-version."path-is-absolute"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."got"."^2.7.2" = - self.by-version."got"."2.9.2"; - by-version."got"."2.9.2" = self.buildNodePackage { - name = "got-2.9.2"; - version = "2.9.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-2.9.2.tgz"; - name = "got-2.9.2.tgz"; - sha1 = "2e1ee58ea1e8d201e25ae580b96e63c15fefd4ee"; - }; - deps = { - "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; - "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; - "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; - "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; - "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; - "object-assign-2.1.1" = self.by-version."object-assign"."2.1.1"; - "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; - "read-all-stream-2.2.0" = self.by-version."read-all-stream"."2.2.0"; - "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; - "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."got"."^3.2.0" = - self.by-version."got"."3.3.1"; - by-version."got"."3.3.1" = self.buildNodePackage { - name = "got-3.3.1"; - version = "3.3.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/got/-/got-3.3.1.tgz"; - name = "got-3.3.1.tgz"; - sha1 = "e5d0ed4af55fc3eef4d56007769d98192bcb2eca"; - }; - deps = { - "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; - "infinity-agent-2.0.3" = self.by-version."infinity-agent"."2.0.3"; - "is-redirect-1.0.0" = self.by-version."is-redirect"."1.0.0"; - "is-stream-1.0.1" = self.by-version."is-stream"."1.0.1"; - "lowercase-keys-1.0.0" = self.by-version."lowercase-keys"."1.0.0"; - "nested-error-stacks-1.0.2" = self.by-version."nested-error-stacks"."1.0.2"; - "object-assign-3.0.0" = self.by-version."object-assign"."3.0.0"; - "prepend-http-1.0.3" = self.by-version."prepend-http"."1.0.3"; - "read-all-stream-3.1.0" = self.by-version."read-all-stream"."3.1.0"; - "timed-out-2.0.0" = self.by-version."timed-out"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."graceful-fs"."3.0.8" = self.buildNodePackage { - name = "graceful-fs-3.0.8"; - version = "3.0.8"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz"; - name = "graceful-fs-3.0.8.tgz"; - sha1 = "ce813e725fa82f7e6147d51c9a5ca68270551c22"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."graceful-fs"."^4.1.2" = - self.by-version."graceful-fs"."4.1.3"; - by-version."graceful-fs"."4.1.3" = self.buildNodePackage { - name = "graceful-fs-4.1.3"; - version = "4.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.3.tgz"; - name = "graceful-fs-4.1.3.tgz"; - sha1 = "92033ce11113c41e2628d61fdfa40bc10dc0155c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."har-validator"."~2.0.6" = - self.by-version."har-validator"."2.0.6"; - by-version."har-validator"."2.0.6" = self.buildNodePackage { - name = "har-validator-2.0.6"; - version = "2.0.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz"; - name = "har-validator-2.0.6.tgz"; - sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d"; - }; - deps = { - "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; - "commander-2.9.0" = self.by-version."commander"."2.9.0"; - "is-my-json-valid-2.13.1" = self.by-version."is-my-json-valid"."2.13.1"; - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."has-ansi"."^2.0.0" = - self.by-version."has-ansi"."2.0.0"; - by-version."has-ansi"."2.0.0" = self.buildNodePackage { - name = "has-ansi-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz"; - name = "has-ansi-2.0.0.tgz"; - sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; - }; - deps = { - "ansi-regex-2.0.0" = self.by-version."ansi-regex"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."hawk"."~3.1.0" = - self.by-version."hawk"."3.1.3"; - by-version."hawk"."3.1.3" = self.buildNodePackage { - name = "hawk-3.1.3"; - version = "3.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hawk/-/hawk-3.1.3.tgz"; - name = "hawk-3.1.3.tgz"; - sha1 = "078444bd7c1640b0fe540d2c9b73d59678e8e1c4"; - }; - deps = { - "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; - "boom-2.10.1" = self.by-version."boom"."2.10.1"; - "cryptiles-2.0.5" = self.by-version."cryptiles"."2.0.5"; - "sntp-1.0.9" = self.by-version."sntp"."1.0.9"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."hoek"."2.16.3" = self.buildNodePackage { - name = "hoek-2.16.3"; - version = "2.16.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; - name = "hoek-2.16.3.tgz"; - sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."hoek"."^2.2.x" = - self.by-version."hoek"."2.16.3"; - by-spec."hosted-git-info"."^2.1.4" = - self.by-version."hosted-git-info"."2.1.4"; - by-version."hosted-git-info"."2.1.4" = self.buildNodePackage { - name = "hosted-git-info-2.1.4"; - version = "2.1.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz"; - name = "hosted-git-info-2.1.4.tgz"; - sha1 = "d9e953b26988be88096c46e926494d9604c300f8"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."http-signature"."~1.1.0" = - self.by-version."http-signature"."1.1.1"; - by-version."http-signature"."1.1.1" = self.buildNodePackage { - name = "http-signature-1.1.1"; - version = "1.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/http-signature/-/http-signature-1.1.1.tgz"; - name = "http-signature-1.1.1.tgz"; - sha1 = "df72e267066cd0ac67fb76adf8e134a8fbcf91bf"; - }; - deps = { - "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; - "jsprim-1.2.2" = self.by-version."jsprim"."1.2.2"; - "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."indent-string"."^2.1.0" = - self.by-version."indent-string"."2.1.0"; - by-version."indent-string"."2.1.0" = self.buildNodePackage { - name = "indent-string-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz"; - name = "indent-string-2.1.0.tgz"; - sha1 = "8e2d48348742121b4a8218b7a137e9a52049dc80"; - }; - deps = { - "repeating-2.0.0" = self.by-version."repeating"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."infinity-agent"."^2.0.0" = - self.by-version."infinity-agent"."2.0.3"; - by-version."infinity-agent"."2.0.3" = self.buildNodePackage { - name = "infinity-agent-2.0.3"; - version = "2.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz"; - name = "infinity-agent-2.0.3.tgz"; - sha1 = "45e0e2ff7a9eb030b27d62b74b3744b7a7ac4216"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."ini"."1.3.4" = self.buildNodePackage { - name = "ini-1.3.4"; - version = "1.3.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ini/-/ini-1.3.4.tgz"; - name = "ini-1.3.4.tgz"; - sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."intersect"."^1.0.1" = - self.by-version."intersect"."1.0.1"; - by-version."intersect"."1.0.1" = self.buildNodePackage { - name = "intersect-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/intersect/-/intersect-1.0.1.tgz"; - name = "intersect-1.0.1.tgz"; - sha1 = "332650e10854d8c0ac58c192bdc27a8bf7e7a30c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-arrayish"."^0.2.1" = - self.by-version."is-arrayish"."0.2.1"; - by-version."is-arrayish"."0.2.1" = self.buildNodePackage { - name = "is-arrayish-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; - name = "is-arrayish-0.2.1.tgz"; - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-builtin-module"."^1.0.0" = - self.by-version."is-builtin-module"."1.0.0"; - by-version."is-builtin-module"."1.0.0" = self.buildNodePackage { - name = "is-builtin-module-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz"; - name = "is-builtin-module-1.0.0.tgz"; - sha1 = "540572d34f7ac3119f8f76c30cbc1b1e037affbe"; - }; - deps = { - "builtin-modules-1.1.1" = self.by-version."builtin-modules"."1.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."is-finite"."1.0.1" = self.buildNodePackage { - name = "is-finite-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz"; - name = "is-finite-1.0.1.tgz"; - sha1 = "6438603eaebe2793948ff4a4262ec8db3d62597b"; - }; - deps = { - "number-is-nan-1.0.0" = self.by-version."number-is-nan"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-my-json-valid"."^2.12.4" = - self.by-version."is-my-json-valid"."2.13.1"; - by-version."is-my-json-valid"."2.13.1" = self.buildNodePackage { - name = "is-my-json-valid-2.13.1"; - version = "2.13.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.13.1.tgz"; - name = "is-my-json-valid-2.13.1.tgz"; - sha1 = "d55778a82feb6b0963ff4be111d5d1684e890707"; - }; - deps = { - "generate-function-2.0.0" = self.by-version."generate-function"."2.0.0"; - "generate-object-property-1.2.0" = self.by-version."generate-object-property"."1.2.0"; - "jsonpointer-2.0.0" = self.by-version."jsonpointer"."2.0.0"; - "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-plain-obj"."^1.0.0" = - self.by-version."is-plain-obj"."1.1.0"; - by-version."is-plain-obj"."1.1.0" = self.buildNodePackage { - name = "is-plain-obj-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; - name = "is-plain-obj-1.1.0.tgz"; - sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-redirect"."^1.0.0" = - self.by-version."is-redirect"."1.0.0"; - by-version."is-redirect"."1.0.0" = self.buildNodePackage { - name = "is-redirect-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; - name = "is-redirect-1.0.0.tgz"; - sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."is-typedarray"."~1.0.0" = - self.by-version."is-typedarray"."1.0.0"; - by-version."is-typedarray"."1.0.0" = self.buildNodePackage { - name = "is-typedarray-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; - name = "is-typedarray-1.0.0.tgz"; - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."is-utf8"."0.2.1" = self.buildNodePackage { - name = "is-utf8-0.2.1"; - version = "0.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; - name = "is-utf8-0.2.1.tgz"; - sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."isarray"."~1.0.0" = - self.by-version."isarray"."1.0.0"; - by-version."isarray"."1.0.0" = self.buildNodePackage { - name = "isarray-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; - name = "isarray-1.0.0.tgz"; - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."isemail"."1.x.x" = - self.by-version."isemail"."1.2.0"; - by-version."isemail"."1.2.0" = self.buildNodePackage { - name = "isemail-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"; - name = "isemail-1.2.0.tgz"; - sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."isstream"."~0.1.2" = - self.by-version."isstream"."0.1.2"; - by-spec."jodid25519".">=1.0.0 <2.0.0" = - self.by-version."jodid25519"."1.0.2"; - by-version."jodid25519"."1.0.2" = self.buildNodePackage { - name = "jodid25519-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz"; - name = "jodid25519-1.0.2.tgz"; - sha1 = "06d4912255093419477d425633606e0e90782967"; - }; - deps = { - "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."joi"."^4.0.0" = - self.by-version."joi"."4.9.0"; - by-version."joi"."4.9.0" = self.buildNodePackage { - name = "joi-4.9.0"; - version = "4.9.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/joi/-/joi-4.9.0.tgz"; - name = "joi-4.9.0.tgz"; - sha1 = "2355023363089ca01bc1fd079e72949f977baada"; - }; - deps = { - "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; - "topo-1.1.0" = self.by-version."topo"."1.1.0"; - "isemail-1.2.0" = self.by-version."isemail"."1.2.0"; - "moment-2.12.0" = self.by-version."moment"."2.12.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."joi"."^4.7.0" = - self.by-version."joi"."4.9.0"; - by-spec."joi-assert"."0.0.3" = - self.by-version."joi-assert"."0.0.3"; - by-version."joi-assert"."0.0.3" = self.buildNodePackage { - name = "joi-assert-0.0.3"; - version = "0.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/joi-assert/-/joi-assert-0.0.3.tgz"; - name = "joi-assert-0.0.3.tgz"; - sha1 = "77291376ac3f0b124f433f98db74b4f20f686fd6"; - }; - deps = { - "assertion-error-1.0.1" = self.by-version."assertion-error"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."js-yaml"."3.5.5" = self.buildNodePackage { - name = "js-yaml-3.5.5"; - version = "3.5.5"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/js-yaml/-/js-yaml-3.5.5.tgz"; - name = "js-yaml-3.5.5.tgz"; - sha1 = "0377c38017cabc7322b0d1fbcd25a491641f2fbe"; - }; - deps = { - "argparse-1.0.7" = self.by-version."argparse"."1.0.7"; - "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jsbn".">=0.1.0 <0.2.0" = - self.by-version."jsbn"."0.1.0"; - by-version."jsbn"."0.1.0" = self.buildNodePackage { - name = "jsbn-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz"; - name = "jsbn-0.1.0.tgz"; - sha1 = "650987da0dd74f4ebf5a11377a2aa2d273e97dfd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jsbn"."~0.1.0" = - self.by-version."jsbn"."0.1.0"; - by-spec."jsesc"."^0.5.0" = - self.by-version."jsesc"."0.5.0"; - by-version."jsesc"."0.5.0" = self.buildNodePackage { - name = "jsesc-0.5.0"; - version = "0.5.0"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; - name = "jsesc-0.5.0.tgz"; - sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."json-pointer"."^0.2.2" = - self.by-version."json-pointer"."0.2.2"; - by-version."json-pointer"."0.2.2" = self.buildNodePackage { - name = "json-pointer-0.2.2"; - version = "0.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/json-pointer/-/json-pointer-0.2.2.tgz"; - name = "json-pointer-0.2.2.tgz"; - sha1 = "1a78285d4650c50b10475f7f59919a99db8a164b"; - }; - deps = { - "foreach-2.0.5" = self.by-version."foreach"."2.0.5"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."json-stringify-safe"."~5.0.1" = - self.by-version."json-stringify-safe"."5.0.1"; - by-version."json-stringify-safe"."5.0.1" = self.buildNodePackage { - name = "json-stringify-safe-5.0.1"; - version = "5.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; - name = "json-stringify-safe-5.0.1.tgz"; - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jsonfile"."^2.1.0" = - self.by-version."jsonfile"."2.2.3"; - by-version."jsonfile"."2.2.3" = self.buildNodePackage { - name = "jsonfile-2.2.3"; - version = "2.2.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jsonfile/-/jsonfile-2.2.3.tgz"; - name = "jsonfile-2.2.3.tgz"; - sha1 = "e252b99a6af901d3ec41f332589c90509a7bc605"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jsonpointer"."2.0.0" = - self.by-version."jsonpointer"."2.0.0"; - by-version."jsonpointer"."2.0.0" = self.buildNodePackage { - name = "jsonpointer-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz"; - name = "jsonpointer-2.0.0.tgz"; - sha1 = "3af1dd20fe85463910d469a385e33017d2a030d9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."jsprim"."^1.2.2" = - self.by-version."jsprim"."1.2.2"; - by-version."jsprim"."1.2.2" = self.buildNodePackage { - name = "jsprim-1.2.2"; - version = "1.2.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz"; - name = "jsprim-1.2.2.tgz"; - sha1 = "f20c906ac92abd58e3b79ac8bc70a48832512da1"; - }; - deps = { - "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; - "json-schema-0.2.2" = self.by-version."json-schema"."0.2.2"; - "verror-1.3.6" = self.by-version."verror"."1.3.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."klaw"."^1.0.0" = - self.by-version."klaw"."1.1.3"; - by-version."klaw"."1.1.3" = self.buildNodePackage { - name = "klaw-1.1.3"; - version = "1.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/klaw/-/klaw-1.1.3.tgz"; - name = "klaw-1.1.3.tgz"; - sha1 = "7da33c6b42f9b3dc9cec00d17f13af017fcc2721"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."latest-version"."1.0.1" = self.buildNodePackage { - name = "latest-version-1.0.1"; - version = "1.0.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz"; - name = "latest-version-1.0.1.tgz"; - sha1 = "72cfc46e3e8d1be651e1ebb54ea9f6ea96f374bb"; - }; - deps = { - "package-json-1.2.0" = self.by-version."package-json"."1.2.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lazy.js"."~0.3.2" = - self.by-version."lazy.js"."0.3.2"; - by-version."lazy.js"."0.3.2" = self.buildNodePackage { - name = "lazy.js-0.3.2"; - version = "0.3.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lazy.js/-/lazy.js-0.3.2.tgz"; - name = "lazy.js-0.3.2.tgz"; - sha1 = "7cc1107e5f809ae70498f511dd180e1f80b4efa9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."load-json-file"."^1.0.0" = - self.by-version."load-json-file"."1.1.0"; - by-version."load-json-file"."1.1.0" = self.buildNodePackage { - name = "load-json-file-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz"; - name = "load-json-file-1.1.0.tgz"; - sha1 = "956905708d58b4bab4c2261b04f59f31c99374c0"; - }; - deps = { - "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; - "parse-json-2.2.0" = self.by-version."parse-json"."2.2.0"; - "pify-2.3.0" = self.by-version."pify"."2.3.0"; - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - "strip-bom-2.0.0" = self.by-version."strip-bom"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lodash".">= 4.0.0 < 5.0.0" = - self.by-version."lodash"."4.6.1"; - by-version."lodash"."4.6.1" = self.buildNodePackage { - name = "lodash-4.6.1"; - version = "4.6.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-4.6.1.tgz"; - name = "lodash-4.6.1.tgz"; - sha1 = "df00c1164ad236b183cfc3887a5e8d38cc63cbbc"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lodash"."~4.2.1" = - self.by-version."lodash"."4.2.1"; - by-version."lodash"."4.2.1" = self.buildNodePackage { - name = "lodash-4.2.1"; - version = "4.2.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lodash/-/lodash-4.2.1.tgz"; - name = "lodash-4.2.1.tgz"; - sha1 = "171fdcfbbc30d689c544cd18c0529f56de6c1aa9"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "lodash" = self.by-version."lodash"."4.2.1"; - by-spec."loud-rejection"."^1.0.0" = - self.by-version."loud-rejection"."1.3.0"; - by-version."loud-rejection"."1.3.0" = self.buildNodePackage { - name = "loud-rejection-1.3.0"; - version = "1.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/loud-rejection/-/loud-rejection-1.3.0.tgz"; - name = "loud-rejection-1.3.0.tgz"; - sha1 = "f289a392f17d2baacf194d0a673004394433b115"; - }; - deps = { - "array-find-index-1.0.1" = self.by-version."array-find-index"."1.0.1"; - "signal-exit-2.1.2" = self.by-version."signal-exit"."2.1.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."lru-cache"."2.7.3" = self.buildNodePackage { - name = "lru-cache-2.7.3"; - version = "2.7.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz"; - name = "lru-cache-2.7.3.tgz"; - sha1 = "6d4524e8b955f95d4f5b58851ce21dd72fb4e952"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."lru-cache"."^4.0.0" = - self.by-version."lru-cache"."4.0.1"; - by-version."lru-cache"."4.0.1" = self.buildNodePackage { - name = "lru-cache-4.0.1"; - version = "4.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/lru-cache/-/lru-cache-4.0.1.tgz"; - name = "lru-cache-4.0.1.tgz"; - sha1 = "1343955edaf2e37d9b9e7ee7241e27c4b9fb72be"; - }; - deps = { - "pseudomap-1.0.2" = self.by-version."pseudomap"."1.0.2"; - "yallist-2.0.0" = self.by-version."yallist"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."map-obj"."1.0.1" = self.buildNodePackage { - name = "map-obj-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; - name = "map-obj-1.0.1.tgz"; - sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."map-obj"."^1.0.1" = - self.by-version."map-obj"."1.0.1"; - by-spec."map-stream"."~0.1.0" = - self.by-version."map-stream"."0.1.0"; - by-version."map-stream"."0.1.0" = self.buildNodePackage { - name = "map-stream-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz"; - name = "map-stream-0.1.0.tgz"; - sha1 = "e56aa94c4c8055a16404a0674b78f215f7c8e194"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."meow"."3.7.0" = self.buildNodePackage { - name = "meow-3.7.0"; - version = "3.7.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/meow/-/meow-3.7.0.tgz"; - name = "meow-3.7.0.tgz"; - sha1 = "72cb668b425228290abbfa856892587308a801fb"; - }; - deps = { - "camelcase-keys-2.1.0" = self.by-version."camelcase-keys"."2.1.0"; - "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; - "loud-rejection-1.3.0" = self.by-version."loud-rejection"."1.3.0"; - "map-obj-1.0.1" = self.by-version."map-obj"."1.0.1"; - "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; - "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; - "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; - "read-pkg-up-1.0.1" = self.by-version."read-pkg-up"."1.0.1"; - "redent-1.0.0" = self.by-version."redent"."1.0.0"; - "trim-newlines-1.0.0" = self.by-version."trim-newlines"."1.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mime-db"."~1.22.0" = - self.by-version."mime-db"."1.22.0"; - by-version."mime-db"."1.22.0" = self.buildNodePackage { - name = "mime-db-1.22.0"; - version = "1.22.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mime-db/-/mime-db-1.22.0.tgz"; - name = "mime-db-1.22.0.tgz"; - sha1 = "ab23a6372dc9d86d3dc9121bd0ebd38105a1904a"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mime-types"."^2.1.10" = - self.by-version."mime-types"."2.1.10"; - by-version."mime-types"."2.1.10" = self.buildNodePackage { - name = "mime-types-2.1.10"; - version = "2.1.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/mime-types/-/mime-types-2.1.10.tgz"; - name = "mime-types-2.1.10.tgz"; - sha1 = "b93c7cb4362e16d41072a7e54538fb4d43070837"; - }; - deps = { - "mime-db-1.22.0" = self.by-version."mime-db"."1.22.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."mime-types"."~2.1.7" = - self.by-version."mime-types"."2.1.10"; - by-spec."minichain"."~0.0.1" = - self.by-version."minichain"."0.0.1"; - by-version."minichain"."0.0.1" = self.buildNodePackage { - name = "minichain-0.0.1"; - version = "0.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minichain/-/minichain-0.0.1.tgz"; - name = "minichain-0.0.1.tgz"; - sha1 = "0bae49774170d8931401c271bb6ed6d3992a9f52"; - }; - deps = { - "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; - "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."minimatch"."2 || 3" = - self.by-version."minimatch"."3.0.0"; - by-version."minimatch"."3.0.0" = self.buildNodePackage { - name = "minimatch-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz"; - name = "minimatch-3.0.0.tgz"; - sha1 = "5236157a51e4f004c177fb3c527ff7dd78f0ef83"; - }; - deps = { - "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."minimatch"."2.0.10" = self.buildNodePackage { - name = "minimatch-2.0.10"; - version = "2.0.10"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz"; - name = "minimatch-2.0.10.tgz"; - sha1 = "8d087c39c6b38c001b97fca7ce6d0e1e80afbac7"; - }; - deps = { - "brace-expansion-1.1.3" = self.by-version."brace-expansion"."1.1.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."minimist"."^0.1.0" = - self.by-version."minimist"."0.1.0"; - by-version."minimist"."0.1.0" = self.buildNodePackage { - name = "minimist-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-0.1.0.tgz"; - name = "minimist-0.1.0.tgz"; - sha1 = "99df657a52574c21c9057497df742790b2b4c0de"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."minimist"."1.2.0" = self.buildNodePackage { - name = "minimist-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz"; - name = "minimist-1.2.0.tgz"; - sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."minimist"."^1.1.3" = - self.by-version."minimist"."1.2.0"; - by-spec."minimist"."^1.2.0" = - self.by-version."minimist"."1.2.0"; - by-spec."ministyle".">=0.1.2 >=0.1.3 <0.2.0" = - self.by-version."ministyle"."0.1.4"; - by-spec."ministyle"."~0.1.2" = - self.by-version."ministyle"."0.1.4"; - by-spec."minitable"."0.0.4" = - self.by-version."minitable"."0.0.4"; - by-version."minitable"."0.0.4" = self.buildNodePackage { - name = "minitable-0.0.4"; - version = "0.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/minitable/-/minitable-0.0.4.tgz"; - name = "minitable-0.0.4.tgz"; - sha1 = "8d61cb78fae6f371d8051ce77e8a7831ce3d5396"; - }; - deps = { - "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; - "minichain-0.0.1" = self.by-version."minichain"."0.0.1"; - "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."miniwrite"."~0.1.2" = - self.by-version."miniwrite"."0.1.4"; - by-version."mkdirp"."0.5.1" = self.buildNodePackage { - name = "mkdirp-0.5.1"; - version = "0.5.1"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; - name = "mkdirp-0.5.1.tgz"; - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; - }; - deps = { - "minimist-0.0.8" = self.by-version."minimist"."0.0.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."moment"."2.x.x" = - self.by-version."moment"."2.12.0"; - by-version."moment"."2.12.0" = self.buildNodePackage { - name = "moment-2.12.0"; - version = "2.12.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/moment/-/moment-2.12.0.tgz"; - name = "moment-2.12.0.tgz"; - sha1 = "dc2560d19838d6c0731b1a6afa04675264d360d6"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."ms"."0.7.1" = - self.by-version."ms"."0.7.1"; - by-version."ms"."0.7.1" = self.buildNodePackage { - name = "ms-0.7.1"; - version = "0.7.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/ms/-/ms-0.7.1.tgz"; - name = "ms-0.7.1.tgz"; - sha1 = "9cd13c03adbff25b65effde7ce864ee952017098"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."nested-error-stacks"."1.0.2" = self.buildNodePackage { - name = "nested-error-stacks-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.2.tgz"; - name = "nested-error-stacks-1.0.2.tgz"; - sha1 = "19f619591519f096769a5ba9a86e6eeec823c3cf"; - }; - deps = { - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."node-uuid"."1.x" = - self.by-version."node-uuid"."1.4.7"; - by-version."node-uuid"."1.4.7" = self.buildNodePackage { - name = "node-uuid-1.4.7"; - version = "1.4.7"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz"; - name = "node-uuid-1.4.7.tgz"; - sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."node-uuid"."~1.4.7" = - self.by-version."node-uuid"."1.4.7"; - by-spec."normalize-package-data"."^2.3.2" = - self.by-version."normalize-package-data"."2.3.5"; - by-version."normalize-package-data"."2.3.5" = self.buildNodePackage { - name = "normalize-package-data-2.3.5"; - version = "2.3.5"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz"; - name = "normalize-package-data-2.3.5.tgz"; - sha1 = "8d924f142960e1777e7ffe170543631cc7cb02df"; - }; - deps = { - "hosted-git-info-2.1.4" = self.by-version."hosted-git-info"."2.1.4"; - "is-builtin-module-1.0.0" = self.by-version."is-builtin-module"."1.0.0"; - "semver-5.1.0" = self.by-version."semver"."5.1.0"; - "validate-npm-package-license-3.0.1" = self.by-version."validate-npm-package-license"."3.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."normalize-package-data"."^2.3.4" = - self.by-version."normalize-package-data"."2.3.5"; - by-spec."number-is-nan"."^1.0.0" = - self.by-version."number-is-nan"."1.0.0"; - by-version."number-is-nan"."1.0.0" = self.buildNodePackage { - name = "number-is-nan-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz"; - name = "number-is-nan-1.0.0.tgz"; - sha1 = "c020f529c5282adfdd233d91d4b181c3d686dc4b"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."oauth-sign"."~0.8.0" = - self.by-version."oauth-sign"."0.8.1"; - by-version."oauth-sign"."0.8.1" = self.buildNodePackage { - name = "oauth-sign-0.8.1"; - version = "0.8.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.1.tgz"; - name = "oauth-sign-0.8.1.tgz"; - sha1 = "182439bdb91378bf7460e75c64ea43e6448def06"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."object-assign"."2.1.1" = self.buildNodePackage { - name = "object-assign-2.1.1"; - version = "2.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/object-assign/-/object-assign-2.1.1.tgz"; - name = "object-assign-2.1.1.tgz"; - sha1 = "43c36e5d569ff8e4816c4efa8be02d26967c18aa"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."object-assign"."^3.0.0" = - self.by-version."object-assign"."3.0.0"; - by-version."object-assign"."3.0.0" = self.buildNodePackage { - name = "object-assign-3.0.0"; - version = "3.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz"; - name = "object-assign-3.0.0.tgz"; - sha1 = "9bedd5ca0897949bca47e7ff408062d549f587f2"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."object-assign"."^4.0.1" = - self.by-version."object-assign"."4.0.1"; - by-version."object-assign"."4.0.1" = self.buildNodePackage { - name = "object-assign-4.0.1"; - version = "4.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz"; - name = "object-assign-4.0.1.tgz"; - sha1 = "99504456c3598b5cad4fc59c26e8a9bb107fe0bd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."once"."1.3.3" = self.buildNodePackage { - name = "once-1.3.3"; - version = "1.3.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/once/-/once-1.3.3.tgz"; - name = "once-1.3.3.tgz"; - sha1 = "b2e261557ce4c314ec8304f3fa82663e4297ca20"; - }; - deps = { - "wrappy-1.0.1" = self.by-version."wrappy"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."os-homedir"."^1.0.0" = - self.by-version."os-homedir"."1.0.1"; - by-version."os-homedir"."1.0.1" = self.buildNodePackage { - name = "os-homedir-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz"; - name = "os-homedir-1.0.1.tgz"; - sha1 = "0d62bdf44b916fd3bbdcf2cab191948fb094f007"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."os-tmpdir"."^1.0.0" = - self.by-version."os-tmpdir"."1.0.1"; - by-version."os-tmpdir"."1.0.1" = self.buildNodePackage { - name = "os-tmpdir-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz"; - name = "os-tmpdir-1.0.1.tgz"; - sha1 = "e9b423a1edaf479882562e92ed71d7743a071b6e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."osenv"."0.1.3" = self.buildNodePackage { - name = "osenv-0.1.3"; - version = "0.1.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz"; - name = "osenv-0.1.3.tgz"; - sha1 = "83cf05c6d6458fc4d5ac6362ea325d92f2754217"; - }; - deps = { - "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; - "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."package-json"."1.2.0" = self.buildNodePackage { - name = "package-json-1.2.0"; - version = "1.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz"; - name = "package-json-1.2.0.tgz"; - sha1 = "c8ecac094227cdf76a316874ed05e27cc939a0e0"; - }; - deps = { - "got-3.3.1" = self.by-version."got"."3.3.1"; - "registry-url-3.0.3" = self.by-version."registry-url"."3.0.3"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."parse-json"."^2.2.0" = - self.by-version."parse-json"."2.2.0"; - by-version."parse-json"."2.2.0" = self.buildNodePackage { - name = "parse-json-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz"; - name = "parse-json-2.2.0.tgz"; - sha1 = "f480f40434ef80741f8469099f8dea18f55a4dc9"; - }; - deps = { - "error-ex-1.3.0" = self.by-version."error-ex"."1.3.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."parsimmon"."^0.5.0" = - self.by-version."parsimmon"."0.5.1"; - by-version."parsimmon"."0.5.1" = self.buildNodePackage { - name = "parsimmon-0.5.1"; - version = "0.5.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/parsimmon/-/parsimmon-0.5.1.tgz"; - name = "parsimmon-0.5.1.tgz"; - sha1 = "247c970d7d5e99a51115b16a106de96f0eb9303b"; - }; - deps = { - "pjs-5.1.1" = self.by-version."pjs"."5.1.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."path-exists"."^2.0.0" = - self.by-version."path-exists"."2.1.0"; - by-version."path-exists"."2.1.0" = self.buildNodePackage { - name = "path-exists-2.1.0"; - version = "2.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz"; - name = "path-exists-2.1.0.tgz"; - sha1 = "0feb6c64f0fc518d9a754dd5efb62c7022761f4b"; - }; - deps = { - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."path-type"."^1.0.0" = - self.by-version."path-type"."1.1.0"; - by-version."path-type"."1.1.0" = self.buildNodePackage { - name = "path-type-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz"; - name = "path-type-1.1.0.tgz"; - sha1 = "59c44f7ee491da704da415da5a4070ba4f8fe441"; - }; - deps = { - "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; - "pify-2.3.0" = self.by-version."pify"."2.3.0"; - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."pause-stream"."0.0.11" = - self.by-version."pause-stream"."0.0.11"; - by-version."pause-stream"."0.0.11" = self.buildNodePackage { - name = "pause-stream-0.0.11"; - version = "0.0.11"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz"; - name = "pause-stream-0.0.11.tgz"; - sha1 = "fe5a34b0cbce12b5aa6a2b403ee2e73b602f1445"; - }; - deps = { - "through-2.3.8" = self.by-version."through"."2.3.8"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."pify"."^2.0.0" = - self.by-version."pify"."2.3.0"; - by-version."pify"."2.3.0" = self.buildNodePackage { - name = "pify-2.3.0"; - version = "2.3.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pify/-/pify-2.3.0.tgz"; - name = "pify-2.3.0.tgz"; - sha1 = "ed141a6ac043a849ea588498e7dca8b15330e90c"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."pinkie"."^2.0.0" = - self.by-version."pinkie"."2.0.4"; - by-version."pinkie"."2.0.4" = self.buildNodePackage { - name = "pinkie-2.0.4"; - version = "2.0.4"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz"; - name = "pinkie-2.0.4.tgz"; - sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."pinkie-promise"."^2.0.0" = - self.by-version."pinkie-promise"."2.0.0"; - by-version."pinkie-promise"."2.0.0" = self.buildNodePackage { - name = "pinkie-promise-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.0.tgz"; - name = "pinkie-promise-2.0.0.tgz"; - sha1 = "4c83538de1f6e660c29e0a13446844f7a7e88259"; - }; - deps = { - "pinkie-2.0.4" = self.by-version."pinkie"."2.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."pjs"."5.x" = - self.by-version."pjs"."5.1.1"; - by-version."pjs"."5.1.1" = self.buildNodePackage { - name = "pjs-5.1.1"; - version = "5.1.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pjs/-/pjs-5.1.1.tgz"; - name = "pjs-5.1.1.tgz"; - sha1 = "9dfc4673bb01deffd6915fb1dec75827aba42abf"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."prepend-http"."1.0.3" = self.buildNodePackage { - name = "prepend-http-1.0.3"; - version = "1.0.3"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/prepend-http/-/prepend-http-1.0.3.tgz"; - name = "prepend-http-1.0.3.tgz"; - sha1 = "4d0d2b6f9efcf1190c23931325b4f3a9dba84869"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."process-nextick-args"."~1.0.6" = - self.by-version."process-nextick-args"."1.0.6"; - by-version."process-nextick-args"."1.0.6" = self.buildNodePackage { - name = "process-nextick-args-1.0.6"; - version = "1.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz"; - name = "process-nextick-args-1.0.6.tgz"; - sha1 = "0f96b001cea90b12592ce566edb97ec11e69bd05"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."promised-temp"."^0.1.0" = - self.by-version."promised-temp"."0.1.0"; - by-version."promised-temp"."0.1.0" = self.buildNodePackage { - name = "promised-temp-0.1.0"; - version = "0.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/promised-temp/-/promised-temp-0.1.0.tgz"; - name = "promised-temp-0.1.0.tgz"; - sha1 = "5f8a704ccdf5f2ac23996fcafe2b301bc2a8d0eb"; - }; - deps = { - "temp-0.8.3" = self.by-version."temp"."0.8.3"; - "q-1.4.1" = self.by-version."q"."1.4.1"; - "debug-2.2.0" = self.by-version."debug"."2.2.0"; - "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - "promised-temp" = self.by-version."promised-temp"."0.1.0"; - by-spec."pseudomap"."^1.0.1" = - self.by-version."pseudomap"."1.0.2"; - by-version."pseudomap"."1.0.2" = self.buildNodePackage { - name = "pseudomap-1.0.2"; - version = "1.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; - name = "pseudomap-1.0.2.tgz"; - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."q"."1.4.1" = self.buildNodePackage { - name = "q-1.4.1"; - version = "1.4.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/q/-/q-1.4.1.tgz"; - name = "q-1.4.1.tgz"; - sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."qs"."~6.0.2" = - self.by-version."qs"."6.0.2"; - by-version."qs"."6.0.2" = self.buildNodePackage { - name = "qs-6.0.2"; - version = "6.0.2"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/qs/-/qs-6.0.2.tgz"; - name = "qs-6.0.2.tgz"; - sha1 = "88c68d590e8ed56c76c79f352c17b982466abfcd"; - }; - deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."rc"."1.1.6" = self.buildNodePackage { - name = "rc-1.1.6"; - version = "1.1.6"; - bin = true; - src = fetchurl { - url = "http://registry.npmjs.org/rc/-/rc-1.1.6.tgz"; - name = "rc-1.1.6.tgz"; - sha1 = "43651b76b6ae53b5c802f1151fa3fc3b059969c9"; - }; - deps = { - "deep-extend-0.4.1" = self.by-version."deep-extend"."0.4.1"; - "ini-1.3.4" = self.by-version."ini"."1.3.4"; - "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; - "strip-json-comments-1.0.4" = self.by-version."strip-json-comments"."1.0.4"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-version."read-all-stream"."2.2.0" = self.buildNodePackage { - name = "read-all-stream-2.2.0"; - version = "2.2.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/read-all-stream/-/read-all-stream-2.2.0.tgz"; - name = "read-all-stream-2.2.0.tgz"; - sha1 = "6b83370546c55ab6ade2bf75e83c66e45989bbf0"; - }; - deps = { - "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."read-all-stream"."^3.0.0" = - self.by-version."read-all-stream"."3.1.0"; - by-version."read-all-stream"."3.1.0" = self.buildNodePackage { - name = "read-all-stream-3.1.0"; - version = "3.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/read-all-stream/-/read-all-stream-3.1.0.tgz"; - name = "read-all-stream-3.1.0.tgz"; - sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa"; - }; - deps = { - "pinkie-promise-2.0.0" = self.by-version."pinkie-promise"."2.0.0"; - "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."read-pkg"."^1.0.0" = - self.by-version."read-pkg"."1.1.0"; - by-version."read-pkg"."1.1.0" = self.buildNodePackage { - name = "read-pkg-1.1.0"; - version = "1.1.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz"; - name = "read-pkg-1.1.0.tgz"; - sha1 = "f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"; - }; - deps = { - "load-json-file-1.1.0" = self.by-version."load-json-file"."1.1.0"; - "normalize-package-data-2.3.5" = self.by-version."normalize-package-data"."2.3.5"; - "path-type-1.1.0" = self.by-version."path-type"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."read-pkg-up"."^1.0.1" = - self.by-version."read-pkg-up"."1.0.1"; - by-version."read-pkg-up"."1.0.1" = self.buildNodePackage { - name = "read-pkg-up-1.0.1"; - version = "1.0.1"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz"; - name = "read-pkg-up-1.0.1.tgz"; - sha1 = "9d63c13276c065918d57f002a57f40a1b643fb02"; - }; - deps = { - "find-up-1.1.2" = self.by-version."find-up"."1.1.2"; - "read-pkg-1.1.0" = self.by-version."read-pkg"."1.1.0"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."readable-stream"."^2.0.0" = - self.by-version."readable-stream"."2.0.6"; - by-version."readable-stream"."2.0.6" = self.buildNodePackage { - name = "readable-stream-2.0.6"; - version = "2.0.6"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; - name = "readable-stream-2.0.6.tgz"; - sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; - }; - deps = { - "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; - "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; - "isarray-1.0.0" = self.by-version."isarray"."1.0.0"; - "process-nextick-args-1.0.6" = self.by-version."process-nextick-args"."1.0.6"; - "string_decoder-0.10.31" = self.by-version."string_decoder"."0.10.31"; - "util-deprecate-1.0.2" = self.by-version."util-deprecate"."1.0.2"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."readable-stream"."~2.0.5" = - self.by-version."readable-stream"."2.0.6"; - by-spec."redent"."^1.0.0" = - self.by-version."redent"."1.0.0"; - by-version."redent"."1.0.0" = self.buildNodePackage { - name = "redent-1.0.0"; - version = "1.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/redent/-/redent-1.0.0.tgz"; - name = "redent-1.0.0.tgz"; - sha1 = "cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"; - }; - deps = { - "indent-string-2.1.0" = self.by-version."indent-string"."2.1.0"; - "strip-indent-1.0.1" = self.by-version."strip-indent"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."repeating"."^2.0.0" = - self.by-version."repeating"."2.0.0"; - by-version."repeating"."2.0.0" = self.buildNodePackage { - name = "repeating-2.0.0"; - version = "2.0.0"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz"; - name = "repeating-2.0.0.tgz"; - sha1 = "fd27d6d264d18fbebfaa56553dd7b82535a5034e"; - }; - deps = { - "is-finite-1.0.1" = self.by-version."is-finite"."1.0.1"; - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; + by-spec."request"."~2.67.0" = + self.by-version."request"."2.67.0"; + by-spec."request"."~2.69.0" = + self.by-version."request"."2.69.0"; by-version."request"."2.69.0" = self.buildNodePackage { name = "request-2.69.0"; version = "2.69.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/request/-/request-2.69.0.tgz"; + url = "https://registry.npmjs.org/request/-/request-2.69.0.tgz"; name = "request-2.69.0.tgz"; sha1 = "cf91d2e000752b1217155c005241911991a2346a"; }; @@ -48644,14 +39968,516 @@ os = [ ]; cpu = [ ]; }; - by-spec."request"."^2.45.0" = - self.by-version."request"."2.69.0"; + by-spec."request"."~2.70.0" = + self.by-version."request"."2.70.0"; + by-spec."request-progress"."^0.3.1" = + self.by-version."request-progress"."0.3.1"; + by-version."request-progress"."0.3.1" = self.buildNodePackage { + name = "request-progress-0.3.1"; + version = "0.3.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request-progress/-/request-progress-0.3.1.tgz"; + name = "request-progress-0.3.1.tgz"; + sha1 = "0721c105d8a96ac6b2ce8b2c89ae2d5ecfcf6b3a"; + }; + deps = { + "throttleit-0.0.2" = self.by-version."throttleit"."0.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."request-progress"."~2.0.1" = + self.by-version."request-progress"."2.0.1"; + by-version."request-progress"."2.0.1" = self.buildNodePackage { + name = "request-progress-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/request-progress/-/request-progress-2.0.1.tgz"; + name = "request-progress-2.0.1.tgz"; + sha1 = "5d36bb57961c673aa5b788dbc8141fdf23b44e08"; + }; + deps = { + "throttleit-1.0.0" = self.by-version."throttleit"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."require-dir"."^0.3.0" = + self.by-version."require-dir"."0.3.0"; + by-version."require-dir"."0.3.0" = self.buildNodePackage { + name = "require-dir-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/require-dir/-/require-dir-0.3.0.tgz"; + name = "require-dir-0.3.0.tgz"; + sha1 = "89f074a85638b07c20a4fb94c93b5db635a64781"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."require-uncached"."^1.0.2" = + self.by-version."require-uncached"."1.0.2"; + by-version."require-uncached"."1.0.2" = self.buildNodePackage { + name = "require-uncached-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/require-uncached/-/require-uncached-1.0.2.tgz"; + name = "require-uncached-1.0.2.tgz"; + sha1 = "67dad3b733089e77030124678a459589faf6a7ec"; + }; + deps = { + "caller-path-0.1.0" = self.by-version."caller-path"."0.1.0"; + "resolve-from-1.0.1" = self.by-version."resolve-from"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."require_optional"."~1.0.0" = + self.by-version."require_optional"."1.0.0"; + by-version."require_optional"."1.0.0" = self.buildNodePackage { + name = "require_optional-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/require_optional/-/require_optional-1.0.0.tgz"; + name = "require_optional-1.0.0.tgz"; + sha1 = "52a86137a849728eb60a55533617f8f914f59abf"; + }; + deps = { + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "resolve-from-2.0.0" = self.by-version."resolve-from"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."requirejs"."^2.1.0" = + self.by-version."requirejs"."2.2.0"; + by-version."requirejs"."2.2.0" = self.buildNodePackage { + name = "requirejs-2.2.0"; + version = "2.2.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/requirejs/-/requirejs-2.2.0.tgz"; + name = "requirejs-2.2.0.tgz"; + sha1 = "0f2b1538af2b8d0a4fffffde5d367aa9cd4cfe84"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."requires-port"."1.x.x" = + self.by-version."requires-port"."1.0.0"; + by-version."requires-port"."1.0.0" = self.buildNodePackage { + name = "requires-port-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz"; + name = "requires-port-1.0.0.tgz"; + sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."resolve"."1.1.7" = + self.by-version."resolve"."1.1.7"; + by-version."resolve"."1.1.7" = self.buildNodePackage { + name = "resolve-1.1.7"; + version = "1.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz"; + name = "resolve-1.1.7.tgz"; + sha1 = "203114d82ad2c5ed9e8e0411b3932875e889e97b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."resolve"."1.1.x" = + self.by-version."resolve"."1.1.7"; + by-spec."resolve"."^1.1.3" = + self.by-version."resolve"."1.1.7"; + by-spec."resolve"."^1.1.4" = + self.by-version."resolve"."1.1.7"; + by-spec."resolve"."^1.1.6" = + self.by-version."resolve"."1.1.7"; + by-spec."resolve"."~1.1.0" = + self.by-version."resolve"."1.1.7"; + by-spec."resolve-from"."^1.0.0" = + self.by-version."resolve-from"."1.0.1"; + by-version."resolve-from"."1.0.1" = self.buildNodePackage { + name = "resolve-from-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-1.0.1.tgz"; + name = "resolve-from-1.0.1.tgz"; + sha1 = "26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."resolve-from"."^2.0.0" = + self.by-version."resolve-from"."2.0.0"; + by-version."resolve-from"."2.0.0" = self.buildNodePackage { + name = "resolve-from-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/resolve-from/-/resolve-from-2.0.0.tgz"; + name = "resolve-from-2.0.0.tgz"; + sha1 = "9480ab20e94ffa1d9e80a804c7ea147611966b57"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."response-time"."1.0.0" = + self.by-version."response-time"."1.0.0"; + by-version."response-time"."1.0.0" = self.buildNodePackage { + name = "response-time-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/response-time/-/response-time-1.0.0.tgz"; + name = "response-time-1.0.0.tgz"; + sha1 = "c2bc8d08f3c359f97eae1d6da86eead175fabdc9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."response-time"."~2.3.1" = + self.by-version."response-time"."2.3.1"; + by-version."response-time"."2.3.1" = self.buildNodePackage { + name = "response-time-2.3.1"; + version = "2.3.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/response-time/-/response-time-2.3.1.tgz"; + name = "response-time-2.3.1.tgz"; + sha1 = "2bde19181de6c81ab95e3207a28d61d965b31797"; + }; + deps = { + "depd-1.0.1" = self.by-version."depd"."1.0.1"; + "on-headers-1.0.1" = self.by-version."on-headers"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."restify"."4.0.3" = + self.by-version."restify"."4.0.3"; + by-version."restify"."4.0.3" = self.buildNodePackage { + name = "restify-4.0.3"; + version = "4.0.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/restify/-/restify-4.0.3.tgz"; + name = "restify-4.0.3.tgz"; + sha1 = "e1e5b7ad9d4f6aeacd20e28f44a045f26c146dbc"; + }; + deps = { + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; + "backoff-2.5.0" = self.by-version."backoff"."2.5.0"; + "bunyan-1.8.0" = self.by-version."bunyan"."1.8.0"; + "csv-0.4.6" = self.by-version."csv"."0.4.6"; + "escape-regexp-component-1.0.2" = self.by-version."escape-regexp-component"."1.0.2"; + "formidable-1.0.17" = self.by-version."formidable"."1.0.17"; + "http-signature-0.11.0" = self.by-version."http-signature"."0.11.0"; + "keep-alive-agent-0.0.1" = self.by-version."keep-alive-agent"."0.0.1"; + "lru-cache-2.7.3" = self.by-version."lru-cache"."2.7.3"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "negotiator-0.5.3" = self.by-version."negotiator"."0.5.3"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "qs-3.1.0" = self.by-version."qs"."3.1.0"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + "spdy-1.32.5" = self.by-version."spdy"."1.32.5"; + "tunnel-agent-0.4.2" = self.by-version."tunnel-agent"."0.4.2"; + "vasync-1.6.3" = self.by-version."vasync"."1.6.3"; + "verror-1.6.1" = self.by-version."verror"."1.6.1"; + }; + optionalDependencies = { + "dtrace-provider-0.6.0" = self.by-version."dtrace-provider"."0.6.0"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."restore-cursor"."^1.0.1" = + self.by-version."restore-cursor"."1.0.1"; + by-version."restore-cursor"."1.0.1" = self.buildNodePackage { + name = "restore-cursor-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz"; + name = "restore-cursor-1.0.1.tgz"; + sha1 = "34661f46886327fed2991479152252df92daa541"; + }; + deps = { + "exit-hook-1.1.1" = self.by-version."exit-hook"."1.1.1"; + "onetime-1.1.0" = self.by-version."onetime"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."resumer"."~0.0.0" = + self.by-version."resumer"."0.0.0"; + by-version."resumer"."0.0.0" = self.buildNodePackage { + name = "resumer-0.0.0"; + version = "0.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; + name = "resumer-0.0.0.tgz"; + sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; + }; + deps = { + "through-2.3.8" = self.by-version."through"."2.3.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ret"."~0.1.6" = + self.by-version."ret"."0.1.11"; + by-version."ret"."0.1.11" = self.buildNodePackage { + name = "ret-0.1.11"; + version = "0.1.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ret/-/ret-0.1.11.tgz"; + name = "ret-0.1.11.tgz"; + sha1 = "281bbd5bd0e2a935181a503ec5ca60e3faa9c4a9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rethinkdb"."*" = + self.by-version."rethinkdb"."2.3.0"; + by-version."rethinkdb"."2.3.0" = self.buildNodePackage { + name = "rethinkdb-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rethinkdb/-/rethinkdb-2.3.0.tgz"; + name = "rethinkdb-2.3.0.tgz"; + sha1 = "101942b27954af48e93c031d040dc76b5d3475cc"; + }; + deps = { + "bluebird-2.10.2" = self.by-version."bluebird"."2.10.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "rethinkdb" = self.by-version."rethinkdb"."2.3.0"; + by-spec."retry"."0.6.0" = + self.by-version."retry"."0.6.0"; + by-version."retry"."0.6.0" = self.buildNodePackage { + name = "retry-0.6.0"; + version = "0.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/retry/-/retry-0.6.0.tgz"; + name = "retry-0.6.0.tgz"; + sha1 = "1c010713279a6fd1e8def28af0c3ff1871caa537"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."retry"."^0.8.0" = + self.by-version."retry"."0.8.0"; + by-version."retry"."0.8.0" = self.buildNodePackage { + name = "retry-0.8.0"; + version = "0.8.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/retry/-/retry-0.8.0.tgz"; + name = "retry-0.8.0.tgz"; + sha1 = "2367628dc0edb247b1eab649dc53ac8628ac2d5f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."retry"."~0.6.0" = + self.by-version."retry"."0.6.1"; + by-version."retry"."0.6.1" = self.buildNodePackage { + name = "retry-0.6.1"; + version = "0.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/retry/-/retry-0.6.1.tgz"; + name = "retry-0.6.1.tgz"; + sha1 = "fdc90eed943fde11b893554b8cc63d0e899ba918"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."retry"."~0.9.0" = + self.by-version."retry"."0.9.0"; + by-version."retry"."0.9.0" = self.buildNodePackage { + name = "retry-0.9.0"; + version = "0.9.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/retry/-/retry-0.9.0.tgz"; + name = "retry-0.9.0.tgz"; + sha1 = "6f697e50a0e4ddc8c8f7fb547a9b60dead43678d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."revalidator"."0.1.x" = + self.by-version."revalidator"."0.1.8"; + by-version."revalidator"."0.1.8" = self.buildNodePackage { + name = "revalidator-0.1.8"; + version = "0.1.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/revalidator/-/revalidator-0.1.8.tgz"; + name = "revalidator-0.1.8.tgz"; + sha1 = "fece61bfa0c1b52a206bd6b18198184bdd523a3b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."right-align"."^0.1.1" = + self.by-version."right-align"."0.1.3"; + by-version."right-align"."0.1.3" = self.buildNodePackage { + name = "right-align-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz"; + name = "right-align-0.1.3.tgz"; + sha1 = "61339b722fe6a3515689210d24e14c96148613ef"; + }; + deps = { + "align-text-0.1.4" = self.by-version."align-text"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."1.x.x" = + self.by-version."rimraf"."1.0.9"; + by-version."rimraf"."1.0.9" = self.buildNodePackage { + name = "rimraf-1.0.9"; + version = "1.0.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-1.0.9.tgz"; + name = "rimraf-1.0.9.tgz"; + sha1 = "be4801ff76c2ba6f1c50c78e9700eb1d21f239f1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."2" = + self.by-version."rimraf"."2.5.2"; by-version."rimraf"."2.5.2" = self.buildNodePackage { name = "rimraf-2.5.2"; version = "2.5.2"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz"; + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.5.2.tgz"; name = "rimraf-2.5.2.tgz"; sha1 = "62ba947fa4c0b4363839aefecd4f0fbad6059726"; }; @@ -48664,14 +40490,820 @@ os = [ ]; cpu = [ ]; }; - by-spec."semver"."2 || 3 || 4 || 5" = + by-spec."rimraf"."2.4.3" = + self.by-version."rimraf"."2.4.3"; + by-version."rimraf"."2.4.3" = self.buildNodePackage { + name = "rimraf-2.4.3"; + version = "2.4.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz"; + name = "rimraf-2.4.3.tgz"; + sha1 = "e5b51c9437a4c582adb955e9f28cf8d945e272af"; + }; + deps = { + "glob-5.0.15" = self.by-version."glob"."5.0.15"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."2.x.x" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf".">=2.2.6" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."^2.2.5" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."^2.2.8" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."^2.3.3" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."^2.4.2" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."^2.4.3" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."~2" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."~2.1.4" = + self.by-version."rimraf"."2.1.4"; + by-version."rimraf"."2.1.4" = self.buildNodePackage { + name = "rimraf-2.1.4"; + version = "2.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.1.4.tgz"; + name = "rimraf-2.1.4.tgz"; + sha1 = "5a6eb62eeda068f51ede50f29b3e5cd22f3d9bb2"; + }; + deps = { + }; + optionalDependencies = { + "graceful-fs-1.2.3" = self.by-version."graceful-fs"."1.2.3"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."~2.2.0" = + self.by-version."rimraf"."2.2.8"; + by-version."rimraf"."2.2.8" = self.buildNodePackage { + name = "rimraf-2.2.8"; + version = "2.2.8"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz"; + name = "rimraf-2.2.8.tgz"; + sha1 = "e439be2aaee327321952730f99a8929e4fc50582"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."~2.2.2" = + self.by-version."rimraf"."2.2.8"; + by-spec."rimraf"."~2.2.6" = + self.by-version."rimraf"."2.2.8"; + by-spec."rimraf"."~2.2.8" = + self.by-version."rimraf"."2.2.8"; + by-spec."rimraf"."~2.4.0" = + self.by-version."rimraf"."2.4.5"; + by-version."rimraf"."2.4.5" = self.buildNodePackage { + name = "rimraf-2.4.5"; + version = "2.4.5"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.4.5.tgz"; + name = "rimraf-2.4.5.tgz"; + sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; + }; + deps = { + "glob-6.0.4" = self.by-version."glob"."6.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rimraf"."~2.5.0" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."~2.5.1" = + self.by-version."rimraf"."2.5.2"; + by-spec."rimraf"."~2.5.2" = + self.by-version."rimraf"."2.5.2"; + by-spec."ripemd160"."0.2.0" = + self.by-version."ripemd160"."0.2.0"; + by-version."ripemd160"."0.2.0" = self.buildNodePackage { + name = "ripemd160-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ripemd160/-/ripemd160-0.2.0.tgz"; + name = "ripemd160-0.2.0.tgz"; + sha1 = "2bf198bde167cacfa51c0a928e84b68bbe171fce"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ripemd160"."^1.0.0" = + self.by-version."ripemd160"."1.0.1"; + by-version."ripemd160"."1.0.1" = self.buildNodePackage { + name = "ripemd160-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ripemd160/-/ripemd160-1.0.1.tgz"; + name = "ripemd160-1.0.1.tgz"; + sha1 = "93a4bbd4942bc574b69a8fa57c71de10ecca7d6e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rndm"."1.2.0" = + self.by-version."rndm"."1.2.0"; + by-version."rndm"."1.2.0" = self.buildNodePackage { + name = "rndm-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rndm/-/rndm-1.2.0.tgz"; + name = "rndm-1.2.0.tgz"; + sha1 = "f33fe9cfb52bbfd520aa18323bc65db110a1b76c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."root"."^2.0.0" = + self.by-version."root"."2.0.0"; + by-version."root"."2.0.0" = self.buildNodePackage { + name = "root-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/root/-/root-2.0.0.tgz"; + name = "root-2.0.0.tgz"; + sha1 = "5cde3bc4ee9eb314c9dc64f97d9b9787df22e2f7"; + }; + deps = { + "murl-0.4.1" = self.by-version."murl"."0.4.1"; + "protein-0.5.0" = self.by-version."protein"."0.5.0"; + "network-address-0.0.5" = self.by-version."network-address"."0.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."router"."^0.6.2" = + self.by-version."router"."0.6.2"; + by-version."router"."0.6.2" = self.buildNodePackage { + name = "router-0.6.2"; + version = "0.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/router/-/router-0.6.2.tgz"; + name = "router-0.6.2.tgz"; + sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."router"."~1.1.2" = + self.by-version."router"."1.1.4"; + by-version."router"."1.1.4" = self.buildNodePackage { + name = "router-1.1.4"; + version = "1.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/router/-/router-1.1.4.tgz"; + name = "router-1.1.4.tgz"; + sha1 = "5d449dde9d6e0ad5c3f53369064baf7798834a97"; + }; + deps = { + "array-flatten-2.0.0" = self.by-version."array-flatten"."2.0.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "methods-1.1.2" = self.by-version."methods"."1.1.2"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "path-to-regexp-0.1.7" = self.by-version."path-to-regexp"."0.1.7"; + "setprototypeof-1.0.0" = self.by-version."setprototypeof"."1.0.0"; + "utils-merge-1.0.0" = self.by-version."utils-merge"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rrecur".">=2.0.0" = + self.by-version."rrecur"."2.0.0"; + by-version."rrecur"."2.0.0" = self.buildNodePackage { + name = "rrecur-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rrecur/-/rrecur-2.0.0.tgz"; + name = "rrecur-2.0.0.tgz"; + sha1 = "d4bcce601cb0e15be6ee8489a54474a6af97811c"; + }; + deps = { + "rrule-2.0.1" = self.by-version."rrule"."2.0.1"; + "moment-2.5.1" = self.by-version."moment"."2.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rrule"."~2.0.0" = + self.by-version."rrule"."2.0.1"; + by-version."rrule"."2.0.1" = self.buildNodePackage { + name = "rrule-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rrule/-/rrule-2.0.1.tgz"; + name = "rrule-2.0.1.tgz"; + sha1 = "360fc68e4391896c4c329f85073d2f5e1f41310b"; + }; + deps = { + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rss".">=0.2.1" = + self.by-version."rss"."1.2.1"; + by-version."rss"."1.2.1" = self.buildNodePackage { + name = "rss-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rss/-/rss-1.2.1.tgz"; + name = "rss-1.2.1.tgz"; + sha1 = "a52671ea35a73ef969b66026b8a2f0653261bc46"; + }; + deps = { + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "xml-1.0.1" = self.by-version."xml"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."run-async"."^0.1.0" = + self.by-version."run-async"."0.1.0"; + by-version."run-async"."0.1.0" = self.buildNodePackage { + name = "run-async-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz"; + name = "run-async-0.1.0.tgz"; + sha1 = "c8ad4a5e110661e402a7d21b530e009f25f8e389"; + }; + deps = { + "once-1.3.3" = self.by-version."once"."1.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."run-parallel"."^1.0.0" = + self.by-version."run-parallel"."1.1.6"; + by-version."run-parallel"."1.1.6" = self.buildNodePackage { + name = "run-parallel-1.1.6"; + version = "1.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.6.tgz"; + name = "run-parallel-1.1.6.tgz"; + sha1 = "29003c9a2163e01e2d2dfc90575f2c6c1d61a039"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."run-parallel"."^1.1.2" = + self.by-version."run-parallel"."1.1.6"; + by-spec."run-series"."^1.0.2" = + self.by-version."run-series"."1.1.4"; + by-version."run-series"."1.1.4" = self.buildNodePackage { + name = "run-series-1.1.4"; + version = "1.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/run-series/-/run-series-1.1.4.tgz"; + name = "run-series-1.1.4.tgz"; + sha1 = "89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rusha"."^0.8.1" = + self.by-version."rusha"."0.8.3"; + by-version."rusha"."0.8.3" = self.buildNodePackage { + name = "rusha-0.8.3"; + version = "0.8.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rusha/-/rusha-0.8.3.tgz"; + name = "rusha-0.8.3.tgz"; + sha1 = "63cafec9e626ae09565ab0c4ab2cbc1f2f69b71f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rx"."^2.4.3" = + self.by-version."rx"."2.5.3"; + by-version."rx"."2.5.3" = self.buildNodePackage { + name = "rx-2.5.3"; + version = "2.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rx/-/rx-2.5.3.tgz"; + name = "rx-2.5.3.tgz"; + sha1 = "21adc7d80f02002af50dae97fd9dbf248755f566"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."rx-lite"."^3.1.2" = + self.by-version."rx-lite"."3.1.2"; + by-version."rx-lite"."3.1.2" = self.buildNodePackage { + name = "rx-lite-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz"; + name = "rx-lite-3.1.2.tgz"; + sha1 = "19ce502ca572665f3b647b10939f97fd1615f102"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."s3-upload-stream"."~1.0.7" = + self.by-version."s3-upload-stream"."1.0.7"; + by-version."s3-upload-stream"."1.0.7" = self.buildNodePackage { + name = "s3-upload-stream-1.0.7"; + version = "1.0.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/s3-upload-stream/-/s3-upload-stream-1.0.7.tgz"; + name = "s3-upload-stream-1.0.7.tgz"; + sha1 = "e3f80253141c569f105a62aa50ca9b45760e481d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = [ + self.by-version."aws-sdk"."2.3.2"]; + os = [ ]; + cpu = [ ]; + }; + by-spec."s3http"."*" = + self.by-version."s3http"."0.0.5"; + by-version."s3http"."0.0.5" = self.buildNodePackage { + name = "s3http-0.0.5"; + version = "0.0.5"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/s3http/-/s3http-0.0.5.tgz"; + name = "s3http-0.0.5.tgz"; + sha1 = "c8fa1fffb8258ce68adf75df73f90fbb6f23d198"; + }; + deps = { + "aws-sdk-1.18.0" = self.by-version."aws-sdk"."1.18.0"; + "commander-2.0.0" = self.by-version."commander"."2.0.0"; + "http-auth-2.0.7" = self.by-version."http-auth"."2.0.7"; + "express-3.4.4" = self.by-version."express"."3.4.4"; + "everyauth-0.4.5" = self.by-version."everyauth"."0.4.5"; + "string-1.6.1" = self.by-version."string"."1.6.1"; + "util-0.4.9" = self.by-version."util"."0.4.9"; + "crypto-0.0.3" = self.by-version."crypto"."0.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "s3http" = self.by-version."s3http"."0.0.5"; + by-spec."safe-json-stringify"."~1" = + self.by-version."safe-json-stringify"."1.0.3"; + by-version."safe-json-stringify"."1.0.3" = self.buildNodePackage { + name = "safe-json-stringify-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.3.tgz"; + name = "safe-json-stringify-1.0.3.tgz"; + sha1 = "3cb6717660a086d07cb5bd9b7a6875bcf67bd05e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."safe-regex"."0.0.1" = + self.by-version."safe-regex"."0.0.1"; + by-version."safe-regex"."0.0.1" = self.buildNodePackage { + name = "safe-regex-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/safe-regex/-/safe-regex-0.0.1.tgz"; + name = "safe-regex-0.0.1.tgz"; + sha1 = "350ae32b49b7dc75d1cac3a18cb8b375a94ef15c"; + }; + deps = { + "ret-0.1.11" = self.by-version."ret"."0.1.11"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."samsam"."1.1.2" = + self.by-version."samsam"."1.1.2"; + by-version."samsam"."1.1.2" = self.buildNodePackage { + name = "samsam-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz"; + name = "samsam-1.1.2.tgz"; + sha1 = "bec11fdc83a9fda063401210e40176c3024d1567"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."samsam"."~1.1" = + self.by-version."samsam"."1.1.3"; + by-version."samsam"."1.1.3" = self.buildNodePackage { + name = "samsam-1.1.3"; + version = "1.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/samsam/-/samsam-1.1.3.tgz"; + name = "samsam-1.1.3.tgz"; + sha1 = "9f5087419b4d091f232571e7fa52e90b0f552621"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sanitize-html"."1.x >=1.4" = + self.by-version."sanitize-html"."1.11.4"; + by-version."sanitize-html"."1.11.4" = self.buildNodePackage { + name = "sanitize-html-1.11.4"; + version = "1.11.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sanitize-html/-/sanitize-html-1.11.4.tgz"; + name = "sanitize-html-1.11.4.tgz"; + sha1 = "286698b6debeb3f9c5206ecd14135d32a9f9c5b9"; + }; + deps = { + "htmlparser2-3.9.0" = self.by-version."htmlparser2"."3.9.0"; + "regexp-quote-0.0.0" = self.by-version."regexp-quote"."0.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sauce-connect-launcher"."^0.13.0" = + self.by-version."sauce-connect-launcher"."0.13.0"; + by-version."sauce-connect-launcher"."0.13.0" = self.buildNodePackage { + name = "sauce-connect-launcher-0.13.0"; + version = "0.13.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sauce-connect-launcher/-/sauce-connect-launcher-0.13.0.tgz"; + name = "sauce-connect-launcher-0.13.0.tgz"; + sha1 = "25d7df9da16a5ed1caa13df424cb57cb0b6d5a22"; + }; + deps = { + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + "async-1.4.0" = self.by-version."async"."1.4.0"; + "adm-zip-0.4.7" = self.by-version."adm-zip"."0.4.7"; + "rimraf-2.4.3" = self.by-version."rimraf"."2.4.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."saucelabs"."^1.0.1" = + self.by-version."saucelabs"."1.2.0"; + by-version."saucelabs"."1.2.0" = self.buildNodePackage { + name = "saucelabs-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/saucelabs/-/saucelabs-1.2.0.tgz"; + name = "saucelabs-1.2.0.tgz"; + sha1 = "5e80476b36da1b42d10f39707e9af2a53b03d88a"; + }; + deps = { + "https-proxy-agent-1.0.0" = self.by-version."https-proxy-agent"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax"."0.3.5" = + self.by-version."sax"."0.3.5"; + by-version."sax"."0.3.5" = self.buildNodePackage { + name = "sax-0.3.5"; + version = "0.3.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-0.3.5.tgz"; + name = "sax-0.3.5.tgz"; + sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax"."0.4.2" = + self.by-version."sax"."0.4.2"; + by-version."sax"."0.4.2" = self.buildNodePackage { + name = "sax-0.4.2"; + version = "0.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-0.4.2.tgz"; + name = "sax-0.4.2.tgz"; + sha1 = "39f3b601733d6bec97105b242a2a40fd6978ac3c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax"."0.5.x" = + self.by-version."sax"."0.5.8"; + by-version."sax"."0.5.8" = self.buildNodePackage { + name = "sax-0.5.8"; + version = "0.5.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-0.5.8.tgz"; + name = "sax-0.5.8.tgz"; + sha1 = "d472db228eb331c2506b0e8c15524adb939d12c1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax"."0.6.x" = + self.by-version."sax"."0.6.1"; + by-version."sax"."0.6.1" = self.buildNodePackage { + name = "sax-0.6.1"; + version = "0.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-0.6.1.tgz"; + name = "sax-0.6.1.tgz"; + sha1 = "563b19c7c1de892e09bfc4f2fc30e3c27f0952b9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax"."1.1.5" = + self.by-version."sax"."1.1.5"; + by-version."sax"."1.1.5" = self.buildNodePackage { + name = "sax-1.1.5"; + version = "1.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-1.1.5.tgz"; + name = "sax-1.1.5.tgz"; + sha1 = "1da50a8d00cdecd59405659f5ff85349fe773743"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax".">=0.1.1" = + self.by-version."sax"."1.2.1"; + by-version."sax"."1.2.1" = self.buildNodePackage { + name = "sax-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sax/-/sax-1.2.1.tgz"; + name = "sax-1.2.1.tgz"; + sha1 = "7b8e656190b228e81a66aea748480d828cd2d37a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sax".">=0.4.2" = + self.by-version."sax"."1.2.1"; + by-spec."sax".">=0.6.0" = + self.by-version."sax"."1.2.1"; + by-spec."sax"."~0.6.0" = + self.by-version."sax"."0.6.1"; + by-spec."scmp"."0.0.3" = + self.by-version."scmp"."0.0.3"; + by-version."scmp"."0.0.3" = self.buildNodePackage { + name = "scmp-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/scmp/-/scmp-0.0.3.tgz"; + name = "scmp-0.0.3.tgz"; + sha1 = "3648df2d7294641e7f78673ffc29681d9bad9073"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."scmp"."1.0.0" = + self.by-version."scmp"."1.0.0"; + by-version."scmp"."1.0.0" = self.buildNodePackage { + name = "scmp-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/scmp/-/scmp-1.0.0.tgz"; + name = "scmp-1.0.0.tgz"; + sha1 = "a0b272c3fc7292f77115646f00618b0262514e04"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."scmp"."~0.0.3" = + self.by-version."scmp"."0.0.3"; + by-spec."scmp"."~1.0.0" = + self.by-version."scmp"."1.0.0"; + by-spec."secure-keys"."^1.0.0" = + self.by-version."secure-keys"."1.0.0"; + by-version."secure-keys"."1.0.0" = self.buildNodePackage { + name = "secure-keys-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/secure-keys/-/secure-keys-1.0.0.tgz"; + name = "secure-keys-1.0.0.tgz"; + sha1 = "f0c82d98a3b139a8776a8808050b824431087fca"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."selenium-webdriver"."*" = + self.by-version."selenium-webdriver"."2.53.1"; + by-version."selenium-webdriver"."2.53.1" = self.buildNodePackage { + name = "selenium-webdriver-2.53.1"; + version = "2.53.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/selenium-webdriver/-/selenium-webdriver-2.53.1.tgz"; + name = "selenium-webdriver-2.53.1.tgz"; + sha1 = "b50673955dc03b9164c07773a86b25ea7161dbd9"; + }; + deps = { + "adm-zip-0.4.4" = self.by-version."adm-zip"."0.4.4"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "tmp-0.0.24" = self.by-version."tmp"."0.0.24"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + "xml2js-0.4.4" = self.by-version."xml2js"."0.4.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "selenium-webdriver" = self.by-version."selenium-webdriver"."2.53.1"; + by-spec."semver"."*" = self.by-version."semver"."5.1.0"; by-version."semver"."5.1.0" = self.buildNodePackage { name = "semver-5.1.0"; version = "5.1.0"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-5.1.0.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz"; name = "semver-5.1.0.tgz"; sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5"; }; @@ -48683,14 +41315,55 @@ os = [ ]; cpu = [ ]; }; - by-spec."semver".">=5.1.0 <6" = + "semver" = self.by-version."semver"."5.1.0"; + by-spec."semver"."1.1.0" = + self.by-version."semver"."1.1.0"; + by-version."semver"."1.1.0" = self.buildNodePackage { + name = "semver-1.1.0"; + version = "1.1.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-1.1.0.tgz"; + name = "semver-1.1.0.tgz"; + sha1 = "da9b9c837e31550a7c928622bc2381de7dd7a53e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."2" = + self.by-version."semver"."2.3.2"; + by-version."semver"."2.3.2" = self.buildNodePackage { + name = "semver-2.3.2"; + version = "2.3.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-2.3.2.tgz"; + name = "semver-2.3.2.tgz"; + sha1 = "b9848f25d6cf36333073ec9ef8856d42f1233e52"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."2 >=2.2.1 || 3.x || 4 || 5" = self.by-version."semver"."5.1.0"; + by-spec."semver"."2 || 3 || 4" = + self.by-version."semver"."4.3.6"; by-version."semver"."4.3.6" = self.buildNodePackage { name = "semver-4.3.6"; version = "4.3.6"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; + url = "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz"; name = "semver-4.3.6.tgz"; sha1 = "300bc6e0e86374f7ba61068b5b1ecd57fc6532da"; }; @@ -48702,14 +41375,128 @@ os = [ ]; cpu = [ ]; }; + by-spec."semver"."2 || 3 || 4 || 5" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."2.x || 3.x || 4 || 5" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."4 || 5" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."5.0.1" = + self.by-version."semver"."5.0.1"; + by-version."semver"."5.0.1" = self.buildNodePackage { + name = "semver-5.0.1"; + version = "5.0.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-5.0.1.tgz"; + name = "semver-5.0.1.tgz"; + sha1 = "9fb3f4004f900d83c47968fe42f7583e05832cc9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."5.0.3" = + self.by-version."semver"."5.0.3"; + by-version."semver"."5.0.3" = self.buildNodePackage { + name = "semver-5.0.3"; + version = "5.0.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz"; + name = "semver-5.0.3.tgz"; + sha1 = "77466de589cd5d3c95f138aa78bc569a3cb5d27a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."5.1.0" = + self.by-version."semver"."5.1.0"; + by-spec."semver".">=2.2.1 <5.0.0-0" = + self.by-version."semver"."4.3.6"; + by-spec."semver".">=5.1.0 <6" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."^2.3.0 || 3.x || 4 || 5" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."^4.1.0" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."^4.3.3" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."^4.3.4" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."^4.3.x" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."^5.0.1" = + self.by-version."semver"."5.1.0"; by-spec."semver"."^5.0.3" = self.by-version."semver"."5.1.0"; + by-spec."semver"."^5.1.0" = + self.by-version."semver"."5.1.0"; + by-spec."semver"."~1.1.0" = + self.by-version."semver"."1.1.4"; + by-version."semver"."1.1.4" = self.buildNodePackage { + name = "semver-1.1.4"; + version = "1.1.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-1.1.4.tgz"; + name = "semver-1.1.4.tgz"; + sha1 = "2e5a4e72bab03472cc97f72753b4508912ef5540"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."~2.0.5" = + self.by-version."semver"."2.0.11"; + by-version."semver"."2.0.11" = self.buildNodePackage { + name = "semver-2.0.11"; + version = "2.0.11"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/semver/-/semver-2.0.11.tgz"; + name = "semver-2.0.11.tgz"; + sha1 = "f51f07d03fa5af79beb537fc067a7e141786cced"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."semver"."~2.3.1" = + self.by-version."semver"."2.3.2"; + by-spec."semver"."~4.3.0" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."~4.3.3" = + self.by-version."semver"."4.3.6"; + by-spec."semver"."~5.0.1" = + self.by-version."semver"."5.0.3"; + by-spec."semver"."~5.1.0" = + self.by-version."semver"."5.1.0"; + by-spec."semver-diff"."^2.0.0" = + self.by-version."semver-diff"."2.1.0"; by-version."semver-diff"."2.1.0" = self.buildNodePackage { name = "semver-diff-2.1.0"; version = "2.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; + url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; name = "semver-diff-2.1.0.tgz"; sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; }; @@ -48722,12 +41509,848 @@ os = [ ]; cpu = [ ]; }; + by-spec."semver-utils"."^1.1.1" = + self.by-version."semver-utils"."1.1.1"; + by-version."semver-utils"."1.1.1" = self.buildNodePackage { + name = "semver-utils-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/semver-utils/-/semver-utils-1.1.1.tgz"; + name = "semver-utils-1.1.1.tgz"; + sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."*" = + self.by-version."send"."0.13.2"; + by-version."send"."0.13.2" = self.buildNodePackage { + name = "send-0.13.2"; + version = "0.13.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.13.2.tgz"; + name = "send-0.13.2.tgz"; + sha1 = "765e7607c8055452bba6f0b052595350986036de"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "destroy-1.0.4" = self.by-version."destroy"."1.0.4"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.0.3" = + self.by-version."send"."0.0.3"; + by-version."send"."0.0.3" = self.buildNodePackage { + name = "send-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.0.3.tgz"; + name = "send-0.0.3.tgz"; + sha1 = "4d5f843edf9d65dac31c8a5d2672c179ecb67184"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mime-1.2.6" = self.by-version."mime"."1.2.6"; + "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; + "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.1.0" = + self.by-version."send"."0.1.0"; + by-version."send"."0.1.0" = self.buildNodePackage { + name = "send-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.1.0.tgz"; + name = "send-0.1.0.tgz"; + sha1 = "cfb08ebd3cec9b7fc1a37d9ff9e875a971cf4640"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mime-1.2.6" = self.by-version."mime"."1.2.6"; + "fresh-0.1.0" = self.by-version."fresh"."0.1.0"; + "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.1.4" = + self.by-version."send"."0.1.4"; + by-version."send"."0.1.4" = self.buildNodePackage { + name = "send-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.1.4.tgz"; + name = "send-0.1.4.tgz"; + sha1 = "be70d8d1be01de61821af13780b50345a4f71abd"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "mime-1.2.11" = self.by-version."mime"."1.2.11"; + "fresh-0.2.0" = self.by-version."fresh"."0.2.0"; + "range-parser-0.0.4" = self.by-version."range-parser"."0.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.13.0" = + self.by-version."send"."0.13.0"; + by-version."send"."0.13.0" = self.buildNodePackage { + name = "send-0.13.0"; + version = "0.13.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.13.0.tgz"; + name = "send-0.13.0.tgz"; + sha1 = "518f921aeb0560aec7dcab2990b14cf6f3cce5de"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.0.1" = self.by-version."depd"."1.0.1"; + "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; + "escape-html-1.0.2" = self.by-version."escape-html"."1.0.2"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.13.1" = + self.by-version."send"."0.13.1"; + by-version."send"."0.13.1" = self.buildNodePackage { + name = "send-0.13.1"; + version = "0.13.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.13.1.tgz"; + name = "send-0.13.1.tgz"; + sha1 = "a30d5f4c82c8a9bae9ad00a1d9b1bdbe6f199ed7"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "depd-1.1.0" = self.by-version."depd"."1.1.0"; + "destroy-1.0.4" = self.by-version."destroy"."1.0.4"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "mime-1.3.4" = self.by-version."mime"."1.3.4"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "on-finished-2.3.0" = self.by-version."on-finished"."2.3.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + "statuses-1.2.1" = self.by-version."statuses"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.3.0" = + self.by-version."send"."0.3.0"; + by-version."send"."0.3.0" = self.buildNodePackage { + name = "send-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.3.0.tgz"; + name = "send-0.3.0.tgz"; + sha1 = "9718324634806fc75bc4f8f5e51f57d9d66606e7"; + }; + deps = { + "buffer-crc32-0.2.1" = self.by-version."buffer-crc32"."0.2.1"; + "debug-0.8.0" = self.by-version."debug"."0.8.0"; + "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; + "mime-1.2.11" = self.by-version."mime"."1.2.11"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."0.6.0" = + self.by-version."send"."0.6.0"; + by-version."send"."0.6.0" = self.buildNodePackage { + name = "send-0.6.0"; + version = "0.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.6.0.tgz"; + name = "send-0.6.0.tgz"; + sha1 = "a59da9265db7c35141e1079cf1f368ee0d59b3ab"; + }; + deps = { + "debug-1.0.3" = self.by-version."debug"."1.0.3"; + "depd-0.3.0" = self.by-version."depd"."0.3.0"; + "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; + "finished-1.2.2" = self.by-version."finished"."1.2.2"; + "fresh-0.2.2" = self.by-version."fresh"."0.2.2"; + "mime-1.2.11" = self.by-version."mime"."1.2.11"; + "ms-0.6.2" = self.by-version."ms"."0.6.2"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."send"."^0.9.2" = + self.by-version."send"."0.9.3"; + by-version."send"."0.9.3" = self.buildNodePackage { + name = "send-0.9.3"; + version = "0.9.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/send/-/send-0.9.3.tgz"; + name = "send-0.9.3.tgz"; + sha1 = "b43a7414cd089b7fbec9b755246f7c37b7b85cc0"; + }; + deps = { + "debug-2.0.0" = self.by-version."debug"."2.0.0"; + "depd-0.4.5" = self.by-version."depd"."0.4.5"; + "destroy-1.0.3" = self.by-version."destroy"."1.0.3"; + "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; + "etag-1.4.0" = self.by-version."etag"."1.4.0"; + "fresh-0.2.4" = self.by-version."fresh"."0.2.4"; + "mime-1.2.11" = self.by-version."mime"."1.2.11"; + "ms-0.6.2" = self.by-version."ms"."0.6.2"; + "on-finished-2.1.0" = self.by-version."on-finished"."2.1.0"; + "range-parser-1.0.3" = self.by-version."range-parser"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sentiment"."1.0.6" = + self.by-version."sentiment"."1.0.6"; + by-version."sentiment"."1.0.6" = self.buildNodePackage { + name = "sentiment-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sentiment/-/sentiment-1.0.6.tgz"; + name = "sentiment-1.0.6.tgz"; + sha1 = "f6096c6271f020f490d58b54a8afd598db8acbb1"; + }; + deps = { + "lodash.assign-4.0.1" = self.by-version."lodash.assign"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sequencify"."~0.0.7" = + self.by-version."sequencify"."0.0.7"; + by-version."sequencify"."0.0.7" = self.buildNodePackage { + name = "sequencify-0.0.7"; + version = "0.0.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz"; + name = "sequencify-0.0.7.tgz"; + sha1 = "90cff19d02e07027fd767f5ead3e7b95d1e7380c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serialport"."2.0.*" = + self.by-version."serialport"."2.0.6"; + by-version."serialport"."2.0.6" = self.buildNodePackage { + name = "serialport-2.0.6"; + version = "2.0.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/serialport/-/serialport-2.0.6.tgz"; + name = "serialport-2.0.6.tgz"; + sha1 = "c344e9449dcd3da0f2d0256c337d0ff384af1ea8"; + }; + deps = { + "async-0.9.0" = self.by-version."async"."0.9.0"; + "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "nan-2.0.9" = self.by-version."nan"."2.0.9"; + "node-pre-gyp-0.6.26" = self.by-version."node-pre-gyp"."0.6.26"; + "node-pre-gyp-github-1.1.2" = self.by-version."node-pre-gyp-github"."1.1.2"; + "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "sf-0.1.7" = self.by-version."sf"."0.1.7"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-favicon"."^2.1.1" = + self.by-version."serve-favicon"."2.3.0"; + by-version."serve-favicon"."2.3.0" = self.buildNodePackage { + name = "serve-favicon-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.3.0.tgz"; + name = "serve-favicon-2.3.0.tgz"; + sha1 = "aed36cc6834069a6f189cc7222c6a1a811dc5b39"; + }; + deps = { + "etag-1.7.0" = self.by-version."etag"."1.7.0"; + "fresh-0.3.0" = self.by-version."fresh"."0.3.0"; + "ms-0.7.1" = self.by-version."ms"."0.7.1"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-favicon"."^2.2.1" = + self.by-version."serve-favicon"."2.3.0"; + by-spec."serve-favicon"."~2.3.0" = + self.by-version."serve-favicon"."2.3.0"; + by-spec."serve-index"."1.0.1" = + self.by-version."serve-index"."1.0.1"; + by-version."serve-index"."1.0.1" = self.buildNodePackage { + name = "serve-index-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-index/-/serve-index-1.0.1.tgz"; + name = "serve-index-1.0.1.tgz"; + sha1 = "2782ee8ede6cccaae54957962c4715e8ce1921a6"; + }; + deps = { + "batch-0.5.0" = self.by-version."batch"."0.5.0"; + "negotiator-0.4.2" = self.by-version."negotiator"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-index"."~1.7.2" = + self.by-version."serve-index"."1.7.3"; + by-version."serve-index"."1.7.3" = self.buildNodePackage { + name = "serve-index-1.7.3"; + version = "1.7.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-index/-/serve-index-1.7.3.tgz"; + name = "serve-index-1.7.3.tgz"; + sha1 = "7a057fc6ee28dc63f64566e5fa57b111a86aecd2"; + }; + deps = { + "accepts-1.2.13" = self.by-version."accepts"."1.2.13"; + "batch-0.5.3" = self.by-version."batch"."0.5.3"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "http-errors-1.3.1" = self.by-version."http-errors"."1.3.1"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-static"."1.1.0" = + self.by-version."serve-static"."1.1.0"; + by-version."serve-static"."1.1.0" = self.buildNodePackage { + name = "serve-static-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-static/-/serve-static-1.1.0.tgz"; + name = "serve-static-1.1.0.tgz"; + sha1 = "454dfa05bb3ddd4e701a8915b83a278aa91c5643"; + }; + deps = { + "parseurl-1.0.1" = self.by-version."parseurl"."1.0.1"; + "send-0.3.0" = self.by-version."send"."0.3.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-static"."~1.10.0" = + self.by-version."serve-static"."1.10.2"; + by-version."serve-static"."1.10.2" = self.buildNodePackage { + name = "serve-static-1.10.2"; + version = "1.10.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-static/-/serve-static-1.10.2.tgz"; + name = "serve-static-1.10.2.tgz"; + sha1 = "feb800d0e722124dd0b00333160c16e9caa8bcb3"; + }; + deps = { + "escape-html-1.0.3" = self.by-version."escape-html"."1.0.3"; + "parseurl-1.3.1" = self.by-version."parseurl"."1.3.1"; + "send-0.13.1" = self.by-version."send"."0.13.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."serve-static"."~1.10.2" = + self.by-version."serve-static"."1.10.2"; + by-spec."serve-static"."~1.3.2" = + self.by-version."serve-static"."1.3.2"; + by-version."serve-static"."1.3.2" = self.buildNodePackage { + name = "serve-static-1.3.2"; + version = "1.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/serve-static/-/serve-static-1.3.2.tgz"; + name = "serve-static-1.3.2.tgz"; + sha1 = "d904a6cbf55f511c78138f6f45ee6e69d9d105ca"; + }; + deps = { + "escape-html-1.0.1" = self.by-version."escape-html"."1.0.1"; + "parseurl-1.1.3" = self.by-version."parseurl"."1.1.3"; + "send-0.6.0" = self.by-version."send"."0.6.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."setimmediate"."1.0.1" = + self.by-version."setimmediate"."1.0.1"; + by-version."setimmediate"."1.0.1" = self.buildNodePackage { + name = "setimmediate-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.1.tgz"; + name = "setimmediate-1.0.1.tgz"; + sha1 = "a9ca56ccbd6a4c3334855f060abcdece5c42ebb7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."setprototypeof"."1.0.0" = + self.by-version."setprototypeof"."1.0.0"; + by-version."setprototypeof"."1.0.0" = self.buildNodePackage { + name = "setprototypeof-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.0.tgz"; + name = "setprototypeof-1.0.0.tgz"; + sha1 = "d5fafca01e1174d0079bd1bf881f09c8a339794c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sf"."0.1.7" = + self.by-version."sf"."0.1.7"; + by-version."sf"."0.1.7" = self.buildNodePackage { + name = "sf-0.1.7"; + version = "0.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sf/-/sf-0.1.7.tgz"; + name = "sf-0.1.7.tgz"; + sha1 = "806ed032d7225c7fb6394b0bdbfe1ea936fe6d74"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sha"."~2.0.1" = + self.by-version."sha"."2.0.1"; + by-version."sha"."2.0.1" = self.buildNodePackage { + name = "sha-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sha/-/sha-2.0.1.tgz"; + name = "sha-2.0.1.tgz"; + sha1 = "6030822fbd2c9823949f8f72ed6411ee5cf25aae"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sha.js"."2.2.6" = + self.by-version."sha.js"."2.2.6"; + by-version."sha.js"."2.2.6" = self.buildNodePackage { + name = "sha.js-2.2.6"; + version = "2.2.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.2.6.tgz"; + name = "sha.js-2.2.6.tgz"; + sha1 = "17ddeddc5f722fb66501658895461977867315ba"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sha.js"."^2.3.6" = + self.by-version."sha.js"."2.4.5"; + by-version."sha.js"."2.4.5" = self.buildNodePackage { + name = "sha.js-2.4.5"; + version = "2.4.5"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/sha.js/-/sha.js-2.4.5.tgz"; + name = "sha.js-2.4.5.tgz"; + sha1 = "27d171efcc82a118b99639ff581660242b506e7c"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sha.js"."~2.4.4" = + self.by-version."sha.js"."2.4.5"; + by-spec."shallow-copy"."0.0.1" = + self.by-version."shallow-copy"."0.0.1"; + by-version."shallow-copy"."0.0.1" = self.buildNodePackage { + name = "shallow-copy-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/shallow-copy/-/shallow-copy-0.0.1.tgz"; + name = "shallow-copy-0.0.1.tgz"; + sha1 = "415f42702d73d810330292cc5ee86eae1a11a170"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shasum"."^1.0.0" = + self.by-version."shasum"."1.0.2"; + by-version."shasum"."1.0.2" = self.buildNodePackage { + name = "shasum-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/shasum/-/shasum-1.0.2.tgz"; + name = "shasum-1.0.2.tgz"; + sha1 = "e7012310d8f417f4deb5712150e5678b87ae565f"; + }; + deps = { + "json-stable-stringify-0.0.1" = self.by-version."json-stable-stringify"."0.0.1"; + "sha.js-2.4.5" = self.by-version."sha.js"."2.4.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shell-quote"."^1.4.3" = + self.by-version."shell-quote"."1.5.0"; + by-version."shell-quote"."1.5.0" = self.buildNodePackage { + name = "shell-quote-1.5.0"; + version = "1.5.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-1.5.0.tgz"; + name = "shell-quote-1.5.0.tgz"; + sha1 = "8c0a7e9f4713716c21e962a6ed5faf830dc77a88"; + }; + deps = { + "jsonify-0.0.0" = self.by-version."jsonify"."0.0.0"; + "array-filter-0.0.1" = self.by-version."array-filter"."0.0.1"; + "array-reduce-0.0.0" = self.by-version."array-reduce"."0.0.0"; + "array-map-0.0.0" = self.by-version."array-map"."0.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shell-quote"."~0.0.1" = + self.by-version."shell-quote"."0.0.1"; + by-version."shell-quote"."0.0.1" = self.buildNodePackage { + name = "shell-quote-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/shell-quote/-/shell-quote-0.0.1.tgz"; + name = "shell-quote-0.0.1.tgz"; + sha1 = "1a41196f3c0333c482323593d6886ecf153dd986"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shelljs"."*" = + self.by-version."shelljs"."0.6.0"; + by-version."shelljs"."0.6.0" = self.buildNodePackage { + name = "shelljs-0.6.0"; + version = "0.6.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.6.0.tgz"; + name = "shelljs-0.6.0.tgz"; + sha1 = "ce1ed837b4b0e55b5ec3dab84251ab9dbdc0c7ec"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "shelljs" = self.by-version."shelljs"."0.6.0"; + by-spec."shelljs"."0.3.0" = + self.by-version."shelljs"."0.3.0"; + by-version."shelljs"."0.3.0" = self.buildNodePackage { + name = "shelljs-0.3.0"; + version = "0.3.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.3.0.tgz"; + name = "shelljs-0.3.0.tgz"; + sha1 = "3596e6307a781544f591f37da618360f31db57b1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shelljs"."0.3.x" = + self.by-version."shelljs"."0.3.0"; + by-spec."shelljs"."^0.5.1" = + self.by-version."shelljs"."0.5.3"; + by-version."shelljs"."0.5.3" = self.buildNodePackage { + name = "shelljs-0.5.3"; + version = "0.5.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz"; + name = "shelljs-0.5.3.tgz"; + sha1 = "c54982b996c76ef0c1e6b59fbdc5825f5b713113"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shelljs"."^0.6.0" = + self.by-version."shelljs"."0.6.0"; + by-spec."should"."*" = + self.by-version."should"."8.3.0"; + by-version."should"."8.3.0" = self.buildNodePackage { + name = "should-8.3.0"; + version = "8.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/should/-/should-8.3.0.tgz"; + name = "should-8.3.0.tgz"; + sha1 = "e94f988fac575f1bbb03f3befdc61059ff0e2c4a"; + }; + deps = { + "should-equal-0.7.2" = self.by-version."should-equal"."0.7.2"; + "should-format-0.3.2" = self.by-version."should-format"."0.3.2"; + "should-type-0.2.0" = self.by-version."should-type"."0.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "should" = self.by-version."should"."8.3.0"; + by-spec."should-equal"."0.7.2" = + self.by-version."should-equal"."0.7.2"; + by-version."should-equal"."0.7.2" = self.buildNodePackage { + name = "should-equal-0.7.2"; + version = "0.7.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/should-equal/-/should-equal-0.7.2.tgz"; + name = "should-equal-0.7.2.tgz"; + sha1 = "a6a963dbf501b93ed34b7807ae7d7f042fc24ca8"; + }; + deps = { + "should-type-0.2.0" = self.by-version."should-type"."0.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."should-format"."0.3.2" = + self.by-version."should-format"."0.3.2"; + by-version."should-format"."0.3.2" = self.buildNodePackage { + name = "should-format-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/should-format/-/should-format-0.3.2.tgz"; + name = "should-format-0.3.2.tgz"; + sha1 = "a59831e01a2ddee149911bc7148be5c80319e1ff"; + }; + deps = { + "should-type-0.2.0" = self.by-version."should-type"."0.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."should-type"."0.2.0" = + self.by-version."should-type"."0.2.0"; + by-version."should-type"."0.2.0" = self.buildNodePackage { + name = "should-type-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/should-type/-/should-type-0.2.0.tgz"; + name = "should-type-0.2.0.tgz"; + sha1 = "6707ef95529d989dcc098fe0753ab1f9136bb7f6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."shush"."^1.0.0" = + self.by-version."shush"."1.0.0"; + by-version."shush"."1.0.0" = self.buildNodePackage { + name = "shush-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/shush/-/shush-1.0.0.tgz"; + name = "shush-1.0.0.tgz"; + sha1 = "c27415a9e458f2fed39b27cf8eb37c003782b431"; + }; + deps = { + "strip-json-comments-0.1.3" = self.by-version."strip-json-comments"."0.1.3"; + "caller-0.0.1" = self.by-version."caller"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sigmund"."~1.0.0" = + self.by-version."sigmund"."1.0.1"; by-version."sigmund"."1.0.1" = self.buildNodePackage { name = "sigmund-1.0.1"; version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; + url = "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz"; name = "sigmund-1.0.1.tgz"; sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; }; @@ -48746,7 +42369,7 @@ version = "2.1.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz"; + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-2.1.2.tgz"; name = "signal-exit-2.1.2.tgz"; sha1 = "375879b1f92ebc3b334480d038dc546a6d558564"; }; @@ -48758,6 +42381,1106 @@ os = [ ]; cpu = [ ]; }; + by-spec."signals"."<2.0" = + self.by-version."signals"."1.0.0"; + by-version."signals"."1.0.0" = self.buildNodePackage { + name = "signals-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/signals/-/signals-1.0.0.tgz"; + name = "signals-1.0.0.tgz"; + sha1 = "65f0c1599352b35372ecaae5a250e6107376ed69"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."signals".">0.7 <2.0" = + self.by-version."signals"."1.0.0"; + by-spec."signals"."~1.0.0" = + self.by-version."signals"."1.0.0"; + by-spec."simple-fmt"."~0.1.0" = + self.by-version."simple-fmt"."0.1.0"; + by-version."simple-fmt"."0.1.0" = self.buildNodePackage { + name = "simple-fmt-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz"; + name = "simple-fmt-0.1.0.tgz"; + sha1 = "191bf566a59e6530482cb25ab53b4a8dc85c3a6b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-get"."^1.3.0" = + self.by-version."simple-get"."1.4.3"; + by-version."simple-get"."1.4.3" = self.buildNodePackage { + name = "simple-get-1.4.3"; + version = "1.4.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-get/-/simple-get-1.4.3.tgz"; + name = "simple-get-1.4.3.tgz"; + sha1 = "e9755eda407e96da40c5e5158c9ea37b33becbeb"; + }; + deps = { + "once-1.3.3" = self.by-version."once"."1.3.3"; + "unzip-response-1.0.0" = self.by-version."unzip-response"."1.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-get"."^1.3.1" = + self.by-version."simple-get"."1.4.3"; + by-spec."simple-get"."^2.0.0" = + self.by-version."simple-get"."2.0.0"; + by-version."simple-get"."2.0.0" = self.buildNodePackage { + name = "simple-get-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-get/-/simple-get-2.0.0.tgz"; + name = "simple-get-2.0.0.tgz"; + sha1 = "3aadc50fd5ebeb64a41cd520e38e8226c3cd952f"; + }; + deps = { + "once-1.3.3" = self.by-version."once"."1.3.3"; + "unzip-response-1.0.0" = self.by-version."unzip-response"."1.0.0"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-is"."~0.2.0" = + self.by-version."simple-is"."0.2.0"; + by-version."simple-is"."0.2.0" = self.buildNodePackage { + name = "simple-is-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz"; + name = "simple-is-0.2.0.tgz"; + sha1 = "2abb75aade39deb5cc815ce10e6191164850baf0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-peer"."^6.0.0" = + self.by-version."simple-peer"."6.0.3"; + by-version."simple-peer"."6.0.3" = self.buildNodePackage { + name = "simple-peer-6.0.3"; + version = "6.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-peer/-/simple-peer-6.0.3.tgz"; + name = "simple-peer-6.0.3.tgz"; + sha1 = "5055c2db9ff7b829afee01a330c7a8c8ae023310"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "get-browser-rtc-1.0.2" = self.by-version."get-browser-rtc"."1.0.2"; + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-sha1"."^2.0.0" = + self.by-version."simple-sha1"."2.0.8"; + by-version."simple-sha1"."2.0.8" = self.buildNodePackage { + name = "simple-sha1-2.0.8"; + version = "2.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-sha1/-/simple-sha1-2.0.8.tgz"; + name = "simple-sha1-2.0.8.tgz"; + sha1 = "dabb4b17b9f06a4bbf0174b3b4b3a2cdd8e2785f"; + }; + deps = { + "rusha-0.8.3" = self.by-version."rusha"."0.8.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simple-websocket"."^4.0.0" = + self.by-version."simple-websocket"."4.0.3"; + by-version."simple-websocket"."4.0.3" = self.buildNodePackage { + name = "simple-websocket-4.0.3"; + version = "4.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simple-websocket/-/simple-websocket-4.0.3.tgz"; + name = "simple-websocket-4.0.3.tgz"; + sha1 = "fb296329cd05bd76fc64d2b929b0c92007f857b8"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simplediff"."~0.1.1" = + self.by-version."simplediff"."0.1.1"; + by-version."simplediff"."0.1.1" = self.buildNodePackage { + name = "simplediff-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simplediff/-/simplediff-0.1.1.tgz"; + name = "simplediff-0.1.1.tgz"; + sha1 = "b0caeeb093223370033c6c3aa1130dc86c6a087c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simplesmtp".">= 0.1.22" = + self.by-version."simplesmtp"."0.3.35"; + by-version."simplesmtp"."0.3.35" = self.buildNodePackage { + name = "simplesmtp-0.3.35"; + version = "0.3.35"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/simplesmtp/-/simplesmtp-0.3.35.tgz"; + name = "simplesmtp-0.3.35.tgz"; + sha1 = "017b1eb8b26317ac36d2a2a8a932631880736a03"; + }; + deps = { + "rai-0.1.12" = self.by-version."rai"."0.1.12"; + "xoauth2-0.1.8" = self.by-version."xoauth2"."0.1.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."simplesmtp"."~0.2 || ~0.3.30" = + self.by-version."simplesmtp"."0.3.35"; + by-spec."simplesmtp"."~0.3.30" = + self.by-version."simplesmtp"."0.3.35"; + by-spec."single-line-log"."^0.4.1" = + self.by-version."single-line-log"."0.4.1"; + by-version."single-line-log"."0.4.1" = self.buildNodePackage { + name = "single-line-log-0.4.1"; + version = "0.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/single-line-log/-/single-line-log-0.4.1.tgz"; + name = "single-line-log-0.4.1.tgz"; + sha1 = "87a55649f749d783ec0dcd804e8140d9873c7cee"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sinon"."*" = + self.by-version."sinon"."2.0.0-pre"; + by-version."sinon"."2.0.0-pre" = self.buildNodePackage { + name = "sinon-2.0.0-pre"; + version = "2.0.0-pre"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sinon/-/sinon-2.0.0-pre.tgz"; + name = "sinon-2.0.0-pre.tgz"; + sha1 = "18293b00fb2f155c99e8e5b46e31f7eade32815d"; + }; + deps = { + "formatio-1.1.1" = self.by-version."formatio"."1.1.1"; + "util-0.10.3" = self.by-version."util"."0.10.3"; + "lolex-1.3.2" = self.by-version."lolex"."1.3.2"; + "samsam-1.1.2" = self.by-version."samsam"."1.1.2"; + "text-encoding-0.5.2" = self.by-version."text-encoding"."0.5.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "sinon" = self.by-version."sinon"."2.0.0-pre"; + by-spec."sinopia"."*" = + self.by-version."sinopia"."1.4.0"; + by-version."sinopia"."1.4.0" = self.buildNodePackage { + name = "sinopia-1.4.0"; + version = "1.4.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/sinopia/-/sinopia-1.4.0.tgz"; + name = "sinopia-1.4.0.tgz"; + sha1 = "36bf5209356facbf6cef18fa32274d116043ed24"; + }; + deps = { + "express-5.0.0-alpha.2" = self.by-version."express"."5.0.0-alpha.2"; + "express-json5-0.1.0" = self.by-version."express-json5"."0.1.0"; + "body-parser-1.15.0" = self.by-version."body-parser"."1.15.0"; + "compression-1.6.1" = self.by-version."compression"."1.6.1"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "js-yaml-3.5.5" = self.by-version."js-yaml"."3.5.5"; + "cookies-0.6.1" = self.by-version."cookies"."0.6.1"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + "async-0.9.2" = self.by-version."async"."0.9.2"; + "es6-shim-0.21.1" = self.by-version."es6-shim"."0.21.1"; + "semver-4.3.6" = self.by-version."semver"."4.3.6"; + "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; + "bunyan-1.8.0" = self.by-version."bunyan"."1.8.0"; + "handlebars-2.0.0" = self.by-version."handlebars"."2.0.0"; + "highlight.js-8.9.1" = self.by-version."highlight.js"."8.9.1"; + "lunr-0.7.0" = self.by-version."lunr"."0.7.0"; + "render-readme-1.3.1" = self.by-version."render-readme"."1.3.1"; + "jju-1.3.0" = self.by-version."jju"."1.3.0"; + "JSONStream-1.1.1" = self.by-version."JSONStream"."1.1.1"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "sinopia-htpasswd-0.4.5" = self.by-version."sinopia-htpasswd"."0.4.5"; + "http-errors-1.4.0" = self.by-version."http-errors"."1.4.0"; + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + }; + optionalDependencies = { + "fs-ext-0.5.0" = self.by-version."fs-ext"."0.5.0"; + "crypt3-0.2.0" = self.by-version."crypt3"."0.2.0"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "sinopia" = self.by-version."sinopia"."1.4.0"; + by-spec."sinopia-htpasswd".">= 0.4.3" = + self.by-version."sinopia-htpasswd"."0.4.5"; + by-version."sinopia-htpasswd"."0.4.5" = self.buildNodePackage { + name = "sinopia-htpasswd-0.4.5"; + version = "0.4.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sinopia-htpasswd/-/sinopia-htpasswd-0.4.5.tgz"; + name = "sinopia-htpasswd-0.4.5.tgz"; + sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9"; + }; + deps = { + }; + optionalDependencies = { + "crypt3-0.2.0" = self.by-version."crypt3"."0.2.0"; + "fs-ext-0.5.0" = self.by-version."fs-ext"."0.5.0"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."slasp"."*" = + self.by-version."slasp"."0.0.4"; + by-version."slasp"."0.0.4" = self.buildNodePackage { + name = "slasp-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/slasp/-/slasp-0.0.4.tgz"; + name = "slasp-0.0.4.tgz"; + sha1 = "9adc26ee729a0f95095851a5489f87a5258d57a9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "slasp" = self.by-version."slasp"."0.0.4"; + by-spec."slasp"."0.0.4" = + self.by-version."slasp"."0.0.4"; + by-spec."sleep"."*" = + self.by-version."sleep"."3.0.1"; + by-version."sleep"."3.0.1" = self.buildNodePackage { + name = "sleep-3.0.1"; + version = "3.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sleep/-/sleep-3.0.1.tgz"; + name = "sleep-3.0.1.tgz"; + sha1 = "be4d17c579360e07e04ed8172ba2b10a69054df3"; + }; + deps = { + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "sleep" = self.by-version."sleep"."3.0.1"; + by-spec."sleep".">=1.2.0" = + self.by-version."sleep"."3.0.1"; + by-spec."slice-ansi"."0.0.4" = + self.by-version."slice-ansi"."0.0.4"; + by-version."slice-ansi"."0.0.4" = self.buildNodePackage { + name = "slice-ansi-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz"; + name = "slice-ansi-0.0.4.tgz"; + sha1 = "edbf8903f66f7ce2f8eafd6ceed65e264c831b35"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sliced"."0.0.3" = + self.by-version."sliced"."0.0.3"; + by-version."sliced"."0.0.3" = self.buildNodePackage { + name = "sliced-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sliced/-/sliced-0.0.3.tgz"; + name = "sliced-0.0.3.tgz"; + sha1 = "4f0bac2171eb17162c3ba6df81f5cf040f7c7e50"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sliced"."0.0.4" = + self.by-version."sliced"."0.0.4"; + by-version."sliced"."0.0.4" = self.buildNodePackage { + name = "sliced-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sliced/-/sliced-0.0.4.tgz"; + name = "sliced-0.0.4.tgz"; + sha1 = "34f89a6db1f31fa525f5a570f5bcf877cf0955ee"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sliced"."0.0.5" = + self.by-version."sliced"."0.0.5"; + by-version."sliced"."0.0.5" = self.buildNodePackage { + name = "sliced-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sliced/-/sliced-0.0.5.tgz"; + name = "sliced-0.0.5.tgz"; + sha1 = "5edc044ca4eb6f7816d50ba2fc63e25d8fe4707f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sliced"."1.0.1" = + self.by-version."sliced"."1.0.1"; + by-version."sliced"."1.0.1" = self.buildNodePackage { + name = "sliced-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sliced/-/sliced-1.0.1.tgz"; + name = "sliced-1.0.1.tgz"; + sha1 = "0b3a662b5d04c3177b1926bea82b03f837a2ef41"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."slide"."^1.1.3" = + self.by-version."slide"."1.1.6"; + by-version."slide"."1.1.6" = self.buildNodePackage { + name = "slide-1.1.6"; + version = "1.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz"; + name = "slide-1.1.6.tgz"; + sha1 = "56eb027d65b4d2dce6cb2e2d32c4d4afc9e1d707"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."slide"."^1.1.5" = + self.by-version."slide"."1.1.6"; + by-spec."slide"."~1.1.3" = + self.by-version."slide"."1.1.6"; + by-spec."slide"."~1.1.6" = + self.by-version."slide"."1.1.6"; + by-spec."sloc"."*" = + self.by-version."sloc"."0.1.10"; + by-version."sloc"."0.1.10" = self.buildNodePackage { + name = "sloc-0.1.10"; + version = "0.1.10"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/sloc/-/sloc-0.1.10.tgz"; + name = "sloc-0.1.10.tgz"; + sha1 = "f6bc04c3e93bec75a66668954ac39eea0e1d2f8a"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "cli-table-0.3.1" = self.by-version."cli-table"."0.3.1"; + "commander-2.9.0" = self.by-version."commander"."2.9.0"; + "readdirp-2.0.0" = self.by-version."readdirp"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "sloc" = self.by-version."sloc"."0.1.10"; + by-spec."smart-buffer"."^1.0.4" = + self.by-version."smart-buffer"."1.0.4"; + by-version."smart-buffer"."1.0.4" = self.buildNodePackage { + name = "smart-buffer-1.0.4"; + version = "1.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/smart-buffer/-/smart-buffer-1.0.4.tgz"; + name = "smart-buffer-1.0.4.tgz"; + sha1 = "2cc20003c8be2f08082768a84cf2c684cca8a309"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."smartdc"."*" = + self.by-version."smartdc"."8.1.0"; + by-version."smartdc"."8.1.0" = self.buildNodePackage { + name = "smartdc-8.1.0"; + version = "8.1.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/smartdc/-/smartdc-8.1.0.tgz"; + name = "smartdc-8.1.0.tgz"; + sha1 = "c8dba4694307a0070b84a67ced76da6de73f3585"; + }; + deps = { + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; + "lru-cache-2.2.0" = self.by-version."lru-cache"."2.2.0"; + "nopt-2.0.0" = self.by-version."nopt"."2.0.0"; + "restify-4.0.3" = self.by-version."restify"."4.0.3"; + "bunyan-1.5.1" = self.by-version."bunyan"."1.5.1"; + "clone-0.1.6" = self.by-version."clone"."0.1.6"; + "smartdc-auth-2.3.1" = self.by-version."smartdc-auth"."2.3.1"; + "cmdln-3.2.1" = self.by-version."cmdln"."3.2.1"; + "dashdash-1.7.3" = self.by-version."dashdash"."1.7.3"; + "vasync-1.6.2" = self.by-version."vasync"."1.6.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "smartdc" = self.by-version."smartdc"."8.1.0"; + by-spec."smartdc-auth"."2.3.1" = + self.by-version."smartdc-auth"."2.3.1"; + by-version."smartdc-auth"."2.3.1" = self.buildNodePackage { + name = "smartdc-auth-2.3.1"; + version = "2.3.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/smartdc-auth/-/smartdc-auth-2.3.1.tgz"; + name = "smartdc-auth-2.3.1.tgz"; + sha1 = "96568a565e9d9feb03b93a50651eee14d23adf44"; + }; + deps = { + "assert-plus-0.1.2" = self.by-version."assert-plus"."0.1.2"; + "bunyan-1.5.1" = self.by-version."bunyan"."1.5.1"; + "clone-0.1.5" = self.by-version."clone"."0.1.5"; + "dashdash-1.10.1" = self.by-version."dashdash"."1.10.1"; + "http-signature-1.1.1" = self.by-version."http-signature"."1.1.1"; + "once-1.3.0" = self.by-version."once"."1.3.0"; + "sshpk-agent-1.2.1" = self.by-version."sshpk-agent"."1.2.1"; + "sshpk-1.7.1" = self.by-version."sshpk"."1.7.1"; + "vasync-1.4.3" = self.by-version."vasync"."1.4.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."smtp-connection"."^1.3.1" = + self.by-version."smtp-connection"."1.3.8"; + by-version."smtp-connection"."1.3.8" = self.buildNodePackage { + name = "smtp-connection-1.3.8"; + version = "1.3.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/smtp-connection/-/smtp-connection-1.3.8.tgz"; + name = "smtp-connection-1.3.8.tgz"; + sha1 = "55832c2160cfb3086e1dcd87fd1c19fa61b7f536"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."smtp-connection"."^1.3.7" = + self.by-version."smtp-connection"."1.3.8"; + by-spec."snapsvg"."~0.4.0" = + self.by-version."snapsvg"."0.4.0"; + by-version."snapsvg"."0.4.0" = self.buildNodePackage { + name = "snapsvg-0.4.0"; + version = "0.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/snapsvg/-/snapsvg-0.4.0.tgz"; + name = "snapsvg-0.4.0.tgz"; + sha1 = "e0767014167825957de7e125c29b0fa89796ea03"; + }; + deps = { + "eve-0.4.2" = self.by-version."eve"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sntp"."0.1.x" = + self.by-version."sntp"."0.1.4"; + by-version."sntp"."0.1.4" = self.buildNodePackage { + name = "sntp-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz"; + name = "sntp-0.1.4.tgz"; + sha1 = "5ef481b951a7b29affdf4afd7f26838fc1120f84"; + }; + deps = { + "hoek-0.7.6" = self.by-version."hoek"."0.7.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sntp"."0.2.x" = + self.by-version."sntp"."0.2.4"; + by-version."sntp"."0.2.4" = self.buildNodePackage { + name = "sntp-0.2.4"; + version = "0.2.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz"; + name = "sntp-0.2.4.tgz"; + sha1 = "fb885f18b0f3aad189f824862536bceeec750900"; + }; + deps = { + "hoek-0.9.1" = self.by-version."hoek"."0.9.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sntp"."1.x.x" = + self.by-version."sntp"."1.0.9"; + by-version."sntp"."1.0.9" = self.buildNodePackage { + name = "sntp-1.0.9"; + version = "1.0.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz"; + name = "sntp-1.0.9.tgz"; + sha1 = "6541184cc90aeea6c6e7b35e2659082443c66198"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io"."0.9.14" = + self.by-version."socket.io"."0.9.14"; + by-version."socket.io"."0.9.14" = self.buildNodePackage { + name = "socket.io-0.9.14"; + version = "0.9.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io/-/socket.io-0.9.14.tgz"; + name = "socket.io-0.9.14.tgz"; + sha1 = "81af80ebf3ee8f7f6e71b1495db91f8fa53ff667"; + }; + deps = { + "socket.io-client-0.9.11" = self.by-version."socket.io-client"."0.9.11"; + "policyfile-0.0.4" = self.by-version."policyfile"."0.0.4"; + "base64id-0.1.0" = self.by-version."base64id"."0.1.0"; + }; + optionalDependencies = { + "redis-0.7.3" = self.by-version."redis"."0.7.3"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io"."1.0.6" = + self.by-version."socket.io"."1.0.6"; + by-version."socket.io"."1.0.6" = self.buildNodePackage { + name = "socket.io-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io/-/socket.io-1.0.6.tgz"; + name = "socket.io-1.0.6.tgz"; + sha1 = "b566532888dae3ac9058a12f294015ebdfa8084a"; + }; + deps = { + "engine.io-1.3.1" = self.by-version."engine.io"."1.3.1"; + "socket.io-parser-2.2.0" = self.by-version."socket.io-parser"."2.2.0"; + "socket.io-client-1.0.6" = self.by-version."socket.io-client"."1.0.6"; + "socket.io-adapter-0.2.0" = self.by-version."socket.io-adapter"."0.2.0"; + "has-binary-data-0.1.1" = self.by-version."has-binary-data"."0.1.1"; + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io"."^1.4.5" = + self.by-version."socket.io"."1.4.5"; + by-version."socket.io"."1.4.5" = self.buildNodePackage { + name = "socket.io-1.4.5"; + version = "1.4.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io/-/socket.io-1.4.5.tgz"; + name = "socket.io-1.4.5.tgz"; + sha1 = "f202f49eeb9cf7cf6c0971ad75d8d96d451ea4f7"; + }; + deps = { + "engine.io-1.6.8" = self.by-version."engine.io"."1.6.8"; + "socket.io-parser-2.2.6" = self.by-version."socket.io-parser"."2.2.6"; + "socket.io-client-1.4.5" = self.by-version."socket.io-client"."1.4.5"; + "socket.io-adapter-0.4.0" = self.by-version."socket.io-adapter"."0.4.0"; + "has-binary-0.1.7" = self.by-version."has-binary"."0.1.7"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io"."~0.9.17" = + self.by-version."socket.io"."0.9.17"; + by-version."socket.io"."0.9.17" = self.buildNodePackage { + name = "socket.io-0.9.17"; + version = "0.9.17"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io/-/socket.io-0.9.17.tgz"; + name = "socket.io-0.9.17.tgz"; + sha1 = "ca389268fb2cd5df4b59218490a08c907581c9ec"; + }; + deps = { + "socket.io-client-0.9.16" = self.by-version."socket.io-client"."0.9.16"; + "policyfile-0.0.4" = self.by-version."policyfile"."0.0.4"; + "base64id-0.1.0" = self.by-version."base64id"."0.1.0"; + }; + optionalDependencies = { + "redis-0.7.3" = self.by-version."redis"."0.7.3"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io"."~1.4.5" = + self.by-version."socket.io"."1.4.5"; + by-spec."socket.io-adapter"."0.2.0" = + self.by-version."socket.io-adapter"."0.2.0"; + by-version."socket.io-adapter"."0.2.0" = self.buildNodePackage { + name = "socket.io-adapter-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.2.0.tgz"; + name = "socket.io-adapter-0.2.0.tgz"; + sha1 = "bd39329b8961371787e24f345b074ec9cf000e33"; + }; + deps = { + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "socket.io-parser-2.1.2" = self.by-version."socket.io-parser"."2.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-adapter"."0.4.0" = + self.by-version."socket.io-adapter"."0.4.0"; + by-version."socket.io-adapter"."0.4.0" = self.buildNodePackage { + name = "socket.io-adapter-0.4.0"; + version = "0.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.4.0.tgz"; + name = "socket.io-adapter-0.4.0.tgz"; + sha1 = "fb9f82ab1aa65290bf72c3657955b930a991a24f"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "socket.io-parser-2.2.2" = self.by-version."socket.io-parser"."2.2.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-client"."0.9.11" = + self.by-version."socket.io-client"."0.9.11"; + by-version."socket.io-client"."0.9.11" = self.buildNodePackage { + name = "socket.io-client-0.9.11"; + version = "0.9.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.11.tgz"; + name = "socket.io-client-0.9.11.tgz"; + sha1 = "94defc1b29e0d8a8fe958c1cf33300f68d8a19c7"; + }; + deps = { + "uglify-js-1.2.5" = self.by-version."uglify-js"."1.2.5"; + "ws-0.4.32" = self.by-version."ws"."0.4.32"; + "xmlhttprequest-1.4.2" = self.by-version."xmlhttprequest"."1.4.2"; + "active-x-obfuscator-0.0.1" = self.by-version."active-x-obfuscator"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-client"."0.9.16" = + self.by-version."socket.io-client"."0.9.16"; + by-version."socket.io-client"."0.9.16" = self.buildNodePackage { + name = "socket.io-client-0.9.16"; + version = "0.9.16"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-0.9.16.tgz"; + name = "socket.io-client-0.9.16.tgz"; + sha1 = "4da7515c5e773041d1b423970415bcc430f35fc6"; + }; + deps = { + "uglify-js-1.2.5" = self.by-version."uglify-js"."1.2.5"; + "ws-0.4.32" = self.by-version."ws"."0.4.32"; + "xmlhttprequest-1.4.2" = self.by-version."xmlhttprequest"."1.4.2"; + "active-x-obfuscator-0.0.1" = self.by-version."active-x-obfuscator"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-client"."1.0.6" = + self.by-version."socket.io-client"."1.0.6"; + by-version."socket.io-client"."1.0.6" = self.buildNodePackage { + name = "socket.io-client-1.0.6"; + version = "1.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.0.6.tgz"; + name = "socket.io-client-1.0.6.tgz"; + sha1 = "c86cb3e507ab2f96da4500bd34fcf46a1e9dfe5e"; + }; + deps = { + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "engine.io-client-1.3.1" = self.by-version."engine.io-client"."1.3.1"; + "component-bind-1.0.0" = self.by-version."component-bind"."1.0.0"; + "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; + "object-component-0.0.3" = self.by-version."object-component"."0.0.3"; + "socket.io-parser-2.2.0" = self.by-version."socket.io-parser"."2.2.0"; + "has-binary-data-0.1.1" = self.by-version."has-binary-data"."0.1.1"; + "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; + "parseuri-0.0.2" = self.by-version."parseuri"."0.0.2"; + "to-array-0.1.3" = self.by-version."to-array"."0.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-client"."1.4.5" = + self.by-version."socket.io-client"."1.4.5"; + by-version."socket.io-client"."1.4.5" = self.buildNodePackage { + name = "socket.io-client-1.4.5"; + version = "1.4.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.4.5.tgz"; + name = "socket.io-client-1.4.5.tgz"; + sha1 = "400d630c31e7c9579e45173f977e4f5bd8dc7d2e"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "engine.io-client-1.6.8" = self.by-version."engine.io-client"."1.6.8"; + "component-bind-1.0.0" = self.by-version."component-bind"."1.0.0"; + "component-emitter-1.2.0" = self.by-version."component-emitter"."1.2.0"; + "object-component-0.0.3" = self.by-version."object-component"."0.0.3"; + "socket.io-parser-2.2.6" = self.by-version."socket.io-parser"."2.2.6"; + "has-binary-0.1.7" = self.by-version."has-binary"."0.1.7"; + "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; + "parseuri-0.0.4" = self.by-version."parseuri"."0.0.4"; + "to-array-0.1.4" = self.by-version."to-array"."0.1.4"; + "backo2-1.0.2" = self.by-version."backo2"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-parser"."2.1.2" = + self.by-version."socket.io-parser"."2.1.2"; + by-version."socket.io-parser"."2.1.2" = self.buildNodePackage { + name = "socket.io-parser-2.1.2"; + version = "2.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.1.2.tgz"; + name = "socket.io-parser-2.1.2.tgz"; + sha1 = "876655b9edd555c5bdf7301cedf30a436c67b8b0"; + }; + deps = { + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "json3-3.2.6" = self.by-version."json3"."3.2.6"; + "emitter-1.0.1" = self.by-version."emitter"."1.0.1"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-parser"."2.2.0" = + self.by-version."socket.io-parser"."2.2.0"; + by-version."socket.io-parser"."2.2.0" = self.buildNodePackage { + name = "socket.io-parser-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.0.tgz"; + name = "socket.io-parser-2.2.0.tgz"; + sha1 = "2609601f59e6a7fab436a53be3d333fbbfcbd30a"; + }; + deps = { + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "json3-3.2.6" = self.by-version."json3"."3.2.6"; + "emitter-1.0.1" = self.by-version."emitter"."1.0.1"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-parser"."2.2.2" = + self.by-version."socket.io-parser"."2.2.2"; + by-version."socket.io-parser"."2.2.2" = self.buildNodePackage { + name = "socket.io-parser-2.2.2"; + version = "2.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.2.tgz"; + name = "socket.io-parser-2.2.2.tgz"; + sha1 = "3d7af6b64497e956b7d9fe775f999716027f9417"; + }; + deps = { + "debug-0.7.4" = self.by-version."debug"."0.7.4"; + "json3-3.2.6" = self.by-version."json3"."3.2.6"; + "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "benchmark-1.0.0" = self.by-version."benchmark"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socket.io-parser"."2.2.6" = + self.by-version."socket.io-parser"."2.2.6"; + by-version."socket.io-parser"."2.2.6" = self.buildNodePackage { + name = "socket.io-parser-2.2.6"; + version = "2.2.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.6.tgz"; + name = "socket.io-parser-2.2.6.tgz"; + sha1 = "38dfd61df50dcf8ab1d9e2091322bf902ba28b99"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "json3-3.3.2" = self.by-version."json3"."3.3.2"; + "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "benchmark-1.0.0" = self.by-version."benchmark"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sockjs"."*" = + self.by-version."sockjs"."0.3.16"; + by-version."sockjs"."0.3.16" = self.buildNodePackage { + name = "sockjs-0.3.16"; + version = "0.3.16"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sockjs/-/sockjs-0.3.16.tgz"; + name = "sockjs-0.3.16.tgz"; + sha1 = "2bf5b90eb681b5216dfb98b8cf3e01a33ca271bc"; + }; + deps = { + "faye-websocket-0.10.0" = self.by-version."faye-websocket"."0.10.0"; + "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "sockjs" = self.by-version."sockjs"."0.3.16"; + by-spec."socks"."~1.1.5" = + self.by-version."socks"."1.1.9"; + by-version."socks"."1.1.9" = self.buildNodePackage { + name = "socks-1.1.9"; + version = "1.1.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socks/-/socks-1.1.9.tgz"; + name = "socks-1.1.9.tgz"; + sha1 = "628d7e4d04912435445ac0b6e459376cb3e6d691"; + }; + deps = { + "ip-1.1.2" = self.by-version."ip"."1.1.2"; + "smart-buffer-1.0.4" = self.by-version."smart-buffer"."1.0.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."socks-proxy-agent"."1" = + self.by-version."socks-proxy-agent"."1.0.2"; + by-version."socks-proxy-agent"."1.0.2" = self.buildNodePackage { + name = "socks-proxy-agent-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-1.0.2.tgz"; + name = "socks-proxy-agent-1.0.2.tgz"; + sha1 = "67e06b447fe5637417fde5733cbfdfec9ffe117f"; + }; + deps = { + "agent-base-1.0.2" = self.by-version."agent-base"."1.0.2"; + "extend-1.2.1" = self.by-version."extend"."1.2.1"; + "socks-1.1.9" = self.by-version."socks"."1.1.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."sort-keys"."^1.0.0" = self.by-version."sort-keys"."1.1.1"; by-version."sort-keys"."1.1.1" = self.buildNodePackage { @@ -48765,7 +43488,7 @@ version = "1.1.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sort-keys/-/sort-keys-1.1.1.tgz"; + url = "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.1.tgz"; name = "sort-keys-1.1.1.tgz"; sha1 = "a791c26071df66c356bf5dcad9cfb57a7b2f826e"; }; @@ -48785,7 +43508,7 @@ version = "1.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz"; + url = "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz"; name = "sort-keys-length-1.0.1.tgz"; sha1 = "9cb6f4f4e9e48155a6aa0671edd336ff1479a188"; }; @@ -48798,6 +43521,329 @@ os = [ ]; cpu = [ ]; }; + by-spec."sorted-object"."~1.0.0" = + self.by-version."sorted-object"."1.0.0"; + by-version."sorted-object"."1.0.0" = self.buildNodePackage { + name = "sorted-object-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sorted-object/-/sorted-object-1.0.0.tgz"; + name = "sorted-object-1.0.0.tgz"; + sha1 = "5d1f4f9c1fb2cd48965967304e212eb44cfb6d05"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sorted-object"."~2.0.0" = + self.by-version."sorted-object"."2.0.0"; + by-version."sorted-object"."2.0.0" = self.buildNodePackage { + name = "sorted-object-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sorted-object/-/sorted-object-2.0.0.tgz"; + name = "sorted-object-2.0.0.tgz"; + sha1 = "1cfea981609047d8043807a490a9d99b317faf7f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sorted-union-stream"."^1.0.1" = + self.by-version."sorted-union-stream"."1.0.2"; + by-version."sorted-union-stream"."1.0.2" = self.buildNodePackage { + name = "sorted-union-stream-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sorted-union-stream/-/sorted-union-stream-1.0.2.tgz"; + name = "sorted-union-stream-1.0.2.tgz"; + sha1 = "558e7f57a5bf6baf6501baf2ae2c9076c4502006"; + }; + deps = { + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-list-map"."~0.1.0" = + self.by-version."source-list-map"."0.1.6"; + by-version."source-list-map"."0.1.6" = self.buildNodePackage { + name = "source-list-map-0.1.6"; + version = "0.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.6.tgz"; + name = "source-list-map-0.1.6.tgz"; + sha1 = "e1e6f94f0b40c4d28dcf8f5b8766e0e45636877f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."*" = + self.by-version."source-map"."0.5.3"; + by-version."source-map"."0.5.3" = self.buildNodePackage { + name = "source-map-0.5.3"; + version = "0.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz"; + name = "source-map-0.5.3.tgz"; + sha1 = "82674b85a71b0be76c3e7416d15e9f5252eb3be0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "source-map" = self.by-version."source-map"."0.5.3"; + by-spec."source-map"."0.1.32" = + self.by-version."source-map"."0.1.32"; + by-version."source-map"."0.1.32" = self.buildNodePackage { + name = "source-map-0.1.32"; + version = "0.1.32"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz"; + name = "source-map-0.1.32.tgz"; + sha1 = "c8b6c167797ba4740a8ea33252162ff08591b266"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."0.1.34" = + self.by-version."source-map"."0.1.34"; + by-version."source-map"."0.1.34" = self.buildNodePackage { + name = "source-map-0.1.34"; + version = "0.1.34"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.1.34.tgz"; + name = "source-map-0.1.34.tgz"; + sha1 = "a7cfe89aec7b1682c3b198d0acfb47d7d090566b"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."0.1.x" = + self.by-version."source-map"."0.1.43"; + by-version."source-map"."0.1.43" = self.buildNodePackage { + name = "source-map-0.1.43"; + version = "0.1.43"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz"; + name = "source-map-0.1.43.tgz"; + sha1 = "c24bc146ca517c1471f5dacbe2571b2b7f9e3346"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."0.4.2" = + self.by-version."source-map"."0.4.2"; + by-version."source-map"."0.4.2" = self.buildNodePackage { + name = "source-map-0.4.2"; + version = "0.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.4.2.tgz"; + name = "source-map-0.4.2.tgz"; + sha1 = "dc9f3114394ab7c1f9782972f3d11820fff06f1f"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."0.4.x" = + self.by-version."source-map"."0.4.4"; + by-version."source-map"."0.4.4" = self.buildNodePackage { + name = "source-map-0.4.4"; + version = "0.4.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz"; + name = "source-map-0.4.4.tgz"; + sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."^0.1.40" = + self.by-version."source-map"."0.1.43"; + by-spec."source-map"."^0.4.2" = + self.by-version."source-map"."0.4.4"; + by-spec."source-map"."^0.4.4" = + self.by-version."source-map"."0.4.4"; + by-spec."source-map"."^0.5.1" = + self.by-version."source-map"."0.5.3"; + by-spec."source-map"."^0.5.3" = + self.by-version."source-map"."0.5.3"; + by-spec."source-map"."~0.1.31" = + self.by-version."source-map"."0.1.43"; + by-spec."source-map"."~0.1.33" = + self.by-version."source-map"."0.1.43"; + by-spec."source-map"."~0.1.7" = + self.by-version."source-map"."0.1.43"; + by-spec."source-map"."~0.2.0" = + self.by-version."source-map"."0.2.0"; + by-version."source-map"."0.2.0" = self.buildNodePackage { + name = "source-map-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.2.0.tgz"; + name = "source-map-0.2.0.tgz"; + sha1 = "dab73fbcfc2ba819b4de03bd6f6eaa48164b3f9d"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."~0.3.0" = + self.by-version."source-map"."0.3.0"; + by-version."source-map"."0.3.0" = self.buildNodePackage { + name = "source-map-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map/-/source-map-0.3.0.tgz"; + name = "source-map-0.3.0.tgz"; + sha1 = "8586fb9a5a005e5b501e21cd18b6f21b457ad1f9"; + }; + deps = { + "amdefine-1.0.0" = self.by-version."amdefine"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."source-map"."~0.4.0" = + self.by-version."source-map"."0.4.4"; + by-spec."source-map"."~0.4.1" = + self.by-version."source-map"."0.4.4"; + by-spec."source-map"."~0.4.2" = + self.by-version."source-map"."0.4.4"; + by-spec."source-map"."~0.5.0" = + self.by-version."source-map"."0.5.3"; + by-spec."source-map"."~0.5.1" = + self.by-version."source-map"."0.5.3"; + by-spec."source-map"."~0.5.3" = + self.by-version."source-map"."0.5.3"; + by-spec."source-map-support"."0.3.2" = + self.by-version."source-map-support"."0.3.2"; + by-version."source-map-support"."0.3.2" = self.buildNodePackage { + name = "source-map-support-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.3.2.tgz"; + name = "source-map-support-0.3.2.tgz"; + sha1 = "737d5c901e0b78fdb53aca713d24f23ccbb10be1"; + }; + deps = { + "source-map-0.1.32" = self.by-version."source-map"."0.1.32"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sparkles"."^1.0.0" = + self.by-version."sparkles"."1.0.0"; + by-version."sparkles"."1.0.0" = self.buildNodePackage { + name = "sparkles-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz"; + name = "sparkles-1.0.0.tgz"; + sha1 = "1acbbfb592436d10bbe8f785b7cc6f82815012c3"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spawn-please"."^0.1.0" = + self.by-version."spawn-please"."0.1.0"; + by-version."spawn-please"."0.1.0" = self.buildNodePackage { + name = "spawn-please-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/spawn-please/-/spawn-please-0.1.0.tgz"; + name = "spawn-please-0.1.0.tgz"; + sha1 = "d4113ad6582445d076d1099997f0b250d7ddbaac"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."spdx-correct"."~1.0.0" = self.by-version."spdx-correct"."1.0.2"; by-version."spdx-correct"."1.0.2" = self.buildNodePackage { @@ -48805,12 +43851,12 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"; + url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz"; name = "spdx-correct-1.0.2.tgz"; sha1 = "4b3073d933ff51f3912f03ac5519498a4150db40"; }; deps = { - "spdx-license-ids-1.2.0" = self.by-version."spdx-license-ids"."1.2.0"; + "spdx-license-ids-1.2.1" = self.by-version."spdx-license-ids"."1.2.1"; }; optionalDependencies = { }; @@ -48825,7 +43871,7 @@ version = "1.0.4"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz"; + url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz"; name = "spdx-exceptions-1.0.4.tgz"; sha1 = "220b84239119ae9045a892db81a83f4ce16f80fd"; }; @@ -48844,13 +43890,13 @@ version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz"; + url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz"; name = "spdx-expression-parse-1.0.2.tgz"; sha1 = "d52b14b5e9670771440af225bcb563122ac452f6"; }; deps = { "spdx-exceptions-1.0.4" = self.by-version."spdx-exceptions"."1.0.4"; - "spdx-license-ids-1.2.0" = self.by-version."spdx-license-ids"."1.2.0"; + "spdx-license-ids-1.2.1" = self.by-version."spdx-license-ids"."1.2.1"; }; optionalDependencies = { }; @@ -48859,15 +43905,15 @@ cpu = [ ]; }; by-spec."spdx-license-ids"."^1.0.0" = - self.by-version."spdx-license-ids"."1.2.0"; - by-version."spdx-license-ids"."1.2.0" = self.buildNodePackage { - name = "spdx-license-ids-1.2.0"; - version = "1.2.0"; + self.by-version."spdx-license-ids"."1.2.1"; + by-version."spdx-license-ids"."1.2.1" = self.buildNodePackage { + name = "spdx-license-ids-1.2.1"; + version = "1.2.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.0.tgz"; - name = "spdx-license-ids-1.2.0.tgz"; - sha1 = "b549dd0f63dcb745a17e2ea3a07402e0e332d1e2"; + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.2.1.tgz"; + name = "spdx-license-ids-1.2.1.tgz"; + sha1 = "d07ea17a4d2fd9351f9d94e2ff9cec74180fe8f3"; }; deps = { }; @@ -48878,17 +43924,76 @@ cpu = [ ]; }; by-spec."spdx-license-ids"."^1.0.2" = - self.by-version."spdx-license-ids"."1.2.0"; - by-spec."split"."0.2" = - self.by-version."split"."0.2.10"; - by-version."split"."0.2.10" = self.buildNodePackage { - name = "split-0.2.10"; - version = "0.2.10"; + self.by-version."spdx-license-ids"."1.2.1"; + by-spec."spdx-license-ids"."~1.2.0" = + self.by-version."spdx-license-ids"."1.2.1"; + by-spec."spdy"."^1.26.5" = + self.by-version."spdy"."1.32.5"; + by-version."spdy"."1.32.5" = self.buildNodePackage { + name = "spdy-1.32.5"; + version = "1.32.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/split/-/split-0.2.10.tgz"; - name = "split-0.2.10.tgz"; - sha1 = "67097c601d697ce1368f418f06cd201cf0521a57"; + url = "https://registry.npmjs.org/spdy/-/spdy-1.32.5.tgz"; + name = "spdy-1.32.5.tgz"; + sha1 = "70eff23cde4e97d52a445f65afddcc5695eb5edb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."speedometer"."^0.1.2" = + self.by-version."speedometer"."0.1.4"; + by-version."speedometer"."0.1.4" = self.buildNodePackage { + name = "speedometer-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/speedometer/-/speedometer-0.1.4.tgz"; + name = "speedometer-0.1.4.tgz"; + sha1 = "9876dbd2a169d3115402d48e6ea6329c8816a50d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."spin.js"."^2.0.1" = + self.by-version."spin.js"."2.3.2"; + by-version."spin.js"."2.3.2" = self.buildNodePackage { + name = "spin.js-2.3.2"; + version = "2.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/spin.js/-/spin.js-2.3.2.tgz"; + name = "spin.js-2.3.2.tgz"; + sha1 = "6caa56d520673450fd5cfbc6971e6d0772c37a1a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."split"."0.3" = + self.by-version."split"."0.3.3"; + by-version."split"."0.3.3" = self.buildNodePackage { + name = "split-0.3.3"; + version = "0.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/split/-/split-0.3.3.tgz"; + name = "split-0.3.3.tgz"; + sha1 = "cd0eea5e63a211dfff7eb0f091c4133e2d0dd28f"; }; deps = { "through-2.3.8" = self.by-version."through"."2.3.8"; @@ -48899,12 +44004,76 @@ os = [ ]; cpu = [ ]; }; + by-spec."split2"."^0.2.1" = + self.by-version."split2"."0.2.1"; + by-version."split2"."0.2.1" = self.buildNodePackage { + name = "split2-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/split2/-/split2-0.2.1.tgz"; + name = "split2-0.2.1.tgz"; + sha1 = "02ddac9adc03ec0bb78c1282ec079ca6e85ae900"; + }; + deps = { + "through2-0.6.5" = self.by-version."through2"."0.6.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sprintf"."0.1.1" = + self.by-version."sprintf"."0.1.1"; + by-version."sprintf"."0.1.1" = self.buildNodePackage { + name = "sprintf-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.1.tgz"; + name = "sprintf-0.1.1.tgz"; + sha1 = "e8925fc9894e1aa6899e9091c7f2a12130b70de5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sprintf"."0.1.5" = + self.by-version."sprintf"."0.1.5"; + by-version."sprintf"."0.1.5" = self.buildNodePackage { + name = "sprintf-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sprintf/-/sprintf-0.1.5.tgz"; + name = "sprintf-0.1.5.tgz"; + sha1 = "8f83e39a9317c1a502cb7db8050e51c679f6edcf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sprintf".">=0.1.1" = + self.by-version."sprintf"."0.1.5"; + by-spec."sprintf"."~0.1.4" = + self.by-version."sprintf"."0.1.5"; + by-spec."sprintf-js"."~1.0.2" = + self.by-version."sprintf-js"."1.0.3"; by-version."sprintf-js"."1.0.3" = self.buildNodePackage { name = "sprintf-js-1.0.3"; version = "1.0.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; name = "sprintf-js-1.0.3.tgz"; sha1 = "04e6926f662895354f3dd015203633b857297e2c"; }; @@ -48916,14 +44085,61 @@ os = [ ]; cpu = [ ]; }; - by-spec."sshpk"."^1.7.0" = + by-spec."srt2vtt"."^1.3.1" = + self.by-version."srt2vtt"."1.3.1"; + by-version."srt2vtt"."1.3.1" = self.buildNodePackage { + name = "srt2vtt-1.3.1"; + version = "1.3.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/srt2vtt/-/srt2vtt-1.3.1.tgz"; + name = "srt2vtt-1.3.1.tgz"; + sha1 = "c2b5047c2c297b693d3bab518765e4b7c24d8173"; + }; + deps = { + "codepage-1.4.0" = self.by-version."codepage"."1.4.0"; + "utfx-1.0.1" = self.by-version."utfx"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sshpk"."1.7.1" = + self.by-version."sshpk"."1.7.1"; + by-version."sshpk"."1.7.1" = self.buildNodePackage { + name = "sshpk-1.7.1"; + version = "1.7.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.7.1.tgz"; + name = "sshpk-1.7.1.tgz"; + sha1 = "565e386c42a77e6062fbd14c0472ff21cd53398c"; + }; + deps = { + "asn1-0.2.3" = self.by-version."asn1"."0.2.3"; + "assert-plus-0.2.0" = self.by-version."assert-plus"."0.2.0"; + "dashdash-1.13.0" = self.by-version."dashdash"."1.13.0"; + }; + optionalDependencies = { + "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; + "tweetnacl-0.14.3" = self.by-version."tweetnacl"."0.14.3"; + "jodid25519-1.0.2" = self.by-version."jodid25519"."1.0.2"; + "ecc-jsbn-0.1.1" = self.by-version."ecc-jsbn"."0.1.1"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sshpk".">=1.7.0 <1.8" = self.by-version."sshpk"."1.7.4"; by-version."sshpk"."1.7.4" = self.buildNodePackage { name = "sshpk-1.7.4"; version = "1.7.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz"; + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.7.4.tgz"; name = "sshpk-1.7.4.tgz"; sha1 = "ad7b47defca61c8415d964243b62b0ce60fbca38"; }; @@ -48934,7 +44150,7 @@ }; optionalDependencies = { "jsbn-0.1.0" = self.by-version."jsbn"."0.1.0"; - "tweetnacl-0.14.1" = self.by-version."tweetnacl"."0.14.1"; + "tweetnacl-0.14.3" = self.by-version."tweetnacl"."0.14.3"; "jodid25519-1.0.2" = self.by-version."jodid25519"."1.0.2"; "ecc-jsbn-0.1.1" = self.by-version."ecc-jsbn"."0.1.1"; }; @@ -48942,12 +44158,692 @@ os = [ ]; cpu = [ ]; }; + by-spec."sshpk"."^1.7.0" = + self.by-version."sshpk"."1.7.4"; + by-spec."sshpk-agent"."1.2.1" = + self.by-version."sshpk-agent"."1.2.1"; + by-version."sshpk-agent"."1.2.1" = self.buildNodePackage { + name = "sshpk-agent-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sshpk-agent/-/sshpk-agent-1.2.1.tgz"; + name = "sshpk-agent-1.2.1.tgz"; + sha1 = "62e143c18530fda103320b3403e8ad42786d9718"; + }; + deps = { + "assert-plus-0.1.5" = self.by-version."assert-plus"."0.1.5"; + "sshpk-1.7.4" = self.by-version."sshpk"."1.7.4"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ssl-root-cas"."^1.1.7" = + self.by-version."ssl-root-cas"."1.1.10"; + by-version."ssl-root-cas"."1.1.10" = self.buildNodePackage { + name = "ssl-root-cas-1.1.10"; + version = "1.1.10"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ssl-root-cas/-/ssl-root-cas-1.1.10.tgz"; + name = "ssl-root-cas-1.1.10.tgz"; + sha1 = "00b238105568f60b1bb98621e52f94efb7b7acad"; + }; + deps = { + "es6-promise-2.3.0" = self.by-version."es6-promise"."2.3.0"; + "request-2.70.0" = self.by-version."request"."2.70.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stable"."~0.1.3" = + self.by-version."stable"."0.1.5"; + by-version."stable"."0.1.5" = self.buildNodePackage { + name = "stable-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stable/-/stable-0.1.5.tgz"; + name = "stable-0.1.5.tgz"; + sha1 = "08232f60c732e9890784b5bed0734f8b32a887b9"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stack-trace"."0.0.7" = + self.by-version."stack-trace"."0.0.7"; + by-version."stack-trace"."0.0.7" = self.buildNodePackage { + name = "stack-trace-0.0.7"; + version = "0.0.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.7.tgz"; + name = "stack-trace-0.0.7.tgz"; + sha1 = "c72e089744fc3659f508cdce3621af5634ec0fff"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stack-trace"."0.0.x" = + self.by-version."stack-trace"."0.0.9"; + by-version."stack-trace"."0.0.9" = self.buildNodePackage { + name = "stack-trace-0.0.9"; + version = "0.0.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz"; + name = "stack-trace-0.0.9.tgz"; + sha1 = "a8f6eaeca90674c333e7c43953f275b451510695"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."static-favicon"."1.0.2" = + self.by-version."static-favicon"."1.0.2"; + by-version."static-favicon"."1.0.2" = self.buildNodePackage { + name = "static-favicon-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/static-favicon/-/static-favicon-1.0.2.tgz"; + name = "static-favicon-1.0.2.tgz"; + sha1 = "7c15920dda2bf33f414b0e60aebbd65cdd2a1d2f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."statuses"."1" = + self.by-version."statuses"."1.2.1"; + by-version."statuses"."1.2.1" = self.buildNodePackage { + name = "statuses-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz"; + name = "statuses-1.2.1.tgz"; + sha1 = "dded45cc18256d51ed40aec142489d5c61026d28"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."statuses".">= 1.2.1 < 2" = + self.by-version."statuses"."1.2.1"; + by-spec."statuses"."^1.2.1" = + self.by-version."statuses"."1.2.1"; + by-spec."statuses"."~1.2.1" = + self.by-version."statuses"."1.2.1"; + by-spec."stream-browserify"."^1.0.0" = + self.by-version."stream-browserify"."1.0.0"; + by-version."stream-browserify"."1.0.0" = self.buildNodePackage { + name = "stream-browserify-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-1.0.0.tgz"; + name = "stream-browserify-1.0.0.tgz"; + sha1 = "bf9b4abfb42b274d751479e44e0ff2656b6f1193"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-browserify"."^2.0.0" = + self.by-version."stream-browserify"."2.0.1"; + by-version."stream-browserify"."2.0.1" = self.buildNodePackage { + name = "stream-browserify-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.1.tgz"; + name = "stream-browserify-2.0.1.tgz"; + sha1 = "66266ee5f9bdb9940a4e4514cafb43bb71e5c9db"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-browserify"."^2.0.1" = + self.by-version."stream-browserify"."2.0.1"; + by-spec."stream-collector"."^1.0.1" = + self.by-version."stream-collector"."1.0.1"; + by-version."stream-collector"."1.0.1" = self.buildNodePackage { + name = "stream-collector-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-collector/-/stream-collector-1.0.1.tgz"; + name = "stream-collector-1.0.1.tgz"; + sha1 = "4d4e55f171356121b2c5f6559f944705ab28db15"; + }; + deps = { + "once-1.3.3" = self.by-version."once"."1.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-combiner"."~0.0.4" = + self.by-version."stream-combiner"."0.0.4"; + by-version."stream-combiner"."0.0.4" = self.buildNodePackage { + name = "stream-combiner-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; + name = "stream-combiner-0.0.4.tgz"; + sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; + }; + deps = { + "duplexer-0.1.1" = self.by-version."duplexer"."0.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-combiner2"."^1.1.1" = + self.by-version."stream-combiner2"."1.1.1"; + by-version."stream-combiner2"."1.1.1" = self.buildNodePackage { + name = "stream-combiner2-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; + name = "stream-combiner2-1.1.1.tgz"; + sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; + }; + deps = { + "duplexer2-0.1.4" = self.by-version."duplexer2"."0.1.4"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-combiner2"."~1.0.0" = + self.by-version."stream-combiner2"."1.0.2"; + by-version."stream-combiner2"."1.0.2" = self.buildNodePackage { + name = "stream-combiner2-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.0.2.tgz"; + name = "stream-combiner2-1.0.2.tgz"; + sha1 = "ba72a6b50cbfabfa950fc8bc87604bd01eb60671"; + }; + deps = { + "duplexer2-0.0.2" = self.by-version."duplexer2"."0.0.2"; + "through2-0.5.1" = self.by-version."through2"."0.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-consume"."^0.1.0" = + self.by-version."stream-consume"."0.1.0"; + by-version."stream-consume"."0.1.0" = self.buildNodePackage { + name = "stream-consume-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz"; + name = "stream-consume-0.1.0.tgz"; + sha1 = "a41ead1a6d6081ceb79f65b061901b6d8f3d1d0f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-consume"."~0.1.0" = + self.by-version."stream-consume"."0.1.0"; + by-spec."stream-counter"."^1.0.0" = + self.by-version."stream-counter"."1.0.0"; + by-version."stream-counter"."1.0.0" = self.buildNodePackage { + name = "stream-counter-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-counter/-/stream-counter-1.0.0.tgz"; + name = "stream-counter-1.0.0.tgz"; + sha1 = "91cf2569ce4dc5061febcd7acb26394a5a114751"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-counter"."~0.2.0" = + self.by-version."stream-counter"."0.2.0"; + by-version."stream-counter"."0.2.0" = self.buildNodePackage { + name = "stream-counter-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-counter/-/stream-counter-0.2.0.tgz"; + name = "stream-counter-0.2.0.tgz"; + sha1 = "ded266556319c8b0e222812b9cf3b26fa7d947de"; + }; + deps = { + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-events"."^1.0.1" = + self.by-version."stream-events"."1.0.1"; + by-version."stream-events"."1.0.1" = self.buildNodePackage { + name = "stream-events-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-events/-/stream-events-1.0.1.tgz"; + name = "stream-events-1.0.1.tgz"; + sha1 = "4fe7b2bbfcc53e6af31087e8c540483f412ce8c6"; + }; + deps = { + "stubs-1.1.2" = self.by-version."stubs"."1.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-http"."^2.0.0" = + self.by-version."stream-http"."2.2.1"; + by-version."stream-http"."2.2.1" = self.buildNodePackage { + name = "stream-http-2.2.1"; + version = "2.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-http/-/stream-http-2.2.1.tgz"; + name = "stream-http-2.2.1.tgz"; + sha1 = "c0d29dd8546341c66a4880a78272cd4661a956a6"; + }; + deps = { + "builtin-status-codes-2.0.0" = self.by-version."builtin-status-codes"."2.0.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "to-arraybuffer-1.0.1" = self.by-version."to-arraybuffer"."1.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-splicer"."^1.1.0" = + self.by-version."stream-splicer"."1.3.2"; + by-version."stream-splicer"."1.3.2" = self.buildNodePackage { + name = "stream-splicer-1.3.2"; + version = "1.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-1.3.2.tgz"; + name = "stream-splicer-1.3.2.tgz"; + sha1 = "3c0441be15b9bf4e226275e6dc83964745546661"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "isarray-0.0.1" = self.by-version."isarray"."0.0.1"; + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "readable-wrap-1.0.0" = self.by-version."readable-wrap"."1.0.0"; + "through2-1.1.1" = self.by-version."through2"."1.1.1"; + "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-splicer"."^2.0.0" = + self.by-version."stream-splicer"."2.0.0"; + by-version."stream-splicer"."2.0.0" = self.buildNodePackage { + name = "stream-splicer-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-splicer/-/stream-splicer-2.0.0.tgz"; + name = "stream-splicer-2.0.0.tgz"; + sha1 = "1b63be438a133e4b671cc1935197600175910d83"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-to-array"."~1.0.0" = + self.by-version."stream-to-array"."1.0.0"; + by-version."stream-to-array"."1.0.0" = self.buildNodePackage { + name = "stream-to-array-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-to-array/-/stream-to-array-1.0.0.tgz"; + name = "stream-to-array-1.0.0.tgz"; + sha1 = "94166bb29f3ea24f082d2f8cd3ebb2cc0d6eca2c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-transcoder"."0.0.5" = + self.by-version."stream-transcoder"."0.0.5"; + by-version."stream-transcoder"."0.0.5" = self.buildNodePackage { + name = "stream-transcoder-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-transcoder/-/stream-transcoder-0.0.5.tgz"; + name = "stream-transcoder-0.0.5.tgz"; + sha1 = "68261be4efb48840239b5791af23ee3b8bd79808"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stream-transform"."^0.1.0" = + self.by-version."stream-transform"."0.1.1"; + by-version."stream-transform"."0.1.1" = self.buildNodePackage { + name = "stream-transform-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stream-transform/-/stream-transform-0.1.1.tgz"; + name = "stream-transform-0.1.1.tgz"; + sha1 = "0a54a2b81eea88da55a50df2441cb63edc101c71"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."streamsearch"."0.1.2" = + self.by-version."streamsearch"."0.1.2"; + by-version."streamsearch"."0.1.2" = self.buildNodePackage { + name = "streamsearch-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"; + name = "streamsearch-0.1.2.tgz"; + sha1 = "808b9d0e56fc273d809ba57338e929919a1a9f1a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string"."1.6.1" = + self.by-version."string"."1.6.1"; + by-version."string"."1.6.1" = self.buildNodePackage { + name = "string-1.6.1"; + version = "1.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string/-/string-1.6.1.tgz"; + name = "string-1.6.1.tgz"; + sha1 = "eabe0956da7a8291c6de7486f7b35e58d031cd55"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string-length"."^1.0.0" = + self.by-version."string-length"."1.0.1"; + by-version."string-length"."1.0.1" = self.buildNodePackage { + name = "string-length-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz"; + name = "string-length-1.0.1.tgz"; + sha1 = "56970fb1c38558e9e70b728bf3de269ac45adfac"; + }; + deps = { + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string-template"."~0.2.0" = + self.by-version."string-template"."0.2.1"; + by-version."string-template"."0.2.1" = self.buildNodePackage { + name = "string-template-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz"; + name = "string-template-0.2.1.tgz"; + sha1 = "42932e598a352d01fc22ec3367d9d84eec6c9add"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string-width"."^1.0.1" = + self.by-version."string-width"."1.0.1"; + by-version."string-width"."1.0.1" = self.buildNodePackage { + name = "string-width-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string-width/-/string-width-1.0.1.tgz"; + name = "string-width-1.0.1.tgz"; + sha1 = "c92129b6f1d7f52acf9af424a26e3864a05ceb0a"; + }; + deps = { + "code-point-at-1.0.0" = self.by-version."code-point-at"."1.0.0"; + "is-fullwidth-code-point-1.0.0" = self.by-version."is-fullwidth-code-point"."1.0.0"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string.prototype.startswith"."^0.2.0" = + self.by-version."string.prototype.startswith"."0.2.0"; + by-version."string.prototype.startswith"."0.2.0" = self.buildNodePackage { + name = "string.prototype.startswith-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string.prototype.startswith/-/string.prototype.startswith-0.2.0.tgz"; + name = "string.prototype.startswith-0.2.0.tgz"; + sha1 = "da68982e353a4e9ac4a43b450a2045d1c445ae7b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string2compact"."^1.1.1" = + self.by-version."string2compact"."1.2.2"; + by-version."string2compact"."1.2.2" = self.buildNodePackage { + name = "string2compact-1.2.2"; + version = "1.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string2compact/-/string2compact-1.2.2.tgz"; + name = "string2compact-1.2.2.tgz"; + sha1 = "420b3a9ee1c46854919b4a2aeac65c43fa50597b"; + }; + deps = { + "addr-to-ip-port-1.4.2" = self.by-version."addr-to-ip-port"."1.4.2"; + "ipaddr.js-1.1.0" = self.by-version."ipaddr.js"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string_decoder"."~0.10.0" = + self.by-version."string_decoder"."0.10.31"; + by-version."string_decoder"."0.10.31" = self.buildNodePackage { + name = "string_decoder-0.10.31"; + version = "0.10.31"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; + name = "string_decoder-0.10.31.tgz"; + sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."string_decoder"."~0.10.25" = + self.by-version."string_decoder"."0.10.31"; + by-spec."string_decoder"."~0.10.x" = + self.by-version."string_decoder"."0.10.31"; + by-spec."stringmap"."~0.2.2" = + self.by-version."stringmap"."0.2.2"; + by-version."stringmap"."0.2.2" = self.buildNodePackage { + name = "stringmap-0.2.2"; + version = "0.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stringmap/-/stringmap-0.2.2.tgz"; + name = "stringmap-0.2.2.tgz"; + sha1 = "556c137b258f942b8776f5b2ef582aa069d7d1b1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stringset"."~0.2.1" = + self.by-version."stringset"."0.2.1"; + by-version."stringset"."0.2.1" = self.buildNodePackage { + name = "stringset-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz"; + name = "stringset-0.2.1.tgz"; + sha1 = "ef259c4e349344377fcd1c913dd2e848c9c042b5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stringstream"."~0.0.4" = + self.by-version."stringstream"."0.0.5"; by-version."stringstream"."0.0.5" = self.buildNodePackage { name = "stringstream-0.0.5"; version = "0.0.5"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz"; + url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz"; name = "stringstream-0.0.5.tgz"; sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878"; }; @@ -48959,6 +44855,46 @@ os = [ ]; cpu = [ ]; }; + by-spec."strip-ansi"."^0.3.0" = + self.by-version."strip-ansi"."0.3.0"; + by-version."strip-ansi"."0.3.0" = self.buildNodePackage { + name = "strip-ansi-0.3.0"; + version = "0.3.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-0.3.0.tgz"; + name = "strip-ansi-0.3.0.tgz"; + sha1 = "25f48ea22ca79187f3174a4db8759347bb126220"; + }; + deps = { + "ansi-regex-0.2.1" = self.by-version."ansi-regex"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-ansi"."^2.0.1" = + self.by-version."strip-ansi"."2.0.1"; + by-version."strip-ansi"."2.0.1" = self.buildNodePackage { + name = "strip-ansi-2.0.1"; + version = "2.0.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-2.0.1.tgz"; + name = "strip-ansi-2.0.1.tgz"; + sha1 = "df62c1aa94ed2f114e1d0f21fd1d50482b79a60e"; + }; + deps = { + "ansi-regex-1.1.1" = self.by-version."ansi-regex"."1.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."strip-ansi"."^3.0.0" = self.by-version."strip-ansi"."3.0.1"; by-version."strip-ansi"."3.0.1" = self.buildNodePackage { @@ -48966,7 +44902,7 @@ version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; name = "strip-ansi-3.0.1.tgz"; sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; }; @@ -48979,6 +44915,31 @@ os = [ ]; cpu = [ ]; }; + by-spec."strip-ansi"."^3.0.1" = + self.by-version."strip-ansi"."3.0.1"; + by-spec."strip-ansi"."~3.0.1" = + self.by-version."strip-ansi"."3.0.1"; + by-spec."strip-bom"."^1.0.0" = + self.by-version."strip-bom"."1.0.0"; + by-version."strip-bom"."1.0.0" = self.buildNodePackage { + name = "strip-bom-1.0.0"; + version = "1.0.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz"; + name = "strip-bom-1.0.0.tgz"; + sha1 = "85b8862f3844b5a6d5ec8467a93598173a36f794"; + }; + deps = { + "first-chunk-stream-1.0.0" = self.by-version."first-chunk-stream"."1.0.0"; + "is-utf8-0.2.1" = self.by-version."is-utf8"."0.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."strip-bom"."^2.0.0" = self.by-version."strip-bom"."2.0.0"; by-version."strip-bom"."2.0.0" = self.buildNodePackage { @@ -48986,7 +44947,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; + url = "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz"; name = "strip-bom-2.0.0.tgz"; sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; }; @@ -49006,7 +44967,7 @@ version = "1.0.1"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"; + url = "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz"; name = "strip-indent-1.0.1.tgz"; sha1 = "0c7962a6adefa7bbd4ac366460a638552ae1a0a2"; }; @@ -49019,14 +44980,33 @@ os = [ ]; cpu = [ ]; }; - by-spec."strip-json-comments"."~1.0.4" = + by-spec."strip-json-comments"."0.1.x" = + self.by-version."strip-json-comments"."0.1.3"; + by-version."strip-json-comments"."0.1.3" = self.buildNodePackage { + name = "strip-json-comments-0.1.3"; + version = "0.1.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz"; + name = "strip-json-comments-0.1.3.tgz"; + sha1 = "164c64e370a8a3cc00c9e01b539e569823f0ee54"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."strip-json-comments"."1.0.x" = self.by-version."strip-json-comments"."1.0.4"; by-version."strip-json-comments"."1.0.4" = self.buildNodePackage { name = "strip-json-comments-1.0.4"; version = "1.0.4"; bin = true; src = fetchurl { - url = "http://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; + url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz"; name = "strip-json-comments-1.0.4.tgz"; sha1 = "1e15fbcac97d3ee99bf2d73b4c656b082bbafb91"; }; @@ -49038,6 +45018,257 @@ os = [ ]; cpu = [ ]; }; + by-spec."strip-json-comments"."~0.1.1" = + self.by-version."strip-json-comments"."0.1.3"; + by-spec."strip-json-comments"."~1.0.1" = + self.by-version."strip-json-comments"."1.0.4"; + by-spec."strip-json-comments"."~1.0.4" = + self.by-version."strip-json-comments"."1.0.4"; + by-spec."strong-data-uri"."^1.0.0" = + self.by-version."strong-data-uri"."1.0.3"; + by-version."strong-data-uri"."1.0.3" = self.buildNodePackage { + name = "strong-data-uri-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.3.tgz"; + name = "strong-data-uri-1.0.3.tgz"; + sha1 = "0edbd175e7900ae28c939dea9d4d31c03afbd6b6"; + }; + deps = { + "truncate-1.0.5" = self.by-version."truncate"."1.0.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stubs"."^1.1.0" = + self.by-version."stubs"."1.1.2"; + by-version."stubs"."1.1.2" = self.buildNodePackage { + name = "stubs-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/stubs/-/stubs-1.1.2.tgz"; + name = "stubs-1.1.2.tgz"; + sha1 = "945a08975016318762f8f7060731002ab2a0960c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stylus"."*" = + self.by-version."stylus"."0.54.2"; + by-version."stylus"."0.54.2" = self.buildNodePackage { + name = "stylus-0.54.2"; + version = "0.54.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/stylus/-/stylus-0.54.2.tgz"; + name = "stylus-0.54.2.tgz"; + sha1 = "77f0da93cde5a55ab917496850b7ab5214474a0b"; + }; + deps = { + "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "sax-0.5.8" = self.by-version."sax"."0.5.8"; + "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "stylus" = self.by-version."stylus"."0.54.2"; + by-spec."stylus"."0.49.x" = + self.by-version."stylus"."0.49.3"; + by-version."stylus"."0.49.3" = self.buildNodePackage { + name = "stylus-0.49.3"; + version = "0.49.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/stylus/-/stylus-0.49.3.tgz"; + name = "stylus-0.49.3.tgz"; + sha1 = "1fbdabe479ed460872c71a6252a67f95040ba511"; + }; + deps = { + "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "sax-0.5.8" = self.by-version."sax"."0.5.8"; + "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."stylus"."~0.52.4" = + self.by-version."stylus"."0.52.4"; + by-version."stylus"."0.52.4" = self.buildNodePackage { + name = "stylus-0.52.4"; + version = "0.52.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/stylus/-/stylus-0.52.4.tgz"; + name = "stylus-0.52.4.tgz"; + sha1 = "6551b5f0bfdcf29ee7f0fe0a59b7eb6ff26d2539"; + }; + deps = { + "css-parse-1.7.0" = self.by-version."css-parse"."1.7.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "sax-0.5.8" = self.by-version."sax"."0.5.8"; + "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."subarg"."^1.0.0" = + self.by-version."subarg"."1.0.0"; + by-version."subarg"."1.0.0" = self.buildNodePackage { + name = "subarg-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/subarg/-/subarg-1.0.0.tgz"; + name = "subarg-1.0.0.tgz"; + sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2"; + }; + deps = { + "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sugar"."^1.4.1" = + self.by-version."sugar"."1.4.1"; + by-version."sugar"."1.4.1" = self.buildNodePackage { + name = "sugar-1.4.1"; + version = "1.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sugar/-/sugar-1.4.1.tgz"; + name = "sugar-1.4.1.tgz"; + sha1 = "1310d4dedc699e5a173183718541b0d7844a7598"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."superagent"."0.21.0" = + self.by-version."superagent"."0.21.0"; + by-version."superagent"."0.21.0" = self.buildNodePackage { + name = "superagent-0.21.0"; + version = "0.21.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/superagent/-/superagent-0.21.0.tgz"; + name = "superagent-0.21.0.tgz"; + sha1 = "fb15027984751ee7152200e6cd21cd6e19a5de87"; + }; + deps = { + "qs-1.2.0" = self.by-version."qs"."1.2.0"; + "formidable-1.0.14" = self.by-version."formidable"."1.0.14"; + "mime-1.2.11" = self.by-version."mime"."1.2.11"; + "component-emitter-1.1.2" = self.by-version."component-emitter"."1.1.2"; + "methods-1.0.1" = self.by-version."methods"."1.0.1"; + "cookiejar-2.0.1" = self.by-version."cookiejar"."2.0.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "reduce-component-1.0.1" = self.by-version."reduce-component"."1.0.1"; + "extend-1.2.1" = self.by-version."extend"."1.2.1"; + "form-data-0.1.3" = self.by-version."form-data"."0.1.3"; + "readable-stream-1.0.27-1" = self.by-version."readable-stream"."1.0.27-1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."superagent"."^0.21.0" = + self.by-version."superagent"."0.21.0"; + by-spec."superagent"."~0.21.0" = + self.by-version."superagent"."0.21.0"; + by-spec."supports-color"."1.2.0" = + self.by-version."supports-color"."1.2.0"; + by-version."supports-color"."1.2.0" = self.buildNodePackage { + name = "supports-color-1.2.0"; + version = "1.2.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz"; + name = "supports-color-1.2.0.tgz"; + sha1 = "ff1ed1e61169d06b3cf2d588e188b18d8847e17e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."supports-color"."^0.2.0" = + self.by-version."supports-color"."0.2.0"; + by-version."supports-color"."0.2.0" = self.buildNodePackage { + name = "supports-color-0.2.0"; + version = "0.2.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-0.2.0.tgz"; + name = "supports-color-0.2.0.tgz"; + sha1 = "d92de2694eb3f67323973d7ae3d8b55b4c22190a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."supports-color"."^1.3.0" = + self.by-version."supports-color"."1.3.1"; + by-version."supports-color"."1.3.1" = self.buildNodePackage { + name = "supports-color-1.3.1"; + version = "1.3.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-1.3.1.tgz"; + name = "supports-color-1.3.1.tgz"; + sha1 = "15758df09d8ff3b4acc307539fabe27095e1042d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."supports-color"."^2.0.0" = self.by-version."supports-color"."2.0.0"; by-version."supports-color"."2.0.0" = self.buildNodePackage { @@ -49045,7 +45276,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; + url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz"; name = "supports-color-2.0.0.tgz"; sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; }; @@ -49057,14 +45288,376 @@ os = [ ]; cpu = [ ]; }; - by-spec."temp"."0.8.3" = + by-spec."supports-color"."^3.1.0" = + self.by-version."supports-color"."3.1.2"; + by-version."supports-color"."3.1.2" = self.buildNodePackage { + name = "supports-color-3.1.2"; + version = "3.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/supports-color/-/supports-color-3.1.2.tgz"; + name = "supports-color-3.1.2.tgz"; + sha1 = "72a262894d9d408b956ca05ff37b2ed8a6e2a2d5"; + }; + deps = { + "has-flag-1.0.0" = self.by-version."has-flag"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."supports-color"."^3.1.2" = + self.by-version."supports-color"."3.1.2"; + by-spec."swig"."0.14.x" = + self.by-version."swig"."0.14.0"; + by-version."swig"."0.14.0" = self.buildNodePackage { + name = "swig-0.14.0"; + version = "0.14.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/swig/-/swig-0.14.0.tgz"; + name = "swig-0.14.0.tgz"; + sha1 = "544bfb3bd837608873eed6a72c672a28cb1f1b3f"; + }; + deps = { + "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "swig" = self.by-version."swig"."0.14.0"; + by-spec."sylvester".">= 0.0.12" = + self.by-version."sylvester"."0.0.21"; + by-version."sylvester"."0.0.21" = self.buildNodePackage { + name = "sylvester-0.0.21"; + version = "0.0.21"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sylvester/-/sylvester-0.0.21.tgz"; + name = "sylvester-0.0.21.tgz"; + sha1 = "2987b1ce2bd2f38b0dce2a34388884bfa4400ea7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."sylvester".">= 0.0.8" = + self.by-version."sylvester"."0.0.21"; + by-spec."sync-exec"."0.6.2" = + self.by-version."sync-exec"."0.6.2"; + by-version."sync-exec"."0.6.2" = self.buildNodePackage { + name = "sync-exec-0.6.2"; + version = "0.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz"; + name = "sync-exec-0.6.2.tgz"; + sha1 = "717d22cc53f0ce1def5594362f3a89a2ebb91105"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."syntax-error"."^1.1.1" = + self.by-version."syntax-error"."1.1.6"; + by-version."syntax-error"."1.1.6" = self.buildNodePackage { + name = "syntax-error-1.1.6"; + version = "1.1.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.1.6.tgz"; + name = "syntax-error-1.1.6.tgz"; + sha1 = "b4549706d386cc1c1dc7c2423f18579b6cade710"; + }; + deps = { + "acorn-2.7.0" = self.by-version."acorn"."2.7.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."table"."^3.7.8" = + self.by-version."table"."3.7.8"; + by-version."table"."3.7.8" = self.buildNodePackage { + name = "table-3.7.8"; + version = "3.7.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/table/-/table-3.7.8.tgz"; + name = "table-3.7.8.tgz"; + sha1 = "b424433ef596851922b2fd77224a69a1951618eb"; + }; + deps = { + "bluebird-3.3.4" = self.by-version."bluebird"."3.3.4"; + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + "slice-ansi-0.0.4" = self.by-version."slice-ansi"."0.0.4"; + "string-width-1.0.1" = self.by-version."string-width"."1.0.1"; + "strip-ansi-3.0.1" = self.by-version."strip-ansi"."3.0.1"; + "tv4-1.2.7" = self.by-version."tv4"."1.2.7"; + "xregexp-3.1.0" = self.by-version."xregexp"."3.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tabtab"."git+https://github.com/mixu/node-tabtab.git" = + self.by-version."tabtab"."0.0.2"; + by-version."tabtab"."0.0.2" = self.buildNodePackage { + name = "tabtab-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchgit { + url = "https://github.com/mixu/node-tabtab.git"; + rev = "94af2b878b174527b6636aec88acd46979247755"; + sha256 = "7be2daa2fe7893478d38d90b213de359c9a662a7ef06ad9cbfaac11ad399a149"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tapable"."^0.1.8" = + self.by-version."tapable"."0.1.10"; + by-version."tapable"."0.1.10" = self.buildNodePackage { + name = "tapable-0.1.10"; + version = "0.1.10"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tapable/-/tapable-0.1.10.tgz"; + name = "tapable-0.1.10.tgz"; + sha1 = "29c35707c2b70e50d07482b5d202e8ed446dafd4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tapable"."^0.2.3" = + self.by-version."tapable"."0.2.4"; + by-version."tapable"."0.2.4" = self.buildNodePackage { + name = "tapable-0.2.4"; + version = "0.2.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tapable/-/tapable-0.2.4.tgz"; + name = "tapable-0.2.4.tgz"; + sha1 = "a7814605089d4ba896c33c7e3566e13dcd194aa5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tapable"."~0.1.8" = + self.by-version."tapable"."0.1.10"; + by-spec."tapable"."~0.2.3" = + self.by-version."tapable"."0.2.4"; + by-spec."tape"."~2.3.2" = + self.by-version."tape"."2.3.3"; + by-version."tape"."2.3.3" = self.buildNodePackage { + name = "tape-2.3.3"; + version = "2.3.3"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/tape/-/tape-2.3.3.tgz"; + name = "tape-2.3.3.tgz"; + sha1 = "2e7ce0a31df09f8d6851664a71842e0ca5057af7"; + }; + deps = { + "jsonify-0.0.0" = self.by-version."jsonify"."0.0.0"; + "deep-equal-0.1.2" = self.by-version."deep-equal"."0.1.2"; + "defined-0.0.0" = self.by-version."defined"."0.0.0"; + "through-2.3.8" = self.by-version."through"."2.3.8"; + "resumer-0.0.0" = self.by-version."resumer"."0.0.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tar"."*" = + self.by-version."tar"."2.2.1"; + by-version."tar"."2.2.1" = self.buildNodePackage { + name = "tar-2.2.1"; + version = "2.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz"; + name = "tar-2.2.1.tgz"; + sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; + }; + deps = { + "block-stream-0.0.8" = self.by-version."block-stream"."0.0.8"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "tar" = self.by-version."tar"."2.2.1"; + by-spec."tar"."0.1.17" = + self.by-version."tar"."0.1.17"; + by-version."tar"."0.1.17" = self.buildNodePackage { + name = "tar-0.1.17"; + version = "0.1.17"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar/-/tar-0.1.17.tgz"; + name = "tar-0.1.17.tgz"; + sha1 = "408c8a95deb8e78a65b59b1a51a333183a32badc"; + }; + deps = { + "inherits-1.0.2" = self.by-version."inherits"."1.0.2"; + "block-stream-0.0.8" = self.by-version."block-stream"."0.0.8"; + "fstream-0.1.31" = self.by-version."fstream"."0.1.31"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tar"."1.0.2" = + self.by-version."tar"."1.0.2"; + by-version."tar"."1.0.2" = self.buildNodePackage { + name = "tar-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar/-/tar-1.0.2.tgz"; + name = "tar-1.0.2.tgz"; + sha1 = "8b0f6740f9946259de26a3ed9c9a22890dff023f"; + }; + deps = { + "block-stream-0.0.8" = self.by-version."block-stream"."0.0.8"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tar"."^2.0.0" = + self.by-version."tar"."2.2.1"; + by-spec."tar"."~2.2.0" = + self.by-version."tar"."2.2.1"; + by-spec."tar"."~2.2.1" = + self.by-version."tar"."2.2.1"; + by-spec."tar-pack"."~3.1.0" = + self.by-version."tar-pack"."3.1.3"; + by-version."tar-pack"."3.1.3" = self.buildNodePackage { + name = "tar-pack-3.1.3"; + version = "3.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.1.3.tgz"; + name = "tar-pack-3.1.3.tgz"; + sha1 = "611b7e62eb2f27aeda64554f7a7fb48900c7e157"; + }; + deps = { + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "fstream-1.0.8" = self.by-version."fstream"."1.0.8"; + "fstream-ignore-1.0.3" = self.by-version."fstream-ignore"."1.0.3"; + "once-1.3.3" = self.by-version."once"."1.3.3"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "tar-2.2.1" = self.by-version."tar"."2.2.1"; + "uid-number-0.0.6" = self.by-version."uid-number"."0.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tar-stream"."^1.0.0" = + self.by-version."tar-stream"."1.5.1"; + by-version."tar-stream"."1.5.1" = self.buildNodePackage { + name = "tar-stream-1.5.1"; + version = "1.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.1.tgz"; + name = "tar-stream-1.5.1.tgz"; + sha1 = "516c74d1bea3e131cc0b9348929c9a83f0a2ad11"; + }; + deps = { + "bl-1.1.2" = self.by-version."bl"."1.1.2"; + "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tar-stream"."~1.1.0" = + self.by-version."tar-stream"."1.1.5"; + by-version."tar-stream"."1.1.5" = self.buildNodePackage { + name = "tar-stream-1.1.5"; + version = "1.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-1.1.5.tgz"; + name = "tar-stream-1.1.5.tgz"; + sha1 = "be9218c130c20029e107b0f967fb23de0579d13c"; + }; + deps = { + "bl-0.9.5" = self.by-version."bl"."0.9.5"; + "end-of-stream-1.1.0" = self.by-version."end-of-stream"."1.1.0"; + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."temp"."*" = self.by-version."temp"."0.8.3"; by-version."temp"."0.8.3" = self.buildNodePackage { name = "temp-0.8.3"; version = "0.8.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/temp/-/temp-0.8.3.tgz"; + url = "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz"; name = "temp-0.8.3.tgz"; sha1 = "e0c6bc4d26b903124410e4fed81103014dfc1f59"; }; @@ -49078,8 +45671,177 @@ os = [ ]; cpu = [ ]; }; + "temp" = self.by-version."temp"."0.8.3"; + by-spec."temp"."0.6.0" = + self.by-version."temp"."0.6.0"; + by-version."temp"."0.6.0" = self.buildNodePackage { + name = "temp-0.6.0"; + version = "0.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/temp/-/temp-0.6.0.tgz"; + name = "temp-0.6.0.tgz"; + sha1 = "6b13df5cddf370f2e3a606ca40f202c419173f07"; + }; + deps = { + "rimraf-2.1.4" = self.by-version."rimraf"."2.1.4"; + "osenv-0.0.3" = self.by-version."osenv"."0.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."temp"."0.8.3" = + self.by-version."temp"."0.8.3"; + by-spec."temp".">=0.5.0" = + self.by-version."temp"."0.8.3"; by-spec."temp"."^0.8.1" = self.by-version."temp"."0.8.3"; + by-spec."temp"."~0.8.3" = + self.by-version."temp"."0.8.3"; + by-spec."tern"."*" = + self.by-version."tern"."0.18.0"; + by-version."tern"."0.18.0" = self.buildNodePackage { + name = "tern-0.18.0"; + version = "0.18.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/tern/-/tern-0.18.0.tgz"; + name = "tern-0.18.0.tgz"; + sha1 = "c6177fe395c8ffc9c512f0ec7452a7d9c6220fa6"; + }; + deps = { + "acorn-2.7.0" = self.by-version."acorn"."2.7.0"; + "enhanced-resolve-0.9.1" = self.by-version."enhanced-resolve"."0.9.1"; + "glob-3.2.11" = self.by-version."glob"."3.2.11"; + "minimatch-0.2.14" = self.by-version."minimatch"."0.2.14"; + "typescript-1.0.1" = self.by-version."typescript"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "tern" = self.by-version."tern"."0.18.0"; + by-spec."text-encoding"."0.5.2" = + self.by-version."text-encoding"."0.5.2"; + by-version."text-encoding"."0.5.2" = self.buildNodePackage { + name = "text-encoding-0.5.2"; + version = "0.5.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/text-encoding/-/text-encoding-0.5.2.tgz"; + name = "text-encoding-0.5.2.tgz"; + sha1 = "85b4660819f088777609465551690fea137d824a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."text-table"."~0.2.0" = + self.by-version."text-table"."0.2.0"; + by-version."text-table"."0.2.0" = self.buildNodePackage { + name = "text-table-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz"; + name = "text-table-0.2.0.tgz"; + sha1 = "7f5ee823ae805207c00af2df4a84ec3fcfa570b4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."thirty-two"."^0.0.2" = + self.by-version."thirty-two"."0.0.2"; + by-version."thirty-two"."0.0.2" = self.buildNodePackage { + name = "thirty-two-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/thirty-two/-/thirty-two-0.0.2.tgz"; + name = "thirty-two-0.0.2.tgz"; + sha1 = "4253e29d8cb058f0480267c5698c0e4927e54b6a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."thirty-two"."^1.0.1" = + self.by-version."thirty-two"."1.0.1"; + by-version."thirty-two"."1.0.1" = self.buildNodePackage { + name = "thirty-two-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/thirty-two/-/thirty-two-1.0.1.tgz"; + name = "thirty-two-1.0.1.tgz"; + sha1 = "fa500a927cfba6cfb4e767712b18106d395baf1d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."thirty-two"."~0.0.1" = + self.by-version."thirty-two"."0.0.2"; + by-spec."throttleit"."^1.0.0" = + self.by-version."throttleit"."1.0.0"; + by-version."throttleit"."1.0.0" = self.buildNodePackage { + name = "throttleit-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz"; + name = "throttleit-1.0.0.tgz"; + sha1 = "9e785836daf46743145a5984b6268d828528ac6c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."throttleit"."~0.0.2" = + self.by-version."throttleit"."0.0.2"; + by-version."throttleit"."0.0.2" = self.buildNodePackage { + name = "throttleit-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/throttleit/-/throttleit-0.0.2.tgz"; + name = "throttleit-0.0.2.tgz"; + sha1 = "cfedf88e60c00dd9697b61fdd2a8343a9b680eaf"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."through"."2" = self.by-version."through"."2.3.8"; by-version."through"."2.3.8" = self.buildNodePackage { @@ -49087,7 +45849,7 @@ version = "2.3.8"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/through/-/through-2.3.8.tgz"; + url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; name = "through-2.3.8.tgz"; sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; }; @@ -49099,10 +45861,607 @@ os = [ ]; cpu = [ ]; }; + by-spec."through".">=2.2.7 <3" = + self.by-version."through"."2.3.8"; + by-spec."through"."^2.3.6" = + self.by-version."through"."2.3.8"; + by-spec."through"."^2.3.7" = + self.by-version."through"."2.3.8"; by-spec."through"."~2.3" = self.by-version."through"."2.3.8"; by-spec."through"."~2.3.1" = self.by-version."through"."2.3.8"; + by-spec."through"."~2.3.4" = + self.by-version."through"."2.3.8"; + by-spec."through"."~2.3.8" = + self.by-version."through"."2.3.8"; + by-spec."through2"."0.6.3" = + self.by-version."through2"."0.6.3"; + by-version."through2"."0.6.3" = self.buildNodePackage { + name = "through2-0.6.3"; + version = "0.6.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/through2/-/through2-0.6.3.tgz"; + name = "through2-0.6.3.tgz"; + sha1 = "795292fde9f254c2a368b38f9cc5d1bd4663afb6"; + }; + deps = { + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through2"."0.6.x" = + self.by-version."through2"."0.6.5"; + by-version."through2"."0.6.5" = self.buildNodePackage { + name = "through2-0.6.5"; + version = "0.6.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz"; + name = "through2-0.6.5.tgz"; + sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; + }; + deps = { + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through2"."^0.6.1" = + self.by-version."through2"."0.6.5"; + by-spec."through2"."^0.6.2" = + self.by-version."through2"."0.6.5"; + by-spec."through2"."^0.6.3" = + self.by-version."through2"."0.6.5"; + by-spec."through2"."^1.0.0" = + self.by-version."through2"."1.1.1"; + by-version."through2"."1.1.1" = self.buildNodePackage { + name = "through2-1.1.1"; + version = "1.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/through2/-/through2-1.1.1.tgz"; + name = "through2-1.1.1.tgz"; + sha1 = "0847cbc4449f3405574dbdccd9bb841b83ac3545"; + }; + deps = { + "readable-stream-1.1.13" = self.by-version."readable-stream"."1.1.13"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through2"."^2.0.0" = + self.by-version."through2"."2.0.1"; + by-version."through2"."2.0.1" = self.buildNodePackage { + name = "through2-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/through2/-/through2-2.0.1.tgz"; + name = "through2-2.0.1.tgz"; + sha1 = "384e75314d49f32de12eebb8136b8eb6b5d59da9"; + }; + deps = { + "readable-stream-2.0.6" = self.by-version."readable-stream"."2.0.6"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through2"."~0.5.1" = + self.by-version."through2"."0.5.1"; + by-version."through2"."0.5.1" = self.buildNodePackage { + name = "through2-0.5.1"; + version = "0.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/through2/-/through2-0.5.1.tgz"; + name = "through2-0.5.1.tgz"; + sha1 = "dfdd012eb9c700e2323fd334f38ac622ab372da7"; + }; + deps = { + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + "xtend-3.0.0" = self.by-version."xtend"."3.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."through2"."~0.6.1" = + self.by-version."through2"."0.6.5"; + by-spec."through2"."~0.6.3" = + self.by-version."through2"."0.6.5"; + by-spec."thunkify"."~2.1.1" = + self.by-version."thunkify"."2.1.2"; + by-version."thunkify"."2.1.2" = self.buildNodePackage { + name = "thunkify-2.1.2"; + version = "2.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/thunkify/-/thunkify-2.1.2.tgz"; + name = "thunkify-2.1.2.tgz"; + sha1 = "faa0e9d230c51acc95ca13a361ac05ca7e04553d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."thunky"."^0.1.0" = + self.by-version."thunky"."0.1.0"; + by-version."thunky"."0.1.0" = self.buildNodePackage { + name = "thunky-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/thunky/-/thunky-0.1.0.tgz"; + name = "thunky-0.1.0.tgz"; + sha1 = "bf30146824e2b6e67b0f2d7a4ac8beb26908684e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."thunky"."~0.1.0" = + self.by-version."thunky"."0.1.0"; + by-spec."tildify"."^1.0.0" = + self.by-version."tildify"."1.1.2"; + by-version."tildify"."1.1.2" = self.buildNodePackage { + name = "tildify-1.1.2"; + version = "1.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tildify/-/tildify-1.1.2.tgz"; + name = "tildify-1.1.2.tgz"; + sha1 = "9f611d8a2e93a5e50756db040f1cd2b7fd80859d"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."time".">=0.9.2" = + self.by-version."time"."0.11.4"; + by-version."time"."0.11.4" = self.buildNodePackage { + name = "time-0.11.4"; + version = "0.11.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/time/-/time-0.11.4.tgz"; + name = "time-0.11.4.tgz"; + sha1 = "ec3c8947d7fa488f3b1978b8110a68186f5d340f"; + }; + deps = { + "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."time-line"."^1.0.1" = + self.by-version."time-line"."1.0.1"; + by-version."time-line"."1.0.1" = self.buildNodePackage { + name = "time-line-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/time-line/-/time-line-1.0.1.tgz"; + name = "time-line-1.0.1.tgz"; + sha1 = "afb89542301c3b5010d118c66b5d63920f5e9a7a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."time-stamp"."^1.0.0" = + self.by-version."time-stamp"."1.0.1"; + by-version."time-stamp"."1.0.1" = self.buildNodePackage { + name = "time-stamp-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/time-stamp/-/time-stamp-1.0.1.tgz"; + name = "time-stamp-1.0.1.tgz"; + sha1 = "9f4bd23559c9365966f3302dbba2b07c6b99b151"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."timed-out"."^2.0.0" = + self.by-version."timed-out"."2.0.0"; + by-version."timed-out"."2.0.0" = self.buildNodePackage { + name = "timed-out-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz"; + name = "timed-out-2.0.0.tgz"; + sha1 = "f38b0ae81d3747d628001f41dafc652ace671c0a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."timers-browserify"."^1.0.1" = + self.by-version."timers-browserify"."1.4.2"; + by-version."timers-browserify"."1.4.2" = self.buildNodePackage { + name = "timers-browserify-1.4.2"; + version = "1.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/timers-browserify/-/timers-browserify-1.4.2.tgz"; + name = "timers-browserify-1.4.2.tgz"; + sha1 = "c9c58b575be8407375cb5e2462dacee74359f41d"; + }; + deps = { + "process-0.11.2" = self.by-version."process"."0.11.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."timespan"."~2.3.0" = + self.by-version."timespan"."2.3.0"; + by-version."timespan"."2.3.0" = self.buildNodePackage { + name = "timespan-2.3.0"; + version = "2.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/timespan/-/timespan-2.3.0.tgz"; + name = "timespan-2.3.0.tgz"; + sha1 = "4902ce040bd13d845c8f59b27e9d59bad6f39929"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."timezone"."*" = + self.by-version."timezone"."1.0.1"; + by-version."timezone"."1.0.1" = self.buildNodePackage { + name = "timezone-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/timezone/-/timezone-1.0.1.tgz"; + name = "timezone-1.0.1.tgz"; + sha1 = "3521e855fb33f90ef14cd2090ee1e1021ad902f4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "timezone" = self.by-version."timezone"."1.0.1"; + by-spec."tinycolor"."0.x" = + self.by-version."tinycolor"."0.0.1"; + by-version."tinycolor"."0.0.1" = self.buildNodePackage { + name = "tinycolor-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tinycolor/-/tinycolor-0.0.1.tgz"; + name = "tinycolor-0.0.1.tgz"; + sha1 = "320b5a52d83abb5978d81a3e887d4aefb15a6164"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."titanium"."*" = + self.by-version."titanium"."5.0.7"; + by-version."titanium"."5.0.7" = self.buildNodePackage { + name = "titanium-5.0.7"; + version = "5.0.7"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/titanium/-/titanium-5.0.7.tgz"; + name = "titanium-5.0.7.tgz"; + sha1 = "84270842a582aa0b2738cf827566af570f6f711e"; + }; + deps = { + "async-1.4.2" = self.by-version."async"."1.4.2"; + "colors-1.1.2" = self.by-version."colors"."1.1.2"; + "fields-0.1.24" = self.by-version."fields"."0.1.24"; + "humanize-0.0.9" = self.by-version."humanize"."0.0.9"; + "longjohn-0.2.9" = self.by-version."longjohn"."0.2.9"; + "moment-2.10.6" = self.by-version."moment"."2.10.6"; + "node-appc-0.2.31" = self.by-version."node-appc"."0.2.31"; + "request-2.62.0" = self.by-version."request"."2.62.0"; + "semver-5.0.3" = self.by-version."semver"."5.0.3"; + "sprintf-0.1.5" = self.by-version."sprintf"."0.1.5"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "winston-1.0.2" = self.by-version."winston"."1.0.2"; + "wrench-1.5.8" = self.by-version."wrench"."1.5.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "titanium" = self.by-version."titanium"."5.0.7"; + by-spec."tldtools"."0.0.19" = + self.by-version."tldtools"."0.0.19"; + by-version."tldtools"."0.0.19" = self.buildNodePackage { + name = "tldtools-0.0.19"; + version = "0.0.19"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tldtools/-/tldtools-0.0.19.tgz"; + name = "tldtools-0.0.19.tgz"; + sha1 = "1df2277a43e291fd0a929c0e096a0a0917d75b1b"; + }; + deps = { + "request-2.70.0" = self.by-version."request"."2.70.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tldtools".">=0.0.19" = + self.by-version."tldtools"."0.0.24"; + by-version."tldtools"."0.0.24" = self.buildNodePackage { + name = "tldtools-0.0.24"; + version = "0.0.24"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tldtools/-/tldtools-0.0.24.tgz"; + name = "tldtools-0.0.24.tgz"; + sha1 = "c9c793d04d7fbdccb90b1c02c019f7259375d612"; + }; + deps = { + "request-2.70.0" = self.by-version."request"."2.70.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tldtools".">=0.0.6" = + self.by-version."tldtools"."0.0.24"; + by-spec."tls-connect"."^0.2.2" = + self.by-version."tls-connect"."0.2.2"; + by-version."tls-connect"."0.2.2" = self.buildNodePackage { + name = "tls-connect-0.2.2"; + version = "0.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tls-connect/-/tls-connect-0.2.2.tgz"; + name = "tls-connect-0.2.2.tgz"; + sha1 = "1d88d4f4cb829a0741b6acd05d1df73e0d566fd0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tmp"."0.0.24" = + self.by-version."tmp"."0.0.24"; + by-version."tmp"."0.0.24" = self.buildNodePackage { + name = "tmp-0.0.24"; + version = "0.0.24"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.24.tgz"; + name = "tmp-0.0.24.tgz"; + sha1 = "d6a5e198d14a9835cc6f2d7c3d9e302428c8cf12"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tmp"."~0.0.20" = + self.by-version."tmp"."0.0.28"; + by-version."tmp"."0.0.28" = self.buildNodePackage { + name = "tmp-0.0.28"; + version = "0.0.28"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tmp/-/tmp-0.0.28.tgz"; + name = "tmp-0.0.28.tgz"; + sha1 = "172735b7f614ea7af39664fa84cf0de4e515d120"; + }; + deps = { + "os-tmpdir-1.0.1" = self.by-version."os-tmpdir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."to-array"."0.1.3" = + self.by-version."to-array"."0.1.3"; + by-version."to-array"."0.1.3" = self.buildNodePackage { + name = "to-array-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz"; + name = "to-array-0.1.3.tgz"; + sha1 = "d45dadc6363417f60f28474fea50ecddbb4f4991"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."to-array"."0.1.4" = + self.by-version."to-array"."0.1.4"; + by-version."to-array"."0.1.4" = self.buildNodePackage { + name = "to-array-0.1.4"; + version = "0.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz"; + name = "to-array-0.1.4.tgz"; + sha1 = "17e6c11f73dd4f3d74cda7a4ff3238e9ad9bf890"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."to-arraybuffer"."^1.0.0" = + self.by-version."to-arraybuffer"."1.0.1"; + by-version."to-arraybuffer"."1.0.1" = self.buildNodePackage { + name = "to-arraybuffer-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz"; + name = "to-arraybuffer-1.0.1.tgz"; + sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tomahawk"."0.1.6" = + self.by-version."tomahawk"."0.1.6"; + by-version."tomahawk"."0.1.6" = self.buildNodePackage { + name = "tomahawk-0.1.6"; + version = "0.1.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/tomahawk/-/tomahawk-0.1.6.tgz"; + name = "tomahawk-0.1.6.tgz"; + sha1 = "9726580ec9f51c148cf2030c6255c110243d49a5"; + }; + deps = { + "body-parser-1.5.0" = self.by-version."body-parser"."1.5.0"; + "connect-3.0.2" = self.by-version."connect"."3.0.2"; + "errorhandler-1.1.1" = self.by-version."errorhandler"."1.1.1"; + "express-4.6.1" = self.by-version."express"."4.6.1"; + "morgan-1.2.0" = self.by-version."morgan"."1.2.0"; + "node-options-0.0.6" = self.by-version."node-options"."0.0.6"; + "socket.io-1.0.6" = self.by-version."socket.io"."1.0.6"; + "winston-0.7.3" = self.by-version."winston"."0.7.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tomahawk-plugin-kv-memory-store"."0.0.3" = + self.by-version."tomahawk-plugin-kv-memory-store"."0.0.3"; + by-version."tomahawk-plugin-kv-memory-store"."0.0.3" = self.buildNodePackage { + name = "tomahawk-plugin-kv-memory-store-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tomahawk-plugin-kv-memory-store/-/tomahawk-plugin-kv-memory-store-0.0.3.tgz"; + name = "tomahawk-plugin-kv-memory-store-0.0.3.tgz"; + sha1 = "120547598bd72ca72bd2eedb0ee03ae85c667b02"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."toobusy-js"."^0.4.2" = + self.by-version."toobusy-js"."0.4.3"; + by-version."toobusy-js"."0.4.3" = self.buildNodePackage { + name = "toobusy-js-0.4.3"; + version = "0.4.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/toobusy-js/-/toobusy-js-0.4.3.tgz"; + name = "toobusy-js-0.4.3.tgz"; + sha1 = "0db1a2ca73701b3f8c3b7df093801bfdad4ba5a7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."topo"."1.x.x" = self.by-version."topo"."1.1.0"; by-version."topo"."1.1.0" = self.buildNodePackage { @@ -49110,7 +46469,7 @@ version = "1.1.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/topo/-/topo-1.1.0.tgz"; + url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz"; name = "topo-1.1.0.tgz"; sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5"; }; @@ -49123,14 +46482,146 @@ os = [ ]; cpu = [ ]; }; - by-spec."tough-cookie"."~2.2.0" = + by-spec."torrent-discovery"."^5.2.0" = + self.by-version."torrent-discovery"."5.4.0"; + by-version."torrent-discovery"."5.4.0" = self.buildNodePackage { + name = "torrent-discovery-5.4.0"; + version = "5.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/torrent-discovery/-/torrent-discovery-5.4.0.tgz"; + name = "torrent-discovery-5.4.0.tgz"; + sha1 = "2d17d82cf669ada7f9dfe75db4b31f7034b71e29"; + }; + deps = { + "bittorrent-dht-6.4.2" = self.by-version."bittorrent-dht"."6.4.2"; + "bittorrent-tracker-7.7.0" = self.by-version."bittorrent-tracker"."7.7.0"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "re-emitter-1.1.3" = self.by-version."re-emitter"."1.1.3"; + "run-parallel-1.1.6" = self.by-version."run-parallel"."1.1.6"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."torrent-piece"."^1.0.0" = + self.by-version."torrent-piece"."1.1.0"; + by-version."torrent-piece"."1.1.0" = self.buildNodePackage { + name = "torrent-piece-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/torrent-piece/-/torrent-piece-1.1.0.tgz"; + name = "torrent-piece-1.1.0.tgz"; + sha1 = "dd3ae8dba3e58df5c9ed3457c055177849d82854"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."torrent-stream"."^0.18.1" = + self.by-version."torrent-stream"."0.18.1"; + by-version."torrent-stream"."0.18.1" = self.buildNodePackage { + name = "torrent-stream-0.18.1"; + version = "0.18.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-0.18.1.tgz"; + name = "torrent-stream-0.18.1.tgz"; + sha1 = "e2e8ca44d81f16fbe5646e0ebb05f5418fea9bf6"; + }; + deps = { + "bitfield-0.1.0" = self.by-version."bitfield"."0.1.0"; + "bittorrent-dht-3.2.6" = self.by-version."bittorrent-dht"."3.2.6"; + "bittorrent-tracker-2.12.1" = self.by-version."bittorrent-tracker"."2.12.1"; + "bncode-0.5.3" = self.by-version."bncode"."0.5.3"; + "compact2string-1.4.0" = self.by-version."compact2string"."1.4.0"; + "end-of-stream-0.1.5" = self.by-version."end-of-stream"."0.1.5"; + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "ip-0.3.3" = self.by-version."ip"."0.3.3"; + "ip-set-1.0.0" = self.by-version."ip-set"."1.0.0"; + "magnet-uri-2.0.1" = self.by-version."magnet-uri"."2.0.1"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "parse-torrent-4.1.0" = self.by-version."parse-torrent"."4.1.0"; + "peer-wire-swarm-0.9.2" = self.by-version."peer-wire-swarm"."0.9.2"; + "random-access-file-0.3.2" = self.by-version."random-access-file"."0.3.2"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "thunky-0.1.0" = self.by-version."thunky"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."torrent-stream"."^1.0.1" = + self.by-version."torrent-stream"."1.0.2"; + by-version."torrent-stream"."1.0.2" = self.buildNodePackage { + name = "torrent-stream-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/torrent-stream/-/torrent-stream-1.0.2.tgz"; + name = "torrent-stream-1.0.2.tgz"; + sha1 = "99642b93c4eca1ad182fc807b5bcaa6ec40bb93e"; + }; + deps = { + "bitfield-0.1.0" = self.by-version."bitfield"."0.1.0"; + "bncode-0.5.3" = self.by-version."bncode"."0.5.3"; + "end-of-stream-0.1.5" = self.by-version."end-of-stream"."0.1.5"; + "fs-chunk-store-1.4.0" = self.by-version."fs-chunk-store"."1.4.0"; + "hat-0.0.3" = self.by-version."hat"."0.0.3"; + "immediate-chunk-store-1.0.8" = self.by-version."immediate-chunk-store"."1.0.8"; + "ip-set-1.0.0" = self.by-version."ip-set"."1.0.0"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "parse-torrent-4.1.0" = self.by-version."parse-torrent"."4.1.0"; + "peer-wire-swarm-0.12.1" = self.by-version."peer-wire-swarm"."0.12.1"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "torrent-discovery-5.4.0" = self.by-version."torrent-discovery"."5.4.0"; + "torrent-piece-1.1.0" = self.by-version."torrent-piece"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."touch"."1.0.0" = + self.by-version."touch"."1.0.0"; + by-version."touch"."1.0.0" = self.buildNodePackage { + name = "touch-1.0.0"; + version = "1.0.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/touch/-/touch-1.0.0.tgz"; + name = "touch-1.0.0.tgz"; + sha1 = "449cbe2dbae5a8c8038e30d71fa0ff464947c4de"; + }; + deps = { + "nopt-1.0.10" = self.by-version."nopt"."1.0.10"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tough-cookie".">=0.12.0" = self.by-version."tough-cookie"."2.2.2"; by-version."tough-cookie"."2.2.2" = self.buildNodePackage { name = "tough-cookie-2.2.2"; version = "2.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.2.tgz"; name = "tough-cookie-2.2.2.tgz"; sha1 = "c83a1830f4e5ef0b93ef2a3488e724f8de016ac7"; }; @@ -49142,6 +46633,49 @@ os = [ ]; cpu = [ ]; }; + by-spec."tough-cookie"."~2.2.0" = + self.by-version."tough-cookie"."2.2.2"; + by-spec."transformers"."2.1.0" = + self.by-version."transformers"."2.1.0"; + by-version."transformers"."2.1.0" = self.buildNodePackage { + name = "transformers-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/transformers/-/transformers-2.1.0.tgz"; + name = "transformers-2.1.0.tgz"; + sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7"; + }; + deps = { + "promise-2.0.0" = self.by-version."promise"."2.0.0"; + "css-1.0.8" = self.by-version."css"."1.0.8"; + "uglify-js-2.2.5" = self.by-version."uglify-js"."2.2.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."traverse".">=0.2.4" = + self.by-version."traverse"."0.6.6"; + by-version."traverse"."0.6.6" = self.buildNodePackage { + name = "traverse-0.6.6"; + version = "0.6.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; + name = "traverse-0.6.6.tgz"; + sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."trim-newlines"."^1.0.0" = self.by-version."trim-newlines"."1.0.0"; by-version."trim-newlines"."1.0.0" = self.buildNodePackage { @@ -49149,7 +46683,7 @@ version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"; + url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz"; name = "trim-newlines-1.0.0.tgz"; sha1 = "5887966bb582a4503a41eb524f7d35011815a613"; }; @@ -49161,52 +46695,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."tsd"."~0.6.5" = - self.by-version."tsd"."0.6.5"; - by-version."tsd"."0.6.5" = self.buildNodePackage { - name = "tsd-0.6.5"; - version = "0.6.5"; - bin = true; + by-spec."truncate"."~1.0.2" = + self.by-version."truncate"."1.0.5"; + by-version."truncate"."1.0.5" = self.buildNodePackage { + name = "truncate-1.0.5"; + version = "1.0.5"; + bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tsd/-/tsd-0.6.5.tgz"; - name = "tsd-0.6.5.tgz"; - sha1 = "34a0b64c1db6a70b3860fe4f5571d9d1357421ad"; + url = "https://registry.npmjs.org/truncate/-/truncate-1.0.5.tgz"; + name = "truncate-1.0.5.tgz"; + sha1 = "c636c6c1f50eed7c927af06c1dbffab53c7abe28"; }; deps = { - "assertion-error-1.0.0" = self.by-version."assertion-error"."1.0.0"; - "bl-0.9.5" = self.by-version."bl"."0.9.5"; - "bluebird-1.2.4" = self.by-version."bluebird"."1.2.4"; - "chalk-1.1.1" = self.by-version."chalk"."1.1.1"; - "colors-1.1.2" = self.by-version."colors"."1.1.2"; - "deep-freeze-0.0.1" = self.by-version."deep-freeze"."0.0.1"; - "definition-header-0.1.0" = self.by-version."definition-header"."0.1.0"; - "detect-indent-0.2.0" = self.by-version."detect-indent"."0.2.0"; - "diff-1.4.0" = self.by-version."diff"."1.4.0"; - "event-stream-3.1.7" = self.by-version."event-stream"."3.1.7"; - "exit-0.1.2" = self.by-version."exit"."0.1.2"; - "glob-4.5.3" = self.by-version."glob"."4.5.3"; - "joi-4.9.0" = self.by-version."joi"."4.9.0"; - "joi-assert-0.0.3" = self.by-version."joi-assert"."0.0.3"; - "jsesc-0.5.0" = self.by-version."jsesc"."0.5.0"; - "json-pointer-0.2.2" = self.by-version."json-pointer"."0.2.2"; - "lazy.js-0.3.2" = self.by-version."lazy.js"."0.3.2"; - "lru-cache-2.5.2" = self.by-version."lru-cache"."2.5.2"; - "minimatch-1.0.0" = self.by-version."minimatch"."1.0.0"; - "minimist-1.2.0" = self.by-version."minimist"."1.2.0"; - "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; - "minitable-0.0.4" = self.by-version."minitable"."0.0.4"; - "miniwrite-0.1.4" = self.by-version."miniwrite"."0.1.4"; - "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; - "open-0.0.5" = self.by-version."open"."0.0.5"; - "request-2.69.0" = self.by-version."request"."2.69.0"; - "rimraf-2.2.8" = self.by-version."rimraf"."2.2.8"; - "semver-4.3.6" = self.by-version."semver"."4.3.6"; - "type-detect-0.1.2" = self.by-version."type-detect"."0.1.2"; - "universal-analytics-0.3.11" = self.by-version."universal-analytics"."0.3.11"; - "update-notifier-0.2.2" = self.by-version."update-notifier"."0.2.2"; - "uri-templates-0.1.9" = self.by-version."uri-templates"."0.1.9"; - "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; - "verror-1.4.0" = self.by-version."verror"."1.4.0"; }; optionalDependencies = { }; @@ -49214,15 +46714,73 @@ os = [ ]; cpu = [ ]; }; - "tsd" = self.by-version."tsd"."0.6.5"; - by-spec."tunnel-agent"."~0.4.1" = + by-spec."tryit"."^1.0.1" = + self.by-version."tryit"."1.0.2"; + by-version."tryit"."1.0.2" = self.buildNodePackage { + name = "tryit-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tryit/-/tryit-1.0.2.tgz"; + name = "tryit-1.0.2.tgz"; + sha1 = "c196b0073e6b1c595d93c9c830855b7acc32a453"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tryor"."~0.1.2" = + self.by-version."tryor"."0.1.2"; + by-version."tryor"."0.1.2" = self.buildNodePackage { + name = "tryor-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz"; + name = "tryor-0.1.2.tgz"; + sha1 = "8145e4ca7caff40acde3ccf946e8b8bb75b4172b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tty-browserify"."0.0.0" = + self.by-version."tty-browserify"."0.0.0"; + by-version."tty-browserify"."0.0.0" = self.buildNodePackage { + name = "tty-browserify-0.0.0"; + version = "0.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz"; + name = "tty-browserify-0.0.0.tgz"; + sha1 = "a157ba402da24e9bf957f9aa69d524eed42901a6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tty-browserify"."~0.0.0" = + self.by-version."tty-browserify"."0.0.0"; + by-spec."tunnel-agent"."^0.4.0" = self.by-version."tunnel-agent"."0.4.2"; by-version."tunnel-agent"."0.4.2" = self.buildNodePackage { name = "tunnel-agent-0.4.2"; version = "0.4.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz"; + url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz"; name = "tunnel-agent-0.4.2.tgz"; sha1 = "1104e3f36ac87125c287270067d582d18133bfee"; }; @@ -49234,16 +46792,77 @@ os = [ ]; cpu = [ ]; }; + by-spec."tunnel-agent"."~0.2.0" = + self.by-version."tunnel-agent"."0.2.0"; + by-version."tunnel-agent"."0.2.0" = self.buildNodePackage { + name = "tunnel-agent-0.2.0"; + version = "0.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz"; + name = "tunnel-agent-0.2.0.tgz"; + sha1 = "6853c2afb1b2109e45629e492bde35f459ea69e8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tunnel-agent"."~0.3.0" = + self.by-version."tunnel-agent"."0.3.0"; + by-version."tunnel-agent"."0.3.0" = self.buildNodePackage { + name = "tunnel-agent-0.3.0"; + version = "0.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.3.0.tgz"; + name = "tunnel-agent-0.3.0.tgz"; + sha1 = "ad681b68f5321ad2827c4cfb1b7d5df2cfe942ee"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."tunnel-agent"."~0.4.0" = + self.by-version."tunnel-agent"."0.4.2"; + by-spec."tunnel-agent"."~0.4.1" = + self.by-version."tunnel-agent"."0.4.2"; + by-spec."tv4"."^1.2.7" = + self.by-version."tv4"."1.2.7"; + by-version."tv4"."1.2.7" = self.buildNodePackage { + name = "tv4-1.2.7"; + version = "1.2.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/tv4/-/tv4-1.2.7.tgz"; + name = "tv4-1.2.7.tgz"; + sha1 = "bd29389afc73ade49ae5f48142b5d544bf68d120"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."tweetnacl".">=0.13.0 <1.0.0" = - self.by-version."tweetnacl"."0.14.1"; - by-version."tweetnacl"."0.14.1" = self.buildNodePackage { - name = "tweetnacl-0.14.1"; - version = "0.14.1"; + self.by-version."tweetnacl"."0.14.3"; + by-version."tweetnacl"."0.14.3" = self.buildNodePackage { + name = "tweetnacl-0.14.3"; + version = "0.14.3"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.1.tgz"; - name = "tweetnacl-0.14.1.tgz"; - sha1 = "37c6a1fb5cd4b63b7acee450d8419d9c0024cc03"; + url = "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.3.tgz"; + name = "tweetnacl-0.14.3.tgz"; + sha1 = "3da382f670f25ded78d7b3d1792119bca0b7132d"; }; deps = { }; @@ -49253,41 +46872,26 @@ os = [ ]; cpu = [ ]; }; - by-spec."type-detect"."~0.1.2" = - self.by-version."type-detect"."0.1.2"; - by-version."type-detect"."0.1.2" = self.buildNodePackage { - name = "type-detect-0.1.2"; - version = "0.1.2"; + by-spec."twilio".">=1.1.4" = + self.by-version."twilio"."2.9.1"; + by-version."twilio"."2.9.1" = self.buildNodePackage { + name = "twilio-2.9.1"; + version = "2.9.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/type-detect/-/type-detect-0.1.2.tgz"; - name = "type-detect-0.1.2.tgz"; - sha1 = "c88e853e54e5abd88f1bf3194b477c853c94f854"; + url = "https://registry.npmjs.org/twilio/-/twilio-2.9.1.tgz"; + name = "twilio-2.9.1.tgz"; + sha1 = "043bfa240ccb33f5f76b771434c2421a0144bc85"; }; deps = { - }; - optionalDependencies = { - }; - peerDependencies = []; - os = [ ]; - cpu = [ ]; - }; - by-spec."universal-analytics"."~0.3.4" = - self.by-version."universal-analytics"."0.3.11"; - by-version."universal-analytics"."0.3.11" = self.buildNodePackage { - name = "universal-analytics-0.3.11"; - version = "0.3.11"; - bin = false; - src = fetchurl { - url = "http://registry.npmjs.org/universal-analytics/-/universal-analytics-0.3.11.tgz"; - name = "universal-analytics-0.3.11.tgz"; - sha1 = "512879193a12a66dcbd9185121389bab913cd4b6"; - }; - deps = { - "request-2.69.0" = self.by-version."request"."2.69.0"; + "request-2.55.0" = self.by-version."request"."2.55.0"; "underscore-1.8.3" = self.by-version."underscore"."1.8.3"; - "node-uuid-1.4.7" = self.by-version."node-uuid"."1.4.7"; - "async-0.2.10" = self.by-version."async"."0.2.10"; + "jsonwebtoken-5.4.1" = self.by-version."jsonwebtoken"."5.4.1"; + "jwt-simple-0.1.0" = self.by-version."jwt-simple"."0.1.0"; + "q-0.9.7" = self.by-version."q"."0.9.7"; + "scmp-0.0.3" = self.by-version."scmp"."0.0.3"; + "deprecate-0.1.0" = self.by-version."deprecate"."0.1.0"; + "string.prototype.startswith-0.2.0" = self.by-version."string.prototype.startswith"."0.2.0"; }; optionalDependencies = { }; @@ -49295,22 +46899,1189 @@ os = [ ]; cpu = [ ]; }; - by-spec."update-notifier"."^0.2.2" = - self.by-version."update-notifier"."0.2.2"; - by-version."update-notifier"."0.2.2" = self.buildNodePackage { - name = "update-notifier-0.2.2"; - version = "0.2.2"; + by-spec."twitter-ng"."0.6.2" = + self.by-version."twitter-ng"."0.6.2"; + by-version."twitter-ng"."0.6.2" = self.buildNodePackage { + name = "twitter-ng-0.6.2"; + version = "0.6.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/update-notifier/-/update-notifier-0.2.2.tgz"; - name = "update-notifier-0.2.2.tgz"; - sha1 = "e69b3a784b4e686a2acd98f5e66944591996e187"; + url = "https://registry.npmjs.org/twitter-ng/-/twitter-ng-0.6.2.tgz"; + name = "twitter-ng-0.6.2.tgz"; + sha1 = "13707115dd04c9bd1f2c646da976589be4d64bc4"; }; deps = { - "chalk-0.5.1" = self.by-version."chalk"."0.5.1"; - "configstore-0.3.2" = self.by-version."configstore"."0.3.2"; + "oauth-0.9.14" = self.by-version."oauth"."0.9.14"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-check"."~0.3.2" = + self.by-version."type-check"."0.3.2"; + by-version."type-check"."0.3.2" = self.buildNodePackage { + name = "type-check-0.3.2"; + version = "0.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz"; + name = "type-check-0.3.2.tgz"; + sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; + }; + deps = { + "prelude-ls-1.1.2" = self.by-version."prelude-ls"."1.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-detect"."0.1.1" = + self.by-version."type-detect"."0.1.1"; + by-version."type-detect"."0.1.1" = self.buildNodePackage { + name = "type-detect-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-detect/-/type-detect-0.1.1.tgz"; + name = "type-detect-0.1.1.tgz"; + sha1 = "0ba5ec2a885640e470ea4e8505971900dac58822"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-detect"."^1.0.0" = + self.by-version."type-detect"."1.0.0"; + by-version."type-detect"."1.0.0" = self.buildNodePackage { + name = "type-detect-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-detect/-/type-detect-1.0.0.tgz"; + name = "type-detect-1.0.0.tgz"; + sha1 = "762217cc06db258ec48908a1298e8b95121e8ea2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-is"."~1.3.2" = + self.by-version."type-is"."1.3.2"; + by-version."type-is"."1.3.2" = self.buildNodePackage { + name = "type-is-1.3.2"; + version = "1.3.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-is/-/type-is-1.3.2.tgz"; + name = "type-is-1.3.2.tgz"; + sha1 = "4f2a5dc58775ca1630250afc7186f8b36309d1bb"; + }; + deps = { + "media-typer-0.2.0" = self.by-version."media-typer"."0.2.0"; + "mime-types-1.0.2" = self.by-version."mime-types"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-is"."~1.5.2" = + self.by-version."type-is"."1.5.7"; + by-version."type-is"."1.5.7" = self.buildNodePackage { + name = "type-is-1.5.7"; + version = "1.5.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-is/-/type-is-1.5.7.tgz"; + name = "type-is-1.5.7.tgz"; + sha1 = "b9368a593cc6ef7d0645e78b2f4c64cbecd05e90"; + }; + deps = { + "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; + "mime-types-2.0.14" = self.by-version."mime-types"."2.0.14"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-is"."~1.6.10" = + self.by-version."type-is"."1.6.12"; + by-version."type-is"."1.6.12" = self.buildNodePackage { + name = "type-is-1.6.12"; + version = "1.6.12"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-is/-/type-is-1.6.12.tgz"; + name = "type-is-1.6.12.tgz"; + sha1 = "0352a9dfbfff040fe668cc153cc95829c354173e"; + }; + deps = { + "media-typer-0.3.0" = self.by-version."media-typer"."0.3.0"; + "mime-types-2.1.10" = self.by-version."mime-types"."2.1.10"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."type-is"."~1.6.11" = + self.by-version."type-is"."1.6.12"; + by-spec."type-is"."~1.6.4" = + self.by-version."type-is"."1.6.12"; + by-spec."type-is"."~1.6.6" = + self.by-version."type-is"."1.6.12"; + by-spec."type-of-is"."^3.4.0" = + self.by-version."type-of-is"."3.4.0"; + by-version."type-of-is"."3.4.0" = self.buildNodePackage { + name = "type-of-is-3.4.0"; + version = "3.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/type-of-is/-/type-of-is-3.4.0.tgz"; + name = "type-of-is-3.4.0.tgz"; + sha1 = "700dc096fbc9b86e4f79687beeb99e953d471508"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typechecker"."~2.0.1" = + self.by-version."typechecker"."2.0.8"; + by-version."typechecker"."2.0.8" = self.buildNodePackage { + name = "typechecker-2.0.8"; + version = "2.0.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/typechecker/-/typechecker-2.0.8.tgz"; + name = "typechecker-2.0.8.tgz"; + sha1 = "e83da84bb64c584ccb345838576c40b0337db82e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typedarray"."~0.0.5" = + self.by-version."typedarray"."0.0.6"; + by-version."typedarray"."0.0.6" = self.buildNodePackage { + name = "typedarray-0.0.6"; + version = "0.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz"; + name = "typedarray-0.0.6.tgz"; + sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typescript"."*" = + self.by-version."typescript"."1.9.0-dev.20160408"; + by-version."typescript"."1.9.0-dev.20160408" = self.buildNodePackage { + name = "typescript-1.9.0-dev.20160408"; + version = "1.9.0-dev.20160408"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/typescript/-/typescript-1.9.0-dev.20160408.tgz"; + name = "typescript-1.9.0-dev.20160408.tgz"; + sha1 = "0fab58c2fa44bd7562c9b410a495b29acfce4689"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "typescript" = self.by-version."typescript"."1.9.0-dev.20160408"; + by-spec."typescript"."=1.0.1" = + self.by-version."typescript"."1.0.1"; + by-version."typescript"."1.0.1" = self.buildNodePackage { + name = "typescript-1.0.1"; + version = "1.0.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/typescript/-/typescript-1.0.1.tgz"; + name = "typescript-1.0.1.tgz"; + sha1 = "e8eacde3084a091d3fe29b60ac5862252662a25a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typewise"."^1.0.3" = + self.by-version."typewise"."1.0.3"; + by-version."typewise"."1.0.3" = self.buildNodePackage { + name = "typewise-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/typewise/-/typewise-1.0.3.tgz"; + name = "typewise-1.0.3.tgz"; + sha1 = "1067936540af97937cc5dcf9922486e9fa284651"; + }; + deps = { + "typewise-core-1.2.0" = self.by-version."typewise-core"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typewise-core"."^1.2" = + self.by-version."typewise-core"."1.2.0"; + by-version."typewise-core"."1.2.0" = self.buildNodePackage { + name = "typewise-core-1.2.0"; + version = "1.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/typewise-core/-/typewise-core-1.2.0.tgz"; + name = "typewise-core-1.2.0.tgz"; + sha1 = "97eb91805c7f55d2f941748fa50d315d991ef195"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."typewise-core"."^1.2.0" = + self.by-version."typewise-core"."1.2.0"; + by-spec."typewiselite"."~1.0.0" = + self.by-version."typewiselite"."1.0.0"; + by-version."typewiselite"."1.0.0" = self.buildNodePackage { + name = "typewiselite-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/typewiselite/-/typewiselite-1.0.0.tgz"; + name = "typewiselite-1.0.0.tgz"; + sha1 = "c8882fa1bb1092c06005a97f34ef5c8508e3664e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ua-parser-js"."^0.7.9" = + self.by-version."ua-parser-js"."0.7.10"; + by-version."ua-parser-js"."0.7.10" = self.buildNodePackage { + name = "ua-parser-js-0.7.10"; + version = "0.7.10"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-0.7.10.tgz"; + name = "ua-parser-js-0.7.10.tgz"; + sha1 = "917559ddcce07cbc09ece7d80495e4c268f4ef9f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uc.micro"."^1.0.0" = + self.by-version."uc.micro"."1.0.0"; + by-version."uc.micro"."1.0.0" = self.buildNodePackage { + name = "uc.micro-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.0.tgz"; + name = "uc.micro-1.0.0.tgz"; + sha1 = "4c5a6dee941b515a5bd5cf5d05b121e0e49c5fb7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uglify-js"."*" = + self.by-version."uglify-js"."2.6.2"; + by-version."uglify-js"."2.6.2" = self.buildNodePackage { + name = "uglify-js-2.6.2"; + version = "2.6.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.6.2.tgz"; + name = "uglify-js-2.6.2.tgz"; + sha1 = "f50be88a42cd396a6251dc52ab372f71cc12fef0"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + "uglify-to-browserify-1.0.2" = self.by-version."uglify-to-browserify"."1.0.2"; + "yargs-3.10.0" = self.by-version."yargs"."3.10.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "uglify-js" = self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-js"."1.2.5" = + self.by-version."uglify-js"."1.2.5"; + by-version."uglify-js"."1.2.5" = self.buildNodePackage { + name = "uglify-js-1.2.5"; + version = "1.2.5"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-1.2.5.tgz"; + name = "uglify-js-1.2.5.tgz"; + sha1 = "b542c2c76f78efb34b200b20177634330ff702b6"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uglify-js"."2.4.24" = + self.by-version."uglify-js"."2.4.24"; + by-version."uglify-js"."2.4.24" = self.buildNodePackage { + name = "uglify-js-2.4.24"; + version = "2.4.24"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.4.24.tgz"; + name = "uglify-js-2.4.24.tgz"; + sha1 = "fad5755c1e1577658bb06ff9ab6e548c95bebd6e"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "source-map-0.1.34" = self.by-version."source-map"."0.1.34"; + "uglify-to-browserify-1.0.2" = self.by-version."uglify-to-browserify"."1.0.2"; + "yargs-3.5.4" = self.by-version."yargs"."3.5.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uglify-js"."2.6.2" = + self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-js"."^2.4.19" = + self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-js"."^2.6" = + self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-js"."~2.2.5" = + self.by-version."uglify-js"."2.2.5"; + by-version."uglify-js"."2.2.5" = self.buildNodePackage { + name = "uglify-js-2.2.5"; + version = "2.2.5"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.2.5.tgz"; + name = "uglify-js-2.2.5.tgz"; + sha1 = "a6e02a70d839792b9780488b7b8b184c095c99c7"; + }; + deps = { + "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uglify-js"."~2.3" = + self.by-version."uglify-js"."2.3.6"; + by-version."uglify-js"."2.3.6" = self.buildNodePackage { + name = "uglify-js-2.3.6"; + version = "2.3.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.3.6.tgz"; + name = "uglify-js-2.3.6.tgz"; + sha1 = "fa0984770b428b7a9b2a8058f46355d14fef211a"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "source-map-0.1.43" = self.by-version."source-map"."0.1.43"; + "optimist-0.3.7" = self.by-version."optimist"."0.3.7"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uglify-js"."~2.6.0" = + self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-js"."~2.6.2" = + self.by-version."uglify-js"."2.6.2"; + by-spec."uglify-to-browserify"."~1.0.0" = + self.by-version."uglify-to-browserify"."1.0.2"; + by-version."uglify-to-browserify"."1.0.2" = self.buildNodePackage { + name = "uglify-to-browserify-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz"; + name = "uglify-to-browserify-1.0.2.tgz"; + sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid"."0.0.2" = + self.by-version."uid"."0.0.2"; + by-version."uid"."0.0.2" = self.buildNodePackage { + name = "uid-0.0.2"; + version = "0.0.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/uid/-/uid-0.0.2.tgz"; + name = "uid-0.0.2.tgz"; + sha1 = "5e4a5d4b78138b4f70f89fd3c76fc59aa9d2f103"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid-number"."0.0.5" = + self.by-version."uid-number"."0.0.5"; + by-version."uid-number"."0.0.5" = self.buildNodePackage { + name = "uid-number-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.5.tgz"; + name = "uid-number-0.0.5.tgz"; + sha1 = "5a3db23ef5dbd55b81fce0ec9a2ac6fccdebb81e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid-number"."0.0.6" = + self.by-version."uid-number"."0.0.6"; + by-version."uid-number"."0.0.6" = self.buildNodePackage { + name = "uid-number-0.0.6"; + version = "0.0.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uid-number/-/uid-number-0.0.6.tgz"; + name = "uid-number-0.0.6.tgz"; + sha1 = "0ea10e8035e8eb5b8e4449f06da1c730663baa81"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid-number"."~0.0.6" = + self.by-version."uid-number"."0.0.6"; + by-spec."uid-safe"."2.1.0" = + self.by-version."uid-safe"."2.1.0"; + by-version."uid-safe"."2.1.0" = self.buildNodePackage { + name = "uid-safe-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.0.tgz"; + name = "uid-safe-2.1.0.tgz"; + sha1 = "d00ce22aeb721dfe7c25bb2df49fd00966d38a64"; + }; + deps = { + "base64-url-1.2.1" = self.by-version."base64-url"."1.2.1"; + "random-bytes-1.0.0" = self.by-version."random-bytes"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid-safe"."~2.0.0" = + self.by-version."uid-safe"."2.0.0"; + by-version."uid-safe"."2.0.0" = self.buildNodePackage { + name = "uid-safe-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.0.0.tgz"; + name = "uid-safe-2.0.0.tgz"; + sha1 = "a7f3c6ca64a1f6a5d04ec0ef3e4c3d5367317137"; + }; + deps = { + "base64-url-1.2.1" = self.by-version."base64-url"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid2"."0.0.3" = + self.by-version."uid2"."0.0.3"; + by-version."uid2"."0.0.3" = self.buildNodePackage { + name = "uid2-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uid2/-/uid2-0.0.3.tgz"; + name = "uid2-0.0.3.tgz"; + sha1 = "483126e11774df2f71b8b639dcd799c376162b82"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uid2"."0.0.x" = + self.by-version."uid2"."0.0.3"; + by-spec."uid2"."~0.0.2" = + self.by-version."uid2"."0.0.3"; + by-spec."ultron"."1.0.x" = + self.by-version."ultron"."1.0.2"; + by-version."ultron"."1.0.2" = self.buildNodePackage { + name = "ultron-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz"; + name = "ultron-1.0.2.tgz"; + sha1 = "ace116ab557cd197386a4e88f4685378c8b2e4fa"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."umask"."~1.1.0" = + self.by-version."umask"."1.1.0"; + by-version."umask"."1.1.0" = self.buildNodePackage { + name = "umask-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/umask/-/umask-1.1.0.tgz"; + name = "umask-1.1.0.tgz"; + sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."umd"."^3.0.0" = + self.by-version."umd"."3.0.1"; + by-version."umd"."3.0.1" = self.buildNodePackage { + name = "umd-3.0.1"; + version = "3.0.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/umd/-/umd-3.0.1.tgz"; + name = "umd-3.0.1.tgz"; + sha1 = "8ae556e11011f63c2596708a8837259f01b3d60e"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."undefsafe"."0.0.3" = + self.by-version."undefsafe"."0.0.3"; + by-version."undefsafe"."0.0.3" = self.buildNodePackage { + name = "undefsafe-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz"; + name = "undefsafe-0.0.3.tgz"; + sha1 = "ecca3a03e56b9af17385baac812ac83b994a962f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."*" = + self.by-version."underscore"."1.8.3"; + by-version."underscore"."1.8.3" = self.buildNodePackage { + name = "underscore-1.8.3"; + version = "1.8.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz"; + name = "underscore-1.8.3.tgz"; + sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "underscore" = self.by-version."underscore"."1.8.3"; + by-spec."underscore"."1.2.1" = + self.by-version."underscore"."1.2.1"; + by-version."underscore"."1.2.1" = self.buildNodePackage { + name = "underscore-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.2.1.tgz"; + name = "underscore-1.2.1.tgz"; + sha1 = "fc5c6b0765673d92a2d4ac8b4dc0aa88702e2bd4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."1.6.x" = + self.by-version."underscore"."1.6.0"; + by-version."underscore"."1.6.0" = self.buildNodePackage { + name = "underscore-1.6.0"; + version = "1.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz"; + name = "underscore-1.6.0.tgz"; + sha1 = "8b38b10cacdef63337b8b24e4ff86d45aea529a8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."1.7.0" = + self.by-version."underscore"."1.7.0"; + by-version."underscore"."1.7.0" = self.buildNodePackage { + name = "underscore-1.7.0"; + version = "1.7.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz"; + name = "underscore-1.7.0.tgz"; + sha1 = "6bbaf0877500d36be34ecaa584e0db9fef035209"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."1.x" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore".">= 1.3.3" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore".">=1.1.7" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore".">=1.3.1" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore".">=1.5.2" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore".">=1.8.3" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore"."^1.7.0" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore"."^1.8.3" = + self.by-version."underscore"."1.8.3"; + by-spec."underscore"."~1.4.3" = + self.by-version."underscore"."1.4.4"; + by-version."underscore"."1.4.4" = self.buildNodePackage { + name = "underscore-1.4.4"; + version = "1.4.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"; + name = "underscore-1.4.4.tgz"; + sha1 = "61a6a32010622afa07963bf325203cf12239d604"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."~1.4.4" = + self.by-version."underscore"."1.4.4"; + by-spec."underscore"."~1.5.2" = + self.by-version."underscore"."1.5.2"; + by-version."underscore"."1.5.2" = self.buildNodePackage { + name = "underscore-1.5.2"; + version = "1.5.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore/-/underscore-1.5.2.tgz"; + name = "underscore-1.5.2.tgz"; + sha1 = "1335c5e4f5e6d33bbb4b006ba8c86a00f556de08"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore"."~1.7.0" = + self.by-version."underscore"."1.7.0"; + by-spec."underscore.string"."~2.2.1" = + self.by-version."underscore.string"."2.2.1"; + by-version."underscore.string"."2.2.1" = self.buildNodePackage { + name = "underscore.string-2.2.1"; + version = "2.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.2.1.tgz"; + name = "underscore.string-2.2.1.tgz"; + sha1 = "d7c0fa2af5d5a1a67f4253daee98132e733f0f19"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore.string"."~2.3.1" = + self.by-version."underscore.string"."2.3.3"; + by-version."underscore.string"."2.3.3" = self.buildNodePackage { + name = "underscore.string-2.3.3"; + version = "2.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.3.3.tgz"; + name = "underscore.string-2.3.3.tgz"; + sha1 = "71c08bf6b428b1133f37e78fa3a21c82f7329b0d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore.string"."~2.3.3" = + self.by-version."underscore.string"."2.3.3"; + by-spec."underscore.string"."~2.4.0" = + self.by-version."underscore.string"."2.4.0"; + by-version."underscore.string"."2.4.0" = self.buildNodePackage { + name = "underscore.string-2.4.0"; + version = "2.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-2.4.0.tgz"; + name = "underscore.string-2.4.0.tgz"; + sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore.string"."~3.0.3" = + self.by-version."underscore.string"."3.0.3"; + by-version."underscore.string"."3.0.3" = self.buildNodePackage { + name = "underscore.string-3.0.3"; + version = "3.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-3.0.3.tgz"; + name = "underscore.string-3.0.3.tgz"; + sha1 = "4617b8c1a250cf6e5064fbbb363d0fa96cf14552"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."underscore.string"."~3.2.3" = + self.by-version."underscore.string"."3.2.3"; + by-version."underscore.string"."3.2.3" = self.buildNodePackage { + name = "underscore.string-3.2.3"; + version = "3.2.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/underscore.string/-/underscore.string-3.2.3.tgz"; + name = "underscore.string-3.2.3.tgz"; + sha1 = "806992633665d5e5fcb4db1fb3a862eb68e9e6da"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unfunk-diff"."~0.0.1" = + self.by-version."unfunk-diff"."0.0.2"; + by-version."unfunk-diff"."0.0.2" = self.buildNodePackage { + name = "unfunk-diff-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unfunk-diff/-/unfunk-diff-0.0.2.tgz"; + name = "unfunk-diff-0.0.2.tgz"; + sha1 = "8560d6b5cb3dcb1ed4d541e7fe59cea514697578"; + }; + deps = { + "diff-1.0.8" = self.by-version."diff"."1.0.8"; + "jsesc-0.4.3" = self.by-version."jsesc"."0.4.3"; + "ministyle-0.1.4" = self.by-version."ministyle"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ungit"."*" = + self.by-version."ungit"."0.10.1"; + by-version."ungit"."0.10.1" = self.buildNodePackage { + name = "ungit-0.10.1"; + version = "0.10.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/ungit/-/ungit-0.10.1.tgz"; + name = "ungit-0.10.1.tgz"; + sha1 = "46baa2bbdb767bbd0c4ecc64b1167052b06dab28"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "bluebird-3.2.2" = self.by-version."bluebird"."3.2.2"; + "blueimp-md5-2.1.0" = self.by-version."blueimp-md5"."2.1.0"; + "body-parser-1.14.2" = self.by-version."body-parser"."1.14.2"; + "color-0.11.1" = self.by-version."color"."0.11.1"; + "cookie-parser-1.4.1" = self.by-version."cookie-parser"."1.4.1"; + "crossroads-0.12.2" = self.by-version."crossroads"."0.12.2"; + "diff2html-1.2.0" = self.by-version."diff2html"."1.2.0"; + "express-4.13.4" = self.by-version."express"."4.13.4"; + "express-session-1.13.0" = self.by-version."express-session"."1.13.0"; + "forever-monitor-1.1.0" = self.by-version."forever-monitor"."1.1.0"; + "getmac-1.0.7" = self.by-version."getmac"."1.0.7"; + "hasher-1.2.0" = self.by-version."hasher"."1.2.0"; + "keen.io-0.1.3" = self.by-version."keen.io"."0.1.3"; + "knockout-3.4.0" = self.by-version."knockout"."3.4.0"; + "lodash-4.2.1" = self.by-version."lodash"."4.2.1"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "moment-2.11.2" = self.by-version."moment"."2.11.2"; + "npm-registry-client-7.0.9" = self.by-version."npm-registry-client"."7.0.9"; + "npmconf-2.1.2" = self.by-version."npmconf"."2.1.2"; + "octicons-3.4.1" = self.by-version."octicons"."3.4.1"; + "open-0.0.5" = self.by-version."open"."0.0.5"; + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + "passport-0.3.2" = self.by-version."passport"."0.3.2"; + "passport-local-1.0.0" = self.by-version."passport-local"."1.0.0"; + "raven-0.10.0" = self.by-version."raven"."0.10.0"; + "rc-1.1.6" = self.by-version."rc"."1.1.6"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + "semver-5.1.0" = self.by-version."semver"."5.1.0"; + "serve-static-1.10.2" = self.by-version."serve-static"."1.10.2"; + "signals-1.0.0" = self.by-version."signals"."1.0.0"; + "snapsvg-0.4.0" = self.by-version."snapsvg"."0.4.0"; + "socket.io-1.4.5" = self.by-version."socket.io"."1.4.5"; + "superagent-0.21.0" = self.by-version."superagent"."0.21.0"; + "temp-0.8.3" = self.by-version."temp"."0.8.3"; + "uuid-2.0.1" = self.by-version."uuid"."2.0.1"; + "winston-2.1.1" = self.by-version."winston"."2.1.1"; + "yargs-3.32.0" = self.by-version."yargs"."3.32.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "ungit" = self.by-version."ungit"."0.10.1"; + by-spec."uniq"."^1.0.1" = + self.by-version."uniq"."1.0.1"; + by-version."uniq"."1.0.1" = self.buildNodePackage { + name = "uniq-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz"; + name = "uniq-1.0.1.tgz"; + sha1 = "b31c5ae8254844a3a8281541ce2b04b865a734ff"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unique-filename"."~1.1.0" = + self.by-version."unique-filename"."1.1.0"; + by-version."unique-filename"."1.1.0" = self.buildNodePackage { + name = "unique-filename-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.0.tgz"; + name = "unique-filename-1.1.0.tgz"; + sha1 = "d05f2fe4032560871f30e93cbe735eea201514f3"; + }; + deps = { + "unique-slug-2.0.0" = self.by-version."unique-slug"."2.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unique-slug"."^2.0.0" = + self.by-version."unique-slug"."2.0.0"; + by-version."unique-slug"."2.0.0" = self.buildNodePackage { + name = "unique-slug-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.0.tgz"; + name = "unique-slug-2.0.0.tgz"; + sha1 = "db6676e7c7cc0629878ff196097c78855ae9f4ab"; + }; + deps = { + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unique-stream"."^1.0.0" = + self.by-version."unique-stream"."1.0.0"; + by-version."unique-stream"."1.0.0" = self.buildNodePackage { + name = "unique-stream-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz"; + name = "unique-stream-1.0.0.tgz"; + sha1 = "d59a4a75427447d9aa6c91e70263f8d26a4b104b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unorm"."1.3.3" = + self.by-version."unorm"."1.3.3"; + by-version."unorm"."1.3.3" = self.buildNodePackage { + name = "unorm-1.3.3"; + version = "1.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unorm/-/unorm-1.3.3.tgz"; + name = "unorm-1.3.3.tgz"; + sha1 = "16a8772671ebd6f7cde6f8c5e49bb60ac47dba93"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unorm"."^1.3.3" = + self.by-version."unorm"."1.4.1"; + by-version."unorm"."1.4.1" = self.buildNodePackage { + name = "unorm-1.4.1"; + version = "1.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unorm/-/unorm-1.4.1.tgz"; + name = "unorm-1.4.1.tgz"; + sha1 = "364200d5f13646ca8bcd44490271335614792300"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unpipe"."1.0.0" = + self.by-version."unpipe"."1.0.0"; + by-version."unpipe"."1.0.0" = self.buildNodePackage { + name = "unpipe-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz"; + name = "unpipe-1.0.0.tgz"; + sha1 = "b2bf4ee8514aae6165b4817829d21b2ef49904ec"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unpipe"."~1.0.0" = + self.by-version."unpipe"."1.0.0"; + by-spec."untildify"."^2.0.0" = + self.by-version."untildify"."2.1.0"; + by-version."untildify"."2.1.0" = self.buildNodePackage { + name = "untildify-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/untildify/-/untildify-2.1.0.tgz"; + name = "untildify-2.1.0.tgz"; + sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."unzip-response"."^1.0.0" = + self.by-version."unzip-response"."1.0.0"; + by-version."unzip-response"."1.0.0" = self.buildNodePackage { + name = "unzip-response-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/unzip-response/-/unzip-response-1.0.0.tgz"; + name = "unzip-response-1.0.0.tgz"; + sha1 = "bfda54eeec658f00c2df4d4494b9dca0ca00f3e4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."update-notifier"."0.5.0" = + self.by-version."update-notifier"."0.5.0"; + by-version."update-notifier"."0.5.0" = self.buildNodePackage { + name = "update-notifier-0.5.0"; + version = "0.5.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz"; + name = "update-notifier-0.5.0.tgz"; + sha1 = "07b5dc2066b3627ab3b4f530130f7eddda07a4cc"; + }; + deps = { + "chalk-1.1.3" = self.by-version."chalk"."1.1.3"; + "configstore-1.4.0" = self.by-version."configstore"."1.4.0"; "is-npm-1.0.0" = self.by-version."is-npm"."1.0.0"; "latest-version-1.0.1" = self.by-version."latest-version"."1.0.1"; + "repeating-1.1.3" = self.by-version."repeating"."1.1.3"; "semver-diff-2.1.0" = self.by-version."semver-diff"."2.1.0"; "string-length-1.0.1" = self.by-version."string-length"."1.0.1"; }; @@ -49320,16 +48091,18 @@ os = [ ]; cpu = [ ]; }; - by-spec."uri-templates"."~0.1.5" = - self.by-version."uri-templates"."0.1.9"; - by-version."uri-templates"."0.1.9" = self.buildNodePackage { - name = "uri-templates-0.1.9"; - version = "0.1.9"; + by-spec."update-notifier"."^0.5.0" = + self.by-version."update-notifier"."0.5.0"; + by-spec."uri-path"."^1.0.0" = + self.by-version."uri-path"."1.0.0"; + by-version."uri-path"."1.0.0" = self.buildNodePackage { + name = "uri-path-1.0.0"; + version = "1.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/uri-templates/-/uri-templates-0.1.9.tgz"; - name = "uri-templates-0.1.9.tgz"; - sha1 = "c56f7a5731b3a310226695f6e5639180fd1aa249"; + url = "https://registry.npmjs.org/uri-path/-/uri-path-1.0.0.tgz"; + name = "uri-path-1.0.0.tgz"; + sha1 = "9747f018358933c31de0fccfd82d138e67262e32"; }; deps = { }; @@ -49339,14 +48112,277 @@ os = [ ]; cpu = [ ]; }; - by-spec."util-deprecate"."~1.0.1" = + by-spec."url"."~0.10.1" = + self.by-version."url"."0.10.3"; + by-version."url"."0.10.3" = self.buildNodePackage { + name = "url-0.10.3"; + version = "0.10.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/url/-/url-0.10.3.tgz"; + name = "url-0.10.3.tgz"; + sha1 = "021e4d9c7705f21bbf37d03ceb58767402774c64"; + }; + deps = { + "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; + "querystring-0.2.0" = self.by-version."querystring"."0.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."url"."~0.11.0" = + self.by-version."url"."0.11.0"; + by-version."url"."0.11.0" = self.buildNodePackage { + name = "url-0.11.0"; + version = "0.11.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/url/-/url-0.11.0.tgz"; + name = "url-0.11.0.tgz"; + sha1 = "3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"; + }; + deps = { + "punycode-1.3.2" = self.by-version."punycode"."1.3.2"; + "querystring-0.2.0" = self.by-version."querystring"."0.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."url-join"."0.0.x" = + self.by-version."url-join"."0.0.1"; + by-version."url-join"."0.0.1" = self.buildNodePackage { + name = "url-join-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/url-join/-/url-join-0.0.1.tgz"; + name = "url-join-0.0.1.tgz"; + sha1 = "1db48ad422d3402469a87f7d97bdebfe4fb1e3c8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."user-home"."^1.1.1" = + self.by-version."user-home"."1.1.1"; + by-version."user-home"."1.1.1" = self.buildNodePackage { + name = "user-home-1.1.1"; + version = "1.1.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz"; + name = "user-home-1.1.1.tgz"; + sha1 = "2b5be23a32b63a7c9deb8d0f28d485724a3df190"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."user-home"."^2.0.0" = + self.by-version."user-home"."2.0.0"; + by-version."user-home"."2.0.0" = self.buildNodePackage { + name = "user-home-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/user-home/-/user-home-2.0.0.tgz"; + name = "user-home-2.0.0.tgz"; + sha1 = "9c70bfd8169bc1dcbf48604e0f04b8b49cde9e9f"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."useragent"."^2.1.6" = + self.by-version."useragent"."2.1.9"; + by-version."useragent"."2.1.9" = self.buildNodePackage { + name = "useragent-2.1.9"; + version = "2.1.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/useragent/-/useragent-2.1.9.tgz"; + name = "useragent-2.1.9.tgz"; + sha1 = "4dba2bc4dad1875777ab15de3ff8098b475000b7"; + }; + deps = { + "lru-cache-2.2.4" = self.by-version."lru-cache"."2.2.4"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utf-8-validate"."1.2.x" = + self.by-version."utf-8-validate"."1.2.1"; + by-version."utf-8-validate"."1.2.1" = self.buildNodePackage { + name = "utf-8-validate-1.2.1"; + version = "1.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.2.1.tgz"; + name = "utf-8-validate-1.2.1.tgz"; + sha1 = "44cb7c6eead73d6b40448f71f745904357b9f72c"; + }; + deps = { + "bindings-1.2.1" = self.by-version."bindings"."1.2.1"; + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utf7"."1.0.0" = + self.by-version."utf7"."1.0.0"; + by-version."utf7"."1.0.0" = self.buildNodePackage { + name = "utf7-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utf7/-/utf7-1.0.0.tgz"; + name = "utf7-1.0.0.tgz"; + sha1 = "70c895de9d85b8ee7ef5a1fa8e169241c46e72cc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utf8"."2.0.0" = + self.by-version."utf8"."2.0.0"; + by-version."utf8"."2.0.0" = self.buildNodePackage { + name = "utf8-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utf8/-/utf8-2.0.0.tgz"; + name = "utf8-2.0.0.tgz"; + sha1 = "79ce59eced874809cab9a71fc7102c7d45d4118d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utf8"."2.1.0" = + self.by-version."utf8"."2.1.0"; + by-version."utf8"."2.1.0" = self.buildNodePackage { + name = "utf8-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utf8/-/utf8-2.1.0.tgz"; + name = "utf8-2.1.0.tgz"; + sha1 = "0cfec5c8052d44a23e3aaa908104e8075f95dfd5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utfx"."~1.0.0" = + self.by-version."utfx"."1.0.1"; + by-version."utfx"."1.0.1" = self.buildNodePackage { + name = "utfx-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utfx/-/utfx-1.0.1.tgz"; + name = "utfx-1.0.1.tgz"; + sha1 = "d52b2fd632a99eca8d9d4a39eece014a6a2b0048"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."util"."0.10.3" = + self.by-version."util"."0.10.3"; + by-version."util"."0.10.3" = self.buildNodePackage { + name = "util-0.10.3"; + version = "0.10.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/util/-/util-0.10.3.tgz"; + name = "util-0.10.3.tgz"; + sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; + }; + deps = { + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."util"."0.4.9" = + self.by-version."util"."0.4.9"; + by-version."util"."0.4.9" = self.buildNodePackage { + name = "util-0.4.9"; + version = "0.4.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/util/-/util-0.4.9.tgz"; + name = "util-0.4.9.tgz"; + sha1 = "d95d5830d2328ec17dee3c80bfc50c33562b75a3"; + }; + deps = { + "events.node-0.4.9" = self.by-version."events.node"."0.4.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."util".">=0.10.3 <1" = + self.by-version."util"."0.10.3"; + by-spec."util"."~0.10.1" = + self.by-version."util"."0.10.3"; + by-spec."util"."~0.10.3" = + self.by-version."util"."0.10.3"; + by-spec."util-deprecate"."1.0.2" = self.by-version."util-deprecate"."1.0.2"; by-version."util-deprecate"."1.0.2" = self.buildNodePackage { name = "util-deprecate-1.0.2"; version = "1.0.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; + url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; name = "util-deprecate-1.0.2.tgz"; sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; }; @@ -49358,14 +48394,232 @@ os = [ ]; cpu = [ ]; }; - by-spec."validate-npm-package-license"."^3.0.1" = + by-spec."util-deprecate"."~1.0.1" = + self.by-version."util-deprecate"."1.0.2"; + by-spec."util-extend"."^1.0.1" = + self.by-version."util-extend"."1.0.3"; + by-version."util-extend"."1.0.3" = self.buildNodePackage { + name = "util-extend-1.0.3"; + version = "1.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/util-extend/-/util-extend-1.0.3.tgz"; + name = "util-extend-1.0.3.tgz"; + sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utile"."0.1.x" = + self.by-version."utile"."0.1.7"; + by-version."utile"."0.1.7" = self.buildNodePackage { + name = "utile-0.1.7"; + version = "0.1.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utile/-/utile-0.1.7.tgz"; + name = "utile-0.1.7.tgz"; + sha1 = "55db180d54475339fd6dd9e2d14a4c0b52624b69"; + }; + deps = { + "async-0.1.22" = self.by-version."async"."0.1.22"; + "deep-equal-1.0.1" = self.by-version."deep-equal"."1.0.1"; + "i-0.3.4" = self.by-version."i"."0.3.4"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "ncp-0.2.7" = self.by-version."ncp"."0.2.7"; + "rimraf-1.0.9" = self.by-version."rimraf"."1.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utile"."0.2.1" = + self.by-version."utile"."0.2.1"; + by-version."utile"."0.2.1" = self.buildNodePackage { + name = "utile-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utile/-/utile-0.2.1.tgz"; + name = "utile-0.2.1.tgz"; + sha1 = "930c88e99098d6220834c356cbd9a770522d90d7"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "deep-equal-1.0.1" = self.by-version."deep-equal"."1.0.1"; + "i-0.3.4" = self.by-version."i"."0.3.4"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "ncp-0.4.2" = self.by-version."ncp"."0.4.2"; + "rimraf-2.5.2" = self.by-version."rimraf"."2.5.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utile"."0.2.x" = + self.by-version."utile"."0.2.1"; + by-spec."utile"."~0.2.1" = + self.by-version."utile"."0.2.1"; + by-spec."utils-merge"."1.0.0" = + self.by-version."utils-merge"."1.0.0"; + by-version."utils-merge"."1.0.0" = self.buildNodePackage { + name = "utils-merge-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz"; + name = "utils-merge-1.0.0.tgz"; + sha1 = "0294fb922bb9375153541c4f7096231f287c8af8"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."utils-merge"."1.x.x" = + self.by-version."utils-merge"."1.0.0"; + by-spec."utp"."0.0.7" = + self.by-version."utp"."0.0.7"; + by-version."utp"."0.0.7" = self.buildNodePackage { + name = "utp-0.0.7"; + version = "0.0.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/utp/-/utp-0.0.7.tgz"; + name = "utp-0.0.7.tgz"; + sha1 = "ae43eb7745f5fe63dcc2f277cb4164ad27087f30"; + }; + deps = { + "cyclist-0.1.1" = self.by-version."cyclist"."0.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uuid"."^2.0.1" = + self.by-version."uuid"."2.0.1"; + by-version."uuid"."2.0.1" = self.buildNodePackage { + name = "uuid-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz"; + name = "uuid-2.0.1.tgz"; + sha1 = "c2a30dedb3e535d72ccf82e343941a50ba8533ac"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."uuid"."~2.0.1" = + self.by-version."uuid"."2.0.1"; + by-spec."v8-debug"."~0.7.1" = + self.by-version."v8-debug"."0.7.1"; + by-version."v8-debug"."0.7.1" = self.buildNodePackage { + name = "v8-debug-0.7.1"; + version = "0.7.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/v8-debug/-/v8-debug-0.7.1.tgz"; + name = "v8-debug-0.7.1.tgz"; + sha1 = "705e65fa77f936dfef6b70a770df11eefde6580e"; + }; + deps = { + "nan-2.2.1" = self.by-version."nan"."2.2.1"; + "node-pre-gyp-0.6.26" = self.by-version."node-pre-gyp"."0.6.26"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."v8-profiler"."~5.6.0" = + self.by-version."v8-profiler"."5.6.0"; + by-version."v8-profiler"."5.6.0" = self.buildNodePackage { + name = "v8-profiler-5.6.0"; + version = "5.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.6.0.tgz"; + name = "v8-profiler-5.6.0.tgz"; + sha1 = "e85bbcd71a94a827ca42a33f63f7d01f54f1c24d"; + }; + deps = { + "node-pre-gyp-0.6.26" = self.by-version."node-pre-gyp"."0.6.26"; + "nan-2.0.9" = self.by-version."nan"."2.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."v8flags"."^2.0.2" = + self.by-version."v8flags"."2.0.11"; + by-version."v8flags"."2.0.11" = self.buildNodePackage { + name = "v8flags-2.0.11"; + version = "2.0.11"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz"; + name = "v8flags-2.0.11.tgz"; + sha1 = "bca8f30f0d6d60612cc2c00641e6962d42ae6881"; + }; + deps = { + "user-home-1.1.1" = self.by-version."user-home"."1.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."valid-identifier"."0.0.1" = + self.by-version."valid-identifier"."0.0.1"; + by-version."valid-identifier"."0.0.1" = self.buildNodePackage { + name = "valid-identifier-0.0.1"; + version = "0.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/valid-identifier/-/valid-identifier-0.0.1.tgz"; + name = "valid-identifier-0.0.1.tgz"; + sha1 = "ef1d7093a9d3287e3fce92df916f8616b23f90b4"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."validate-npm-package-license"."*" = self.by-version."validate-npm-package-license"."3.0.1"; by-version."validate-npm-package-license"."3.0.1" = self.buildNodePackage { name = "validate-npm-package-license-3.0.1"; version = "3.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"; + url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz"; name = "validate-npm-package-license-3.0.1.tgz"; sha1 = "2804babe712ad3379459acfbe24746ab2c303fbc"; }; @@ -49379,19 +48633,23 @@ os = [ ]; cpu = [ ]; }; - by-spec."verror"."~1.4.0" = - self.by-version."verror"."1.4.0"; - by-version."verror"."1.4.0" = self.buildNodePackage { - name = "verror-1.4.0"; - version = "1.4.0"; + by-spec."validate-npm-package-license"."^3.0.1" = + self.by-version."validate-npm-package-license"."3.0.1"; + by-spec."validate-npm-package-license"."~3.0.1" = + self.by-version."validate-npm-package-license"."3.0.1"; + by-spec."validate-npm-package-name"."^2.0.1" = + self.by-version."validate-npm-package-name"."2.2.2"; + by-version."validate-npm-package-name"."2.2.2" = self.buildNodePackage { + name = "validate-npm-package-name-2.2.2"; + version = "2.2.2"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/verror/-/verror-1.4.0.tgz"; - name = "verror-1.4.0.tgz"; - sha1 = "5d8fdf5875141c3183b7c6bc23a0aa3e3e6ca4e2"; + url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz"; + name = "validate-npm-package-name-2.2.2.tgz"; + sha1 = "f65695b22f7324442019a3c7fa39a6e7fd299085"; }; deps = { - "extsprintf-1.0.3" = self.by-version."extsprintf"."1.0.3"; + "builtins-0.0.7" = self.by-version."builtins"."0.0.7"; }; optionalDependencies = { }; @@ -49399,12 +48657,2269 @@ os = [ ]; cpu = [ ]; }; + by-spec."validate-npm-package-name"."~2.2.2" = + self.by-version."validate-npm-package-name"."2.2.2"; + by-spec."validator"."1.5.1" = + self.by-version."validator"."1.5.1"; + by-version."validator"."1.5.1" = self.buildNodePackage { + name = "validator-1.5.1"; + version = "1.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/validator/-/validator-1.5.1.tgz"; + name = "validator-1.5.1.tgz"; + sha1 = "7ab356cbbcbbb000ab85c43b8cda12621b1344c0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."validator"."^2.1.0" = + self.by-version."validator"."2.1.0"; + by-version."validator"."2.1.0" = self.buildNodePackage { + name = "validator-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/validator/-/validator-2.1.0.tgz"; + name = "validator-2.1.0.tgz"; + sha1 = "63276570def208adcf1c032c1f4e6a17d2bd8d8b"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vargs"."~0.1.0" = + self.by-version."vargs"."0.1.0"; + by-version."vargs"."0.1.0" = self.buildNodePackage { + name = "vargs-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vargs/-/vargs-0.1.0.tgz"; + name = "vargs-0.1.0.tgz"; + sha1 = "6b6184da6520cc3204ce1b407cac26d92609ebff"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vary"."0.1.0" = + self.by-version."vary"."0.1.0"; + by-version."vary"."0.1.0" = self.buildNodePackage { + name = "vary-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vary/-/vary-0.1.0.tgz"; + name = "vary-0.1.0.tgz"; + sha1 = "df0945899e93c0cc5bd18cc8321d9d21e74f6176"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vary"."^1" = + self.by-version."vary"."1.1.0"; + by-version."vary"."1.1.0" = self.buildNodePackage { + name = "vary-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vary/-/vary-1.1.0.tgz"; + name = "vary-1.1.0.tgz"; + sha1 = "e1e5affbbd16ae768dd2674394b9ad3022653140"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vary"."~1.0.0" = + self.by-version."vary"."1.0.1"; + by-version."vary"."1.0.1" = self.buildNodePackage { + name = "vary-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vary/-/vary-1.0.1.tgz"; + name = "vary-1.0.1.tgz"; + sha1 = "99e4981566a286118dfb2b817357df7993376d10"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vary"."~1.0.1" = + self.by-version."vary"."1.0.1"; + by-spec."vary"."~1.1.0" = + self.by-version."vary"."1.1.0"; + by-spec."vasync"."1.4.0" = + self.by-version."vasync"."1.4.0"; + by-version."vasync"."1.4.0" = self.buildNodePackage { + name = "vasync-1.4.0"; + version = "1.4.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vasync/-/vasync-1.4.0.tgz"; + name = "vasync-1.4.0.tgz"; + sha1 = "6ea5a63582358868d8743cbdd6ffadc9083b910f"; + }; + deps = { + "jsprim-0.3.0" = self.by-version."jsprim"."0.3.0"; + "verror-1.1.0" = self.by-version."verror"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vasync"."1.4.3" = + self.by-version."vasync"."1.4.3"; + by-version."vasync"."1.4.3" = self.buildNodePackage { + name = "vasync-1.4.3"; + version = "1.4.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vasync/-/vasync-1.4.3.tgz"; + name = "vasync-1.4.3.tgz"; + sha1 = "c86d52e2b71613d29eedf159f3135dbe749cee37"; + }; + deps = { + "jsprim-0.3.0" = self.by-version."jsprim"."0.3.0"; + "verror-1.1.0" = self.by-version."verror"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vasync"."1.6.2" = + self.by-version."vasync"."1.6.2"; + by-version."vasync"."1.6.2" = self.buildNodePackage { + name = "vasync-1.6.2"; + version = "1.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vasync/-/vasync-1.6.2.tgz"; + name = "vasync-1.6.2.tgz"; + sha1 = "568edcf40b2b5c35b1cc048cad085de4739703fb"; + }; + deps = { + "verror-1.1.0" = self.by-version."verror"."1.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vasync"."1.6.3" = + self.by-version."vasync"."1.6.3"; + by-version."vasync"."1.6.3" = self.buildNodePackage { + name = "vasync-1.6.3"; + version = "1.6.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vasync/-/vasync-1.6.3.tgz"; + name = "vasync-1.6.3.tgz"; + sha1 = "4a69d7052a47f4ce85503d7641df1cbf40432a94"; + }; + deps = { + "verror-1.6.0" = self.by-version."verror"."1.6.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."1.1.0" = + self.by-version."verror"."1.1.0"; + by-version."verror"."1.1.0" = self.buildNodePackage { + name = "verror-1.1.0"; + version = "1.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/verror/-/verror-1.1.0.tgz"; + name = "verror-1.1.0.tgz"; + sha1 = "2a4b4eb14a207051e75a6f94ee51315bf173a1b0"; + }; + deps = { + "extsprintf-1.0.0" = self.by-version."extsprintf"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."1.3.3" = + self.by-version."verror"."1.3.3"; + by-version."verror"."1.3.3" = self.buildNodePackage { + name = "verror-1.3.3"; + version = "1.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/verror/-/verror-1.3.3.tgz"; + name = "verror-1.3.3.tgz"; + sha1 = "8a6a4ac3a8c774b6f687fece49bdffd78552e2cd"; + }; + deps = { + "extsprintf-1.0.0" = self.by-version."extsprintf"."1.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."1.3.6" = + self.by-version."verror"."1.3.6"; + by-version."verror"."1.3.6" = self.buildNodePackage { + name = "verror-1.3.6"; + version = "1.3.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz"; + name = "verror-1.3.6.tgz"; + sha1 = "cff5df12946d297d2baaefaa2689e25be01c005c"; + }; + deps = { + "extsprintf-1.0.2" = self.by-version."extsprintf"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."1.6.0" = + self.by-version."verror"."1.6.0"; + by-version."verror"."1.6.0" = self.buildNodePackage { + name = "verror-1.6.0"; + version = "1.6.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/verror/-/verror-1.6.0.tgz"; + name = "verror-1.6.0.tgz"; + sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; + }; + deps = { + "extsprintf-1.2.0" = self.by-version."extsprintf"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."^1.4.0" = + self.by-version."verror"."1.6.1"; + by-version."verror"."1.6.1" = self.buildNodePackage { + name = "verror-1.6.1"; + version = "1.6.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/verror/-/verror-1.6.1.tgz"; + name = "verror-1.6.1.tgz"; + sha1 = "236402060648c219d1162c2451d1c341a0e1c9ce"; + }; + deps = { + "core-util-is-1.0.2" = self.by-version."core-util-is"."1.0.2"; + "extsprintf-1.2.0" = self.by-version."extsprintf"."1.2.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."verror"."^1.6.0" = + self.by-version."verror"."1.6.1"; + by-spec."vhost"."1.0.0" = + self.by-version."vhost"."1.0.0"; + by-version."vhost"."1.0.0" = self.buildNodePackage { + name = "vhost-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vhost/-/vhost-1.0.0.tgz"; + name = "vhost-1.0.0.tgz"; + sha1 = "654513f289a4f898aab745bbd633e40180c9c4c0"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vhost"."~3.0.1" = + self.by-version."vhost"."3.0.2"; + by-version."vhost"."3.0.2" = self.buildNodePackage { + name = "vhost-3.0.2"; + version = "3.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vhost/-/vhost-3.0.2.tgz"; + name = "vhost-3.0.2.tgz"; + sha1 = "2fb1decd4c466aa88b0f9341af33dc1aff2478d5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."view-helpers"."*" = + self.by-version."view-helpers"."0.1.5"; + by-version."view-helpers"."0.1.5" = self.buildNodePackage { + name = "view-helpers-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/view-helpers/-/view-helpers-0.1.5.tgz"; + name = "view-helpers-0.1.5.tgz"; + sha1 = "175d220a6afeca8e3b497b003e2337bcc596f761"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "view-helpers" = self.by-version."view-helpers"."0.1.5"; + by-spec."vinyl"."^0.4.0" = + self.by-version."vinyl"."0.4.6"; + by-version."vinyl"."0.4.6" = self.buildNodePackage { + name = "vinyl-0.4.6"; + version = "0.4.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz"; + name = "vinyl-0.4.6.tgz"; + sha1 = "2f356c87a550a255461f36bbeb2a5ba8bf784847"; + }; + deps = { + "clone-0.2.0" = self.by-version."clone"."0.2.0"; + "clone-stats-0.0.1" = self.by-version."clone-stats"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vinyl"."^0.4.6" = + self.by-version."vinyl"."0.4.6"; + by-spec."vinyl"."^0.5.0" = + self.by-version."vinyl"."0.5.3"; + by-version."vinyl"."0.5.3" = self.buildNodePackage { + name = "vinyl-0.5.3"; + version = "0.5.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz"; + name = "vinyl-0.5.3.tgz"; + sha1 = "b0455b38fc5e0cf30d4325132e461970c2091cde"; + }; + deps = { + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "clone-stats-0.0.1" = self.by-version."clone-stats"."0.0.1"; + "replace-ext-0.0.1" = self.by-version."replace-ext"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vinyl-fs"."^0.3.0" = + self.by-version."vinyl-fs"."0.3.14"; + by-version."vinyl-fs"."0.3.14" = self.buildNodePackage { + name = "vinyl-fs-0.3.14"; + version = "0.3.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz"; + name = "vinyl-fs-0.3.14.tgz"; + sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"; + }; + deps = { + "defaults-1.0.3" = self.by-version."defaults"."1.0.3"; + "glob-stream-3.1.18" = self.by-version."glob-stream"."3.1.18"; + "glob-watcher-0.0.6" = self.by-version."glob-watcher"."0.0.6"; + "graceful-fs-3.0.8" = self.by-version."graceful-fs"."3.0.8"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "strip-bom-1.0.0" = self.by-version."strip-bom"."1.0.0"; + "through2-0.6.5" = self.by-version."through2"."0.6.5"; + "vinyl-0.4.6" = self.by-version."vinyl"."0.4.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vinyl-fs"."^0.3.13" = + self.by-version."vinyl-fs"."0.3.14"; + by-spec."vm-browserify"."0.0.4" = + self.by-version."vm-browserify"."0.0.4"; + by-version."vm-browserify"."0.0.4" = self.buildNodePackage { + name = "vm-browserify-0.0.4"; + version = "0.0.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/vm-browserify/-/vm-browserify-0.0.4.tgz"; + name = "vm-browserify-0.0.4.tgz"; + sha1 = "5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"; + }; + deps = { + "indexof-0.0.1" = self.by-version."indexof"."0.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vm-browserify"."~0.0.1" = + self.by-version."vm-browserify"."0.0.4"; + by-spec."voc"."*" = + self.by-version."voc"."0.5.0"; + by-version."voc"."0.5.0" = self.buildNodePackage { + name = "voc-0.5.0"; + version = "0.5.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/voc/-/voc-0.5.0.tgz"; + name = "voc-0.5.0.tgz"; + sha1 = "be6ca7c76e4a57d930cc80f6b31fbd80ca86045c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."void-elements"."^2.0.0" = + self.by-version."void-elements"."2.0.1"; + by-version."void-elements"."2.0.1" = self.buildNodePackage { + name = "void-elements-2.0.1"; + version = "2.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz"; + name = "void-elements-2.0.1.tgz"; + sha1 = "c066afb582bb1cb4128d60ea92392e94d5e9dbec"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."void-elements"."~2.0.1" = + self.by-version."void-elements"."2.0.1"; + by-spec."vows".">=0.5.13" = + self.by-version."vows"."0.8.1"; + by-version."vows"."0.8.1" = self.buildNodePackage { + name = "vows-0.8.1"; + version = "0.8.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/vows/-/vows-0.8.1.tgz"; + name = "vows-0.8.1.tgz"; + sha1 = "e09e988ce594ca05a08d72abcca34e88db559131"; + }; + deps = { + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "diff-1.0.8" = self.by-version."diff"."1.0.8"; + "glob-4.0.6" = self.by-version."glob"."4.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."vows".">=0.5.2" = + self.by-version."vows"."0.8.1"; + by-spec."walk"."*" = + self.by-version."walk"."2.3.9"; + by-version."walk"."2.3.9" = self.buildNodePackage { + name = "walk-2.3.9"; + version = "2.3.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/walk/-/walk-2.3.9.tgz"; + name = "walk-2.3.9.tgz"; + sha1 = "31b4db6678f2ae01c39ea9fb8725a9031e558a7b"; + }; + deps = { + "foreachasync-3.0.0" = self.by-version."foreachasync"."3.0.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "walk" = self.by-version."walk"."2.3.9"; + by-spec."walk"."^2.3.9" = + self.by-version."walk"."2.3.9"; + by-spec."ware"."^1.2.0" = + self.by-version."ware"."1.3.0"; + by-version."ware"."1.3.0" = self.buildNodePackage { + name = "ware-1.3.0"; + version = "1.3.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ware/-/ware-1.3.0.tgz"; + name = "ware-1.3.0.tgz"; + sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; + }; + deps = { + "wrap-fn-0.1.5" = self.by-version."wrap-fn"."0.1.5"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."watch"."0.5.x" = + self.by-version."watch"."0.5.1"; + by-version."watch"."0.5.1" = self.buildNodePackage { + name = "watch-0.5.1"; + version = "0.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/watch/-/watch-0.5.1.tgz"; + name = "watch-0.5.1.tgz"; + sha1 = "50ea3a056358c98073e0bca59956de4afd20b213"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."watchpack"."^0.2.1" = + self.by-version."watchpack"."0.2.9"; + by-version."watchpack"."0.2.9" = self.buildNodePackage { + name = "watchpack-0.2.9"; + version = "0.2.9"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/watchpack/-/watchpack-0.2.9.tgz"; + name = "watchpack-0.2.9.tgz"; + sha1 = "62eaa4ab5e5ba35fdfc018275626e3c0f5e3fb0b"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."watchpack"."^1.0.0" = + self.by-version."watchpack"."1.0.1"; + by-version."watchpack"."1.0.1" = self.buildNodePackage { + name = "watchpack-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/watchpack/-/watchpack-1.0.1.tgz"; + name = "watchpack-1.0.1.tgz"; + sha1 = "3e37162267624543da11d9cf4cce5d0f455841e6"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; + "chokidar-1.4.3" = self.by-version."chokidar"."1.4.3"; + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wcwidth"."^1.0.0" = + self.by-version."wcwidth"."1.0.0"; + by-version."wcwidth"."1.0.0" = self.buildNodePackage { + name = "wcwidth-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.0.tgz"; + name = "wcwidth-1.0.0.tgz"; + sha1 = "02d059ff7a8fc741e0f6b5da1e69b2b40daeca6f"; + }; + deps = { + "defaults-1.0.3" = self.by-version."defaults"."1.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wd"."^0.3.4" = + self.by-version."wd"."0.3.12"; + by-version."wd"."0.3.12" = self.buildNodePackage { + name = "wd-0.3.12"; + version = "0.3.12"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/wd/-/wd-0.3.12.tgz"; + name = "wd-0.3.12.tgz"; + sha1 = "3fb4f1d759f8c85dde5393d17334ffe03e9bb329"; + }; + deps = { + "archiver-0.14.4" = self.by-version."archiver"."0.14.4"; + "async-1.0.0" = self.by-version."async"."1.0.0"; + "lodash-3.9.3" = self.by-version."lodash"."3.9.3"; + "q-1.4.1" = self.by-version."q"."1.4.1"; + "request-2.55.0" = self.by-version."request"."2.55.0"; + "underscore.string-3.0.3" = self.by-version."underscore.string"."3.0.3"; + "vargs-0.1.0" = self.by-version."vargs"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."weak-map"."^1.0.5" = + self.by-version."weak-map"."1.0.5"; + by-version."weak-map"."1.0.5" = self.buildNodePackage { + name = "weak-map-1.0.5"; + version = "1.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz"; + name = "weak-map-1.0.5.tgz"; + sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."webdrvr"."*" = + self.by-version."webdrvr"."2.43.0-1"; + by-version."webdrvr"."2.43.0-1" = self.buildNodePackage { + name = "webdrvr-2.43.0-1"; + version = "2.43.0-1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/webdrvr/-/webdrvr-2.43.0-1.tgz"; + name = "webdrvr-2.43.0-1.tgz"; + sha1 = "17c442b94c0a6a3a68293d6ea4deb408f8cb9225"; + }; + deps = { + "adm-zip-0.4.7" = self.by-version."adm-zip"."0.4.7"; + "kew-0.1.7" = self.by-version."kew"."0.1.7"; + "mkdirp-0.3.5" = self.by-version."mkdirp"."0.3.5"; + "npmconf-0.1.16" = self.by-version."npmconf"."0.1.16"; + "phantomjs-1.9.20" = self.by-version."phantomjs"."1.9.20"; + "tmp-0.0.28" = self.by-version."tmp"."0.0.28"; + "follow-redirects-0.0.3" = self.by-version."follow-redirects"."0.0.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "webdrvr" = self.by-version."webdrvr"."2.43.0-1"; + by-spec."webpack"."*" = + self.by-version."webpack"."2.1.0-beta.4"; + by-version."webpack"."2.1.0-beta.4" = self.buildNodePackage { + name = "webpack-2.1.0-beta.4"; + version = "2.1.0-beta.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-2.1.0-beta.4.tgz"; + name = "webpack-2.1.0-beta.4.tgz"; + sha1 = "934a5d4fc43d2a7b1ef2f2d1a07d33e8f5f3be95"; + }; + deps = { + "acorn-3.0.4" = self.by-version."acorn"."3.0.4"; + "async-1.5.2" = self.by-version."async"."1.5.2"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "enhanced-resolve-2.2.2" = self.by-version."enhanced-resolve"."2.2.2"; + "interpret-1.0.0" = self.by-version."interpret"."1.0.0"; + "loader-runner-2.1.1" = self.by-version."loader-runner"."2.1.1"; + "loader-utils-0.2.13" = self.by-version."loader-utils"."0.2.13"; + "memory-fs-0.3.0" = self.by-version."memory-fs"."0.3.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "node-libs-browser-1.0.0" = self.by-version."node-libs-browser"."1.0.0"; + "object-assign-4.0.1" = self.by-version."object-assign"."4.0.1"; + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + "supports-color-3.1.2" = self.by-version."supports-color"."3.1.2"; + "tapable-0.2.4" = self.by-version."tapable"."0.2.4"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; + "watchpack-1.0.1" = self.by-version."watchpack"."1.0.1"; + "webpack-sources-0.1.1" = self.by-version."webpack-sources"."0.1.1"; + "yargs-3.32.0" = self.by-version."yargs"."3.32.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "webpack" = self.by-version."webpack"."2.1.0-beta.4"; + by-spec."webpack"."^1.12.9" = + self.by-version."webpack"."1.12.14"; + by-version."webpack"."1.12.14" = self.buildNodePackage { + name = "webpack-1.12.14"; + version = "1.12.14"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/webpack/-/webpack-1.12.14.tgz"; + name = "webpack-1.12.14.tgz"; + sha1 = "365517443abfb3cb43299ea444655be89aff91d5"; + }; + deps = { + "async-1.5.2" = self.by-version."async"."1.5.2"; + "clone-1.0.2" = self.by-version."clone"."1.0.2"; + "enhanced-resolve-0.9.1" = self.by-version."enhanced-resolve"."0.9.1"; + "esprima-2.7.2" = self.by-version."esprima"."2.7.2"; + "interpret-0.6.6" = self.by-version."interpret"."0.6.6"; + "loader-utils-0.2.13" = self.by-version."loader-utils"."0.2.13"; + "memory-fs-0.3.0" = self.by-version."memory-fs"."0.3.0"; + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + "node-libs-browser-0.5.3" = self.by-version."node-libs-browser"."0.5.3"; + "optimist-0.6.1" = self.by-version."optimist"."0.6.1"; + "supports-color-3.1.2" = self.by-version."supports-color"."3.1.2"; + "tapable-0.1.10" = self.by-version."tapable"."0.1.10"; + "uglify-js-2.6.2" = self.by-version."uglify-js"."2.6.2"; + "watchpack-0.2.9" = self.by-version."watchpack"."0.2.9"; + "webpack-core-0.6.8" = self.by-version."webpack-core"."0.6.8"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."webpack-core"."~0.6.0" = + self.by-version."webpack-core"."0.6.8"; + by-version."webpack-core"."0.6.8" = self.buildNodePackage { + name = "webpack-core-0.6.8"; + version = "0.6.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/webpack-core/-/webpack-core-0.6.8.tgz"; + name = "webpack-core-0.6.8.tgz"; + sha1 = "edf9135de00a6a3c26dd0f14b208af0aa4af8d0a"; + }; + deps = { + "source-map-0.4.4" = self.by-version."source-map"."0.4.4"; + "source-list-map-0.1.6" = self.by-version."source-list-map"."0.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."webpack-sources"."^0.1.0" = + self.by-version."webpack-sources"."0.1.1"; + by-version."webpack-sources"."0.1.1" = self.buildNodePackage { + name = "webpack-sources-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.1.1.tgz"; + name = "webpack-sources-0.1.1.tgz"; + sha1 = "a71dd7c0ca3e264af088804bc384d93fad0442b6"; + }; + deps = { + "source-map-0.5.3" = self.by-version."source-map"."0.5.3"; + "source-list-map-0.1.6" = self.by-version."source-list-map"."0.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."websocket-driver".">=0.5.1" = + self.by-version."websocket-driver"."0.6.4"; + by-version."websocket-driver"."0.6.4" = self.buildNodePackage { + name = "websocket-driver-0.6.4"; + version = "0.6.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.6.4.tgz"; + name = "websocket-driver-0.6.4.tgz"; + sha1 = "65b84d02113480d3fc05e63e809322042bdc940b"; + }; + deps = { + "websocket-extensions-0.1.1" = self.by-version."websocket-extensions"."0.1.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."websocket-extensions".">=0.1.1" = + self.by-version."websocket-extensions"."0.1.1"; + by-version."websocket-extensions"."0.1.1" = self.buildNodePackage { + name = "websocket-extensions-0.1.1"; + version = "0.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.1.tgz"; + name = "websocket-extensions-0.1.1.tgz"; + sha1 = "76899499c184b6ef754377c2dbb0cd6cb55d29e7"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."websocket-stream"."^3.0.1" = + self.by-version."websocket-stream"."3.1.0"; + by-version."websocket-stream"."3.1.0" = self.buildNodePackage { + name = "websocket-stream-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/websocket-stream/-/websocket-stream-3.1.0.tgz"; + name = "websocket-stream-3.1.0.tgz"; + sha1 = "c6d9d13230b77e474c4b6736c295bba77cdd7f87"; + }; + deps = { + "duplexify-3.4.3" = self.by-version."duplexify"."3.4.3"; + "inherits-2.0.1" = self.by-version."inherits"."2.0.1"; + "through2-2.0.1" = self.by-version."through2"."2.0.1"; + "ws-1.0.1" = self.by-version."ws"."1.0.1"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."whatwg-fetch".">=0.10.0" = + self.by-version."whatwg-fetch"."0.11.0"; + by-version."whatwg-fetch"."0.11.0" = self.buildNodePackage { + name = "whatwg-fetch-0.11.0"; + version = "0.11.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-0.11.0.tgz"; + name = "whatwg-fetch-0.11.0.tgz"; + sha1 = "46b1d18d0aa99955971ef1a2f5aac506add28815"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."when"."3.7.7" = + self.by-version."when"."3.7.7"; + by-version."when"."3.7.7" = self.buildNodePackage { + name = "when-3.7.7"; + version = "3.7.7"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/when/-/when-3.7.7.tgz"; + name = "when-3.7.7.tgz"; + sha1 = "aba03fc3bb736d6c88b091d013d8a8e590d84718"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."when"."~3.4.6" = + self.by-version."when"."3.4.6"; + by-version."when"."3.4.6" = self.buildNodePackage { + name = "when-3.4.6"; + version = "3.4.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/when/-/when-3.4.6.tgz"; + name = "when-3.4.6.tgz"; + sha1 = "8fbcb7cc1439d2c3a68c431f1516e6dcce9ad28c"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."which"."1" = + self.by-version."which"."1.2.4"; + by-version."which"."1.2.4" = self.buildNodePackage { + name = "which-1.2.4"; + version = "1.2.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/which/-/which-1.2.4.tgz"; + name = "which-1.2.4.tgz"; + sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722"; + }; + deps = { + "is-absolute-0.1.7" = self.by-version."is-absolute"."0.1.7"; + "isexe-1.1.2" = self.by-version."isexe"."1.1.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."which"."^1.0.7" = + self.by-version."which"."1.2.4"; + by-spec."which"."^1.1.1" = + self.by-version."which"."1.2.4"; + by-spec."which"."^1.2.1" = + self.by-version."which"."1.2.4"; + by-spec."which"."~1.0.5" = + self.by-version."which"."1.0.9"; + by-version."which"."1.0.9" = self.buildNodePackage { + name = "which-1.0.9"; + version = "1.0.9"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/which/-/which-1.0.9.tgz"; + name = "which-1.0.9.tgz"; + sha1 = "460c1da0f810103d0321a9b633af9e575e64486f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."which"."~1.2.1" = + self.by-version."which"."1.2.4"; + by-spec."which"."~1.2.2" = + self.by-version."which"."1.2.4"; + by-spec."which"."~1.2.4" = + self.by-version."which"."1.2.4"; + by-spec."win-detect-browsers"."^1.0.1" = + self.by-version."win-detect-browsers"."1.0.2"; + by-version."win-detect-browsers"."1.0.2" = self.buildNodePackage { + name = "win-detect-browsers-1.0.2"; + version = "1.0.2"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/win-detect-browsers/-/win-detect-browsers-1.0.2.tgz"; + name = "win-detect-browsers-1.0.2.tgz"; + sha1 = "f45f10d141086c5d94ae14c03b2098440a7e71b0"; + }; + deps = { + "after-0.8.1" = self.by-version."after"."0.8.1"; + "debug-2.2.0" = self.by-version."debug"."2.2.0"; + "which-1.2.4" = self.by-version."which"."1.2.4"; + "xtend-4.0.1" = self.by-version."xtend"."4.0.1"; + "yargs-1.3.3" = self.by-version."yargs"."1.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."window-size"."0.1.0" = + self.by-version."window-size"."0.1.0"; + by-version."window-size"."0.1.0" = self.buildNodePackage { + name = "window-size-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz"; + name = "window-size-0.1.0.tgz"; + sha1 = "5438cd2ea93b202efa3a19fe8887aee7c94f9c9d"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."window-size"."^0.1.2" = + self.by-version."window-size"."0.1.4"; + by-version."window-size"."0.1.4" = self.buildNodePackage { + name = "window-size-0.1.4"; + version = "0.1.4"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/window-size/-/window-size-0.1.4.tgz"; + name = "window-size-0.1.4.tgz"; + sha1 = "f8e1aa1ee5a53ec5bf151ffa09742a6ad7697876"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."window-size"."^0.1.4" = + self.by-version."window-size"."0.1.4"; + by-spec."windows-no-runnable"."~0.0.6" = + self.by-version."windows-no-runnable"."0.0.6"; + by-version."windows-no-runnable"."0.0.6" = self.buildNodePackage { + name = "windows-no-runnable-0.0.6"; + version = "0.0.6"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/windows-no-runnable/-/windows-no-runnable-0.0.6.tgz"; + name = "windows-no-runnable-0.0.6.tgz"; + sha1 = "91e5129088330a0fe248520cee12d1ad6bb4ddfb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."*" = + self.by-version."winston"."2.2.0"; + by-version."winston"."2.2.0" = self.buildNodePackage { + name = "winston-2.2.0"; + version = "2.2.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-2.2.0.tgz"; + name = "winston-2.2.0.tgz"; + sha1 = "2c853dd87ab552a8e8485d72cbbf9a2286f029b7"; + }; + deps = { + "async-1.0.0" = self.by-version."async"."1.0.0"; + "colors-1.0.3" = self.by-version."colors"."1.0.3"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "winston" = self.by-version."winston"."2.2.0"; + by-spec."winston"."0.6.2" = + self.by-version."winston"."0.6.2"; + by-version."winston"."0.6.2" = self.buildNodePackage { + name = "winston-0.6.2"; + version = "0.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-0.6.2.tgz"; + name = "winston-0.6.2.tgz"; + sha1 = "4144fe2586cdc19a612bf8c035590132c9064bd2"; + }; + deps = { + "async-0.1.22" = self.by-version."async"."0.1.22"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "pkginfo-0.2.3" = self.by-version."pkginfo"."0.2.3"; + "request-2.9.203" = self.by-version."request"."2.9.203"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."0.6.x" = + self.by-version."winston"."0.6.2"; + by-spec."winston"."0.7.2" = + self.by-version."winston"."0.7.2"; + by-version."winston"."0.7.2" = self.buildNodePackage { + name = "winston-0.7.2"; + version = "0.7.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-0.7.2.tgz"; + name = "winston-0.7.2.tgz"; + sha1 = "2570ae1aa1d8a9401e8d5a88362e1cf936550ceb"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "request-2.16.6" = self.by-version."request"."2.16.6"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."0.7.3" = + self.by-version."winston"."0.7.3"; + by-version."winston"."0.7.3" = self.buildNodePackage { + name = "winston-0.7.3"; + version = "0.7.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz"; + name = "winston-0.7.3.tgz"; + sha1 = "7ae313ba73fcdc2ecb4aa2f9cd446e8298677266"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "request-2.16.6" = self.by-version."request"."2.16.6"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."0.8.0" = + self.by-version."winston"."0.8.0"; + by-version."winston"."0.8.0" = self.buildNodePackage { + name = "winston-0.8.0"; + version = "0.8.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-0.8.0.tgz"; + name = "winston-0.8.0.tgz"; + sha1 = "61d0830fa699706212206b0a2b5ca69a93043668"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."0.8.x" = + self.by-version."winston"."0.8.3"; + by-version."winston"."0.8.3" = self.buildNodePackage { + name = "winston-0.8.3"; + version = "0.8.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-0.8.3.tgz"; + name = "winston-0.8.3.tgz"; + sha1 = "64b6abf4cd01adcaefd5009393b1d8e8bec19db0"; + }; + deps = { + "async-0.2.10" = self.by-version."async"."0.2.10"; + "colors-0.6.2" = self.by-version."colors"."0.6.2"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."1.0.0" = + self.by-version."winston"."1.0.0"; + by-version."winston"."1.0.0" = self.buildNodePackage { + name = "winston-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-1.0.0.tgz"; + name = "winston-1.0.0.tgz"; + sha1 = "30e36e0041fc0a864b0029565719e4dc41d026a4"; + }; + deps = { + "async-0.9.2" = self.by-version."async"."0.9.2"; + "colors-1.0.3" = self.by-version."colors"."1.0.3"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."1.0.x" = + self.by-version."winston"."1.0.2"; + by-version."winston"."1.0.2" = self.buildNodePackage { + name = "winston-1.0.2"; + version = "1.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-1.0.2.tgz"; + name = "winston-1.0.2.tgz"; + sha1 = "351c58e2323f8a4ca29a45195aa9aa3b4c35d76f"; + }; + deps = { + "async-1.0.0" = self.by-version."async"."1.0.0"; + "colors-1.0.3" = self.by-version."colors"."1.0.3"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."winston"."~0.8.1" = + self.by-version."winston"."0.8.3"; + by-spec."winston"."~2.1.1" = + self.by-version."winston"."2.1.1"; + by-version."winston"."2.1.1" = self.buildNodePackage { + name = "winston-2.1.1"; + version = "2.1.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/winston/-/winston-2.1.1.tgz"; + name = "winston-2.1.1.tgz"; + sha1 = "3c9349d196207fd1bdff9d4bc43ef72510e3a12e"; + }; + deps = { + "async-1.0.0" = self.by-version."async"."1.0.0"; + "colors-1.0.3" = self.by-version."colors"."1.0.3"; + "cycle-1.0.3" = self.by-version."cycle"."1.0.3"; + "eyes-0.1.8" = self.by-version."eyes"."0.1.8"; + "isstream-0.1.2" = self.by-version."isstream"."0.1.2"; + "pkginfo-0.3.1" = self.by-version."pkginfo"."0.3.1"; + "stack-trace-0.0.9" = self.by-version."stack-trace"."0.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."with"."~4.0.0" = + self.by-version."with"."4.0.3"; + by-version."with"."4.0.3" = self.buildNodePackage { + name = "with-4.0.3"; + version = "4.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/with/-/with-4.0.3.tgz"; + name = "with-4.0.3.tgz"; + sha1 = "eefd154e9e79d2c8d3417b647a8f14d9fecce14e"; + }; + deps = { + "acorn-1.2.2" = self.by-version."acorn"."1.2.2"; + "acorn-globals-1.0.9" = self.by-version."acorn-globals"."1.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wordwrap"."0.0.2" = + self.by-version."wordwrap"."0.0.2"; + by-version."wordwrap"."0.0.2" = self.buildNodePackage { + name = "wordwrap-0.0.2"; + version = "0.0.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz"; + name = "wordwrap-0.0.2.tgz"; + sha1 = "b79669bb42ecb409f83d583cad52ca17eaa1643f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wordwrap".">=0.0.1 <0.1.0" = + self.by-version."wordwrap"."0.0.3"; + by-version."wordwrap"."0.0.3" = self.buildNodePackage { + name = "wordwrap-0.0.3"; + version = "0.0.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz"; + name = "wordwrap-0.0.3.tgz"; + sha1 = "a3d5da6cd5c0bc0008d37234bbaf1bed63059107"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wordwrap"."^1.0.0" = + self.by-version."wordwrap"."1.0.0"; + by-version."wordwrap"."1.0.0" = self.buildNodePackage { + name = "wordwrap-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; + name = "wordwrap-1.0.0.tgz"; + sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wordwrap"."~0.0.2" = + self.by-version."wordwrap"."0.0.3"; + by-spec."wordwrap"."~1.0.0" = + self.by-version."wordwrap"."1.0.0"; + by-spec."wrap-ansi"."^2.0.0" = + self.by-version."wrap-ansi"."2.0.0"; + by-version."wrap-ansi"."2.0.0" = self.buildNodePackage { + name = "wrap-ansi-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.0.0.tgz"; + name = "wrap-ansi-2.0.0.tgz"; + sha1 = "7d30f8f873f9a5bbc3a64dabc8d177e071ae426f"; + }; + deps = { + "string-width-1.0.1" = self.by-version."string-width"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wrap-fn"."^0.1.0" = + self.by-version."wrap-fn"."0.1.5"; + by-version."wrap-fn"."0.1.5" = self.buildNodePackage { + name = "wrap-fn-0.1.5"; + version = "0.1.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wrap-fn/-/wrap-fn-0.1.5.tgz"; + name = "wrap-fn-0.1.5.tgz"; + sha1 = "f21b6e41016ff4a7e31720dbc63a09016bdf9845"; + }; + deps = { + "co-3.1.0" = self.by-version."co"."3.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wrappy"."1" = + self.by-version."wrappy"."1.0.1"; + by-version."wrappy"."1.0.1" = self.buildNodePackage { + name = "wrappy-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"; + name = "wrappy-1.0.1.tgz"; + sha1 = "1e65969965ccbc2db4548c6b84a6f2c5aedd4739"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."wrappy"."~1.0.1" = + self.by-version."wrappy"."1.0.1"; + by-spec."wrench"."1.5.8" = + self.by-version."wrench"."1.5.8"; + by-version."wrench"."1.5.8" = self.buildNodePackage { + name = "wrench-1.5.8"; + version = "1.5.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wrench/-/wrench-1.5.8.tgz"; + name = "wrench-1.5.8.tgz"; + sha1 = "7a31c97f7869246d76c5cf2f5c977a1c4c8e5ab5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."write"."^0.2.1" = + self.by-version."write"."0.2.1"; + by-version."write"."0.2.1" = self.buildNodePackage { + name = "write-0.2.1"; + version = "0.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/write/-/write-0.2.1.tgz"; + name = "write-0.2.1.tgz"; + sha1 = "5fc03828e264cea3fe91455476f7a3c566cb0757"; + }; + deps = { + "mkdirp-0.5.1" = self.by-version."mkdirp"."0.5.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."write-file-atomic"."^1.1.2" = + self.by-version."write-file-atomic"."1.1.4"; + by-version."write-file-atomic"."1.1.4" = self.buildNodePackage { + name = "write-file-atomic-1.1.4"; + version = "1.1.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.1.4.tgz"; + name = "write-file-atomic-1.1.4.tgz"; + sha1 = "b1f52dc2e8dc0e3cb04d187a25f758a38a90ca3b"; + }; + deps = { + "graceful-fs-4.1.3" = self.by-version."graceful-fs"."4.1.3"; + "imurmurhash-0.1.4" = self.by-version."imurmurhash"."0.1.4"; + "slide-1.1.6" = self.by-version."slide"."1.1.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."write-file-atomic"."~1.1.4" = + self.by-version."write-file-atomic"."1.1.4"; + by-spec."ws"."0.4.31" = + self.by-version."ws"."0.4.31"; + by-version."ws"."0.4.31" = self.buildNodePackage { + name = "ws-0.4.31"; + version = "0.4.31"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-0.4.31.tgz"; + name = "ws-0.4.31.tgz"; + sha1 = "5a4849e7a9ccd1ed5a81aeb4847c9fedf3122927"; + }; + deps = { + "commander-0.6.1" = self.by-version."commander"."0.6.1"; + "nan-0.3.2" = self.by-version."nan"."0.3.2"; + "tinycolor-0.0.1" = self.by-version."tinycolor"."0.0.1"; + "options-0.0.6" = self.by-version."options"."0.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ws"."0.4.x" = + self.by-version."ws"."0.4.32"; + by-version."ws"."0.4.32" = self.buildNodePackage { + name = "ws-0.4.32"; + version = "0.4.32"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-0.4.32.tgz"; + name = "ws-0.4.32.tgz"; + sha1 = "787a6154414f3c99ed83c5772153b20feb0cec32"; + }; + deps = { + "commander-2.1.0" = self.by-version."commander"."2.1.0"; + "nan-1.0.0" = self.by-version."nan"."1.0.0"; + "tinycolor-0.0.1" = self.by-version."tinycolor"."0.0.1"; + "options-0.0.6" = self.by-version."options"."0.0.6"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ws"."0.8.1" = + self.by-version."ws"."0.8.1"; + by-version."ws"."0.8.1" = self.buildNodePackage { + name = "ws-0.8.1"; + version = "0.8.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-0.8.1.tgz"; + name = "ws-0.8.1.tgz"; + sha1 = "6b65273b99193c5f067a4cf5809598f777e3b759"; + }; + deps = { + "options-0.0.6" = self.by-version."options"."0.0.6"; + "ultron-1.0.2" = self.by-version."ultron"."1.0.2"; + }; + optionalDependencies = { + "bufferutil-1.2.1" = self.by-version."bufferutil"."1.2.1"; + "utf-8-validate-1.2.1" = self.by-version."utf-8-validate"."1.2.1"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ws"."1.0.1" = + self.by-version."ws"."1.0.1"; + by-version."ws"."1.0.1" = self.buildNodePackage { + name = "ws-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/ws/-/ws-1.0.1.tgz"; + name = "ws-1.0.1.tgz"; + sha1 = "7d0b2a2e58cddd819039c29c9de65045e1b310e9"; + }; + deps = { + "options-0.0.6" = self.by-version."options"."0.0.6"; + "ultron-1.0.2" = self.by-version."ultron"."1.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."ws"."^0.8.0" = + self.by-version."ws"."0.8.1"; + by-spec."ws"."^1.0.0" = + self.by-version."ws"."1.0.1"; + by-spec."ws"."^1.0.1" = + self.by-version."ws"."1.0.1"; + by-spec."wu"."*" = + self.by-version."wu"."2.1.0"; + by-version."wu"."2.1.0" = self.buildNodePackage { + name = "wu-2.1.0"; + version = "2.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/wu/-/wu-2.1.0.tgz"; + name = "wu-2.1.0.tgz"; + sha1 = "7e72e3fba23e0ff669ddd537e1c857d3d4b1614f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "wu" = self.by-version."wu"."2.1.0"; + by-spec."x-default-browser"."~0.3.0" = + self.by-version."x-default-browser"."0.3.1"; + by-version."x-default-browser"."0.3.1" = self.buildNodePackage { + name = "x-default-browser-0.3.1"; + version = "0.3.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/x-default-browser/-/x-default-browser-0.3.1.tgz"; + name = "x-default-browser-0.3.1.tgz"; + sha1 = "7f6194154fd1786cf261e68b5488c47127a04977"; + }; + deps = { + }; + optionalDependencies = { + "default-browser-id-1.0.4" = self.by-version."default-browser-id"."1.0.4"; + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."x509"."*" = + self.by-version."x509"."0.2.4"; + by-version."x509"."0.2.4" = self.buildNodePackage { + name = "x509-0.2.4"; + version = "0.2.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/x509/-/x509-0.2.4.tgz"; + name = "x509-0.2.4.tgz"; + sha1 = "f3310792471f85122640a7206d88d3d1fa1956b5"; + }; + deps = { + "nan-2.0.9" = self.by-version."nan"."2.0.9"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + "x509" = self.by-version."x509"."0.2.4"; + by-spec."xcode"."0.8.0" = + self.by-version."xcode"."0.8.0"; + by-version."xcode"."0.8.0" = self.buildNodePackage { + name = "xcode-0.8.0"; + version = "0.8.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xcode/-/xcode-0.8.0.tgz"; + name = "xcode-0.8.0.tgz"; + sha1 = "fe61edf9cb14f2bb07ca6cafdc864a4b4c1beed9"; + }; + deps = { + "pegjs-0.6.2" = self.by-version."pegjs"."0.6.2"; + "node-uuid-1.3.3" = self.by-version."node-uuid"."1.3.3"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xdg-basedir"."^2.0.0" = + self.by-version."xdg-basedir"."2.0.0"; + by-version."xdg-basedir"."2.0.0" = self.buildNodePackage { + name = "xdg-basedir-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz"; + name = "xdg-basedir-2.0.0.tgz"; + sha1 = "edbc903cc385fc04523d966a335504b5504d1bd2"; + }; + deps = { + "os-homedir-1.0.1" = self.by-version."os-homedir"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xhr2".">= 0.0.5" = + self.by-version."xhr2"."0.1.3"; + by-version."xhr2"."0.1.3" = self.buildNodePackage { + name = "xhr2-0.1.3"; + version = "0.1.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xhr2/-/xhr2-0.1.3.tgz"; + name = "xhr2-0.1.3.tgz"; + sha1 = "cbfc4759a69b4a888e78cf4f20b051038757bd11"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml"."^1.0.0" = + self.by-version."xml"."1.0.1"; + by-version."xml"."1.0.1" = self.buildNodePackage { + name = "xml-1.0.1"; + version = "1.0.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz"; + name = "xml-1.0.1.tgz"; + sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml-name-validator"."^1.0.0" = + self.by-version."xml-name-validator"."1.0.0"; + by-version."xml-name-validator"."1.0.0" = self.buildNodePackage { + name = "xml-name-validator-1.0.0"; + version = "1.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-1.0.0.tgz"; + name = "xml-name-validator-1.0.0.tgz"; + sha1 = "dcf82ee092322951ef8cc1ba596c9cbfd14a83f1"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.1.x" = + self.by-version."xml2js"."0.1.14"; + by-version."xml2js"."0.1.14" = self.buildNodePackage { + name = "xml2js-0.1.14"; + version = "0.1.14"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.1.14.tgz"; + name = "xml2js-0.1.14.tgz"; + sha1 = "5274e67f5a64c5f92974cd85139e0332adc6b90c"; + }; + deps = { + "sax-1.2.1" = self.by-version."sax"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.2.4" = + self.by-version."xml2js"."0.2.4"; + by-version."xml2js"."0.2.4" = self.buildNodePackage { + name = "xml2js-0.2.4"; + version = "0.2.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.4.tgz"; + name = "xml2js-0.2.4.tgz"; + sha1 = "9a5b577fa1e6cdf8923d5e1372f7a3188436e44d"; + }; + deps = { + "sax-1.2.1" = self.by-version."sax"."1.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.2.6" = + self.by-version."xml2js"."0.2.6"; + by-version."xml2js"."0.2.6" = self.buildNodePackage { + name = "xml2js-0.2.6"; + version = "0.2.6"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.2.6.tgz"; + name = "xml2js-0.2.6.tgz"; + sha1 = "d209c4e4dda1fc9c452141ef41c077f5adfdf6c4"; + }; + deps = { + "sax-0.4.2" = self.by-version."sax"."0.4.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.4.15" = + self.by-version."xml2js"."0.4.15"; + by-version."xml2js"."0.4.15" = self.buildNodePackage { + name = "xml2js-0.4.15"; + version = "0.4.15"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.15.tgz"; + name = "xml2js-0.4.15.tgz"; + sha1 = "95cd03ff2dd144ec28bc6273bf2b2890c581ad0c"; + }; + deps = { + "sax-1.2.1" = self.by-version."sax"."1.2.1"; + "xmlbuilder-8.2.2" = self.by-version."xmlbuilder"."8.2.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.4.16" = + self.by-version."xml2js"."0.4.16"; + by-version."xml2js"."0.4.16" = self.buildNodePackage { + name = "xml2js-0.4.16"; + version = "0.4.16"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.16.tgz"; + name = "xml2js-0.4.16.tgz"; + sha1 = "f82fccd2f9540d7e0a9b5dac163e7471195c9db3"; + }; + deps = { + "sax-1.2.1" = self.by-version."sax"."1.2.1"; + "xmlbuilder-4.2.1" = self.by-version."xmlbuilder"."4.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js"."0.4.4" = + self.by-version."xml2js"."0.4.4"; + by-version."xml2js"."0.4.4" = self.buildNodePackage { + name = "xml2js-0.4.4"; + version = "0.4.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xml2js/-/xml2js-0.4.4.tgz"; + name = "xml2js-0.4.4.tgz"; + sha1 = "3111010003008ae19240eba17497b57c729c555d"; + }; + deps = { + "sax-0.6.1" = self.by-version."sax"."0.6.1"; + "xmlbuilder-8.2.2" = self.by-version."xmlbuilder"."8.2.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2js".">= 0.0.1" = + self.by-version."xml2js"."0.4.16"; + by-spec."xml2js".">=0.1.7" = + self.by-version."xml2js"."0.4.16"; + by-spec."xml2js"."^0.4.15" = + self.by-version."xml2js"."0.4.16"; + by-spec."xml2js"."^0.4.4" = + self.by-version."xml2js"."0.4.16"; + by-spec."xml2json".">=0.3.2" = + self.by-version."xml2json"."0.9.0"; + by-version."xml2json"."0.9.0" = self.buildNodePackage { + name = "xml2json-0.9.0"; + version = "0.9.0"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/xml2json/-/xml2json-0.9.0.tgz"; + name = "xml2json-0.9.0.tgz"; + sha1 = "cf85a24b1ab0291a409d79bba5c5da720c01ec31"; + }; + deps = { + "hoek-2.16.3" = self.by-version."hoek"."2.16.3"; + "joi-6.10.1" = self.by-version."joi"."6.10.1"; + "node-expat-2.3.13" = self.by-version."node-expat"."2.3.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xml2json"."^0.5.1" = + self.by-version."xml2json"."0.5.1"; + by-version."xml2json"."0.5.1" = self.buildNodePackage { + name = "xml2json-0.5.1"; + version = "0.5.1"; + bin = true; + src = fetchurl { + url = "https://registry.npmjs.org/xml2json/-/xml2json-0.5.1.tgz"; + name = "xml2json-0.5.1.tgz"; + sha1 = "4667011bf0b34e8ec9830cf83e9476659a94d9ba"; + }; + deps = { + "node-expat-2.3.13" = self.by-version."node-expat"."2.3.13"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder"."0.4.2" = + self.by-version."xmlbuilder"."0.4.2"; + by-version."xmlbuilder"."0.4.2" = self.buildNodePackage { + name = "xmlbuilder-0.4.2"; + version = "0.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-0.4.2.tgz"; + name = "xmlbuilder-0.4.2.tgz"; + sha1 = "1776d65f3fdbad470a08d8604cdeb1c4e540ff83"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder"."2.6.2" = + self.by-version."xmlbuilder"."2.6.2"; + by-version."xmlbuilder"."2.6.2" = self.buildNodePackage { + name = "xmlbuilder-2.6.2"; + version = "2.6.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-2.6.2.tgz"; + name = "xmlbuilder-2.6.2.tgz"; + sha1 = "f916f6d10d45dc171b1be2e6e673fb6e0cc35d0a"; + }; + deps = { + "lodash-3.5.0" = self.by-version."lodash"."3.5.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder"."3.1.0" = + self.by-version."xmlbuilder"."3.1.0"; + by-version."xmlbuilder"."3.1.0" = self.buildNodePackage { + name = "xmlbuilder-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-3.1.0.tgz"; + name = "xmlbuilder-3.1.0.tgz"; + sha1 = "2c86888f2d4eade850fa38ca7f7223f7209516e1"; + }; + deps = { + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder"."4.0.0" = + self.by-version."xmlbuilder"."4.0.0"; + by-version."xmlbuilder"."4.0.0" = self.buildNodePackage { + name = "xmlbuilder-4.0.0"; + version = "4.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.0.0.tgz"; + name = "xmlbuilder-4.0.0.tgz"; + sha1 = "98b8f651ca30aa624036f127d11cc66dc7b907a3"; + }; + deps = { + "lodash-3.10.1" = self.by-version."lodash"."3.10.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder".">=1.0.0" = + self.by-version."xmlbuilder"."8.2.2"; + by-version."xmlbuilder"."8.2.2" = self.buildNodePackage { + name = "xmlbuilder-8.2.2"; + version = "8.2.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-8.2.2.tgz"; + name = "xmlbuilder-8.2.2.tgz"; + sha1 = "69248673410b4ba42e1a6136551d2922335aa773"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlbuilder".">=2.4.6" = + self.by-version."xmlbuilder"."8.2.2"; + by-spec."xmlbuilder"."^4.1.0" = + self.by-version."xmlbuilder"."4.2.1"; + by-version."xmlbuilder"."4.2.1" = self.buildNodePackage { + name = "xmlbuilder-4.2.1"; + version = "4.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-4.2.1.tgz"; + name = "xmlbuilder-4.2.1.tgz"; + sha1 = "aa58a3041a066f90eaa16c2f5389ff19f3f461a5"; + }; + deps = { + "lodash-4.8.2" = self.by-version."lodash"."4.8.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmldom"."0.1.19" = + self.by-version."xmldom"."0.1.19"; + by-version."xmldom"."0.1.19" = self.buildNodePackage { + name = "xmldom-0.1.19"; + version = "0.1.19"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.19.tgz"; + name = "xmldom-0.1.19.tgz"; + sha1 = "631fc07776efd84118bf25171b37ed4d075a0abc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmldom"."0.1.x" = + self.by-version."xmldom"."0.1.22"; + by-version."xmldom"."0.1.22" = self.buildNodePackage { + name = "xmldom-0.1.22"; + version = "0.1.22"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.22.tgz"; + name = "xmldom-0.1.22.tgz"; + sha1 = "10de4e5e964981f03c8cc72fadc08d14b6c3aa26"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlhttprequest"."1.4.2" = + self.by-version."xmlhttprequest"."1.4.2"; + by-version."xmlhttprequest"."1.4.2" = self.buildNodePackage { + name = "xmlhttprequest-1.4.2"; + version = "1.4.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.4.2.tgz"; + name = "xmlhttprequest-1.4.2.tgz"; + sha1 = "01453a1d9bed1e8f172f6495bbf4c8c426321500"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlhttprequest".">= 1.6.0 < 2.0.0" = + self.by-version."xmlhttprequest"."1.8.0"; + by-version."xmlhttprequest"."1.8.0" = self.buildNodePackage { + name = "xmlhttprequest-1.8.0"; + version = "1.8.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz"; + name = "xmlhttprequest-1.8.0.tgz"; + sha1 = "67fe075c5c24fef39f9d65f5f7b7fe75171968fc"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlhttprequest".">=1.5.0" = + self.by-version."xmlhttprequest"."1.8.0"; + by-spec."xmlhttprequest"."https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz" = + self.by-version."xmlhttprequest"."1.5.0"; + by-version."xmlhttprequest"."1.5.0" = self.buildNodePackage { + name = "xmlhttprequest-1.5.0"; + version = "1.5.0"; + bin = false; + src = fetchurl { + url = "https://github.com/LearnBoost/node-XMLHttpRequest/archive/0f36d0b5ebc03d85f860d42a64ae9791e1daa433.tar.gz"; + name = "xmlhttprequest-1.5.0.tgz"; + sha256 = "28dd0394d85befe8be4e9cd9f6803102780c62cbb09298cb174b52ff9777624f"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xmlhttprequest-ssl"."1.5.1" = + self.by-version."xmlhttprequest-ssl"."1.5.1"; + by-version."xmlhttprequest-ssl"."1.5.1" = self.buildNodePackage { + name = "xmlhttprequest-ssl-1.5.1"; + version = "1.5.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.1.tgz"; + name = "xmlhttprequest-ssl-1.5.1.tgz"; + sha1 = "3b7741fea4a86675976e908d296d4445961faa67"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xoauth2"."~0.1.8" = + self.by-version."xoauth2"."0.1.8"; + by-version."xoauth2"."0.1.8" = self.buildNodePackage { + name = "xoauth2-0.1.8"; + version = "0.1.8"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xoauth2/-/xoauth2-0.1.8.tgz"; + name = "xoauth2-0.1.8.tgz"; + sha1 = "b916ff10ecfb54320f16f24a3e975120653ab0d2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xregexp"."2.0.0" = + self.by-version."xregexp"."2.0.0"; + by-version."xregexp"."2.0.0" = self.buildNodePackage { + name = "xregexp-2.0.0"; + version = "2.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xregexp/-/xregexp-2.0.0.tgz"; + name = "xregexp-2.0.0.tgz"; + sha1 = "52a63e56ca0b84a7f3a5f3d61872f126ad7a5943"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xregexp"."^3.0.0" = + self.by-version."xregexp"."3.1.0"; + by-version."xregexp"."3.1.0" = self.buildNodePackage { + name = "xregexp-3.1.0"; + version = "3.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xregexp/-/xregexp-3.1.0.tgz"; + name = "xregexp-3.1.0.tgz"; + sha1 = "14d8461e0bdd38224bfee5039a0898fc42fcd336"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xtend".">=4.0.0 <4.1.0-0" = + self.by-version."xtend"."4.0.1"; by-version."xtend"."4.0.1" = self.buildNodePackage { name = "xtend-4.0.1"; version = "4.0.1"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; + url = "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz"; name = "xtend-4.0.1.tgz"; sha1 = "a5c6d532be656e23db820efb943a1f04998d63af"; }; @@ -49416,6 +50931,70 @@ os = [ ]; cpu = [ ]; }; + by-spec."xtend"."^4.0.0" = + self.by-version."xtend"."4.0.1"; + by-spec."xtend"."^4.0.1" = + self.by-version."xtend"."4.0.1"; + by-spec."xtend"."~3.0.0" = + self.by-version."xtend"."3.0.0"; + by-version."xtend"."3.0.0" = self.buildNodePackage { + name = "xtend-3.0.0"; + version = "3.0.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xtend/-/xtend-3.0.0.tgz"; + name = "xtend-3.0.0.tgz"; + sha1 = "5cce7407baf642cba7becda568111c493f59665a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."xtend"."~4.0.0" = + self.by-version."xtend"."4.0.1"; + by-spec."xtraverse"."0.1.x" = + self.by-version."xtraverse"."0.1.0"; + by-version."xtraverse"."0.1.0" = self.buildNodePackage { + name = "xtraverse-0.1.0"; + version = "0.1.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/xtraverse/-/xtraverse-0.1.0.tgz"; + name = "xtraverse-0.1.0.tgz"; + sha1 = "b741bad018ef78d8a9d2e83ade007b3f7959c732"; + }; + deps = { + "xmldom-0.1.22" = self.by-version."xmldom"."0.1.22"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."y18n"."^3.2.0" = + self.by-version."y18n"."3.2.1"; + by-version."y18n"."3.2.1" = self.buildNodePackage { + name = "y18n-3.2.1"; + version = "3.2.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz"; + name = "y18n-3.2.1.tgz"; + sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; by-spec."yallist"."^2.0.0" = self.by-version."yallist"."2.0.0"; by-version."yallist"."2.0.0" = self.buildNodePackage { @@ -49423,7 +51002,7 @@ version = "2.0.0"; bin = false; src = fetchurl { - url = "http://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz"; + url = "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz"; name = "yallist-2.0.0.tgz"; sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4"; }; @@ -49435,4 +51014,208 @@ os = [ ]; cpu = [ ]; }; + by-spec."yargs"."^1.3.3" = + self.by-version."yargs"."1.3.3"; + by-version."yargs"."1.3.3" = self.buildNodePackage { + name = "yargs-1.3.3"; + version = "1.3.3"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yargs/-/yargs-1.3.3.tgz"; + name = "yargs-1.3.3.tgz"; + sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yargs"."^3.19.0" = + self.by-version."yargs"."3.32.0"; + by-version."yargs"."3.32.0" = self.buildNodePackage { + name = "yargs-3.32.0"; + version = "3.32.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yargs/-/yargs-3.32.0.tgz"; + name = "yargs-3.32.0.tgz"; + sha1 = "03088e9ebf9e756b69751611d2a5ef591482c995"; + }; + deps = { + "camelcase-2.1.1" = self.by-version."camelcase"."2.1.1"; + "cliui-3.1.2" = self.by-version."cliui"."3.1.2"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "os-locale-1.4.0" = self.by-version."os-locale"."1.4.0"; + "string-width-1.0.1" = self.by-version."string-width"."1.0.1"; + "window-size-0.1.4" = self.by-version."window-size"."0.1.4"; + "y18n-3.2.1" = self.by-version."y18n"."3.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yargs"."^3.31.0" = + self.by-version."yargs"."3.32.0"; + by-spec."yargs"."^3.9.0" = + self.by-version."yargs"."3.32.0"; + by-spec."yargs"."~1.3.1" = + self.by-version."yargs"."1.3.3"; + by-spec."yargs"."~3.10.0" = + self.by-version."yargs"."3.10.0"; + by-version."yargs"."3.10.0" = self.buildNodePackage { + name = "yargs-3.10.0"; + version = "3.10.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz"; + name = "yargs-3.10.0.tgz"; + sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; + }; + deps = { + "camelcase-1.2.1" = self.by-version."camelcase"."1.2.1"; + "cliui-2.1.0" = self.by-version."cliui"."2.1.0"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "window-size-0.1.0" = self.by-version."window-size"."0.1.0"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yargs"."~3.27.0" = + self.by-version."yargs"."3.27.0"; + by-version."yargs"."3.27.0" = self.buildNodePackage { + name = "yargs-3.27.0"; + version = "3.27.0"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yargs/-/yargs-3.27.0.tgz"; + name = "yargs-3.27.0.tgz"; + sha1 = "21205469316e939131d59f2da0c6d7f98221ea40"; + }; + deps = { + "camelcase-1.2.1" = self.by-version."camelcase"."1.2.1"; + "cliui-2.1.0" = self.by-version."cliui"."2.1.0"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "os-locale-1.4.0" = self.by-version."os-locale"."1.4.0"; + "window-size-0.1.4" = self.by-version."window-size"."0.1.4"; + "y18n-3.2.1" = self.by-version."y18n"."3.2.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yargs"."~3.32.0" = + self.by-version."yargs"."3.32.0"; + by-spec."yargs"."~3.5.4" = + self.by-version."yargs"."3.5.4"; + by-version."yargs"."3.5.4" = self.buildNodePackage { + name = "yargs-3.5.4"; + version = "3.5.4"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yargs/-/yargs-3.5.4.tgz"; + name = "yargs-3.5.4.tgz"; + sha1 = "d8aff8f665e94c34bd259bdebd1bfaf0ddd35361"; + }; + deps = { + "camelcase-1.2.1" = self.by-version."camelcase"."1.2.1"; + "decamelize-1.2.0" = self.by-version."decamelize"."1.2.0"; + "window-size-0.1.0" = self.by-version."window-size"."0.1.0"; + "wordwrap-0.0.2" = self.by-version."wordwrap"."0.0.2"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yauzl"."2.4.1" = + self.by-version."yauzl"."2.4.1"; + by-version."yauzl"."2.4.1" = self.buildNodePackage { + name = "yauzl-2.4.1"; + version = "2.4.1"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.4.1.tgz"; + name = "yauzl-2.4.1.tgz"; + sha1 = "9528f442dab1b2284e58b4379bb194e22e0c4005"; + }; + deps = { + "fd-slicer-1.0.1" = self.by-version."fd-slicer"."1.0.1"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."yeast"."0.1.2" = + self.by-version."yeast"."0.1.2"; + by-version."yeast"."0.1.2" = self.buildNodePackage { + name = "yeast-0.1.2"; + version = "0.1.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz"; + name = "yeast-0.1.2.tgz"; + sha1 = "008e06d8094320c372dbc2f8ed76a0ca6c8ac419"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."zeparser"."0.0.5" = + self.by-version."zeparser"."0.0.5"; + by-version."zeparser"."0.0.5" = self.buildNodePackage { + name = "zeparser-0.0.5"; + version = "0.0.5"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/zeparser/-/zeparser-0.0.5.tgz"; + name = "zeparser-0.0.5.tgz"; + sha1 = "03726561bc268f2e5444f54c665b7fd4a8c029e2"; + }; + deps = { + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; + by-spec."zip-stream"."~0.5.0" = + self.by-version."zip-stream"."0.5.2"; + by-version."zip-stream"."0.5.2" = self.buildNodePackage { + name = "zip-stream-0.5.2"; + version = "0.5.2"; + bin = false; + src = fetchurl { + url = "https://registry.npmjs.org/zip-stream/-/zip-stream-0.5.2.tgz"; + name = "zip-stream-0.5.2.tgz"; + sha1 = "32dcbc506d0dab4d21372625bd7ebaac3c2fff56"; + }; + deps = { + "compress-commons-0.2.9" = self.by-version."compress-commons"."0.2.9"; + "lodash-3.2.0" = self.by-version."lodash"."3.2.0"; + "readable-stream-1.0.33" = self.by-version."readable-stream"."1.0.33"; + }; + optionalDependencies = { + }; + peerDependencies = []; + os = [ ]; + cpu = [ ]; + }; } diff --git a/pkgs/top-level/node-packages.json b/pkgs/top-level/node-packages.json index 600ea00b93e6..ceb41e2e1ef2 100644 --- a/pkgs/top-level/node-packages.json +++ b/pkgs/top-level/node-packages.json @@ -1,191 +1,188 @@ [ "async" +, "almond" +, "amdefine" +, "ansi-remover" , "assert" -, "mocha" -, "jayschema" -, "underscore" -, "extend" +, "aws-sdk" +, "backbone" +, "bcrypt" +, "bip-pod-alchemy" +, "bip-pod-chain" +, "bip-pod-circonus" +, "bip-pod-coindesk" +, "bip-pod-craigslist" +, "bip-pod-crypto" +, "bip-pod-dropbox" +, "bip-pod-embedly" +, "bip-pod-evernote" +, "bip-pod-facebook" +, "bip-pod-flickr" +, "bip-pod-github" +, "bip-pod-github" +, "bip-pod-github" +, "bip-pod-gmail" +, "bip-pod-google" +, "bip-pod-google-drive" +, "bip-pod-imgur" +, "bip-pod-instagram" +, "bip-pod-kato" +, "bip-pod-keenio" +, "bip-pod-mailchimp" +, "bip-pod-mailgun" +, "bip-pod-mixcloud" +, "bip-pod-mongodb" +, "bip-pod-numerous" +, "bip-pod-pushbullet" +, "bip-pod-pusher" +, "bip-pod-soundcloud" +, "bip-pod-statuscake" +, "bip-pod-todoist" +, "bip-pod-trello" +, "bip-pod-trello" +, "bip-pod-twilio" +, "bip-pod-twitter" +, "bip-pod-witai" +, "bip-pod-wordpress" +, "bip-pod-zoho" +, "bipio" +, "bower" +, "bower2nix" +, "browserchannel" +, "browserify" +, "buffertools" +, "castnow" +, "chai" +, "coffee-script" +, "connect-flash" +, "connect-jade-static" +, "connect-mongo" +, "cordova" +, "coveralls" +, "deepmerge" +, "docker-registry-server" +, "escape-html" +, "eslint" , "express" , "express-form" -, "s3http" -, "aws-sdk" -, "nijs" -, "amdefine" -, "smartdc" -, "optparse" -, "jsontool" -, { "swig": "0.14.x" } -, "coffee-script" -, "escape-html" -, "buffertools" -, "wu" -, "source-map" -, "knox" -, "node-expat" -, "optimist" -, "temp" +, "extend" , "faye-websocket" -, "node-uuid" -, "sockjs" -, "backbone" -, "browserchannel" -, "node-gyp" -, "semver" -, { "npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0" } -, "ansi-remover" -, "mkdirp" -, "jshint" -, "bcrypt" -, "nconf" -, "winston" -, "jade" -, "view-helpers" -, "redis" -, { "mongoose": "3.6.x" } -, "mongoose-schema-extend" -, "connect-mongo" -, "connect-flash" -, "passport" -, "passport-local" -, "passport-http" -, "gzippo" -, "walk" +, "flatiron" , "forever" , "forever-monitor" -, "kue" -, "supertest" -, "should" -, "nodemon" -, "timezone" -, "i18next" -, "stylus" -, "nib" -, "npm" -, "gridfs-stream" -, "tar" -, "flatiron" -, "ironhorse" , "fs-walk" -, "ungit" -, { "node-uptime": "https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" } -, { "guifi-earth": "https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " } +, "git-run" +, "gridfs-stream" , "grunt-cli" -, "grunt-contrib-jshint" -, "grunt-contrib-requirejs" -, "grunt-contrib-less" , "grunt-contrib-cssmin" +, "grunt-contrib-eslint" +, "grunt-contrib-jshint" +, "grunt-contrib-less" +, "grunt-contrib-requirejs" , "grunt-contrib-uglify" , "grunt-karma" , "grunt-sed" , "gulp" -, "webpack" +, "gzippo" +, "hipache" +, "i18next" +, "ironhorse" +, "istanbul" +, "jade" +, "jayschema" +, "jfs" +, "js-yaml" +, "jshint" +, "json" +, "jsontool" , "karma" -, "karma-mocha" +, "karma-chrome-launcher" , "karma-coverage" +, "karma-junit-reporter" +, "karma-mocha" , "karma-requirejs" , "karma-sauce-launcher" -, "karma-chrome-launcher" -, "karma-junit-reporter" -, "almond" +, "knox" +, "kue" , "lcov-result-merger" -, "coveralls" -, "js-yaml" -, "node-inspector" -, "istanbul" -, "mocha-unfunk-reporter" -, "chai" -, "selenium-webdriver" -, "webdrvr" -, "connect-jade-static" -, "plist-native" -, "x509" -, "owl-deepcopy" -, "meat" -, "hipache" -, "posix" -, "node-protobuf" -, "rethinkdb" -, "titanium" -, "deepmerge" -, "slasp" -, "react" -, { "pure-css": "git://github.com/yui/pure.git#v0.5.0-rc-1" } -, "marked" -, "browserify" -, "uglify-js" , "less" -, "mocha-phantomjs" -, "phantomjs" -, "sinon" -, "shelljs" -, "typescript" -, "git-run" -, "bower" -, "bower2nix" -, "npm-check-updates" -, "node-stringprep" , "ltx" -, "node-xmpp" -, "node-xmpp-core" +, "marked" +, "meat" +, "mkdirp" +, "mocha" +, "mocha-phantomjs" +, "mocha-unfunk-reporter" +, "mongoose-schema-extend" +, "nconf" +, "nib" +, "nijs" +, "node-expat" +, "node-gyp" +, "node-inspector" +, "node-protobuf" +, "node-red" +, "node-stringprep" +, "node-uuid" , "node-xmpp-client" , "node-xmpp-component" +, "node-xmpp-core" +, "node-xmpp-joap" , "node-xmpp-server" , "node-xmpp-serviceadmin" -, "node-xmpp-joap" -, "jfs" -, "cordova" -, "sloc" +, "nodemon" +, "npm" +, "npm-check-updates" +, "optimist" +, "optparse" +, "owl-deepcopy" +, "parsoid" +, "passport" +, "passport-http" +, "passport-local" , "peerflix" , "peerflix-server" -, "trash" -, "empty-trash" -, "castnow" -, "parsoid" -, { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" } +, "phantomjs" +, "plist-native" +, "posix" +, "pure" +, "react" , "react-tools" -, "json" -, "bipio" -, "bip-pod-flickr" -, "bip-pod-imgur" -, "bip-pod-github" -, "bip-pod-twilio" -, "bip-pod-coindesk" -, "bip-pod-twitter" -, "bip-pod-crypto" -, "bip-pod-embedly" -, "bip-pod-mailgun" -, "bip-pod-chain" -, "bip-pod-trello" -, "bip-pod-pusher" -, "bip-pod-keenio" -, "bip-pod-numerous" -, "bip-pod-statuscake" -, "bip-pod-mongodb" -, "bip-pod-facebook" -, "bip-pod-trello" -, "bip-pod-wordpress" -, "bip-pod-alchemy" -, "bip-pod-dropbox" -, "bip-pod-craigslist" -, "bip-pod-soundcloud" -, "bip-pod-mixcloud" -, "bip-pod-instagram" -, "bip-pod-witai" -, "bip-pod-zoho" -, "bip-pod-bitly" -, "bip-pod-circonus" -, "bip-pod-google" -, "bip-pod-mailchimp" -, "bip-pod-pushbullet" -, "bip-pod-todoist" -, "bip-pod-kato" -, "bip-pod-evernote" -, "bip-pod-gmail" -, "bip-pod-github" -, "bip-pod-google-drive" -, "bip-pod-github" -, "sleep" -, "node-red" +, "redis" +, "rethinkdb" +, "s3http" +, "selenium-webdriver" +, "semver" +, "shelljs" +, "should" +, "sinon" , "sinopia" -, "docker-registry-server" +, "slasp" +, "sleep" +, "sloc" +, "smartdc" +, "sockjs" +, "source-map" +, "stylus" +, "tar" +, "temp" +, "tern" +, "timezone" +, "titanium" +, "typescript" +, "uglify-js" +, "underscore" +, "ungit" +, "view-helpers" +, "walk" +, "webdrvr" +, "webpack" +, "winston" +, "wu" +, "x509" +, { "guifi-earth": "https://github.com/jmendeth/guifi-earth/tarball/f3ee96835fd4fb0e3e12fadbd2cb782770d64854 " } +, { "mongoose": "3.6.x" } +, { "node-uptime": "https://github.com/fzaninotto/uptime/tarball/1c65756575f90f563a752e2a22892ba2981c79b7" } +, { "npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0" } +, { "swig": "0.14.x" } ] diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 5568d45e7cfb..3dc8d928e0de 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -1981,7 +1981,7 @@ let self = _self // overrides; _self = with self; { # Don't build a private copy of bzip2. BUILD_BZIP2 = false; - BZIP2_LIB = "${pkgs.bzip2}/lib"; + BZIP2_LIB = "${pkgs.bzip2.out}/lib"; BZIP2_INCLUDE = "${pkgs.bzip2}/include"; meta = { @@ -2412,8 +2412,8 @@ let self = _self // overrides; _self = with self; { sha256 = "0f5gdprcql4kwzgxl2s6ngcfg1jl45lzcqh7dkv5bkwlwmxa9rsi"; }; buildInputs = [ DevelChecklib TestRequires pkgs.gmp ]; - NIX_CFLAGS_COMPILE = "-I${pkgs.gmp}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.gmp}/lib -lgmp"; + NIX_CFLAGS_COMPILE = "-I${pkgs.gmp.dev}/include"; + NIX_CFLAGS_LINK = "-L${pkgs.gmp.out}/lib -lgmp"; }; CryptEksblowfish = buildPerlPackage rec { @@ -2533,7 +2533,7 @@ let self = _self // overrides; _self = with self; { sha256 = "b66fab514edf97fc32f58da257582704a210c2b35e297d5c31b7fa2ffd08e908"; }; NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.openssl}/lib -lcrypto"; + NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto"; meta = with stdenv.lib; { homepage = https://metacpan.org/release/Crypt-OpenSSL-AES; description = "Perl wrapper around OpenSSL's AES library"; @@ -2550,7 +2550,7 @@ let self = _self // overrides; _self = with self; { sha256 = "18vg2bqyhc0ahfdh5dkbgph5nh92qcz5vi99jq8aam4h86if78bk"; }; NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.openssl}/lib -lcrypto"; + NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto"; }; CryptOpenSSLRandom = buildPerlPackage rec { @@ -2560,7 +2560,7 @@ let self = _self // overrides; _self = with self; { sha256 = "12pirh1pj8lpvzcwj2if9i6dbr6a7s9g1zc7gzbd3v87d6mx0rdf"; }; NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.openssl}/lib -lcrypto"; + NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto"; }; CryptOpenSSLRSA = buildPerlPackage rec { @@ -2571,7 +2571,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ CryptOpenSSLRandom ]; NIX_CFLAGS_COMPILE = "-I${pkgs.openssl}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.openssl}/lib -lcrypto"; + NIX_CFLAGS_LINK = "-L${pkgs.openssl.out}/lib -lcrypto"; }; CryptSSLeay = buildPerlPackage rec { @@ -2580,7 +2580,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/N/NA/NANIS/${name}.tar.gz"; sha256 = "1s7zm6ph37kg8jzaxnhi4ff4snxl7mi5h14arxbri0kp6s0lzlzm"; }; - makeMakerFlags = "--libpath=${pkgs.openssl}/lib --incpath=${pkgs.openssl}/include"; + makeMakerFlags = "--libpath=${pkgs.openssl.out}/lib --incpath=${pkgs.openssl}/include"; buildInputs = [ PathClass TryTiny ]; }; @@ -5239,7 +5239,7 @@ let self = _self // overrides; _self = with self; { # tests fail doCheck = false; - makeMakerFlags = "--lib_png_path=${pkgs.libpng} --lib_jpeg_path=${pkgs.libjpeg} --lib_zlib_path=${pkgs.zlib} --lib_ft_path=${pkgs.freetype} --lib_fontconfig_path=${pkgs.fontconfig} --lib_xpm_path=${pkgs.xorg.libXpm}"; + makeMakerFlags = "--lib_png_path=${pkgs.libpng.out} --lib_jpeg_path=${pkgs.libjpeg.out} --lib_zlib_path=${pkgs.zlib.out} --lib_ft_path=${pkgs.freetype.out} --lib_fontconfig_path=${pkgs.fontconfig.lib} --lib_xpm_path=${pkgs.xorg.libXpm.out}"; }; GDSecurityImage = buildPerlPackage { @@ -6538,7 +6538,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ ApacheTest ExtUtilsXSBuilder mod_perl2 pkgs.apacheHttpd pkgs.apr pkgs.aprutil ]; propagatedBuildInputs = [ mod_perl2 ]; - makeMakerFlags = "--with-apache2-src=${pkgs.apacheHttpd} --with-apache2-apxs=${pkgs.apacheHttpd}/bin/apxs --with-apache2-httpd=${pkgs.apacheHttpd}/bin/httpd --with-apr-config=${pkgs.apr}/bin/apr-1-config --with-apu-config=${pkgs.aprutil}/bin/apu-1-config"; + makeMakerFlags = "--with-apache2-src=${pkgs.apacheHttpd} --with-apache2-apxs=${pkgs.apacheHttpd}/bin/apxs --with-apache2-httpd=${pkgs.apacheHttpd.out}/bin/httpd --with-apr-config=${pkgs.apr}/bin/apr-1-config --with-apu-config=${pkgs.aprutil}/bin/apu-1-config"; preConfigure = '' # override broken prereq check substituteInPlace configure --replace "prereq_check=\"\$PERL \$PERL_OPTS build/version_check.pl\"" "prereq_check=\"echo\"" @@ -7209,8 +7209,8 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ pkgs.gmp ]; doCheck = false; - NIX_CFLAGS_COMPILE = "-I${pkgs.gmp}/include"; - NIX_CFLAGS_LINK = "-L${pkgs.gmp}/lib -lgmp"; + NIX_CFLAGS_COMPILE = "-I${pkgs.gmp.dev}/include"; + NIX_CFLAGS_LINK = "-L${pkgs.gmp.out}/lib -lgmp"; }; MathBigRat = buildPerlPackage rec { @@ -9012,8 +9012,14 @@ let self = _self // overrides; _self = with self; { sha256 = "1x6jjmhvsdq488k6wdg58ajnr4dmbcbk7imyv0aybkhj1ygw7ahv"; }; buildInputs = [ pkgs.openssl ]; - OPENSSL_PREFIX = pkgs.openssl; doCheck = false; # Test performs network access. + preConfigure = '' + mkdir openssl + ln -s ${pkgs.openssl.out}/lib openssl + ln -s ${pkgs.openssl.bin}/bin openssl + ln -s ${pkgs.openssl.dev}/include openssl + export OPENSSL_PREFIX=$(realpath openssl) + ''; meta = { description = "Perl extension for using OpenSSL"; license = "SSLeay"; @@ -10452,6 +10458,7 @@ let self = _self // overrides; _self = with self; { url = "mirror://cpan/authors/id/U/UM/UMEMOTO/${name}.tar.gz"; sha256 = "1ads4k4vvq6pnxkdw0s8gaj03w4h9snxyw7zyikfzd20fy76yx6s"; }; + setOutputFlags = false; buildInputs = [ pkgs.which ]; }; @@ -11402,7 +11409,7 @@ let self = _self // overrides; _self = with self; { preConfigure = '' substituteInPlace Makefile.PL --replace '$Config{libpth}' \ - "'${pkgs.ncurses}/lib'" + "'${pkgs.ncurses.out}/lib'" ''; # Tests don't work because they require /dev/tty. @@ -13007,7 +13014,7 @@ let self = _self // overrides; _self = with self; { url = "http://search.cpan.org/CPAN/authors/id/S/SR/SREZIC/${name}.tar.gz"; sha256 = "10fsvyr56gm59chc8b70n6bvhd3lh9c05sp8m4arcahid0rpgbwa"; }; - makeMakerFlags = "X11LIB=${pkgs.xorg.libX11}/lib"; + makeMakerFlags = "X11LIB=${pkgs.xorg.libX11.out}/lib"; buildInputs = with pkgs; [ xorg.libX11 libpng ]; configurePhase = '' perl Makefile.PL PREFIX=$out $makeMakerFlags @@ -13331,7 +13338,7 @@ let self = _self // overrides; _self = with self; { }; propagatedBuildInputs = [ LWP ConfigGeneral NetIP TermReadKey Perl5lib - CryptSSLeay CSSDOM ]; + CryptSSLeay CSSDOM LWPProtocolHttps ]; meta = { homepage = http://validator.w3.org/checklink; description = "A tool to check links and anchors in Web pages or full Web sites"; @@ -13452,7 +13459,7 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ pkgs.xorg.libXext pkgs.xorg.libXScrnSaver pkgs.xorg.libX11 ]; propagatedBuildInputs = [ InlineC ]; - patchPhase = ''sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11}/lib/ -L${pkgs.xorg.libXext}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm''; + patchPhase = ''sed -ie 's,-L/usr/X11R6/lib/,-L${pkgs.xorg.libX11.out}/lib/ -L${pkgs.xorg.libXext.out}/lib/ -L${pkgs.xorg.libXScrnSaver}/lib/,' IdleTime.pm''; meta = { description = "Get the idle time of X11"; }; @@ -13593,7 +13600,7 @@ let self = _self // overrides; _self = with self; { patchPhase = if stdenv.isCygwin then '' sed -i"" -e "s@my \$compiler = File::Spec->catfile(\$path, \$cc\[0\]) \. \$Config{_exe};@my \$compiler = File::Spec->catfile(\$path, \$cc\[0\]) \. (\$^O eq 'cygwin' ? \"\" : \$Config{_exe});@" inc/Devel/CheckLib.pm '' else null; - makeMakerFlags = "EXPATLIBPATH=${pkgs.expat}/lib EXPATINCPATH=${pkgs.expat}/include"; + makeMakerFlags = "EXPATLIBPATH=${pkgs.expat.out}/lib EXPATINCPATH=${pkgs.expat.dev}/include"; }; XMLXPath = buildPerlPackage { diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d99977c54b5d..fe642ed07566 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -307,7 +307,7 @@ in modules // { doCheck = false; patchPhase = '' - substituteInPlace acme_tiny.py --replace "openssl" "${pkgs.openssl}/bin/openssl" + substituteInPlace acme_tiny.py --replace "openssl" "${pkgs.openssl.bin}/bin/openssl" substituteInPlace letsencrypt/le_util.py --replace '"sw_vers"' '"/usr/bin/sw_vers"' ''; @@ -614,7 +614,7 @@ in modules // { mkdir -p $out/share cp -r extra/themes $out/share wrapProgram $out/bin/alot \ - --prefix LD_LIBRARY_PATH : ${pkgs.notmuch}/lib:${pkgs.file}/lib:${pkgs.gpgme}/lib + --prefix LD_LIBRARY_PATH : '${pkgs.lib.makeLibraryPath [ pkgs.notmuch pkgs.file pkgs.gpgme ]}' ''; meta = { @@ -785,7 +785,7 @@ in modules // { url = "http://devel.ag-projects.com/repositories/${pname}"; rev = "release-${version}"; sha256 = "19dszv44py8qrq0jcjdycxpa7z2p8hi3ijq9gnqdsazbbjzf9svn"; - }; + }; buildInputs = with self; [ zope_interface ]; }; @@ -875,7 +875,7 @@ in modules // { buildInputs = with self; [ pytest - sqlalchemy9 + sqlalchemy tornado twisted mock @@ -1224,11 +1224,11 @@ in modules // { awscli = buildPythonPackage rec { name = "awscli-${version}"; - version = "1.10.1"; + version = "1.10.18"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/a/awscli/${name}.tar.gz"; - sha256 = "159c8nfcighlkcbdzck102cp06g7rpgbbvxpb73vjymgqrzqywvb"; + sha256 = "0vdj7p4cwsbzhanhp5f2c0b0qr2gh76dyanji73avvj4jvdb5d4g"; }; # No tests included @@ -1237,6 +1237,7 @@ in modules // { propagatedBuildInputs = with self; [ botocore bcdoc + s3transfer six colorama docutils @@ -1572,14 +1573,17 @@ in modules // { }; batinfo = buildPythonPackage rec { - version = "0.2"; + version = "0.3"; name = "batinfo-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/batinfo/${name}.tar.gz"; - sha256 = "1kmrdr1c2ivpqgp2csln7vbanga3sh3nvaqmgbsg96z6fbg7f7w8"; + sha256 = "0gyzkxzvj5l6qrw706bnm3cckqzzzbrjr7jkxc087d7775a73499"; }; + # No tests included + doCheck = false; + meta = { homepage = https://github.com/nicolargo/batinfo; description = "A simple Python lib to retrieve battery information"; @@ -1879,13 +1883,16 @@ in modules // { colorlog = buildPythonPackage rec { name = "colorlog-${version}"; - version = "2.6.0"; + version = "2.6.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/colorlog/${name}.tar.gz"; - sha256 = "1s8z9zr4r18igr4rri71nba01arnpppifrkaxhi2xb51500sw0qg"; + sha256 = "0djv6ky1yk28s1l093w8plg19kp88q4nyrm1vfxyq0s9j4pix29l"; }; + # No tests included + doCheck = false; + meta = { description = "Log formatting with colors"; homepage = https://github.com/borntyping/python-colorlog; @@ -2499,12 +2506,12 @@ in modules // { }; botocore = buildPythonPackage rec { - version = "1.3.23"; # This version is required by awscli + version = "1.4.9"; # This version is required by awscli name = "botocore-${version}"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/b/botocore/${name}.tar.gz"; - sha256 = "00iaapmy07zdhm2y23fk9igrskzdkix53j7g45lc5dg9nfyngq6j"; + sha256 = "07rp24lnpjlk0c889g0d8y2ykc711gi04w715nkm9mv734ndsman"; }; propagatedBuildInputs = @@ -2828,10 +2835,9 @@ in modules // { postPatch = '' # Hardcode cairo library path - # FIXME: for closure-size branch all pkgs.foo should be replaced with pkgs.foo.lib - substituteInPlace cairocffi/__init__.py --subst-var-by cairo ${pkgs.cairo} - substituteInPlace cairocffi/__init__.py --subst-var-by glib ${pkgs.glib} - substituteInPlace cairocffi/__init__.py --subst-var-by gdk_pixbuf ${pkgs.gdk_pixbuf} + substituteInPlace cairocffi/__init__.py --subst-var-by cairo ${pkgs.cairo.out} + substituteInPlace cairocffi/__init__.py --subst-var-by glib ${pkgs.glib.out} + substituteInPlace cairocffi/__init__.py --subst-var-by gdk_pixbuf ${pkgs.gdk_pixbuf.out} ''; meta = { @@ -3018,6 +3024,33 @@ in modules // { }; }; + # This package is no longer actively maintained and can be removed if it becomes broken. + cgkit = buildPythonPackage rec { + version = "2.0.0"; + name = "cgkit-${version}"; + disabled = isPy3k; + + src = pkgs.fetchurl { + url = "http://downloads.sourceforge.net/project/cgkit/cgkit/cgkit-${version}/cgkit-${version}-py2k.tar.gz"; + sha256 = "0vvllc42mdyma3c7yqhahs4bfxymm2kvmc4va7dxqr5x0rzh6rd6"; + }; + + patches = [ ../development/python-modules/cgkit/scons-env.patch ]; + + buildInputs = with pkgs; [ scons boost mesa ]; + + preBuild = '' + cd supportlib + scons + cd - + ''; + + meta = { + homepage = http://cgkit.sourceforge.net; + description = "Python Computer Graphics Kit"; + maintainers = with maintainers; [ expipiplus1 ]; + }; + }; cheetah = buildPythonPackage rec { version = "2.4.4"; @@ -3103,11 +3136,11 @@ in modules // { }; click = buildPythonPackage rec { - name = "click-6.3"; + name = "click-6.6"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/c/click/${name}.tar.gz"; - sha256 = "076cr1xbhfyfrzkvflz1i0950jgjn2161hp3f5xji4z1mgxdj85p"; + sha256 = "1sggipyz52crrybwbr9xvwxd4aqigvplf53k9w3ygxmzivd1jsnc"; }; buildInputs = with self; [ pytest ]; @@ -3383,18 +3416,16 @@ in modules // { ColanderAlchemy = buildPythonPackage rec { - name = "ColanderAlchemy-0.2.0"; + name = "ColanderAlchemy-${version}"; + version = "0.3.3"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/C/ColanderAlchemy/${name}.tar.gz"; - sha256 = "d10e97b5f4648dcdc38c5e5c9f9b77fe39c8fa7f594d89d558b0d82e5631bfd7"; + sha256 = "11wcni2xmfmy001rj62q2pwf305vvngkrfm5c4zlwvgbvlsrvnnw"; }; buildInputs = with self; [ unittest2 ]; - propagatedBuildInputs = with self; [ colander sqlalchemy9 ]; - - # string: argument name cannot be overridden via info kwarg. - doCheck = false; + propagatedBuildInputs = with self; [ colander sqlalchemy ]; meta = { description = "Autogenerate Colander schemas based on SQLAlchemy models"; @@ -4909,6 +4940,10 @@ in modules // { sha256 = "0kvjlkp96qzh3j31szpjlzqbp02brixh4j4clnpw80b0hspq5yq3"; }; + # Not supported. + # See instead https://pypi.python.org/pypi/dnspython3/1.12.0 + disabled = isPy3k; + meta = { description = "A DNS toolkit for Python 3.x"; homepage = http://www.dnspython.org; @@ -4994,7 +5029,7 @@ in modules // { doCheck = false; # requires redis server propagatedBuildInputs = with self; [ setuptools docker_registry_core blinker flask gevent gunicorn pyyaml - requests2 rsa sqlalchemy9 setuptools backports_lzma m2crypto + requests2 rsa sqlalchemy setuptools backports_lzma m2crypto ]; patchPhase = "> requirements/main.txt"; @@ -5376,7 +5411,7 @@ in modules // { url = "http://devel.ag-projects.com/repositories/${pname}"; rev = "release-${version}"; sha256 = "1zxhpq8i4jwsk7wmfncqfm211hqikj3hp38cfv509924bi76wak8"; - }; + }; propagatedBuildInputs = with self; [ greenlet ]; @@ -6008,7 +6043,7 @@ in modules // { preFixup = '' wrapProgram $out/bin/gtimelog \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH ":" "${pkgs.gtk3}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${pkgs.gtk3.out}/lib" \ ''; @@ -6105,6 +6140,23 @@ in modules // { }; }; + imagesize = buildPythonPackage rec { + name = "imagesize-${version}"; + version = "0.7.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/i/imagesize/${name}.tar.gz"; + sha256 = "0msgz4ncp2nb5nbsxnf8kvxsl6nhwvc3b46ik097fvznl3y10gdv"; + }; + + meta = { + description = "Getting image size from png/jpeg/jpeg2000/gif file"; + homepage = https://github.com/shibukawa/imagesize_py; + license = with licenses; [ mit ]; + }; + + }; + imread = buildPythonPackage rec { name = "python-imread-${version}"; version = "0.5.1"; @@ -7072,11 +7124,11 @@ in modules // { pyramid_beaker = buildPythonPackage rec { - name = "pyramid_beaker-0.7"; + name = "pyramid_beaker-0.8"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pyramid_beaker/${name}.tar.gz"; - sha256 = "c76578dac3ea717e9ca89c327daf13975987d0b8827d15157319c20614fab74a"; + sha256 = "0hflx3qkcdml1mwpq53sz46s7jickpfn0zy0ns2c7j445j66bp3p"; }; propagatedBuildInputs = with self; [ beaker pyramid ]; @@ -7084,6 +7136,7 @@ in modules // { meta = { maintainers = with maintainers; [ iElectric ]; platforms = platforms.all; + broken = true; }; }; @@ -7346,7 +7399,7 @@ in modules // { preConfigure = '' cat > site.cfg << END [samplerate] - library_dirs=${pkgs.libsamplerate}/lib + library_dirs=${pkgs.libsamplerate.out}/lib include_dirs=${pkgs.libsamplerate}/include END ''; @@ -8908,11 +8961,11 @@ in modules // { flake8 = buildPythonPackage rec { name = "flake8-${version}"; - version = "2.5.1"; + version = "2.5.4"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/f/flake8/${name}.tar.gz"; - sha256 = "448aed48b0671fe6062f47b98c3081f3a4b36fbe99ddb8ac2a3be6e6cb135603"; + sha256 = "0bs9cz4fr99r2rwig1b8jwaadl1nan7kgpdzqwj0bwbckwbmh7nc"; }; buildInputs = with self; [ nose mock ]; @@ -9181,7 +9234,7 @@ in modules // { doCheck = false; buildInputs = with self; [ nose ]; - propagatedBuildInputs = with self; [ paver feedparser sqlalchemy9 pyyaml rpyc + propagatedBuildInputs = with self; [ paver feedparser sqlalchemy pyyaml rpyc beautifulsoup_4_1_3 html5lib pyrss2gen pynzb progressbar jinja2 flask cherrypy requests dateutil_2_1 jsonschema python_tvrage tmdb3 guessit pathpy apscheduler ] @@ -9510,11 +9563,11 @@ in modules // { }); fusepy = buildPythonPackage rec { - name = "fusepy-2.0.2"; + name = "fusepy-2.0.4"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/f/fusepy/${name}.tar.gz"; - sha256 = "1z0va3z1hzjw167skl21k9dsklbmr46k66j80qadibjc8vajjnda"; + sha256 = "0v5grm4zyf58hsplwsxfbihddw95lz9w8cy3rpzbyha287swgx8h"; }; propagatedBuildInputs = [ pkgs.fuse ]; @@ -11292,7 +11345,16 @@ in modules // { sha256 = "1li7q04ljrvwharw4fblcbfhvk6s0l3lnv8yqb4c22lcgbkiqlps"; }; - buildInputs = [ pkgs.pkgconfig pkgs.fuse pkgs.attr ]; + buildInputs = with self; [ pytest pkgs.pkgconfig pkgs.fuse pkgs.attr pkgs.which ]; + + propagatedBuildInputs = with self; [ contextlib2 ]; + + checkPhase = '' + py.test + ''; + + # FileNotFoundError: [Errno 2] No such file or directory: '/usr/bin' + doCheck = false; meta = { description = "Python bindings for the low-level FUSE API"; @@ -11629,11 +11691,11 @@ in modules // { mccabe = buildPythonPackage (rec { - name = "mccabe-0.3"; + name = "mccabe-0.4.0"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/m/mccabe/${name}.tar.gz"; - sha256 = "3d8ca9bf65c5014f469180544d1dd5bb5b9df709aad6304f9c2e4370ae0a7b7c"; + sha256 = "0yr08a36h8lqlif10l4xcikbbig7q8f41gqywir7rrvnv3mi4aws"; }; # See https://github.com/flintwork/mccabe/issues/31 @@ -11645,6 +11707,8 @@ in modules // { }}" test_mccabe.py ''; + buildInputs = with self; [ pytestrunner pytest ]; + meta = { description = "McCabe checker, plugin for flake8"; homepage = "https://github.com/flintwork/mccabe"; @@ -12206,8 +12270,8 @@ in modules // { url = "http://devel.ag-projects.com/repositories/${pname}"; rev = "release-${version}"; sha256 = "0jqvvssbwzq7bwqn3wrjfnpj8zb558mynn2visnlrcma6b57yhwd"; - }; - + }; + propagatedBuildInputs = with self; [ eventlib application gnutls ]; }; @@ -12440,7 +12504,7 @@ in modules // { name = "pymysqlsa-${version}"; version = "1.0"; - propagatedBuildInputs = with self; [ pymysql sqlalchemy9 ]; + propagatedBuildInputs = with self; [ pymysql sqlalchemy ]; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pymysql_sa/pymysql_sa-1.0.tar.gz"; @@ -12466,7 +12530,7 @@ in modules // { patchPhase = optionalString stdenv.isLinux '' substituteInPlace monotonic.py --replace \ - "ctypes.util.find_library('c')" "'${stdenv.glibc}/lib/libc.so.6'" + "ctypes.util.find_library('c')" "'${stdenv.glibc.out}/lib/libc.so.6'" ''; }; @@ -12791,12 +12855,12 @@ in modules // { }); nibabel = buildPythonPackage rec { - version = "2.0.1"; + version = "2.0.2"; name = "nibabel-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/n/nibabel/${name}.tar.gz"; - sha256 = "e559bcb40ae395c7f75c51079f815a13a94cd8a035a47315fc9fba0d2ae2ecaf"; + sha256 = "0k8mv5zmwb6vc8kwrydl3pp0pnw937rf5mz10figkxczrw6dkk7h"; }; propagatedBuildInputs = with self; [ @@ -12805,17 +12869,10 @@ in modules // { modules.sqlite3 ]; - preCheck = '' - # Test does not work on Py3k because it calls 'python'. - # https://github.com/nipy/nibabel/issues/341 - rm nisext/tests/test_testers.py - # Test fails with numpy 1.10.1: ERROR: nibabel.tests.test_proxy_api.TestPARRECAPI.test_proxy_slicing - # See https://github.com/nipy/nibabel/pull/358 - # and https://github.com/numpy/numpy/issues/6491 - rm nibabel/tests/test_proxy_api.py - # https://github.com/nipy/nibabel/issues/366 - rm nisext/tests/test_doctest_markup.py - ''; + # Failing tests + # nibabel.tests.test_minc1.test_old_namespace + # nisext.tests.test_testers.test_back_tick + doCheck = false; meta = { homepage = http://nipy.org/nibabel/; @@ -13214,10 +13271,10 @@ in modules // { buildNumpyPackage = callPackage ../development/python-modules/numpy.nix { gfortran = pkgs.gfortran; - blas = pkgs.openblasCompat_2_14; + blas = pkgs.openblasCompat; }; - numpy = self.numpy_1_10; + numpy = self.numpy_1_11; numpy_1_10 = self.buildNumpyPackage rec { version = "1.10.4"; @@ -14913,79 +14970,6 @@ in modules // { pandas = self.pandas_18; - pandas_17 = let - inherit (pkgs.stdenv.lib) optional optionalString; - inherit (pkgs.stdenv) isDarwin; - in buildPythonPackage rec { - name = "pandas-${version}"; - version = "0.17.1"; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/p/pandas/${name}.tar.gz"; - sha256 = "cfd7214a7223703fe6999fbe34837749540efee1c985e6aee9933f30e3f72837"; - }; - - buildInputs = with self; [ nose ] ++ optional isDarwin pkgs.libcxx; - propagatedBuildInputs = with self; [ - dateutil - scipy_0_17 - numexpr - pytz - xlrd - bottleneck - sqlalchemy - lxml - html5lib - modules.sqlite3 - beautifulsoup4 - ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command - - # For OSX, we need to add a dependency on libcxx, which provides - # `complex.h` and other libraries that pandas depends on to build. - patchPhase = optionalString isDarwin '' - cpp_sdk="${pkgs.libcxx}/include/c++/v1"; - echo "Adding $cpp_sdk to the setup.py common_include variable" - substituteInPlace setup.py \ - --replace "['pandas/src/klib', 'pandas/src']" \ - "['pandas/src/klib', 'pandas/src', '$cpp_sdk']" - - # disable clipboard tests since pbcopy/pbpaste are not open source - substituteInPlace pandas/io/tests/test_clipboard.py \ - --replace pandas.util.clipboard no_such_module \ - --replace OSError ImportError - ''; - - # The flag `-A 'not network'` will disable tests that use internet. - # The `-e` flag disables a few problematic tests. - # https://github.com/pydata/pandas/issues/11169 - # https://github.com/pydata/pandas/issues/11287 - # The test_sql checks fail specifically on python 3.5; see here: - # https://github.com/pydata/pandas/issues/11112 - checkPhase = let - testsToSkip = ["test_data" "test_excel" "test_html" "test_json" - "test_frequencies" "test_frame" - "test_read_clipboard_infer_excel" - "test_interp_alt_scipy" "test_nanops" "test_stats"] ++ - optional isPy35 "test_sql"; - in '' - runHook preCheck - # The flag `-A 'not network'` will disable tests that use internet. - # The `-e` flag disables a few problematic tests. - ${python.executable} setup.py nosetests -A 'not slow and not network' --stop \ - -e '${concatStringsSep "|" testsToSkip}' --verbosity=3 - - runHook postCheck - ''; - - meta = { - homepage = "http://pandas.pydata.org/"; - description = "Python Data Analysis Library"; - license = licenses.bsd3; - maintainers = with maintainers; [ raskin fridh ]; - platforms = platforms.unix; - }; - }; - pandas_18 = let inherit (pkgs.stdenv.lib) optional optionalString; inherit (pkgs.stdenv) isDarwin; @@ -15034,18 +15018,17 @@ in modules // { # The flag `-A 'not network'` will disable tests that use internet. # The `-e` flag disables a few problematic tests. - # https://github.com/pydata/pandas/issues/11169 - # https://github.com/pydata/pandas/issues/11287 - # The test_sql checks fail specifically on python 3.5; see here: - # https://github.com/pydata/pandas/issues/11112 + + # Disable two tests that are broken since numpy 1.11. Fixed upstream. + checkPhase = let - testsToSkip = []; + testsToSkip = [ "test_range_slice_day" "test_range_slice_seconds" ]; in '' runHook preCheck # The flag `-A 'not network'` will disable tests that use internet. # The `-e` flag disables a few problematic tests. - ${python.executable} setup.py nosetests -A 'not slow and not network' \ - --verbosity=3 + ${python.executable} setup.py nosetests -A 'not slow and not network' --stop \ + -e '${concatStringsSep "|" testsToSkip}' --verbosity=3 runHook postCheck ''; @@ -15637,13 +15620,13 @@ in modules // { platformio = buildPythonPackage rec { name = "platformio-${version}"; - version="2.8.3"; + version="2.8.6"; disabled = isPy3k || isPyPy; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/platformio/platformio-${version}.tar.gz"; - sha256 = "1lz5f7xc53bk8ri4806xfpisvhyqdxdniwk0ywifinnhzx47jgp7"; + sha256 = "1l8jcwf8flmx8xcsvly2my8al8nzjr67h3mg5c9wvdr7a42q7dil"; }; propagatedBuildInputs = with self; [ click_5 requests2 bottle pyserial lockfile colorama]; @@ -15739,7 +15722,7 @@ in modules // { }; prePatch = '' - substituteInPlace soundfile.py --replace "'sndfile'" "'${pkgs.libsndfile}/lib/libsndfile.so'" + substituteInPlace soundfile.py --replace "'sndfile'" "'${pkgs.libsndfile.out}/lib/libsndfile.so'" ''; # https://github.com/bastibe/PySoundFile/issues/157 @@ -15802,13 +15785,15 @@ in modules // { ++ optionals (isPyPy) [ pkgs.tk pkgs.xorg.libX11 ]; # NOTE: we use LCMS_ROOT as WEBP root since there is not other setting for webp. - preConfigure = '' + preConfigure = let + libinclude = pkg: ''"${pkg.out}/lib", "${pkg.dev}/include"''; + in '' sed -i "setup.py" \ - -e 's|^FREETYPE_ROOT =.*$|FREETYPE_ROOT = _lib_include("${pkgs.freetype}")|g ; - s|^JPEG_ROOT =.*$|JPEG_ROOT = _lib_include("${pkgs.libjpeg}")|g ; - s|^ZLIB_ROOT =.*$|ZLIB_ROOT = _lib_include("${pkgs.zlib}")|g ; + -e 's|^FREETYPE_ROOT =.*$|FREETYPE_ROOT = ${libinclude pkgs.freetype}|g ; + s|^JPEG_ROOT =.*$|JPEG_ROOT = ${libinclude pkgs.libjpeg}|g ; + s|^ZLIB_ROOT =.*$|ZLIB_ROOT = ${libinclude pkgs.zlib}|g ; s|^LCMS_ROOT =.*$|LCMS_ROOT = _lib_include("${pkgs.libwebp}")|g ; - s|^TIFF_ROOT =.*$|TIFF_ROOT = _lib_include("${pkgs.libtiff}")|g ; + s|^TIFF_ROOT =.*$|TIFF_ROOT = ${libinclude pkgs.libtiff}|g ; s|^TCL_ROOT=.*$|TCL_ROOT = _lib_include("${pkgs.tcl}")|g ;' '' # Remove impurities @@ -16465,7 +16450,7 @@ in modules // { preConfigure = '' substituteInPlace setup.py \ --replace '"/usr/include"' '"${pkgs.gdb}/include"' \ - --replace '"/usr/lib"' '"${pkgs.binutils}/lib"' + --replace '"/usr/lib"' '"${pkgs.binutils.out}/lib"' ''; meta = { @@ -16722,6 +16707,30 @@ in modules // { }; }; + pydot_ng = buildPythonPackage rec { + name = "pydot_ng-1.0.0"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/p/pydot-ng/${name}.tar.gz"; + sha256 = "0h8k8wlzvnb40v4js7afgfyhp3wasmb1kg4gr6z7ck63iv8fq864"; + }; + + buildInputs = [ self.pytest self.unittest2 ]; + propagatedBuildInputs = [ pkgs.graphviz self.pyparsing ]; + + checkPhase = '' + mkdir test/my_tests + py.test test + ''; + + meta = { + homepage = "https://pypi.python.org/pypi/pydot-ng"; + description = "Python 3-compatible update of pydot, a Python interface to Graphviz's Dot"; + license = licenses.mit; + maintainers = [ maintainers.bcdarwin ]; + }; + }; + pyelasticsearch = buildPythonPackage (rec { name = "pyelasticsearch-1.4"; @@ -16855,11 +16864,11 @@ in modules // { doCheck = false; preConfigure = '' - export LDFLAGS="-L${pkgs.fftw}/lib -L${pkgs.fftwFloat}/lib -L${pkgs.fftwLongDouble}/lib" + export LDFLAGS="-L${pkgs.fftw.out}/lib -L${pkgs.fftwFloat.out}/lib -L${pkgs.fftwLongDouble.out}/lib" export CFLAGS="-I${pkgs.fftw}/include -I${pkgs.fftwFloat}/include -I${pkgs.fftwLongDouble}/include" ''; #+ optionalString isDarwin '' - # export DYLD_LIBRARY_PATH="${pkgs.fftw}/lib" + # export DYLD_LIBRARY_PATH="${pkgs.fftw.out}/lib" #''; meta = { @@ -16954,12 +16963,12 @@ in modules // { }; pygments = buildPythonPackage rec { - version = "2.1"; + version = "2.1.3"; name = "Pygments-${version}"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/P/Pygments/${name}.tar.gz"; - sha256 = "0yx4p3w9lw1kw24zr87xnaqxm007mdxgwa5wjpwnrcfpmxgyz80k"; + sha256 = "10axnp2wpjnq9g8wg53fx0c70dfxqrz498jyz8mrdx9a3flwir48"; }; propagatedBuildInputs = with self; [ docutils ]; @@ -17608,7 +17617,7 @@ in modules // { postPatch = '' sed -i -e '/udev_library_name/,/^ *libudev/ { - s|CDLL([^,]*|CDLL("${pkgs.udev}/lib/libudev.so.1"|p; d + s|CDLL([^,]*|CDLL("${pkgs.libudev.out}/lib/libudev.so.1"|p; d }' pyudev/_libudev.py ''; @@ -17797,6 +17806,9 @@ in modules // { buildInputs = with self; [ ]; + # Not supported. Package is no longer maintained. + disabled = isPy3k; + meta = { description = "Pure-Python PDF toolkit"; homepage = "http://pybrary.net/pyPdf/"; @@ -18054,8 +18066,8 @@ in modules // { patchPhase = '' substituteInPlace "setup.cfg" \ - --replace "/usr/local/include" "${pkgs.sqlite}/include" \ - --replace "/usr/local/lib" "${pkgs.sqlite}/lib" + --replace "/usr/local/include" "${pkgs.sqlite.dev}/include" \ + --replace "/usr/local/lib" "${pkgs.sqlite.out}/lib" ''; # error: invalid command 'test' @@ -18111,9 +18123,11 @@ in modules // { cd Source python setup.py backport python setup.py configure \ - --apr-inc-dir=${pkgs.apr}/include/apr-1 \ - --apu-inc-dir=${pkgs.aprutil}/include/apr-1 \ - --apr-lib-dir=${pkgs.apr}/lib \ + --apr-inc-dir=${pkgs.apr.dev}/include \ + --apu-inc-dir=${pkgs.aprutil.dev}/include \ + --apr-lib-dir=${pkgs.apr.out}/lib \ + --svn-lib-dir=${pkgs.subversion.out}/lib \ + --svn-bin-dir=${pkgs.subversion.out}/bin \ --svn-root-dir=${pkgs.subversion} '' + (if !stdenv.isDarwin then "" else '' sed -i -e 's|libpython2.7.dylib|lib/libpython2.7.dylib|' Makefile @@ -18161,11 +18175,11 @@ in modules // { pytz = buildPythonPackage rec { name = "pytz-${version}"; - version = "2015.7"; + version = "2016.3"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/p/pytz/${name}.tar.gz"; - sha256 = "99266ef30a37e43932deec2b7ca73e83c8dbc3b9ff703ec73eca6b1dae6befea"; + sha256 = "1a3hjclyylc4m1v1dn04b38wm2vl649ijdswpg0d8m8n0lcxlj9l"; }; meta = { @@ -18423,7 +18437,7 @@ in modules // { reportlab = - let freetype = overrideDerivation pkgs.freetype (args: { configureFlags = "--enable-static --enable-shared"; }); + let freetype = overrideDerivation pkgs.freetype (args: { dontDisableStatic = true; }); in buildPythonPackage rec { name = "reportlab-3.2.0"; @@ -19366,6 +19380,39 @@ in modules // { }; }; + s3transfer = buildPythonPackage rec { + version = "0.0.1"; # This version is required by awscli + name = "s3transfer-${version}"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/s/s3transfer/${name}.tar.gz"; + sha256 = "0ma31zvv7gy240xgd1zw853lpzkdci6mapzpg3x4vycann6yvf9b"; + }; + + foo = 1; + + propagatedBuildInputs = + [ self.botocore + ] ++ stdenv.lib.optional (pythonOlder "3") self.futures; + + buildInputs = with self; [ docutils mock nose coverage wheel unittest2 ]; + + checkPhase = '' + pushd s3transfer/tests + nosetests -v unit/ functional/ + popd + ''; + + # version on pypi has no tests/ dir + doCheck = false; + + meta = { + homepage = https://github.com/boto/s3transfer; + license = stdenv.lib.licenses.asl20; + description = "A library for managing Amazon S3 transfers"; + }; + }; + seqdiag = buildPythonPackage rec { name = "seqdiag-0.9.4"; @@ -19604,7 +19651,7 @@ in modules // { patchPhase = '' cp "${x_ignore_nofocus}/cpp/linux-specific/"* . - substituteInPlace x_ignore_nofocus.c --replace "/usr/lib/libX11.so.6" "${pkgs.xorg.libX11}/lib/libX11.so.6" + substituteInPlace x_ignore_nofocus.c --replace "/usr/lib/libX11.so.6" "${pkgs.xorg.libX11.out}/lib/libX11.so.6" gcc -c -fPIC x_ignore_nofocus.c -o x_ignore_nofocus.o gcc -shared \ -Wl,${if stdenv.isDarwin then "-install_name" else "-soname"},x_ignore_nofocus.so \ @@ -19809,14 +19856,19 @@ in modules // { }; sigal = buildPythonPackage rec { - name = "sigal-0.9.2"; + name = "sigal-1.0.1"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sigal/${name}.tar.gz"; - sha256 = "0mk3bzaxn9snx9lc0pj9zvgdgdyhkza6b8z5x91772mlv84sfw6c"; + sha256 = "198g2r8bii6a0p44mlk1wg07jjv95xpfvnqhhxxziqpizc776b34"; }; - propagatedBuildInputs = with self; [ jinja2 markdown pillow pilkit clint click pytest blinker ]; + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ jinja2 markdown pillow pilkit clint click blinker ]; + + # No tests included + doCheck = false; + meta = { description = "Yet another simple static gallery generator"; @@ -19967,11 +20019,11 @@ in modules // { }; sopel = buildPythonPackage rec { - name = "sopel-6.3.0"; + name = "sopel-6.3.1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/s/sopel/${name}.tar.gz"; - sha256 = "10g3p603qiz4whacknnslmkza5y1f7a8blq1q07dfrny4442c6nb"; + sha256 = "1swvw7xw8n5anb8ah8jilk4vk1y30y62fkibfd9vm9fbk45d1q48"; }; buildInputs = with self; [ pytest ]; @@ -20115,6 +20167,11 @@ in modules // { sha256 = "0cylj8p25nwkdfgy4pzai21wyzmrxdqlwwbzqag9gb5qcjfdwk05"; }; + buildInputs = with self; [ nose ]; + + # No tests included + doCheck = false; + meta = { description = "Pidfile featuring stale detection and file-locking"; homepage = https://github.com/trbs/pid/; @@ -20305,6 +20362,10 @@ in modules // { }; }; + salt = callPackage ../tools/admin/salt {}; + + salttesting = callPackage ../tools/admin/salt/testing.nix {}; + sandboxlib = buildPythonPackage rec { name = "sandboxlib-${version}"; version = "0.31"; @@ -20540,14 +20601,16 @@ in modules // { sphinx = buildPythonPackage (rec { - name = "Sphinx-1.3.4"; + name = "Sphinx-1.3.6"; + + # 1.4 is broken + # https://github.com/sphinx-doc/sphinx/issues/2394 src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/S/Sphinx/${name}.tar.gz"; - sha256 = "0mw06q7bzzjylgwh0wnnaxmwc95hx8w95as4vcgpan579brw7b4a"; + sha256 = "12pzlfkjjlwgvsj56k0y809jpx5mgcs9548k1l4kdbr028ifjfqb"; }; - patches = [ ../development/python-modules/sphinx-fix-tests-with-pygments-2.1.patch ]; LC_ALL = "en_US.UTF-8"; checkPhase = '' PYTHON=${python.executable} make test @@ -20580,11 +20643,11 @@ in modules // { }; sphinx_rtd_theme = buildPythonPackage (rec { - name = "sphinx_rtd_theme-0.1.8"; + name = "sphinx_rtd_theme-0.1.9"; src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/s/sphinx_rtd_theme/${name}.tar.gz"; - sha256 = "12mnb7qscr07mllmyyqfpx37778sr21m8663b4fivnk17bnk7xkl"; + sha256 = "18d0r63w7jpdrk4q5qy26n08vdlmnj9sar93akwjphyambw4cf17"; }; postPatch = '' @@ -20729,32 +20792,6 @@ in modules // { }; }; - sqlalchemy9 = buildPythonPackage rec { - name = "SQLAlchemy-0.9.9"; - - src = pkgs.fetchurl { - url = "https://pypi.python.org/packages/source/S/SQLAlchemy/${name}.tar.gz"; - sha256 = "14az6hhrz4bgnicz4q373z119zmaf7j5zxl1jfbfl5lix5m1z9bj"; - }; - - buildInputs = with self; [ nose mock ] - ++ stdenv.lib.optional doCheck pysqlite; - propagatedBuildInputs = with self; [ modules.sqlite3 ]; - - # Test-only dependency pysqlite doesn't build on Python 3. This isn't an - # acceptable reason to make all dependents unavailable on Python 3 as well - doCheck = !(isPyPy || isPy3k); - - checkPhase = '' - ${python.executable} sqla_nose.py - ''; - - meta = { - homepage = http://www.sqlalchemy.org/; - description = "A Python SQL toolkit and Object Relational Mapper"; - }; - }; - sqlalchemy = buildPythonPackage rec { name = "SQLAlchemy-${version}"; version = "1.0.12"; @@ -20790,7 +20827,7 @@ in modules // { src = pkgs.fetchFromGitHub { repo = "sqlalchemy-imageattach"; - owner = "crosspop"; + owner = "crosspop"; rev = "${version}"; sha256 = "1pqf7vk4lsvnhw169cqfyk0iz5f8n45470mdslklpi38z2fax9p0"; }; @@ -21224,7 +21261,7 @@ in modules // { # I don't know why I need to add these libraries. Shouldn't they # be part of wxPython? postInstall = '' - libspaths=${pkgs.xorg.libSM}/lib:${pkgs.xorg.libXScrnSaver}/lib + libspaths=${with pkgs.xorg; pkgs.lib.makeLibraryPath [ libSM libXScrnSaver ]} wrapProgram $out/bin/taskcoach.py \ --prefix LD_LIBRARY_PATH : $libspaths ''; @@ -23364,17 +23401,17 @@ in modules // { zope_sqlalchemy = buildPythonPackage rec { - name = "zope.sqlalchemy-0.7.5"; + name = "zope.sqlalchemy-0.7.6"; doCheck = !isPyPy; # https://github.com/zopefoundation/zope.sqlalchemy/issues/12 src = pkgs.fetchurl { url = "http://pypi.python.org/packages/source/z/zope.sqlalchemy/${name}.zip"; - sha256 = "e196d1b2cf796f46e2c6127717e359ddd35d8d084a8ba059f0f0fabff245b9e1"; + sha256 = "0vxhpdvzihsmg63aralmc7hx62lzrsnlxvskvlcr4mkwzwb22haj"; }; buildInputs = with self; [ zope_testing zope_interface ]; - propagatedBuildInputs = with self; [ sqlalchemy9 transaction ]; + propagatedBuildInputs = with self; [ sqlalchemy transaction ]; meta = { maintainers = with maintainers; [ garbas iElectric ]; @@ -23974,20 +24011,23 @@ in modules // { pyusb = buildPythonPackage rec { - name = "pyusb-1.0.0b2"; + name = "pyusb-1.0.0rc1"; src = pkgs.fetchurl { url = "https://pypi.python.org/packages/source/p/pyusb/${name}.tar.gz"; - sha256 = "14ec66077bdcd6f1aa9e892a0a35a54bb3c1ec56aa740ead64349c18f0186d19"; + sha256 = "07cjq11qhngzjd746k7688s6y2x7lpj669fxqfsiy985rg0jsn7j"; }; # Fix the USB backend library lookup postPatch = '' - libusb=${pkgs.libusb1}/lib/libusb-1.0.so + libusb=${pkgs.libusb1.out}/lib/libusb-1.0.so test -f $libusb || { echo "ERROR: $libusb doesn't exist, please update/fix this build expression."; exit 1; } sed -i -e "s|libname = .*|libname = \"$libusb\"|" usb/backend/libusb1.py ''; + # No tests included + doCheck = false; + meta = { description = "Python USB access module (wraps libusb 1.0)"; # can use other backends homepage = http://pyusb.sourceforge.net/; @@ -24006,6 +24046,10 @@ in modules // { sha256 = "3edf4b83a3fa1a7bd953b452b76542d54285ff6f1145b6e19f9b5438120fa408"; }; + # Requires pyusb 1.0.0b1. + # Likely current pyusb will work but we need to patch the hard requirement then. + broken = true; + propagatedBuildInputs = with self; [ pyusb ]; meta = { @@ -24147,7 +24191,7 @@ in modules // { mock ]; - LD_LIBRARY_PATH = "${pkgs.cairo}/lib"; + LD_LIBRARY_PATH = "${pkgs.cairo.out}/lib"; meta = { description = "Graphite-web, without the interface. Just the rendering HTTP API"; @@ -24697,11 +24741,12 @@ in modules // { uncertainties = buildPythonPackage rec { - name = "uncertainties-2.4.6.1"; + name = "uncertainties-${version}"; + version = "2.4.8.1"; src = pkgs.fetchurl { - url = "https://github.com/lebigot/uncertainties/archive/2.4.6.1.tar.gz"; - sha256 = "993ad1a380185ff9548510401ed89fe96cf1f18ca48b44657356c8dcd3ad5032"; + url = "https://github.com/lebigot/uncertainties/archive/${version}.tar.gz"; + sha256 = "1j5z0h5l3plsywsmwjpaggkr6rn5cjxw0lhkwgl6a8a25f8bz4pz"; }; buildInputs = with self; [ nose numpy ]; @@ -24828,18 +24873,18 @@ in modules // { syncserver = buildPythonPackage rec { name = "syncserver-${version}"; - version = "1.5.0"; + version = "1.5.2"; disabled = ! isPy27; src = pkgs.fetchgit { url = https://github.com/mozilla-services/syncserver.git; rev = "refs/tags/${version}"; - sha256 = "1xljylycxg7351hmqh7aa6fvvsjg06zvd4r7hcjqyd0k0sxvk7y6"; + sha256 = "002if8wk3bhz70zycggvp5qfvr1n2c6i27wnzj317wlkkjmcknx7"; }; buildInputs = with self; [ unittest2 ]; propagatedBuildInputs = with self; [ - cornice gunicorn pyramid requests simplejson sqlalchemy9 mozsvc tokenserver + cornice gunicorn pyramid requests simplejson sqlalchemy mozsvc tokenserver serversyncstorage configparser ]; @@ -24851,17 +24896,17 @@ in modules // { serversyncstorage = buildPythonPackage rec { name = "serversyncstorage-${version}"; - version = "1.5.11"; + version = "1.5.13"; disabled = !isPy27; src = pkgs.fetchgit { url = https://github.com/mozilla-services/server-syncstorage.git; rev = "refs/tags/${version}"; - sha256 = "1byq2k2f36f1jli9599ygfm2qsb4adl9140sxjpgfjbznb74q90q"; + sha256 = "06ss88j2gkgqchwd51fwynf2i41ssazs2xwiin8g7p8bc517ywmq"; }; propagatedBuildInputs = with self; [ - pyramid sqlalchemy9 simplejson mozsvc cornice pyramid_hawkauth pymysql + pyramid sqlalchemy simplejson mozsvc cornice pyramid_hawkauth pymysql pymysqlsa umemcache WSGIProxy requests pybrowserid ]; buildInputs = with self; [ testfixtures unittest2 ]; @@ -25664,6 +25709,9 @@ in modules // { sha256 = "7d3e54add7dccdaeb6cc9e61ceaf7b587914cf8ebd6821cfea008acdc1e50d4a"; }; + # Tests fail with 3.x. Furthermore, package is no longer maintained. + disabled = isPy3k; + propagatedBuildInputs = with self; [ pyparsing ]; @@ -25753,7 +25801,7 @@ in modules // { patchPhase = '' # Hardcode cairo library path - sed -e 's,ffi\.dlopen(,&"${pkgs.xorg.libxcb}/lib/" + ,' -i xcffib/__init__.py + sed -e 's,ffi\.dlopen(,&"${pkgs.xorg.libxcb.out}/lib/" + ,' -i xcffib/__init__.py ''; propagatedBuildInputs = [ self.cffi self.six ]; diff --git a/pkgs/top-level/rust-packages.nix b/pkgs/top-level/rust-packages.nix index 2b3b98dba63d..a829445d7b56 100644 --- a/pkgs/top-level/rust-packages.nix +++ b/pkgs/top-level/rust-packages.nix @@ -7,15 +7,15 @@ { runCommand, fetchFromGitHub, git }: let - version = "2016-03-22"; - rev = "f28cdedb698cf76f513fb4514b5ed2892ec89b2f"; + version = "2016-04-02"; + rev = "b705d049d78f96bc27c58ccec7902e65d90826bd"; src = fetchFromGitHub { inherit rev; owner = "rust-lang"; repo = "crates.io-index"; - sha256 = "05j43pgdlf554y9r781xdc5la55anwiq6k7vml9icak699ywfxqq"; + sha256 = "1aspn79i1rw9migw7j0m12ghdq9cqhq8n2vzxy6hy1l728j3ykdp"; }; in